/* ========================================
   HERO CAROUSEL - AUTO FADING
======================================== */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #284B71;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: auto;
    max-height: 90%;
    object-fit: contain;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.hero-title {
    font-size: 80px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 675px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    background: linear-gradient(135deg, #e5c466 0%, #d4b454 100%);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 196, 102, 0.4);
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-slide-image {
        width: 55%;
        max-height: 85%;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .hero-carousel {
        height: auto;
        min-height: 550px;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        padding-top: 15px;
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .hero-slide-image {
        position: static;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 30px;
        display: block;
        transform: none;
    }
    
    .hero-slide {
        flex-direction: column;
        justify-content: center;
        padding: 40px 0;
        position: relative;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
        order: 2;
    }
    
    .hero-cta {
        padding: 14px 30px;
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .hero-carousel {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-slide-image {
        max-width: 220px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-slide-image {
        max-width: 180px;
    }
    
    .hero-cta {
        padding: 12px 25px;
        font-size: 10px;
    }
}
