:root{

    --akv-primary:#c8a46b;
    --akv-dark:#111827;
    --akv-text:#374151;
    --akv-muted:#6b7280;

    --akv-bg:#f6f1ea;
    --akv-card:#fffdf9;
    --akv-border:#ebe3d9;

    --akv-radius:24px;

    --akv-shadow:
        0 10px 30px rgba(0,0,0,0.06);

}

/* =========================================================
RESET
========================================================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    margin:0;
    padding:0;

    background:var(--akv-bg);

    color:var(--akv-text);

    font-family:
        "Manrope",
        sans-serif;

    overflow-x:hidden;
}

/* =========================================================
TYPOGRAPHY
========================================================= */

h1,h2,h3,h4,h5,h6{

    margin-top:0;

    color:var(--akv-dark);

    line-height:1.2;
}

p{
    line-height:1.8;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

/* =========================================================
CONTAINER
========================================================= */

.akv-container{

    width:100%;
    max-width:1280px;

    margin:auto;

    padding-left:20px;
    padding-right:20px;
}

/* =========================================================
HEADER
========================================================= */

.akv-theme-header{

    position:fixed;

    top:0;
    left:0;
    right:0;

    z-index:99999;

    padding-top:18px;
}

/* =========================================================
NAVBAR
========================================================= */

.akv-navbar{

    width:100%;

    min-height:82px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding:
        0
        24px;

    border-radius:28px;

    background:
        rgba(17,24,39,0.38);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.12);
}

.akv-logo{

    font-size:28px;
    font-weight:800;

    letter-spacing:-1px;

    color:#ffffff;
}

/* =========================================================
DESKTOP MENU
========================================================= */

.akv-nav{

    display:flex;
    align-items:center;

    gap:32px;
}

.akv-nav a{

    position:relative;

    color:
        rgba(255,255,255,0.82);

    font-size:14px;
    font-weight:700;

    transition:.3s ease;
}

.akv-nav a:hover{

    color:#ffffff;
}

.akv-nav-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:52px;

    padding:
        0
        26px;

    border-radius:999px;

    background:var(--akv-primary);

    color:#ffffff;

    font-size:14px;
    font-weight:700;

    transition:.3s ease;
}

.akv-nav-btn:hover{

    transform:translateY(-2px);

    box-shadow:
        0 14px 28px rgba(200,164,107,0.24);
}

/* =========================================================
MOBILE TOGGLE
========================================================= */

.akv-mobile-toggle{

    width:54px;
    height:54px;

    display:none;

    align-items:center;
    justify-content:center;

    position:relative;

    border:none;

    border-radius:18px;

    background:
        rgba(255,255,255,0.12);

    border:
        1px solid rgba(255,255,255,0.14);

    backdrop-filter:blur(14px);

    cursor:pointer;

    transition:.3s ease;

    padding:0;
}

.akv-mobile-toggle:hover{

    transform:translateY(-2px);

    background:
        rgba(255,255,255,0.18);
}

.akv-mobile-toggle span{

    position:absolute;

    width:22px;
    height:2px;

    background:#ffffff;

    border-radius:999px;

    transition:.35s ease;
}

.akv-mobile-toggle span:nth-child(1){

    transform:translateY(-7px);
}

.akv-mobile-toggle span:nth-child(2){

    opacity:1;
}

.akv-mobile-toggle span:nth-child(3){

    transform:translateY(7px);
}

/* =========================================================
MOBILE TOGGLE ACTIVE
========================================================= */

.akv-mobile-toggle.active span:nth-child(1){

    transform:
        rotate(45deg);
}

.akv-mobile-toggle.active span:nth-child(2){

    opacity:0;
}

.akv-mobile-toggle.active span:nth-child(3){

    transform:
        rotate(-45deg);
}

/* =========================================================
MOBILE MENU
========================================================= */

.akv-mobile-menu{

    position:fixed;

    top:92px;
    left:16px;
    right:16px;

    z-index:9999;

    display:flex;

    flex-direction:column;

    gap:10px;

    padding:18px;

    border-radius:28px;

    background:
        rgba(255,255,255,0.78);

    border:
        1px solid rgba(255,255,255,0.25);

    backdrop-filter:blur(20px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.12);

    opacity:0;

    visibility:hidden;

    transform:
        translateY(-14px)
        scale(.96);

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;
}

