/* =========================================================
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;
}

/* =========================================================
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;
}

/* =========================================================
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);
}

/* =========================================================
BOOKING CARD
========================================================= */

#akuvilla-booking{

    position:sticky;

    top:110px;

    overflow:hidden;

    padding:28px;

    border-radius:30px;

    background:
        rgba(255,255,255,0.88);

    border:
        1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(18px);

    box-shadow:
        0 24px 60px rgba(0,0,0,0.08);
}

/* =========================================================
BOOKING HEADER
========================================================= */

#akuvilla-booking .akv-booking-header{

    margin-bottom:24px;
}

#akuvilla-booking .akv-booking-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    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
        12px;

    color:#111827;

    font-size:28px;

    line-height:1.1;

    letter-spacing:-1px;
}

#akuvilla-booking .akv-booking-header p{

    margin:0;

    color:#6b7280;

    font-size:13px;

    line-height:1.8;
}

/* =========================================================
CALENDAR LEGEND
========================================================= */

.akv-calendar-legend{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-bottom:24px;

    padding:18px;

    border-radius:20px;

    background:#f9fafb;

    border:
        1px solid rgba(0,0,0,0.05);
}

.akv-legend-item{

    display:flex;

    align-items:center;

    gap:12px;
}

.akv-legend-color{

    width:18px;

    height:18px;

    border-radius:50%;
}

.akv-legend-yellow{

    background:#facc15;
}

.akv-legend-red{

    background:#dc2626;
}

.akv-legend-item small{

    color:#374151;

    font-size:12px;

    font-weight:700;
}

/* =========================================================
ALERT
========================================================= */

#booking_alert{

    margin-bottom:20px;
}

.akv-alert{

    padding:18px;

    border-radius:18px;

    line-height:1.8;
}

.akv-alert strong{

    display:block;

    margin-bottom:6px;

    font-size:14px;
}

.akv-alert p{

    margin:0;

    font-size:13px;
}

.akv-alert-warning{

    background:#fef3c7;

    color:#92400e;
}

.akv-alert-success{

    background:#dcfce7;

    color:#166534;
}

.akv-alert-error{

    background:#fee2e2;

    color:#991b1b;
}

/* =========================================================
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:54px;

    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);
}

/* =========================================================
FLATPICKR CUSTOM
========================================================= */

.flatpickr-day{

    border-radius:14px !important;

    font-weight:700;
}

.flatpickr-day:hover{

    background:#111827 !important;

    color:#ffffff !important;
}

.flatpickr-disabled{

    opacity:1 !important;

    cursor:not-allowed !important;
}

/* =========================================================
TOTAL BOX
========================================================= */

#akuvilla-booking #total_box{

    margin:
        24px
        0;

    padding:24px;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            #c6a56b,
            #e0c28d
        );

    color:#ffffff;

    box-shadow:
        0 18px 40px rgba(198,165,107,0.22);
}

#akuvilla-booking #total_box small{

    display:block;

    margin-bottom:10px;

    font-size:12px;

    opacity:.9;
}

#akuvilla-booking #total_price{

    font-size:32px;

    font-weight:800;

    line-height:1;

    letter-spacing:-2px;
}

#akuvilla-booking #total_night{

    margin-top:10px;

    font-size:13px;

    font-weight:600;

    opacity:.95;
}

/* =========================================================
BUTTON
========================================================= */

#akuvilla-booking #booking_button{

    width:100%;

    height:56px;

    border:none;

    border-radius:18px;

    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);
}

#akuvilla-booking #booking_button:disabled{

    opacity:.7;

    cursor:not-allowed;

    transform:none;
}

