/* ========================================
   hero.css - Hero Slider Styles
   Design System: Green/Gold Theme
   ======================================== */

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* ---- Carousel ---- */
.hero-carousel {
    position: relative;
}

.hero-carousel .carousel-item {
    min-height: 85vh;
    position: relative;
}

/* ---- Slide Background ---- */
.slide-item {
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* Slide Overlays */
.slide-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 41, 98, 0.72) 0%, rgba(7, 41, 98, 0.45) 50%, rgba(7, 41, 98, 0.15) 100%);
    z-index: 1;
}

/* ---- Slide Content ---- */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 40px 0;
}

/* Slide Eyebrow */
.slide-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    padding: 6px 14px;
    background: rgba(183, 147, 72, 0.15);
    border-radius: 4px;
    border-left: 3px solid var(--accent);
}

/* Slide Title */
.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
}

.slide-title em {
    font-style: italic;
    background: linear-gradient(135deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Slide Description */
.slide-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 520px;
}

/* ---- CTA Buttons ---- */
.slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Primary CTA (Gold) */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent), #d4b96a);
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(183, 147, 72, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(183, 147, 72, 0.45);
    color: var(--primary);
}

.btn-gold i {
    transition: transform 0.3s ease;
}

.btn-gold:hover i {
    transform: translateX(5px);
}

/* Secondary CTA (Outline White) */
.btn-outline-w {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-w:hover {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-w i {
    transition: transform 0.3s ease;
}

.btn-outline-w:hover i {
    transform: translateX(5px);
}

/* ---- Carousel Indicators ---- */
.hero-carousel .carousel-indicators {
    bottom: 30px;
    z-index: 10;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

/* ---- Carousel Arrows ---- */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.hero-arrow.prev {
    left: 30px;
}

.hero-arrow.next {
    right: 30px;
}

/* ---- Decorative Elements ---- */
.hero-decor-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(183, 147, 72, 0.2), rgba(183, 147, 72, 0.05));
    z-index: 0;
    pointer-events: none;
}

.hero-decor-circle.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero-decor-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ---- Stats Bar ---- */
.hero-stats-bar {
    background: #ffffff;
    padding: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 10px;
    border-right: 1px solid #e8e8e8;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #ffffff;
    font-size: 20px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .hero-carousel .carousel-item {
        min-height: 70vh;
    }

    .slide-item {
        min-height: 70vh;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-arrow.prev {
        left: 15px;
    }

    .hero-arrow.next {
        right: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .hero-carousel .carousel-item {
        min-height: 60vh;
    }

    .slide-item {
        min-height: 60vh;
    }

    .slide-content {
        padding: 20px 0;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-desc {
        font-size: 14px;
    }

    .slide-btns {
        flex-direction: column;
    }

    .hero-arrow {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-item {
        border-right: none;
    }

    .hero-decor-circle {
        display: none;
    }
}