.akv-mobile-menu.active{

    opacity:1;

    visibility:visible;

    transform:
        translateY(0)
        scale(1);
}

.akv-mobile-menu a{

    display:flex;
    align-items:center;

    min-height:58px;

    padding:
        0
        18px;

    border-radius:18px;

    background:
        rgba(255,255,255,0.55);

    color:var(--akv-dark);

    font-size:15px;
    font-weight:700;

    transition:.3s ease;
}

.akv-mobile-menu a:hover{

    transform:translateX(4px);

    background:#ffffff;
}

/* =========================================================
BUTTON
========================================================= */

.akv-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:60px;

    padding:
        0
        32px;

    border:none;

    border-radius:999px;

    background:var(--akv-primary);

    color:#ffffff;

    font-size:15px;
    font-weight:700;

    cursor:pointer;

    transition:.3s ease;
}

.akv-btn:hover{

    transform:translateY(-2px);

    box-shadow:
        0 14px 28px rgba(200,164,107,0.24);
}

.akv-btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:60px;

    padding:
        0
        32px;

    border-radius:999px;

    border:
        1px solid rgba(255,255,255,0.2);

    background:
        rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    color:#ffffff;

    font-size:15px;
    font-weight:700;

    transition:.3s ease;
}

.akv-btn-outline:hover{

    transform:translateY(-2px);

    background:
        rgba(255,255,255,0.14);
}

/* =========================================================
SECTION
========================================================= */

.akv-section{

    padding:
        110px
        0;
}

.akv-section-heading{

    max-width:720px;

    margin-bottom:60px;

    text-align:center;

    margin-left:auto;
    margin-right:auto;
}

.akv-section-heading span{

    display:inline-flex;
    align-items:center;

    gap:14px;

    color:var(--akv-primary);

    font-size:14px;
    font-weight:700;

    margin-bottom:16px;
}

.akv-section-heading span::before,
.akv-section-heading span::after{

    content:'';

    width:54px;
    height:1px;

    background:var(--akv-primary);
}

.akv-section-heading h2{

    font-size:58px;

    line-height:1.08;

    letter-spacing:-3px;

    margin-bottom:22px;
}

.akv-section-heading p{

    color:var(--akv-muted);

    font-size:17px;

    line-height:1.9;
}

/* =========================================================
HERO
========================================================= */

.akv-hero{

    position:relative;

    min-height:100vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.58)
        ),
        url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=2000&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
}

.akv-hero-overlay{

    position:absolute;
    inset:0;

    backdrop-filter:blur(2px);
}

.akv-hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    padding-top:120px;

    color:#ffffff;
}

.akv-badge{

    display:inline-flex;

    padding:
        12px
        20px;

    border-radius:999px;

    background:
        rgba(255,255,255,0.1);

    border:
        1px solid rgba(255,255,255,0.14);

    backdrop-filter:blur(14px);

    font-size:13px;
    font-weight:700;

    margin-bottom:28px;
}

.akv-hero-content h1{

    font-size:86px;

    line-height:1.02;

    letter-spacing:-4px;

    margin-bottom:26px;

    color:#ffffff;
}

.akv-hero-content p{

    max-width:640px;

    font-size:18px;

    line-height:1.9;

    color:
        rgba(255,255,255,0.86);

    margin-bottom:40px;
}

.akv-hero-buttons{

    display:flex;
    align-items:center;

    gap:18px;

    flex-wrap:wrap;
}

/* =========================================================
FEATURED GRID
========================================================= */

.akv-feature-grid{

    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:32px;

    align-items:stretch;
}

/* =========================================================
FOOTER
========================================================= */

.akv-theme-footer{

    position:relative;

    overflow:hidden;

    padding-top:90px;

    background:#111827;

    color:#ffffff;
}

.akv-footer-grid{

    display:grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap:60px;
}

.akv-footer-logo{

    display:inline-block;

    margin-bottom:22px;

    font-size:30px;
    font-weight:800;

    letter-spacing:-1px;

    color:#ffffff;
}

