/* =================
   RESET & VARIABLES
   ================= */
:root {
    --color-primary: #E4C320;
    --color-secondary: #D4AF37;
    --color-black: #0F1419;
    --color-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* =================
   HERO SECTION BASE
   ================= */
#hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a2a35 100%);
}

.hero-section__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(228, 195, 32, 0.1) 0%, transparent 50%);
}

/* ======================
   ANIMATED SHAPES
   ====================== */
.hero-section__animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-section__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: hero-section-float 20s infinite ease-in-out;
}

.hero-section__shape--1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-section__shape--2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.hero-section__shape--3 {
    width: 250px;
    height: 250px;
    background: var(--color-primary);
    top: 60%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes hero-section-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* ========================
   CONTAINER
   ======================== */
.hero-section__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 20px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =====================
   CONTENT
   ===================== */
.hero-section__content {
    color: var(--color-white);
}

.hero-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(228, 195, 32, 0.15);
    border: 1px solid var(--color-primary);
    border-radius: 30px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-section__badge i {
    font-size: 16px;
}

.hero-section__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--color-white);
}

.hero-section__highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.hero-section__highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(228, 195, 32, 0.3);
    z-index: -1;
    animation: hero-section-underline-expand 1s ease-out forwards;
    animation-delay: 0.8s;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes hero-section-underline-expand {
    to {
        transform: scaleX(1);
    }
}

.hero-section__description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 500px;
}

/* ===================
   CTA BUTTONS
   =================== */
.hero-section__cta {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.hero-section__btn i {
    flex-shrink: 0;
}

.hero-section__btn span {
    display: inline-block;
}

.hero-section__btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-section__btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-section__btn--primary {
    background: var(--color-primary);
    color: var(--color-black);
}

.hero-section__btn--primary:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 195, 32, 0.4);
}

.hero-section__btn-arrow {
    transition: transform 0.3s ease;
}

.hero-section__btn--primary:hover .hero-section__btn-arrow {
    transform: translateX(5px);
}

.hero-section__btn--secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.hero-section__btn--secondary:hover {
    background: var(--color-primary);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* ====================
   STATS
   ==================== */
.hero-section__stats {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-section__stat-item {
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 100px;
}

.hero-section__stat-icon {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: block;
    transition: transform 0.5s ease;
}

.hero-section__stat-number {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.hero-section__stat-label {
    font-size: clamp(11px, 1.5vw, 14px);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section__stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* ====================
   IMAGE CAROUSEL
   ==================== */
.hero-section__image {
    position: relative;
    width: 100%;
}

.hero-section__carousel {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-section__carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-section__carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    z-index: 1;
}

.hero-section__carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-section__carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carousel Indicators */
.hero-section__carousel-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 30px;
}

.hero-section__indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.hero-section__indicator.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 5px;
}

.hero-section__indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-section__indicator.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-secondary);
    border-radius: 5px;
    animation: hero-carousel-progress 5s linear forwards;
}

@keyframes hero-carousel-progress {
    to {
        width: 100%;
    }
}

/* ============================
   SCROLL INDICATOR
   ============================ */
.hero-section__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: hero-section-bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-section__scroll-text {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-section__scroll-arrow {
    width: 40px;
    height: 60px;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    position: relative;
}

.hero-section__scroll-arrow i {
    color: var(--color-primary);
    font-size: 14px;
    animation: hero-section-scroll-down 2s infinite;
}

@keyframes hero-section-scroll-down {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(25px);
        opacity: 0;
    }
}

@keyframes hero-section-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =========================
   ANIMATIONS
   ========================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: hero-section-fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: hero-section-fadeInRight 1s ease forwards;
    animation-delay: 0.5s;
}

@keyframes hero-section-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-section-fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===============================
   RIPPLE EFFECT
   =============================== */
.hero-section__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: hero-section-ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes hero-section-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-section__container {
        gap: 50px;
        padding: 100px 30px 70px;
    }
    
    .hero-section__carousel {
        height: 500px;
    }
}

/* Tablet Portrait */
@media (max-width: 992px) {
    .hero-section__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 90px 25px 60px;
    }
    
    .hero-section__image {
        order: -1;
    }
    
    .hero-section__carousel {
        height: 450px;
        max-width: 100%;
    }
    
    .hero-section__content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-section__description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-section__cta {
        justify-content: center;
    }
    
    .hero-section__stats {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    #hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-section__container {
        padding: 60px 20px 50px;
    }
    
    .hero-section__badge {
        font-size: 12px;
        padding: 8px 16px;
        gap: 6px;
    }
    
    .hero-section__title {
        margin-bottom: 20px;
    }
    
    .hero-section__description {
        margin-bottom: 30px;
    }
    
    .hero-section__cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .hero-section__btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-section__stats {
        gap: 15px;
    }
    
    .hero-section__stat-divider {
        display: none;
    }
    
    .hero-section__carousel {
        height: 400px;
    }
    
    .hero-section__carousel-indicators {
        bottom: 20px;
        gap: 10px;
        padding: 10px 16px;
    }
    
    .hero-section__indicator {
        width: 8px;
        height: 8px;
    }
    
    .hero-section__indicator.active {
        width: 24px;
    }
    
    .hero-section__shape {
        filter: blur(60px);
    }
    
    .hero-section__scroll-indicator {
        bottom: 20px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero-section__container {
        padding: 50px 15px 40px;
        gap: 30px;
    }
    
    .hero-section__badge {
        font-size: 11px;
        padding: 7px 14px;
    }
    
    .hero-section__cta {
        gap: 10px;
        margin-bottom: 35px;
    }
    
    .hero-section__btn {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }
    
    .hero-section__carousel {
        height: 320px;
        border-radius: 15px;
    }
    
    .hero-section__carousel-indicators {
        bottom: 15px;
        gap: 8px;
        padding: 8px 14px;
    }
    
    .hero-section__indicator {
        width: 6px;
        height: 6px;
    }
    
    .hero-section__indicator.active {
        width: 20px;
    }
    
    .hero-section__stats {
        gap: 12px;
    }
    
    .hero-section__stat-item {
        min-width: 80px;
    }
    
    .hero-section__stat-icon {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .hero-section__scroll-text {
        font-size: 10px;
    }
    
    .hero-section__scroll-arrow {
        width: 35px;
        height: 50px;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .hero-section__carousel {
        height: 280px;
    }
    
    .hero-section__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-section__stat-item {
        width: 100%;
    }
}

/* Reduce Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .hero-section__shape,
    .hero-section__carousel-slide,
    .fade-in-up,
    .fade-in-right,
    .hero-section__scroll-indicator {
        animation: none !important;
    }
    
    .hero-section__carousel-slide {
        transition: opacity 0.3s ease;
        transform: none;
    }
    
    .hero-section__indicator.active::after {
        animation: none;
    }
}
