/* Premium Hero Section */
.hero-premium {
    min-height: 100vh;
    background-color: #050b14;
    /* Dark Navy Background */
    background-image: radial-gradient(circle at 70% 30%, #0d1b2e 0%, #050b14 70%);
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Header Offset */
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

/* Left Content */
.hero-content-left {
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 86, 210, 0.2);
    color: #4da6ff;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 86, 210, 0.3);
}

.hero-content-left h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-content-left h1 .text-accent {
    color: #0077ff;
}

.hero-content-left p {
    font-size: 18px;
    color: #8fa0b5;
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-blue {
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 86, 210, 0.4);
    padding: 16px 32px;
}

.btn-blue:hover {
    background: linear-gradient(135deg, #0077ff 0%, #0055dd 100%);
    box-shadow: 0 6px 20px rgba(0, 86, 210, 0.6);
}

.btn-dark-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
}

.btn-dark-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Right Image (3D Card) */
.hero-image-right {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-3d {
    width: 100%;
    max-width: 1000px;
    background: #0d131a;
    border-radius: 20px;
    padding: 15px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    position: relative;
}

.hero-card-3d:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.hero-card-inner {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

.hero-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.card-meta {
    position: absolute;
    bottom: 15px;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4da6ff;
    font-family: monospace;
    font-size: 12px;
    letter-spacing: 1px;
}

.card-icon {
    font-size: 16px;
    opacity: 0.7;
}

/* Mobile Adjustments for Hero */
@media (max-width: 1200px) {
    .hero-premium {
        height: auto;
        padding-top: 120px;
        text-align: center;
    }

    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content-left h1 {
        font-size: 40px;
    }

    .hero-content-left p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .hero-image-right {
        perspective: none;
        padding-bottom: 40px;
    }

    .hero-card-3d {
        transform: none;
    }

    .hero-card-3d:hover {
        transform: none;
    }
}