.akv-footer-brand p{

    max-width:360px;

    color:
        rgba(255,255,255,0.7);

    font-size:15px;

    line-height:1.9;
}

.akv-footer-column h4{

    margin-bottom:24px;

    color:#ffffff;

    font-size:18px;

    letter-spacing:-0.5px;
}

.akv-footer-column a,
.akv-footer-column p{

    display:block;

    margin-bottom:16px;

    color:
        rgba(255,255,255,0.7);

    font-size:15px;

    transition:.3s ease;
}

.akv-footer-column a:hover{

    color:#ffffff;

    transform:translateX(4px);
}

.akv-footer-bottom{

    margin-top:70px;

    padding:
        28px
        0;

    border-top:
        1px solid rgba(255,255,255,0.08);
}

.akv-footer-bottom p{

    margin:0;

    text-align:center;

    color:
        rgba(255,255,255,0.5);

    font-size:14px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .akv-footer-grid{

        grid-template-columns:
            repeat(2,1fr);

        gap:40px;
    }

}

@media(max-width:768px){

    .akv-theme-footer{

        padding-top:70px;
    }

    .akv-footer-grid{

        grid-template-columns:1fr;

        gap:34px;
    }

    .akv-footer-logo{

        font-size:26px;
    }

    .akv-footer-bottom{

        margin-top:50px;
    }

}

/* =========================================================
TABLET
========================================================= */

@media(max-width:991px){

    .akv-nav,
    .akv-nav-btn{

        display:none;
    }

    .akv-mobile-toggle{

        display:flex;
    }

    .akv-navbar{

        min-height:76px;

        padding:
            0
            18px;
    }

    .akv-logo{

        flex:1;

        font-size:24px;
    }

    .akv-hero-content h1{

        font-size:58px;

        letter-spacing:-2px;
    }

    .akv-feature-grid{

        grid-template-columns:
            repeat(2,1fr);
    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

    .akv-section{

        padding:
            80px
            0;
    }

    .akv-navbar{

        min-height:70px;

        border-radius:22px;
    }

    .akv-logo{

        font-size:20px;
    }

    .akv-mobile-toggle{

        width:50px;
        height:50px;

        border-radius:16px;
    }

    .akv-mobile-menu{

        top:88px;
    }

    .akv-hero{

        min-height:860px;
    }

    .akv-hero-content{

        padding-top:80px;
    }

    .akv-hero-content h1{

        font-size:48px;

        line-height:1.08;

        letter-spacing:-2px;
    }

    .akv-hero-content p{

        font-size:15px;
    }

    .akv-section-heading h2{

        font-size:38px;

        letter-spacing:-2px;
    }

    .akv-section-heading p{

        font-size:15px;
    }

    .akv-feature-grid{

        grid-template-columns:1fr;
    }

}

/* =========================================================
WHY SECTION
========================================================= */

.akv-why-section{

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,0.55)
        );
}

.akv-why-grid{

    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:30px;
}

.akv-why-card{

    position:relative;

    overflow:hidden;

    padding:38px;

    border-radius:32px;

    background:
        rgba(255,255,255,0.72);

    border:
        1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(18px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.05);

    transition:.35s ease;
}

.akv-why-card:hover{

    transform:
        translateY(-8px);

    box-shadow:
        0 28px 60px rgba(0,0,0,0.08);
}

.akv-why-icon{

    width:74px;
    height:74px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            rgba(200,164,107,0.12),
            rgba(200,164,107,0.22)
        );

    color:var(--akv-primary);

    border:
        1px solid rgba(200,164,107,0.15);

    box-shadow:
        0 14px 30px rgba(200,164,107,0.12);
}

.akv-why-icon svg{

    width:30px;
    height:30px;
}

.akv-why-card h3{

    font-size:28px;

    line-height:1.2;

    letter-spacing:-1px;

    margin-bottom:18px;
}

.akv-why-card p{

    color:var(--akv-muted);

    font-size:15px;

    line-height:1.9;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .akv-why-grid{

        grid-template-columns:1fr;
    }

}

/* =========================================================
DESTINATION
========================================================= */

.akv-destination-grid{

    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:30px;
}

.akv-destination-card{

    position:relative;

    overflow:hidden;

    height:620px;

    border-radius:34px;

    box-shadow:
        0 24px 50px rgba(0,0,0,0.10);

    transition:.4s ease;
}

