/* =========================================================
   NEW HERO / LUXURY SPLIT SLIDER
========================================================= */
.hero-modern{
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 10%, rgba(217,164,65,.10), transparent 24%),
        linear-gradient(180deg, #0c1118 0%, #101827 100%);
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
}

.hero-modern .hero-slider{
    position: relative;
    min-height: 92vh;
}

.hero-modern .hero-slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
    display: flex;
    align-items: center;
}

.hero-modern .hero-slide.active{
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg-soft{
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(30px) brightness(.20) saturate(1.1);
    transform: scale(1.18);
    opacity: .45;
}

.hero-modern .hero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 82% 25%, rgba(217,164,65,.10), transparent 22%),
        linear-gradient(90deg, rgba(10,14,22,.82) 0%, rgba(10,14,22,.68) 45%, rgba(10,14,22,.78) 100%);
    z-index:1;
}

.hero-grid{
    position: relative;
    z-index: 3;
    display: grid;
    gap: 34px;
    align-items: center;
    height: 72vh;
    padding-top: 30px;
    padding-bottom: 100px;
}


.hero-pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:11px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    font-size:12px;
    font-weight:800;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.14);
}



.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.hero-actions .btn{
    min-width: 210px;
}

.btn-hero-secondary{
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover{
    transform: translateY(-3px);
    background: rgba(255,255,255,.14);
}

.hero-mini-stats{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-mini-stat{
    min-width: 150px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-mini-stat strong{
    display:block;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

.hero-mini-stat span{
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.72);
}



.hero-visual-card{
    position: relative;
    border-radius: 34px;
    padding: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0,0,0,.20);
}

.hero-main-image{
    border-radius: 28px;
    overflow: hidden;
    min-height: 460px;
    max-height: 460px;
    background: #111827;
}

.hero-main-image img{
    width: 100%;
    height: 100%;
    min-height: 560px;
    max-height: 660px;
    object-fit: cover;
    display: block;
}

.hero-badge-card{
    position: absolute;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 22px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
}


.hero-badge-list{
    display:grid;
    gap:10px;
}

.hero-badge-list div{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    font-weight:800;
    color:#fff;
}

.hero-badge-list i{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(217,164,65,.18);
    color:#fff;
    font-size: 11px;
}

/* controls */
.hero-controls{
    position:absolute;
    left:-30px;
    bottom:50px;
    width:100%;
    z-index:4;
}

.hero-controls-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
}

.hero-dots{
    display:flex;
    align-items:center;
    gap:8px;
}

.hero-dot{
    width:10px;
    height:10px;
    border-radius:999px;
    background:rgba(255,255,255,.35);
    border:none;
    cursor:pointer;
    transition:all .35s ease;
}

.hero-dot.active{
    width:36px;
    background:linear-gradient(90deg,var(--gold),var(--gold-2));
    box-shadow:0 8px 20px rgba(217,164,65,.30);
}

.hero-nav{
    display:flex;
    gap:10px;
}

.hero-arrow{
    width:52px;
    height:52px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.08);
    color:#fff;
    cursor:pointer;
    font-size:16px;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    transition:all .35s ease;
}

.hero-arrow:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,.14);
}

@media (max-width: 768px){
    .hero-modern{
        min-height: auto;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .hero-modern .hero-slider,
    .hero-modern .hero-slide{
        min-height: 500px;
    }

    .hero-grid{
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 30px;
        padding-bottom: 2px;
        gap: 20px;
    }




    .hero-actions{
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn{
        width: 100%;
        min-width: 100%;
    }

    .hero-mini-stats{
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-main-image,
    .hero-main-image img{
        min-height: 320px;
        max-height: 360px;
    }

    .hero-visual-card{
        border-radius: 24px;
        padding: 10px;
    }

    .hero-main-image{
        border-radius: 18px;
    }

    .badge-top,
    .badge-bottom{
        position: static;
        margin-top: 12px;
        max-width: 100%;
        min-width: 100%;
    }

    .hero-controls-inner{
        justify-content: center;
    }

    .hero-nav{
        display:none;
    }
}

/* responsive */
@media (max-width: 1200px){
    .hero-grid{
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 120px;
    }

    .hero-right{
        order: -1;
    }

    .hero-main-image,
    .hero-main-image img{
        min-height: 420px;
        max-height: 520px;
    }

    .badge-top{
        left: 16px;
        top: 16px;
    }

    .badge-bottom{
        right: 16px;
        bottom: 16px;
    }
}


.hero{
    min-height:auto;
    border-bottom-left-radius:24px;
    border-bottom-right-radius:24px;
}

.hero-slider,
.hero-slide{
    min-height:84svh;
}

.hero-content{
    padding-top:120px;
    padding-bottom:100px;
}

.hero-float-card{
    right:16px;
    bottom:80px;
    width:min(320px, calc(100% - 24px));
}

@media (max-width: 768px) {
    .hero-slider,
    .hero-slide {
        min-height: 80svh;
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 90px;
        width: 100%;
    }

    .hero-content h1 {
        letter-spacing: -1px;
        font-size: clamp(30px, 8vw, 46px);
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-actions {
        display: grid;
        grid-template-columns:1fr;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 100%;
    }

    .hero-controls-inner {
        justify-content: center;
    }

    .hero-nav {
        display: none
    }

    .hero-stats {
        grid-template-columns:1fr;
    }

    .hero-float-card {
        position: static;
        width: 100%;
        margin-top: 18px;
        border-radius: 22px;
    }
}
