/* =========================================================
SINGLE PAGE
========================================================= */

.akv-single-hero{

    padding:
        150px
        0
        70px;

    background:
        linear-gradient(
            180deg,
            #f8f5ef 0%,
            #ffffff 100%
        );
}

/* =========================================================
CONTAINER
========================================================= */

.akv-container{

    width:100%;

    max-width:1400px;

    margin:0 auto;

    padding:
        0
        24px;
}

/* =========================================================
HEADING
========================================================= */

.akv-single-heading{

    max-width:820px;
}

.akv-single-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:
        0
        18px;

    border-radius:999px;

    background:
        rgba(198,165,107,0.12);

    color:#9a7a46;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;
}

.akv-single-heading h1{

    margin:
        22px
        0
        18px;

    color:#111827;

    font-size:48px;

    line-height:1.08;

    letter-spacing:-2px;
}

.akv-single-meta{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;
}

.akv-single-location,
.akv-single-guest,
.akv-single-rating{

    display:flex;

    align-items:center;

    justify-content:center;

    height:38px;

    padding:
        0
        16px;

    border-radius:999px;

    background:#ffffff;

    color:#6b7280;

    font-size:12px;

    font-weight:700;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.04);
}

.akv-single-rating{

    background:
        rgba(198,165,107,0.12);

    color:#9a7a46;
}

/* =========================================================
SECTION
========================================================= */

.akv-single-section{

    padding-bottom:100px;
}

.akv-single-grid{

    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        390px;

    gap:28px;

    align-items:start;
}

/* =========================================================
CARD
========================================================= */

.akv-single-card{

    position:relative;

    overflow:hidden;

    border-radius:32px;

    background:#ffffff;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.06);
}

/* =========================================================
MAIN IMAGE
========================================================= */

.akv-main-image-wrap{

    position:relative;

    overflow:hidden;
}

.akv-main-image{

    width:100%;

    height:520px;

    object-fit:cover;

    display:block;

    transition:
        transform .8s ease,
        opacity .3s ease;
}

.akv-single-card:hover .akv-main-image{

    transform:scale(1.03);
}

/* =========================================================
OVERLAY
========================================================= */

.akv-main-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.45),
            rgba(0,0,0,0)
        );
}

/* =========================================================
IMAGE BADGE
========================================================= */

.akv-image-badge{

    position:absolute;

    left:24px;

    bottom:24px;

    z-index:5;

    display:flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:
        0
        18px;

    border-radius:999px;

    background:
        rgba(255,255,255,0.14);

    border:
        1px solid rgba(255,255,255,0.18);

    backdrop-filter:blur(10px);

    color:#ffffff;

    font-size:12px;

    font-weight:700;
}

/* =========================================================
THUMBNAILS
========================================================= */

.akv-thumbnails{

    position:relative;

    z-index:5;

    display:flex;

    gap:12px;

    overflow-x:auto;

    padding:
        20px
        20px
        0;

    margin-top:-60px;

    scrollbar-width:none;
}

.akv-thumbnails::-webkit-scrollbar{

    display:none;
}

.akv-thumbnails img{

    flex-shrink:0;

    width:88px;

    height:68px;

    object-fit:cover;

    border-radius:16px;

    cursor:pointer;

    opacity:.6;

    border:
        2px solid transparent;

    transition:
        .3s ease;
}

.akv-thumbnails img:hover,
.akv-thumbnails img.active{

    opacity:1;

    transform:
        translateY(-3px);

    border:
        2px solid rgba(255,255,255,0.8);

    box-shadow:
        0 12px 24px rgba(0,0,0,0.14);
}

/* =========================================================
CONTENT
========================================================= */

.akv-single-content{

    padding:
        16px
        28px
        28px;
}

/* =========================================================
LOCATION
========================================================= */

.akv-single-location{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-bottom:20px;
}

.akv-single-location svg{

    width:16px;

    height:16px;

    stroke:currentColor;
}

/* =========================================================
TITLE
========================================================= */

.akv-single-title{

    margin-bottom:14px;

    color:#111827;

    font-size:40px;

    line-height:1.1;

    font-weight:800;

    letter-spacing:-1.5px;
}

/* =========================================================
PRICE
========================================================= */

.akv-single-price-label{

    margin-bottom:10px;

    color:#8a8a8a;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;
}

.akv-single-price{

    display:flex;

    align-items:end;

    gap:10px;

    margin-bottom:28px;
}

.akv-single-price strong{

    color:#111827;

    font-size:34px;

    line-height:1;

    letter-spacing:-2px;
}

.akv-single-price span{

    margin-bottom:4px;

    color:#8a8a8a;

    font-size:13px;

    font-weight:600;
}

/* =========================================================
DIVIDER
========================================================= */

.akv-single-divider{

    width:100%;

    height:1px;

    margin:
        24px
        0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.08),
            transparent
        );
}

/* =========================================================
FEATURE GRID
========================================================= */

.akv-single-feature-row{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:12px;

    margin-bottom:24px;
}

.akv-single-feature{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    min-height:100px;

    padding:18px;

    border-radius:22px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f5ef 100%
        );

    border:
        1px solid rgba(0,0,0,0.04);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.akv-single-feature:hover{

    transform:
        translateY(-4px);

    box-shadow:
        0 16px 32px rgba(0,0,0,0.06);
}

.akv-single-feature svg{

    width:22px;

    height:22px;

    margin-bottom:10px;

    stroke:#c6a56b;
}

.akv-single-feature strong{

    margin-bottom:2px;

    color:#111827;

    font-size:13px;

    font-weight:700;
}

.akv-single-feature span{

    color:#8a8a8a;

    font-size:11px;

    font-weight:600;
}