.akv-destination-card:hover{

    transform:
        translateY(-10px);
}

.akv-destination-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .8s ease;
}

.akv-destination-card:hover img{

    transform:scale(1.08);
}

.akv-destination-overlay{

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.72),
            rgba(0,0,0,0.08)
        );
}

.akv-destination-content{

    position:absolute;

    left:34px;
    right:34px;
    bottom:34px;

    z-index:3;

    color:#ffffff;
}

.akv-destination-content span{

    display:inline-flex;

    margin-bottom:16px;

    padding:
        10px
        16px;

    border-radius:999px;

    background:
        rgba(255,255,255,0.12);

    border:
        1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(12px);

    font-size:12px;
    font-weight:700;

    letter-spacing:.5px;
}

.akv-destination-content h3{

    margin:0;

    color:#ffffff;

    font-size:42px;

    line-height:1.05;

    letter-spacing:-2px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .akv-destination-grid{

        display:flex;

        gap:20px;

        overflow-x:auto;

        overflow-y:hidden;

        scroll-snap-type:x mandatory;

        padding-bottom:10px;
    }

    .akv-destination-grid::-webkit-scrollbar{

        height:6px;
    }

    .akv-destination-grid::-webkit-scrollbar-thumb{

        background:
            rgba(0,0,0,0.12);

        border-radius:999px;
    }

    .akv-destination-card{

        min-width:340px;

        height:440px;

        flex-shrink:0;

        scroll-snap-align:start;
    }

}

@media(max-width:768px){

    .akv-destination-card{

        min-width:280px;

        height:360px;

        border-radius:28px;
    }

    .akv-destination-content{

        left:24px;
        right:24px;
        bottom:24px;
    }

    .akv-destination-content h3{

        font-size:32px;
    }

}

/* =========================================================
SLIDER MOBILE HINT
========================================================= */

.akv-slider-mobile-hint{

    display:none;

    align-items:center;
    justify-content:space-between;

    gap:20px;

    margin-bottom:20px;
}

.akv-slider-mobile-hint span{

    font-size:13px;
    font-weight:700;

    color:var(--akv-muted);
}

.akv-slider-arrows{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:
        rgba(200,164,107,0.12);

    color:var(--akv-primary);

    border:
        1px solid rgba(200,164,107,0.14);
}

.akv-slider-arrows svg{

    width:18px;
    height:18px;
}

/* =========================================================
DESTINATION MOBILE FIX
========================================================= */

@media(max-width:991px){

    .akv-slider-mobile-hint{

        display:flex;
    }

    .akv-destination-grid{

        display:flex;

        gap:16px;

        overflow-x:auto;

        overflow-y:hidden;

        scroll-snap-type:x mandatory;

        padding-bottom:10px;

        padding-right:20px;
    }

    .akv-destination-grid::-webkit-scrollbar{

        display:none;
    }

    .akv-destination-card{

        min-width:300px;

        width:300px;

        height:400px;

        flex-shrink:0;

        scroll-snap-align:start;
    }

}

@media(max-width:768px){

    .akv-destination-card{

        min-width:260px;

        width:260px;

        height:340px;

        border-radius:28px;
    }

    .akv-destination-content{

        left:20px;
        right:20px;
        bottom:20px;
    }

    .akv-destination-content span{

        font-size:11px;

        padding:
            8px
            14px;
    }

    .akv-destination-content h3{

        font-size:28px;

        line-height:1.1;
    }

}

/* =========================================================
TESTIMONIAL
========================================================= */

.akv-testimonial-grid{

    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:30px;
}

.akv-testimonial-card{

    padding:38px;

    border-radius:32px;

    background:
        rgba(255,255,255,0.76);

    border:
        1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(18px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.05);

    transition:.35s ease;
}

.akv-testimonial-card:hover{

    transform:
        translateY(-8px);

    box-shadow:
        0 28px 60px rgba(0,0,0,0.08);
}

.akv-testimonial-stars{

    display:flex;

    gap:6px;

    margin-bottom:22px;

    color:var(--akv-primary);
}

.akv-testimonial-stars svg{

    width:18px;
    height:18px;
}

