/* ===================================
   HERO MODERN - SPLIT DESIGN
   =================================== */

.hero-modern {
    min-height: 100vh;
    display: flex;
    background: var(--darker-bg);
    padding-top: 80px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--darker-bg);
}

.hero-text {
    max-width: 550px;
}

.hero-label {
    display: inline-block;
    background: rgba(253, 180, 23, 0.15);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-modern .hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-modern .hero-title span {
    color: var(--primary-gold);
    display: block;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-gold);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(253, 180, 23, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(253, 180, 23, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary i {
    margin-right: 10px;
    color: var(--primary-gold);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    background: rgba(253, 180, 23, 0.1);
}

.hero-features {
    display: flex;
    gap: 35px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 600;
}

.feature i {
    color: var(--primary-gold);
    font-size: 20px;
}

/* Hero Right - Image */
.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid rgba(253, 180, 23, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-gold);
}

.badge-text small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-modern {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 30px;
        order: 2;
    }

    .hero-right {
        height: 50vh;
        order: 1;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }

    .badge-icon {
        font-size: 2rem;
    }

    .badge-text strong {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-left {
        padding: 30px 20px;
    }

    .hero-modern .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .hero-badge {
        bottom: 15px;
        left: 15px;
        right: 15px;
        justify-content: center;
    }
}