/* =========================================================
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:32px;

        line-height:1.15;
    }

    .akv-single-grid{

        gap:24px;
    }

    .akv-main-image{

        height:260px;
    }

    .akv-thumbnails{

        margin-top:-40px;
    }

    .akv-single-feature-row{

        grid-template-columns:
            repeat(2,1fr);
    }

    #akuvilla-booking{

        padding:22px;

        border-radius:24px;
    }

    #akuvilla-booking .akv-booking-row{

        grid-template-columns:1fr;
    }

    #akuvilla-booking #total_price{

        font-size:26px;
    }

}

/* =========================================================
SINGLE PAGE PREMIUM REFINED
TIDAK MENGUBAH STRUKTUR HTML
========================================================= */

.akv-single-section{

    padding:
        42px
        0
        100px;

    background:
        linear-gradient(
            180deg,
            #f8f6f2 0%,
            #ffffff 100%
        );
}

/* =========================================================
GRID
========================================================= */

.akv-single-grid{

    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        360px;

    gap:26px;

    align-items:start;
}

/* =========================================================
MAIN CARD
========================================================= */

.akv-single-card{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    background:#ffffff;

    border:
        1px solid rgba(15,23,42,0.05);

    box-shadow:
        0 30px 80px rgba(15,23,42,0.06);
}

/* =========================================================
IMAGE
========================================================= */

.akv-main-image-wrap{

    position:relative;

    overflow:hidden;

    border-radius:
        34px
        34px
        0
        0;
}

.akv-main-image{

    width:100%;

    height:540px;

    object-fit:cover;

    object-position:center;

    display:block;

    transition:
        transform .7s ease;
}

.akv-single-card:hover .akv-main-image{

    transform:scale(1.025);
}

/* =========================================================
OVERLAY
========================================================= */

.akv-main-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.42),
            rgba(0,0,0,0.02)
        );
}

/* =========================================================
BADGE
========================================================= */

.akv-image-badge{

    position:absolute;

    left:24px;

    bottom:24px;

    z-index:5;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:
        0
        18px;

    border-radius:999px;

    background:
        rgba(255,255,255,0.16);

    border:
        1px solid rgba(255,255,255,0.2);

    backdrop-filter:blur(18px);

    color:#ffffff;

    font-size:12px;

    font-weight:700;

    letter-spacing:.2px;
}

/* =========================================================
THUMBNAILS
========================================================= */

.akv-thumbnails{

    position:relative;

    z-index:10;

    display:flex;

    align-items:center;

    gap:12px;

    overflow-x:auto;

    padding:
        0
        26px;

    margin-top:-38px;

    scrollbar-width:none;
}

.akv-thumbnails::-webkit-scrollbar{

    display:none;
}

.akv-thumbnails img{

    flex-shrink:0;

    width:76px;

    height:62px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    background:#ffffff;

    border:
        3px solid rgba(255,255,255,0.92);

    box-shadow:
        0 12px 24px rgba(0,0,0,0.16);

    transition:
        all .25s ease;
}

.akv-thumbnails img:hover,
.akv-thumbnails img.active{

    transform:
        translateY(-4px);

    opacity:1;
}

/* =========================================================
CONTENT
========================================================= */

.akv-single-content{

    padding:
        28px
        34px
        36px;
}

/* =========================================================
LOCATION
========================================================= */

.akv-single-location{

    display:inline-flex;

    align-items:center;

    gap:8px;

    height:38px;

    padding:
        0
        16px;

    border-radius:999px;

    background:
        rgba(198,165,107,0.1);

    color:#8b6b38;

    font-size:12px;

    font-weight:700;

    margin-bottom:18px;
}

.akv-single-location svg{

    width:15px;

    height:15px;

    stroke:#c6a56b;

    flex-shrink:0;
}

/* =========================================================
TITLE
========================================================= */

.akv-single-title{

    margin:
        0
        0
        18px;

    color:#0f172a;

    font-size:48px;

    line-height:1.05;

    letter-spacing:-2.4px;

    font-weight:800;

    max-width:900px;
}

/* =========================================================
PRICE
========================================================= */

.akv-single-price-label{

    margin-bottom:10px;

    color:#a27d45;

    font-size:11px;

    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;
}