.akv-testimonial-card p{

    color:var(--akv-text);

    font-size:16px;

    line-height:1.9;

    margin-bottom:30px;
}

.akv-testimonial-user{

    display:flex;
    align-items:center;

    gap:14px;
}

.akv-testimonial-avatar{

    width:54px;
    height:54px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #c8a46b,
            #e0c28d
        );

    color:#ffffff;

    font-size:18px;
    font-weight:800;
}

.akv-testimonial-user strong{

    display:block;

    margin-bottom:4px;

    font-size:15px;
}

.akv-testimonial-user span{

    color:var(--akv-muted);

    font-size:13px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .akv-testimonial-grid{

        display:flex;

        overflow-x:auto;

        gap:20px;

        scroll-snap-type:x mandatory;

        padding-bottom:10px;
    }

    .akv-testimonial-grid::-webkit-scrollbar{

        display:none;
    }

    .akv-testimonial-card{

        min-width:320px;

        flex-shrink:0;

        scroll-snap-align:start;
    }

}

@media(max-width:768px){

    .akv-testimonial-card{

        min-width:250px;

        width:250px;

        padding:24px;

        border-radius:26px;
    }

    .akv-testimonial-stars{

        margin-bottom:16px;
    }

    .akv-testimonial-stars svg{

        width:15px;
        height:15px;
    }

    .akv-testimonial-card p{

        font-size:14px;

        line-height:1.7;

        margin-bottom:22px;
    }

    .akv-testimonial-avatar{

        width:46px;
        height:46px;

        font-size:15px;
    }

    .akv-testimonial-user strong{

        font-size:14px;
    }

    .akv-testimonial-user span{

        font-size:12px;
    }

}

/* =========================================================
CTA SECTION
========================================================= */

.akv-cta-box{

    position:relative;

    overflow:hidden;

    min-height:620px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:
        80px
        60px;

    border-radius:40px;

    background:
        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.58)
        ),
        url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=2000&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.14);
}

.akv-cta-overlay{

    position:absolute;
    inset:0;

    backdrop-filter:blur(2px);
}

.akv-cta-content{

    position:relative;

    z-index:3;

    max-width:760px;

    text-align:center;

    color:#ffffff;
}

.akv-cta-content span{

    display:inline-flex;

    padding:
        12px
        20px;

    border-radius:999px;

    margin-bottom:28px;

    background:
        rgba(255,255,255,0.12);

    border:
        1px solid rgba(255,255,255,0.14);

    backdrop-filter:blur(14px);

    font-size:13px;
    font-weight:700;
}

.akv-cta-content h2{

    color:#ffffff;

    font-size:72px;

    line-height:1.04;

    letter-spacing:-4px;

    margin-bottom:26px;
}

.akv-cta-content p{

    max-width:620px;

    margin:
        0
        auto
        38px;

    color:
        rgba(255,255,255,0.86);

    font-size:18px;

    line-height:1.9;
}

.akv-cta-buttons{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:18px;

    flex-wrap:wrap;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .akv-cta-box{

        min-height:520px;

        padding:
            60px
            40px;
    }

    .akv-cta-content h2{

        font-size:52px;

        letter-spacing:-2px;
    }

}

@media(max-width:768px){

    .akv-cta-box{

        min-height:440px;

        padding:
            50px
            24px;

        border-radius:30px;
    }

    .akv-cta-content h2{

        font-size:38px;

        line-height:1.1;

        letter-spacing:-2px;
    }

    .akv-cta-content p{

        font-size:15px;
    }

    .akv-cta-buttons{

        flex-direction:column;
    }

    .akv-cta-buttons .akv-btn,
    .akv-cta-buttons .akv-btn-outline{

        width:100%;
    }
        
            /* =========================================================
    CTA SPACING FIX
    ========================================================= */
    
    .akv-cta-section{
    
        padding-top:20px;
        padding-bottom:110px;
    }

}

/* =========================================================
SOCIALS
========================================================= */

.akv-socials{

    display:flex;
    align-items:center;

    flex-wrap:wrap;

    gap:14px;

    margin-top:28px;
}

.akv-social{

    position:relative;

    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    border-radius:18px;

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid rgba(255,255,255,0.08);

    color:#ffffff;

    overflow:hidden;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.akv-social::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:inherit;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0)
        );

    opacity:.6;
}

