/*=========================================
HERO
=========================================*/
.hero-section{
    position:relative;
    overflow:hidden;
}

.heroSwiper{
    width:100%;
    height:100vh;
}

.heroSwiper .swiper-slide{
    position:relative;
    display:flex;
    align-items:center;
    min-height:100vh;
}
/*=========================================
HERO BACKGROUND
=========================================*/
.hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
    overflow:hidden;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.72) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.15) 100%
        );
    z-index:2;
}

.hero-section .container-custom{
    position:relative;
    z-index:5;
}

.hero-content{
    color:#fff;
    max-width:650px;

}

.hero-subtitle{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--secondary);
    font-size:15px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:25px;
}

.hero-subtitle::before{
    content:"";
    width:60px;
    height:2px;
    background:var(--secondary);
}

.hero-title{
    font-size:clamp(3rem,7vw,5.8rem);
    line-height:1.05;
    margin-bottom:25px;
    color:#fff;
    font-weight:700;

}

.hero-description{
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.85);
    max-width:560px;
    margin-bottom:45px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

@keyframes heroZoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}
/*=========================================
HERO IMAGE
=========================================*/
.hero-image-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-main-image{
    width:100%;
    max-width:560px;
    border-radius:30px;
    object-fit:cover;
    box-shadow:
0 40px 80px rgba(0,0,0,.18),
0 15px 30px rgba(0,0,0,.12);
    position:relative;
    z-index:5;
    transition:.5s;
}

.hero-main-image:hover{
    transform:translateY(-10px);
}

.hero-image-wrapper::before{
    content:"";
    position:absolute;
    width:92%;
    height:92%;
    border:3px solid rgba(212,175,55,.6);
    border-radius:35px;
    transform:rotate(-4deg);
    z-index:1;
}

.hero-card{
    position:absolute;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
    padding:18px 28px;
    border-radius:16px;
    color:#fff;
    font-weight:600;
    border:1px solid rgba(255,255,255,.25);
    box-shadow:
        0 10px 30px rgba(0,0,0,.18);
    z-index:10;
    animation:floatCard 4s ease-in-out infinite;
}

.card-one{
    top:8%;
    left:-30px;
}

.card-two{
    bottom:15%;
    right:-25px;
}

.card-three{
    top:55%;
    left:-50px;
}

@keyframes floatCard{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}

@media (max-width:991px){
    .hero-section{
        text-align:center;
    }
    .hero-content{
        margin:auto;
    }
    .hero-title{
        font-size:3rem;
    }
    .hero-buttons{
        justify-content:center;
    }
    .hero-image-wrapper{
        margin-top:60px;
    }
    .hero-card{
        display:none;
    }
}
.scroll-indicator{
    position:absolute;
    left:50%;
    bottom:35px;
    transform:translateX(-50%);
}

.scroll-indicator span{
    display:block;
    width:2px;
    height:70px;
    background:rgba(255,255,255,.35);
    position:relative;
}

.scroll-indicator span::after{
    content:"";
    position:absolute;
    width:100%;
    height:18px;
    background:var(--secondary);
    animation:scrollDown 2s infinite;
}

@keyframes scrollDown{
    from{
        top:0;
    }
    to{
        top:52px;
    }
}
/*=========================================
DECORATIVE CIRCLES
=========================================*/
.hero-circle{
    position:absolute;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    filter:blur(5px);
}

.hero-circle-1{
    width:220px;
    height:220px;
    top:-60px;
    left:-70px;
}

.hero-circle-2{
    width:150px;
    height:150px;
    bottom:-30px;
    right:-40px;
}

.hero-badge{
    position:absolute;
    top:35px;
    right:-30px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(16px);
    padding:14px 24px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    border:1px solid rgba(255,255,255,.2);
    z-index:20;
}

.hero-image-wrapper::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(212,175,55,.18);
    border-radius:50%;
    filter:blur(90px);
    z-index:0;
}
.hero-card:hover{
    transform:translateY(-10px);
}