/* =========================================================
SECTION BOX
========================================================= */

.akv-single-section-box{

    margin-top:30px;
}

.akv-single-section-title{

    margin-bottom:18px;

    color:#111827;

    font-size:12px;

    font-weight:800;

    letter-spacing:2px;
}

/* =========================================================
DESCRIPTION
========================================================= */

.akv-single-description{

    color:#4b5563;

    font-size:14px;

    line-height:1.9;
}

/* =========================================================
BOOKING
========================================================= */

#akuvilla-booking{

    position:sticky;

    top:110px;

    overflow:hidden;

    padding:26px;

    border-radius:28px;

    background:
        rgba(255,255,255,0.82);

    border:
        1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(18px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.06);
}

/* =========================================================
BOOKING HEADER
========================================================= */

#akuvilla-booking .akv-booking-header{

    margin-bottom:24px;
}

#akuvilla-booking .akv-booking-badge{

    display:inline-flex;

    padding:
        8px
        16px;

    border-radius:999px;

    background:
        rgba(198,165,107,0.12);

    color:#9a7a46;

    font-size:10px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:14px;
}

#akuvilla-booking .akv-booking-header h2{

    margin:
        0
        0
        10px;

    color:#111827;

    font-size:26px;

    line-height:1.1;

    letter-spacing:-1px;
}

#akuvilla-booking .akv-booking-header p{

    margin:0;

    color:#6b7280;

    font-size:13px;

    line-height:1.7;
}

/* =========================================================
FORM
========================================================= */

#akuvilla-booking .akv-booking-form{

    display:flex;

    flex-direction:column;

    gap:16px;
}

#akuvilla-booking .akv-booking-row{

    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:14px;
}

#akuvilla-booking .akv-form-group{

    display:flex;

    flex-direction:column;
}

#akuvilla-booking .akv-form-group label{

    margin-bottom:8px;

    color:#374151;

    font-size:12px;

    font-weight:700;
}

#akuvilla-booking .akv-form-group input{

    width:100%;

    height:52px;

    padding:
        0
        16px;

    border:none;

    border-radius:16px;

    background:#f8f5ef;

    outline:none;

    color:#111827;

    font-size:13px;

    font-weight:600;

    transition:.25s ease;
}

#akuvilla-booking .akv-form-group input:focus{

    background:#ffffff;

    box-shadow:
        0 0 0 4px rgba(198,165,107,0.14);
}

/* =========================================================
TOTAL
========================================================= */

#akuvilla-booking #total_box{

    margin:
        22px
        0;

    padding:24px;

    border-radius:22px;

    background:
        linear-gradient(
            135deg,
            #c6a56b,
            #e0c28d
        );

    color:#ffffff;

    box-shadow:
        0 18px 36px rgba(198,165,107,0.20);
}

#akuvilla-booking #total_box small{

    display:block;

    margin-bottom:8px;

    font-size:12px;

    opacity:.85;
}

#akuvilla-booking #total_price{

    font-size:30px;

    font-weight:800;

    line-height:1;

    letter-spacing:-2px;
}

#akuvilla-booking #total_night{

    margin-top:8px;

    font-size:13px;

    font-weight:600;

    opacity:.9;
}

/* =========================================================
BUTTON
========================================================= */

#akuvilla-booking #booking_button{

    width:100%;

    height:54px;

    border:none;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #1f2937
        );

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    cursor:pointer;

    transition:.3s ease;
}

#akuvilla-booking #booking_button:hover{

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 36px rgba(17,24,39,0.18);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .akv-single-grid{

        grid-template-columns:1fr;
    }

    #akuvilla-booking{

        position:relative;

        top:auto;
    }

}

@media(max-width:768px){

    .akv-container{

        padding:
            0
            18px;
    }

    .akv-single-hero{

        padding:
            120px
            0
            60px;
    }

    .akv-single-heading h1{

        font-size:30px;

        line-height:1.12;

        letter-spacing:-1px;
    }

    .akv-single-section{

        padding-bottom:70px;
    }

    .akv-single-grid{

        gap:22px;
    }

    .akv-main-image{

        height:260px;
    }

    .akv-image-badge{

        left:16px;

        bottom:16px;

        height:36px;

        padding:
            0
            14px;

        font-size:11px;
    }

    .akv-thumbnails{

        margin-top:-40px;

        padding:
            16px
            16px
            0;
    }

    .akv-thumbnails img{

        width:70px;

        height:56px;

        border-radius:14px;
    }

    .akv-single-content{

        padding:18px;
    }

    .akv-single-title{

        font-size:24px;

        line-height:1.18;

        letter-spacing:-1px;
    }

    .akv-single-price{

        margin-bottom:24px;
    }

    .akv-single-price strong{

        font-size:26px;
    }

    .akv-single-feature-row{

        grid-template-columns:
            repeat(2,1fr);

        gap:10px;
    }

    .akv-single-feature{

        min-height:82px;

        padding:14px;

        border-radius:18px;
    }

    .akv-single-feature svg{

        width:18px;

        height:18px;

        margin-bottom:6px;
    }

    .akv-single-feature strong{

        font-size:11px;
    }

    .akv-single-feature span{

        font-size:10px;
    }

    .akv-single-description{

        font-size:13px;

        line-height:1.8;
    }

    #akuvilla-booking{

        padding:20px;

        border-radius:22px;
    }

    #akuvilla-booking .akv-booking-header h2{

        font-size:22px;
    }

    #akuvilla-booking .akv-booking-row{

        grid-template-columns:1fr;
    }

    #akuvilla-booking #total_box{

        padding:22px;
    }

    #akuvilla-booking #total_price{

        font-size:24px;
    }

}