.akv-single-price{

    display:flex;

    align-items:end;

    gap:10px;

    margin-bottom:34px;
}

.akv-single-price strong{

    color:#0f172a;

    font-size:54px;

    line-height:1;

    font-weight:800;

    letter-spacing:-3px;
}

.akv-single-price span{

    margin-bottom:8px;

    color:#6b7280;

    font-size:15px;

    font-weight:600;
}

/* =========================================================
DIVIDER
========================================================= */

.akv-single-divider{

    width:100%;

    height:1px;

    margin-bottom:30px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(15,23,42,0.08),
            transparent
        );
}

/* =========================================================
FEATURE GRID
========================================================= */

.akv-single-feature-row{

    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(160px,1fr)
        );

    gap:18px;

    margin-bottom:34px;
}

/* =========================================================
FEATURE CARD
========================================================= */

.akv-single-feature{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    min-height:142px;

    padding:24px;

    border-radius:28px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8f5ef
        );

    border:
        1px solid rgba(15,23,42,0.05);

    box-shadow:
        0 10px 26px rgba(15,23,42,0.04);

    transition:
        all .28s ease;
}

.akv-single-feature:hover{

    transform:
        translateY(-6px);

    box-shadow:
        0 18px 36px rgba(15,23,42,0.08);
}

/* =========================================================
SVG
========================================================= */

.akv-single-feature svg{

    width:34px;

    height:34px;

    margin-bottom:16px;

    stroke:#c6a56b;

    fill:none;
}

/* =========================================================
FEATURE TEXT
========================================================= */

.akv-single-feature strong{

    color:#111827;

    font-size:26px;

    line-height:1;

    font-weight:800;

    letter-spacing:-1px;
}

.akv-single-feature span{

    margin-top:10px;

    color:#6b7280;

    font-size:13px;

    font-weight:600;
}

/* =========================================================
SECTION BOX
========================================================= */

.akv-single-section-box{

    margin-top:30px;

    padding:32px;

    border-radius:30px;

    background:#ffffff;

    border:
        1px solid rgba(15,23,42,0.05);

    box-shadow:
        0 14px 36px rgba(15,23,42,0.04);
}

/* =========================================================
SECTION TITLE
========================================================= */

.akv-single-section-title{

    margin-bottom:22px;

    color:#9a7a46;

    font-size:12px;

    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;
}

/* =========================================================
DESCRIPTION
========================================================= */

.akv-single-description{

    color:#4b5563;

    font-size:15px;

    line-height:2;
}

.akv-single-description p{

    margin-bottom:18px;
}

/* =========================================================
FACILITY TAGS
========================================================= */

.akv-facility-tags{

    display:flex;

    flex-wrap:wrap;

    gap:14px;
}

/* =========================================================
FACILITY TAG
========================================================= */

.akv-facility-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-height:44px;

    padding:
        0
        18px;

    border-radius:999px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f7f3ec
        );

    border:
        1px solid rgba(198,165,107,0.18);

    color:#374151;

    font-size:13px;

    font-weight:700;

    letter-spacing:.2px;

    transition:
        all .25s ease;
}

.akv-facility-tag:hover{

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 24px rgba(15,23,42,0.06);

    border-color:
        rgba(198,165,107,0.4);
}

/* =========================================================
BOOKING SIDEBAR
========================================================= */

#akuvilla-booking{

    position:sticky;

    top:110px;

    overflow:hidden;

    padding:28px;

    border-radius:32px;

    background:
        rgba(255,255,255,0.92);

    backdrop-filter:blur(18px);

    border:
        1px solid rgba(15,23,42,0.05);

    box-shadow:
        0 24px 60px rgba(15,23,42,0.08);
}

/* =========================================================
FORM INPUT
========================================================= */

#akuvilla-booking input{

    height:56px;

    border:none;

    border-radius:18px;

    background:#f8f5ef;

    padding:
        0
        18px;

    color:#111827;

    font-size:13px;

    font-weight:600;

    transition:.25s ease;
}

