/* =========================================================
   VILLA DETAILS PAGE
========================================================= */

:root {
    --vd-gold: #c8a96b;
    --vd-gold-dark: #b89555;
    --vd-bg: #f7f5f2;
    --vd-text: #181818;
    --vd-muted: #737373;
    --vd-border: #e6dfd4;
    --vd-red: #b85b5b;
}


/* =========================================================
   PAGE
========================================================= */

body {
    background: var(--vd-bg);
}


/* =========================================================
   NAVBAR
========================================================= */

.vd-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 9999;
    background: rgba(20, 20, 20, 0.45);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: 0.3s ease;
}

.vd-nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vd-logo {
    width: 170px !important;
    height: auto !important;
    object-fit: contain;
}

.vd-nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.vd-nav-menu a {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.vd-nav-menu a:hover,
.vd-nav-menu a.active {
    color: #f5d08a;
}

.vd-nav-button {
    background: var(--vd-gold);
    color: white;
    padding: 13px 27px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.3s ease;
}

.vd-nav-button:hover {
    background: var(--vd-gold-dark);
    transform: translateY(-2px);
}


/* =========================================================
   GALLERY
========================================================= */

.vd-gallery-section {
    padding-top: 105px;
    background: #fff;
}

.vd-gallery {
    height: 650px;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 10px;
    overflow: hidden;
    border-radius: 28px;
}

.vd-gallery-main {
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.vd-gallery-main > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.vd-gallery-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    overflow: hidden;
}

.vd-small-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.vd-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.vd-small-image:hover img {
    transform: scale(1.06);
}


/* =========================================================
   GALLERY CONTROLS
========================================================= */

.vd-gallery-counter {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(25,25,25,0.72);
    color: white;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.vd-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.vd-gallery-arrow:hover {
    background: var(--vd-gold);
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.vd-gallery-prev {
    left: 28px;
}

.vd-gallery-next {
    right: 28px;
}

.vd-view-photos {
    position: absolute;
    bottom: 25px;
    right: 25px;
    border: none;
    background: rgba(20,20,20,0.75);
    color: white;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.vd-view-photos:hover {
    background: var(--vd-gold);
}


/* =========================================================
   INTRO
========================================================= */

.vd-intro-section {
    background: white;
    padding: 60px 0 45px;
}

.vd-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.vd-eyebrow {
    color: var(--vd-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.vd-intro h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 15px;
}

.vd-location {
    color: var(--vd-muted);
    font-size: 16px;
}

.vd-location i {
    color: var(--vd-gold);
    margin-right: 7px;
}

.vd-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vd-rating strong {
    font-size: 48px;
    font-weight: 900;
}

.vd-stars {
    color: var(--vd-gold);
    font-size: 18px;
    letter-spacing: 2px;
}

.vd-rating span {
    color: var(--vd-muted);
    font-size: 13px;
}

.vd-description {
    max-width: 900px;
    margin-top: 28px;
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.vd-main-section {
    padding: 60px 0 100px;
}

.vd-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 50px;
    align-items: start;
}

.vd-left-content {
    min-width: 0;
}

.vd-section-block {
    margin-bottom: 65px;
}

.vd-section-block h2,
.vd-about-card h2,
.vd-info-card h2,
.vd-location-section h2 {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 30px;
}


/* =========================================================
   QUICK DETAILS
========================================================= */

.vd-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.vd-detail-item {
    background: white;
    border: 1px solid var(--vd-border);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vd-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 15px;
    background: #f5f0e7;
    color: var(--vd-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.vd-detail-item strong,
.vd-detail-item span {
    display: block;
}

.vd-detail-item strong {
    font-size: 15px;
    margin-bottom: 3px;
}

.vd-detail-item span {
    font-size: 12px;
    color: var(--vd-muted);
}


/* =========================================================
   AMENITIES
========================================================= */

.vd-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.vd-amenity {
    min-height: 65px;
    background: white;
    border: 1px solid var(--vd-border);
    border-radius: 17px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.vd-amenity i {
    color: var(--vd-gold);
    width: 20px;
    text-align: center;
    font-size: 17px;
}

.vd-amenity:hover {
    transform: translateY(-3px);
    border-color: var(--vd-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}


/* =========================================================
   ABOUT
========================================================= */

.vd-about-card,
.vd-info-card {
    background: white;
    border: 1px solid var(--vd-border);
    border-radius: 28px;
    padding: 40px;
    margin-bottom: 35px;
}

.vd-about-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}


/* =========================================================
   INFORMATION
========================================================= */

.vd-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.vd-info-grid strong,
.vd-info-grid span {
    display: block;
}

.vd-info-grid strong {
    margin-bottom: 7px;
}

.vd-info-grid span {
    color: var(--vd-muted);
    font-size: 14px;
}


/* =========================================================
   BOOKING CARD
========================================================= */

.vd-booking-wrapper {
    position: relative;
}

.vd-booking-card {
    position: sticky;
    top: 105px;
    background: white;
    border: 1px solid var(--vd-border);
    border-radius: 28px;
    padding: 27px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.vd-price-header {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--vd-border);
    margin-bottom: 22px;
}

.vd-price-header span,
.vd-price-header small {
    display: block;
    color: var(--vd-muted);
}

.vd-price-header span {
    font-size: 13px;
}

.vd-price-header strong {
    display: block;
    color: var(--vd-gold);
    font-size: 36px;
    font-weight: 900;
}

.vd-price-header small {
    font-size: 12px;
}


/* =========================================================
   CALENDAR
========================================================= */

.vd-calendar-section h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.vd-calendar-description {
    color: var(--vd-muted);
    font-size: 13px;
    margin-bottom: 18px;
}

.vd-calendar-input {
    width: 100%;
    height: 58px;
    border: 1px solid var(--vd-border);
    border-radius: 15px;
    padding: 0 17px;
    background: #faf9f7;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.vd-calendar-input:focus {
    border-color: var(--vd-gold);
}


/* =========================================================
   CALENDAR LEGEND
========================================================= */

.vd-calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 18px 0;
    font-size: 11px;
    color: #666;
}

.vd-calendar-legend > div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-box {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    display: inline-block;
}

.legend-box.available {
    background: white;
    border: 1px solid #d9d3c9;
}

.legend-box.booked {
    background: #f2d8d8;
    border: 1px solid #d99b9b;
}

.legend-box.selected {
    background: var(--vd-gold);
}


/* =========================================================
   FLATPICKR CUSTOM STYLE
========================================================= */

.flatpickr-calendar {
    font-family: 'Poppins', sans-serif !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
    border: 1px solid var(--vd-border) !important;
    overflow: hidden;
}

.flatpickr-months {
    padding: 8px 4px;
}

.flatpickr-current-month {
    font-weight: 700 !important;
}

.flatpickr-weekdays {
    background: #faf8f4;
}

span.flatpickr-weekday {
    color: #888 !important;
    font-size: 11px !important;
}

.flatpickr-day {
    border-radius: 9px !important;
    font-weight: 500;
}

.flatpickr-day:hover {
    background: #f5eee2 !important;
    border-color: #f5eee2 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--vd-gold) !important;
    border-color: var(--vd-gold) !important;
    color: white !important;
}

.flatpickr-day.inRange {
    background: #f3eadb !important;
    border-color: #f3eadb !important;
    box-shadow: -5px 0 0 #f3eadb,
                5px 0 0 #f3eadb !important;
}


/* BOOKED DATES */

.flatpickr-day.vd-booked-date {
    background: #f2d8d8 !important;
    border-color: #e6baba !important;
    color: #a34b4b !important;
    text-decoration: line-through;
    cursor: not-allowed !important;
    opacity: 0.9;
}

.flatpickr-day.vd-booked-date:hover {
    background: #f2d8d8 !important;
    border-color: #e6baba !important;
    color: #a34b4b !important;
}


/* =========================================================
   AVAILABILITY MESSAGE
========================================================= */

.vd-availability {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #f7f5f1;
    border-radius: 14px;
    padding: 13px;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.vd-availability i {
    color: var(--vd-gold);
    margin-top: 3px;
}

.vd-availability.available {
    background: #edf6ee;
    color: #47714c;
}

.vd-availability.available i {
    color: #4f9a5b;
}

.vd-availability.unavailable {
    background: #f8e9e9;
    color: #9c4b4b;
}

.vd-availability.unavailable i {
    color: #b34d4d;
}


/* =========================================================
   BOOKING SUMMARY
========================================================= */

.vd-booking-summary {
    background: #faf8f4;
    border-radius: 18px;
    padding: 18px;
    margin: 20px 0;
}

.vd-booking-summary > div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 8px 0;
    font-size: 13px;
}

.vd-booking-summary span {
    color: #777;
}

.vd-booking-summary strong {
    text-align: right;
}

.vd-summary-total {
    border-top: 1px solid var(--vd-border);
    margin-top: 7px;
    padding-top: 14px !important;
}

.vd-summary-total strong {
    color: var(--vd-gold);
    font-size: 18px;
}


/* =========================================================
   FORM
========================================================= */

.vd-form-group {
    margin-bottom: 18px;
}

.vd-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.vd-form-input {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--vd-border);
    background: #faf9f7;
    border-radius: 13px;
    padding: 12px 15px;
    outline: none;
    font-family: inherit;
    font-size: 13px;
}

.vd-form-input:focus {
    border-color: var(--vd-gold);
}

.vd-textarea {
    min-height: 90px;
    resize: vertical;
}

.vd-customer-section {
    border-top: 1px solid var(--vd-border);
    margin-top: 22px;
    padding-top: 22px;
}

.vd-customer-section h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
}

.vd-customer-section .vd-form-input {
    margin-bottom: 12px;
}


/* =========================================================
   BUTTONS
========================================================= */

.vd-booking-button,
.vd-whatsapp-button,
.vd-email-button,
.vd-brochure-button {
    width: 100%;
    min-height: 56px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
}

.vd-booking-button {
    border: none;
    background: var(--vd-gold);
    color: white;
}

.vd-booking-button:hover {
    background: var(--vd-gold-dark);
    transform: translateY(-2px);
}

.vd-whatsapp-button {
    border: none;
    background: #25d366;
    color: white;
    margin-top: 10px;
}

.vd-whatsapp-button:hover {
    background: #1db954;
    transform: translateY(-2px);
}

.vd-email-button {
    border: 1px solid var(--vd-border);
    background: white;
    color: #333;
    margin-top: 10px;
}

.vd-email-button:hover {
    border-color: var(--vd-gold);
    color: var(--vd-gold-dark);
}

.vd-brochure-button {
    border: 1px solid var(--vd-gold);
    background: #fff;
    color: var(--vd-gold-dark);
    margin-top: 10px;
}

.vd-brochure-button:hover {
    background: #f7f0e5;
}


/* =========================================================
   HELP
========================================================= */

.vd-help {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--vd-border);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
}

.vd-help i {
    width: 43px;
    height: 43px;
    border-radius: 14px;
    background: #f5f0e7;
    color: var(--vd-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-help strong,
.vd-help span {
    display: block;
}

.vd-help strong {
    font-size: 13px;
}

.vd-help span {
    color: #777;
    font-size: 12px;
}


/* =========================================================
   LOCATION
========================================================= */

.vd-location-section {
    padding: 20px 0 100px;
}

.vd-map {
    width: 100%;
    height: 430px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.07);
}

.vd-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* =========================================================
   PHOTO MODAL
========================================================= */

.vd-photo-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.vd-photo-modal.active {
    display: flex;
}

.vd-modal-content {
    position: relative;
    width: min(1100px, 90vw);
    height: min(750px, 85vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-modal-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.vd-modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 13px;
}

.vd-modal-close,
.vd-modal-arrow {
    position: fixed;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.vd-modal-close {
    top: 25px;
    right: 25px;
    font-size: 20px;
}

.vd-modal-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.vd-modal-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.vd-modal-close:hover,
.vd-modal-arrow:hover {
    background: var(--vd-gold);
    color: white;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 992px) {

    .vd-nav-menu {
        gap: 20px;
    }

    .vd-gallery {
        height: 520px;
    }

    .vd-main-grid {
        grid-template-columns: 1fr;
    }

    .vd-booking-card {
        position: relative;
        top: 0;
    }

    .vd-detail-grid,
    .vd-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .vd-navbar {
        height: 70px;
    }

    .vd-logo {
        width: 130px !important;
    }

    .vd-nav-menu {
        display: none;
    }

    .vd-nav-button {
        padding: 10px 18px;
        font-size: 12px;
    }


    .vd-gallery-section {
        padding-top: 82px;
    }

    .vd-gallery {
        height: auto;
        display: block;
        border-radius: 20px;
    }

    .vd-gallery-main {
        height: 400px;
    }

    .vd-gallery-small {
        height: 180px;
        margin-top: 8px;
    }

    .vd-gallery-counter {
        top: 18px;
        right: 18px;
    }

    .vd-gallery-arrow {
        width: 48px;
        height: 48px;
    }

    .vd-gallery-prev {
        left: 15px;
    }

    .vd-gallery-next {
        right: 15px;
    }


    .vd-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .vd-rating {
        width: 100%;
    }

    .vd-rating strong {
        font-size: 38px;
    }


    .vd-detail-grid,
    .vd-amenities-grid,
    .vd-info-grid {
        grid-template-columns: 1fr;
    }


    .vd-about-card,
    .vd-info-card,
    .vd-booking-card {
        padding: 25px;
        border-radius: 22px;
    }


    .vd-section-block h2,
    .vd-about-card h2,
    .vd-info-card h2,
    .vd-location-section h2 {
        font-size: 31px;
    }


    .vd-map {
        height: 350px;
    }


    .vd-photo-modal {
        padding: 15px;
    }

    .vd-modal-prev {
        left: 12px;
    }

    .vd-modal-next {
        right: 12px;
    }

    .vd-modal-close {
        top: 15px;
        right: 15px;
    }

}
/* =====================================================
   VILLA DETAILS PAGE
   NEXUS VILLA
===================================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #faf9f6;
    color: #1b1b1b;
}


/* =====================================================
   CONTAINER
===================================================== */

.villa-container {
    width: min(1380px, calc(100% - 48px));
    margin: auto;
}


/* =====================================================
   NAVBAR
===================================================== */

.villa-navbar {
    position: sticky;
    top: 0;
    z-index: 5000;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid #eee;

    box-shadow: 0 3px 20px rgba(0,0,0,0.05);
}

.villa-nav-inner {
    width: min(1380px, calc(100% - 48px));
    height: 78px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.villa-logo img {
    width: 155px;
    height: auto;
}

.villa-nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.villa-nav-links a {
    color: #222;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;

    transition: 0.3s ease;
}

.villa-nav-links a:hover {
    color: #c8a96b;
}

.villa-nav-button {
    background: #c8a96b;
    color: white;

    padding: 13px 25px;

    border-radius: 30px;

    font-weight: 700;

    transition: 0.3s ease;
}

.villa-nav-button:hover {
    background: #b49357;
    transform: translateY(-2px);
}


/* =====================================================
   BREADCRUMB
===================================================== */

.villa-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-top: 125px;
    margin-bottom: 20px;

    font-size: 13px;
    color: #888;
}

.villa-breadcrumb a {
    color: #a07c39;
    font-weight: 600;
}


/* =====================================================
   HEADING
===================================================== */

.villa-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;

    margin-bottom: 28px;
}

.villa-location {
    color: #a8874e;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 8px;
}

.villa-location i {
    margin-right: 5px;
}

.villa-heading h1 {
    font-size: clamp(38px, 5vw, 62px);

    line-height: 1;

    margin: 0 0 12px;

    font-weight: 800;
}

.villa-short-info {
    color: #666;
    margin: 0;

    font-size: 16px;
}

.villa-rating {
    text-align: right;
}

.villa-rating strong {
    font-size: 26px;
    display: block;
}

.villa-rating span {
    color: #c8a96b;
    letter-spacing: 3px;
    font-size: 17px;
}

.villa-rating small {
    display: block;
    color: #888;
    margin-top: 4px;
}


/* =====================================================
   GALLERY
===================================================== */

.nexus-gallery {
    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 10px;

    height: 570px;

    margin-bottom: 55px;
}

.gallery-main {
    position: relative;

    overflow: hidden;

    border-radius: 22px;
}

.gallery-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: opacity 0.3s ease;
}

.gallery-side {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    overflow: hidden;
}

.gallery-thumb {
    position: relative;

    border: none;
    padding: 0;

    background: #ddd;

    cursor: pointer;

    overflow: hidden;

    border-radius: 14px;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.gallery-thumb.active {
    outline: 3px solid #c8a96b;
    outline-offset: -3px;
}

.gallery-more span {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 16px;
    font-weight: 700;

    background: rgba(0,0,0,0.45);
}

.gallery-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;

    border-radius: 50%;

    background: white;

    color: #222;

    cursor: pointer;

    z-index: 10;

    box-shadow: 0 8px 30px rgba(0,0,0,0.18);

    transition: 0.3s ease;
}

.gallery-arrow:hover {
    background: #c8a96b;
    color: white;
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-view-button {
    position: absolute;

    right: 20px;
    bottom: 20px;

    border: none;

    background: rgba(255,255,255,0.95);

    padding: 12px 18px;

    border-radius: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.gallery-view-button:hover {
    background: #c8a96b;
    color: white;
}


/* =====================================================
   CONTENT LAYOUT
===================================================== */

.villa-content-layout {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 390px;

    gap: 55px;

    align-items: start;
}

.villa-main-content {
    min-width: 0;
}

.villa-section {
    padding: 0 0 70px;

    margin-bottom: 60px;

    border-bottom: 1px solid #e8e4dc;
}

.section-eyebrow {
    color: #bd9754;

    letter-spacing: 4px;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 13px;
}

.villa-section h2 {
    font-size: clamp(30px, 4vw, 44px);

    margin: 0 0 25px;

    font-weight: 800;

    line-height: 1.15;
}

.villa-section > p {
    color: #666;

    line-height: 1.9;

    font-size: 16px;

    max-width: 850px;

    margin-bottom: 18px;
}


/* =====================================================
   HIGHLIGHTS
===================================================== */

.highlight-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

.highlight-item {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 20px;

    background: white;

    border: 1px solid #eee8dd;

    border-radius: 16px;

    transition: 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.highlight-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #f5efe4;

    color: #b58b45;

    font-size: 21px;
}

.highlight-item strong {
    display: block;

    font-size: 15px;

    margin-bottom: 4px;
}

.highlight-item span {
    display: block;

    color: #888;

    font-size: 12px;
}


/* =====================================================
   AMENITIES
===================================================== */

.amenity-groups {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.amenity-group {
    background: white;

    border: 1px solid #eee8dd;

    border-radius: 18px;

    padding: 24px;
}

.amenity-group h3 {
    font-size: 17px;

    margin: 0 0 18px;

    font-weight: 700;
}

.amenity-list {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.amenity-list span {
    color: #666;

    font-size: 14px;
}

.amenity-list i {
    width: 22px;

    color: #b58b45;

    margin-right: 7px;
}


/* =====================================================
   CALENDAR
===================================================== */

.availability-intro {
    margin-top: -12px;
}

.calendar-card {
    background: white;

    border: 1px solid #ebe5db;

    border-radius: 22px;

    padding: 28px;

    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.calendar-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    text-align: center;

    margin-bottom: 25px;
}

.calendar-header h3 {
    margin: 0;

    font-size: 22px;
}

.calendar-header p {
    margin: 3px 0 0;

    color: #888;

    font-size: 12px;
}

.calendar-nav {
    width: 42px;
    height: 42px;

    border: 1px solid #ddd;

    border-radius: 50%;

    background: white;

    cursor: pointer;

    transition: 0.3s ease;
}

.calendar-nav:hover {
    background: #c8a96b;

    color: white;

    border-color: #c8a96b;
}

.calendar-legend {
    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 20px;

    color: #777;

    font-size: 13px;
}

.calendar-legend span {
    display: flex;

    align-items: center;

    gap: 7px;
}

.calendar-legend i {
    width: 18px;
    height: 18px;

    border-radius: 5px;

    display: inline-block;
}

.available-box {
    border: 1px solid #ddd;
    background: white;
}

.booked-box {
    background: #f2a5a5;
}

.selected-box {
    background: #c8a96b;
}

.availability-calendar {
    display: grid;

    grid-template-columns: repeat(7, 1fr);

    gap: 6px;
}

.calendar-day-name {
    text-align: center;

    color: #999;

    font-size: 11px;

    font-weight: 700;

    padding: 8px 0;
}

.calendar-date {
    min-height: 46px;

    border: 1px solid #eee;

    background: white;

    border-radius: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    cursor: pointer;

    transition: 0.2s ease;
}

.calendar-date:hover:not(.booked) {
    border-color: #c8a96b;

    background: #fbf7ee;
}

.calendar-date.booked {
    background: #f2a5a5;

    color: #7d2020;

    border-color: #e48b8b;

    font-weight: 700;

    cursor: not-allowed;
}

.calendar-date.selected {
    background: #c8a96b;

    color: white;

    border-color: #c8a96b;

    font-weight: 700;
}

.calendar-date.empty {
    background: transparent;

    border: none;

    cursor: default;
}

.selected-dates {
    margin-top: 20px;

    padding: 15px 18px;

    border-radius: 13px;

    background: #f8f5ef;

    color: #777;

    font-size: 13px;
}


/* =====================================================
   REVIEWS
===================================================== */

.review-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.review-card {
    background: white;

    border: 1px solid #eee8dd;

    border-radius: 18px;

    padding: 24px;
}

.review-top {
    display: flex;

    align-items: center;

    gap: 14px;
}

.review-score {
    width: 48px;
    height: 48px;

    border: 1px solid #c8a96b;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;

    color: #a77d36;
}

.review-top strong {
    display: block;

    font-size: 14px;
}

.review-top span {
    display: block;

    font-size: 11px;

    color: #999;

    margin-top: 3px;
}

.review-stars {
    color: #c8a96b;

    letter-spacing: 2px;

    margin: 15px 0;
}

.review-card p {
    color: #666;

    line-height: 1.8;

    font-size: 13px;

    margin: 0;
}


/* =====================================================
   MAP
===================================================== */

.villa-map {
    overflow: hidden;

    border-radius: 18px;

    border: 1px solid #eee;
}

.villa-map iframe {
    display: block;

    width: 100%;

    height: 350px;

    border: 0;
}

.location-description {
    margin-bottom: 25px !important;
}


/* =====================================================
   BOOKING SIDEBAR
===================================================== */

.villa-booking-sidebar {
    position: sticky;

    top: 105px;
}

.booking-card {
    background: white;

    border: 1px solid #e8e2d8;

    border-radius: 24px;

    padding: 30px;

    box-shadow: 0 18px 55px rgba(0,0,0,0.08);
}

.booking-card-label {
    color: #b38b4a;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.booking-card h2 {
    margin: 0 0 20px;

    font-size: 28px;

    font-weight: 800;
}

.booking-price span {
    display: block;

    color: #999;

    font-size: 12px;
}

.booking-price strong {
    display: inline-block;

    color: #a67b35;

    font-size: 34px;

    margin-top: 3px;
}

.booking-price small {
    color: #888;

    font-size: 12px;
}

.booking-divider {
    height: 1px;

    background: #eee;

    margin: 22px 0;
}

.booking-info {
    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-bottom: 25px;
}

.booking-info div {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #555;

    font-size: 14px;
}

.booking-info i {
    width: 20px;

    color: #b58b45;
}

.booking-primary-button,
.booking-secondary-button,
.booking-brochure-button {
    width: 100%;

    min-height: 56px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-weight: 700;

    margin-top: 12px;

    transition: 0.3s ease;
}

.booking-primary-button {
    background: #25D366;

    color: white;
}

.booking-primary-button:hover {
    background: #1faf55;

    transform: translateY(-2px);
}

.booking-secondary-button {
    background: #c8a96b;

    color: white;
}

.booking-secondary-button:hover {
    background: #b28f50;
}

.booking-brochure-button {
    background: white;

    color: #555;

    border: 1px solid #ddd;
}

.booking-brochure-button:hover {
    border-color: #c8a96b;

    color: #a67b35;
}

.booking-note {
    margin: 18px 0 0;

    color: #999;

    font-size: 11px;

    line-height: 1.7;

    text-align: center;
}


/* =====================================================
   GALLERY MODAL
===================================================== */

.gallery-modal {
    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.92);

    z-index: 99999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 40px;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-content {
    max-width: 1100px;

    max-height: 90vh;

    text-align: center;
}

.gallery-modal-content img {
    max-width: 100%;

    max-height: 80vh;

    object-fit: contain;

    border-radius: 10px;
}

.gallery-caption {
    color: white;

    margin-top: 12px;

    font-size: 14px;
}

.gallery-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: white;

    cursor: pointer;

    font-size: 20px;
}

.modal-gallery-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    border: none;

    border-radius: 50%;

    background: white;

    cursor: pointer;

    font-size: 18px;
}

.modal-prev {
    left: 25px;
}

.modal-next {
    right: 25px;
}


/* =====================================================
   WHATSAPP
===================================================== */

.villa-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;

    color: white;

    font-size: 30px;

    z-index: 9000;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    transition: 0.3s ease;
}

.villa-whatsapp:hover {
    transform: scale(1.08);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 1000px) {

    .villa-content-layout {
        grid-template-columns: 1fr;
    }

    .villa-booking-sidebar {
        position: static;
    }

}


@media (max-width: 768px) {

    .villa-container,
    .villa-nav-inner {
        width: min(100% - 28px, 1380px);
    }

    .villa-nav-links {
        display: none;
    }

    .villa-nav-inner {
        height: 68px;
    }

    .villa-logo img {
        width: 125px;
    }

    .villa-nav-button {
        padding: 10px 17px;

        font-size: 12px;
    }

    .villa-heading {
        flex-direction: column;

        align-items: flex-start;
    }

    .villa-rating {
        text-align: left;
    }

    .nexus-gallery {
        grid-template-columns: 1fr;

        height: auto;
    }

    .gallery-main {
        height: 390px;
    }

    .gallery-side {
        height: 180px;

        grid-template-columns: repeat(3, 1fr);

        overflow-x: auto;
    }

    .gallery-side .gallery-thumb:nth-child(n+7) {
        display: none;
    }

    .highlight-grid,
    .amenity-groups,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .calendar-card {
        padding: 17px;
    }

    .calendar-date {
        min-height: 39px;

        font-size: 12px;
    }

    .calendar-day-name {
        font-size: 9px;
    }

    .villa-section {
        padding-bottom: 45px;

        margin-bottom: 40px;
    }

    .villa-map iframe {
        height: 280px;
    }

    .gallery-modal {
        padding: 20px;
    }

    .modal-gallery-arrow {
        width: 42px;
        height: 42px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

}
/* =====================================================
   EVARA BOOKING FORM
===================================================== */

.evara-booking-form {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #eee8dd;
}

.evara-booking-form h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.evara-booking-form > p {
    color: #888;
    font-size: 13px;
    margin-bottom: 25px;
}

.evara-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.evara-form-field {
    margin-bottom: 18px;
}

.evara-form-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.evara-form-field input,
.evara-form-field textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd6ca;
    border-radius: 11px;
    background: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    outline: none;
    transition: 0.25s ease;
}

.evara-form-field input:focus,
.evara-form-field textarea:focus {
    border-color: #c8a96b;
    box-shadow: 0 0 0 3px rgba(200,169,107,0.12);
}

.evara-form-field textarea {
    resize: vertical;
}

.evara-enquiry-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.evara-enquiry-buttons button {
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
}

.evara-booking-error {
    display: none;
    padding: 13px 15px;
    margin: 15px 0;
    border-radius: 10px;
    background: #fff0f0;
    border: 1px solid #efb1b1;
    color: #a52828;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .evara-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .evara-enquiry-buttons {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   NEXUS BOOKING FORM
===================================================== */

.nexus-booking-form {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #eee8dd;
}

.nexus-booking-form h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.nexus-booking-form > p {
    color: #888;
    font-size: 13px;
    margin-bottom: 25px;
}

.nexus-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.nexus-form-field {
    margin-bottom: 18px;
}

.nexus-form-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.nexus-form-field input,
.nexus-form-field textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd6ca;
    border-radius: 11px;
    background: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    outline: none;
    transition: 0.25s ease;
}

.nexus-form-field input:focus,
.nexus-form-field textarea:focus {
    border-color: #c8a96b;
    box-shadow: 0 0 0 3px rgba(200,169,107,0.12);
}

.nexus-form-field textarea {
    resize: vertical;
}

.nexus-enquiry-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.nexus-enquiry-buttons button {
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
}

.nexus-booking-error {
    display: none;
    padding: 13px 15px;
    margin: 15px 0;
    border-radius: 10px;
    background: #fff0f0;
    border: 1px solid #efb1b1;
    color: #a52828;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .nexus-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nexus-enquiry-buttons {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   VILLA PRICING
===================================================== */

.nexus-pricing {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee8dd;
}

.nexus-pricing h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 9px 0;
    font-size: 13px;
    color: #666;
}

.pricing-row strong {
    color: #444;
    white-space: nowrap;
}

.pricing-row.new-year-price {
    border-top: 1px solid #f0ebe3;
    margin-top: 4px;
    padding-top: 12px;
}

.pricing-row.new-year-price strong {
    color: #b38336;
}
/* =====================================================
   SOLIN BOOKING FORM
===================================================== */

.solin-booking-form {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #eee8dd;
}

.solin-booking-form h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.solin-booking-form > p {
    color: #888;
    font-size: 13px;
    margin-bottom: 25px;
}

.solin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.solin-form-field {
    margin-bottom: 18px;
}

.solin-form-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.solin-form-field input,
.solin-form-field textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd6ca;
    border-radius: 11px;
    background: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    outline: none;
    transition: 0.25s ease;
    box-sizing: border-box;
}

.solin-form-field input:focus,
.solin-form-field textarea:focus {
    border-color: #c8a96b;
    box-shadow: 0 0 0 3px rgba(200,169,107,0.12);
}

.solin-form-field textarea {
    resize: vertical;
}

.solin-enquiry-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.solin-enquiry-buttons button {
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
}

.solin-booking-error {
    display: none;
    padding: 13px 15px;
    margin: 15px 0;
    border-radius: 10px;
    background: #fff0f0;
    border: 1px solid #efb1b1;
    color: #a52828;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .solin-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .solin-enquiry-buttons {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   SMOOTH VILLA IMAGE SLIDER
===================================================== */

.villa-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.villa-slider .villa-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.villa-slider .villa-slide.active {
    opacity: 1;
}
/* =====================================================
   SOLIN GALLERY IMAGE TRANSITION
===================================================== */

#galleryMainImage {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

#galleryMainImage.gallery-image-changing {
    opacity: 0.5;
}
/* =====================================================
   FIX VILLA DETAILS CONTENT BELOW INDEX NAVBAR
   ===================================================== */

.villa-breadcrumb {
    padding-top: 125px !important;
}

/* Mobile */
@media (max-width: 768px) {
    .villa-breadcrumb {
        padding-top: 90px !important;
    }
}