.akv-social:hover{

    transform:
        translateY(-4px);

    background:var(--akv-primary);

    border-color:var(--akv-primary);

    box-shadow:
        0 14px 28px rgba(200,164,107,0.24);
}

.akv-social svg{

    position:absolute;

    top:50%;
    left:50%;

    width:20px;
    height:20px;

    transform:
        translate(-50%,-50%);

    display:block;
}

.akv-social svg{

    position:absolute;

    top:50%;
    left:50%;

    width:20px;
    height:20px;

    transform:
        translate(-50%,-50%);

    display:block;
}

/* =========================================================
PLUGIN CARD UPGRADE
SAFE STRUCTURE
========================================================= */

.akv-card{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    background:#ffffff;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.06);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.akv-card:hover{

    transform:
        translateY(-10px);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.10);
}

.akv-card-link{

    display:block;

    color:inherit;
}

.akv-thumb{

    position:relative;

    overflow:hidden;

    height:340px;

    border-radius:
        24px
        24px
        24px
        24px;
}

.akv-thumb img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .8s ease;
}

.akv-card:hover .akv-thumb img{

    transform:scale(1.08);
}

.akv-thumb-overlay{

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.58),
            rgba(0,0,0,0)
        );
}

.akv-price-badge{

    position:absolute;

    left:24px;
    bottom:24px;

    z-index:5;

    display:flex;
    flex-direction:column;

    padding:
        14px
        18px;

    border-radius:20px;

    background:
        rgba(255,255,255,0.14);

    border:
        1px solid rgba(255,255,255,0.16);

    backdrop-filter:blur(14px);

    color:#ffffff;
}

.akv-price-badge small{

    font-size:11px;

    letter-spacing:.5px;

    margin-bottom:6px;

    opacity:.82;
}

.akv-price-badge strong{

    font-size:24px;

    line-height:1;

    letter-spacing:-1px;
}

.akv-price-badge span{

    margin-top:5px;

    font-size:12px;

    opacity:.8;
}

.akv-content{

    padding:28px;
}

.akv-card-top{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:16px;

    margin-bottom:20px;
}

.akv-location{

    color:var(--akv-primary);

    font-size:13px;
    font-weight:700;
}

.akv-guest{

    padding:
        8px
        14px;

    border-radius:999px;

    background:#f8f5ef;

    color:var(--akv-muted);

    font-size:12px;
    font-weight:700;
}

.akv-content h3{

    font-size:30px;

    line-height:1.15;

    letter-spacing:-1px;

    margin-bottom:28px;

    color:var(--akv-dark);
}

.akv-card-bottom{

    display:flex;
    align-items:center;

    gap:18px;
}

.akv-card-line{

    flex:1;

    height:1px;

    background:
        linear-gradient(
            to right,
            rgba(200,164,107,0.5),
            rgba(200,164,107,0)
        );
}

.akv-button{

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:150px;

    height:52px;

    padding:
        0
        22px;

    border-radius:18px;

    background:#f8f5ef;

    color:var(--akv-dark);

    font-size:14px;
    font-weight:700;

    transition:.3s ease;
}

.akv-card:hover .akv-button{

    background:var(--akv-primary);

    color:#ffffff;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px){

    .akv-thumb{

        height:280px;
    }

    .akv-content{

        padding:22px;
    }

    .akv-content h3{

        font-size:24px;
    }

    .akv-card-top{

        flex-wrap:wrap;
    }

    .akv-button{

        width:100%;
    }

}

/* =========================================================
ARCHIVE FILTER
SAFE AJAX STRUCTURE
========================================================= */

.akv-listing-wrapper{

    position:relative;

    margin-top:-120px;

    z-index:20;
}

.akv-filter-wrapper{

    position:relative;

    overflow:hidden;

    margin-bottom:60px;

    padding:40px;

    border-radius:36px;

    background:
        rgba(255,255,255,0.82);

    border:
        1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(20px);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.08);
}

.akv-filter-heading{

    margin-bottom:34px;
}

.akv-filter-heading h3{

    font-size:42px;

    line-height:1.1;

    letter-spacing:-2px;

    margin-bottom:14px;

    color:var(--akv-dark);
}