#akuvilla-booking input:focus{

    background:#ffffff;

    box-shadow:
        0 0 0 4px rgba(198,165,107,0.12);

    outline:none;
}

/* =========================================================
BUTTON
========================================================= */

#booking_button{

    width:100%;

    height:58px;

    border:none;

    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #1f2937
        );

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    cursor:pointer;

    transition:
        all .28s ease;
}

#booking_button:hover{

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 34px rgba(15,23,42,0.18);
}

/* =========================================================
TOTAL BOX
========================================================= */

#total_box{

    border-radius:26px;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #c6a56b,
            #e0c28d
        );

    box-shadow:
        0 18px 36px rgba(198,165,107,0.22);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .akv-single-grid{

        grid-template-columns:1fr;
    }

    #akuvilla-booking{

        position:relative;

        top:auto;
    }

}

@media(max-width:768px){

    .akv-single-grid{

        gap:24px;
    }

    .akv-main-image{

        height:280px;
    }

    .akv-thumbnails{

        margin-top:-24px;

        padding:
            0
            18px;
    }

    .akv-thumbnails img{

        width:64px;

        height:54px;
    }

    .akv-single-content{

        padding:
            24px
            22px
            28px;
    }

    .akv-single-title{

        font-size:34px;

        line-height:1.12;

        letter-spacing:-1.5px;
    }

    .akv-single-price strong{

        font-size:42px;
    }

    .akv-single-feature-row{

        grid-template-columns:
            repeat(2,1fr);
    }

    .akv-single-feature{

        min-height:120px;

        padding:18px;
    }

    .akv-single-section-box{

        padding:24px;
    }

    .akv-facility-tags{

        gap:10px;
    }

    .akv-facility-tag{

        min-height:40px;

        padding:
            0
            14px;

        font-size:12px;
    }

    #akuvilla-booking{

        padding:22px;

        border-radius:28px;
    }

}
.akv-review-summary{display:flex;align-items:center;gap:10px;padding:16px 18px;margin:12px 0 18px;border:1px solid #edf1f5;border-radius:16px;background:#fafbfc}.akv-review-summary strong{font-size:30px;color:#102a43}.akv-review-summary span{color:#f59e0b;letter-spacing:2px}.akv-review-summary small{color:#66788a}.akv-review-list{display:grid;gap:12px}.akv-review-item{padding:16px;border:1px solid #edf1f5;border-radius:14px;background:#fff}.akv-review-head{display:flex;justify-content:space-between;gap:12px}.akv-review-head span{color:#f59e0b}.akv-review-item p{margin:8px 0;color:#4b5d70;line-height:1.7}.akv-review-item small{color:#8795a3}.akv-review-empty{padding:16px;border-radius:14px;background:#f8fafc;color:#66788a}.akv-review-form{margin-top:20px;padding-top:20px;border-top:1px solid #edf1f5}.akv-review-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}.akv-review-form input,.akv-review-form textarea{width:100%;border:1px solid #dfe7ee;border-radius:12px;padding:12px}.akv-rating-input{display:flex;flex-direction:row-reverse;justify-content:flex-end;gap:2px;margin:12px 0}.akv-rating-input input{display:none}.akv-rating-input label{font-size:28px;color:#cbd5df;cursor:pointer}.akv-rating-input label:hover,.akv-rating-input label:hover~label,.akv-rating-input input:checked~label{color:#f59e0b}.akv-review-submit{margin-top:12px;border:0;border-radius:12px;padding:12px 18px;background:#102a43;color:#fff;font-weight:800;cursor:pointer}.akv-review-success,.akv-review-error{margin-top:10px;padding:10px 12px;border-radius:10px;font-size:12px}.akv-review-success{background:#ecfdf5;color:#166534}.akv-review-error{background:#fef2f2;color:#991b1b}@media(max-width:600px){.akv-review-form-grid{grid-template-columns:1fr}.akv-review-summary{flex-wrap:wrap}}