.akv-filter-heading p{

    max-width:620px;

    color:var(--akv-muted);

    font-size:16px;

    line-height:1.9;
}

.akv-filter-box{

    display:grid;

    grid-template-columns:
        repeat(5,minmax(0,1fr));

    gap:18px;
}

.akv-filter-box input,
.akv-filter-box select{

    width:100%;

    height:64px;

    padding:
        0
        22px;

    border:none;

    outline:none;

    border-radius:20px;

    background:#f8f5ef;

    color:var(--akv-dark);

    font-size:14px;
    font-weight:600;

    font-family:
        "Manrope",
        sans-serif;

    transition:.3s ease;
}

.akv-filter-box input:focus,
.akv-filter-box select:focus{

    background:#ffffff;

    box-shadow:
        0 0 0 3px rgba(200,164,107,0.14);
}

.akv-filter-box input::placeholder{

    color:#9ca3af;
}

/* =========================================================
GRID
========================================================= */

.akv-grid{

    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:30px;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:991px){

    .akv-listing-wrapper{

        margin-top:-90px;
    }

    .akv-filter-wrapper{

        padding:28px;
    }

    .akv-filter-heading h3{

        font-size:34px;
    }

    .akv-filter-box{

        grid-template-columns:
            repeat(2,1fr);
    }

    .akv-grid{

        grid-template-columns:
            repeat(2,1fr);
    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

    .akv-listing-wrapper{

        margin-top:-70px;
    }

    .akv-filter-wrapper{

        padding:22px;

        border-radius:28px;
    }

    .akv-filter-heading{

        margin-bottom:24px;
    }

    .akv-filter-heading h3{

        font-size:28px;

        letter-spacing:-1px;
    }

    .akv-filter-heading p{

        font-size:14px;
    }

    .akv-filter-box{

        grid-template-columns:1fr;

        gap:14px;
    }

    .akv-filter-box input,
    .akv-filter-box select{

        height:58px;

        border-radius:18px;

        font-size:14px;
    }

    .akv-grid{

        grid-template-columns:1fr;

        gap:24px;
    }
    
    .akv-feature-grid .akv-card{
    height:100%;
}

.akv-feature-grid .akv-card-link{
    height:100%;
    display:flex;
    flex-direction:column;
}

.akv-feature-grid .akv-card-content{
    flex:1;
    display:flex;
    flex-direction:column;
}

.akv-feature-grid .akv-card-footer{
    margin-top:auto;
}

@media(max-width:1024px){

    .akv-feature-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .akv-feature-grid{
        grid-template-columns:1fr;
    }

}

}

.akv-more-villa-wrap{

    display:flex;

    justify-content:center;

    margin-top:48px;
}

.akv-more-villa-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 36px;

    border-radius:999px;

    background:#111827;

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    transition:all .25s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.12);
}

.akv-more-villa-btn:hover{

    transform:translateY(-2px);

    background:#1f2937;

    box-shadow:
        0 16px 40px rgba(0,0,0,.18);
}

/*
========================================
PAGE
========================================
*/

.akv-page{

    padding-top:140px;

    padding-bottom:80px;
}

.akv-page-hero{

    margin-bottom:48px;
}

.akv-page-title{

    font-size:52px;

    line-height:1.1;

    font-weight:800;

    color:#111827;

    margin:0;
}

.akv-page-wrapper{

    background:#ffffff;

    border-radius:32px;

    padding:48px;

    box-shadow:
        0 10px 40px rgba(0,0,0,.06);
}

.akv-page-wrapper h2{

    font-size:32px;

    margin-top:48px;

    margin-bottom:20px;

    color:#111827;
}

.akv-page-wrapper p{

    font-size:17px;

    line-height:1.9;

    color:#4b5563;

    margin-bottom:24px;
}

.akv-page-wrapper ul{

    padding-left:20px;

    color:#4b5563;

    line-height:1.9;
}

.akv-page-wrapper li{

    margin-bottom:12px;
}

@media(max-width:768px){

    .akv-page{

        padding-top:120px;
    }

    .akv-page-title{

        font-size:38px;
    }

    .akv-page-wrapper{

        padding:28px;
    }

}