/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f5f2;
    color:#1a1a1a;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

.footer img{
    width:180px;
    height:auto;
    object-fit:contain;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ================= CONTAINER ================= */

.container-custom{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 24px;
}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#f1ece4;
}

::-webkit-scrollbar-thumb{
    background:#c8a96b;
    border-radius:999px;
}

/* ================= LOADER ================= */

#loader{
    position:fixed;
    inset:0;
    background:#f7f5f2;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999999;
    transition:0.6s ease;
}

#loader img{
    width:140px;
}

/* ================= NAVBAR ================= */

#navbar{
    transition:0.4s ease;
    height:82px;
    display:flex;
    align-items:center;
}

#navbar img{
    height:58px;
    width:auto;
}

.navScrolled{
    background:rgba(255,255,255,0.94) !important;
    backdrop-filter:blur(12px);
    box-shadow:0 5px 30px rgba(0,0,0,0.08);
}

.navScrolled a{
    color:#1a1a1a !important;
}

/* ================= HERO SECTION ================= */

.hero-section{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:
    brightness(0.55)
    contrast(1.05);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.75)
    );
}

.hero-content{

    position:relative;
    z-index:10;
    text-align:center;
    max-width:1100px;
    width:100%;
    padding:0 24px;
    margin:auto;

}

.hero-subtitle{
    color:#f5d08a;
    text-transform:uppercase;
    letter-spacing:6px;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
}

.hero-title{

    font-size:clamp(52px,7vw,92px);
    line-height:0.95;
    font-weight:900;
    color:white;
    margin-bottom:28px;
    text-shadow:
    0 10px 40px rgba(0,0,0,0.4);
    max-width:1000px;
    margin-inline:auto;
    overflow:hidden;

}

.hero-title span{
    color:#f5d08a;
}

.hero-description{
    max-width:760px;
    margin:auto;
    color:#f1f1f1;
    line-height:1.9;
    font-size:18px;
}

/* ================= HERO SEARCH ================= */

.hero-search-wrapper{
    margin-top:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.hero-search{
    width:430px;
    max-width:100%;
    height:64px;
    border:none;
    outline:none;
    border-radius:18px;
    background:rgba(255,255,255,0.92);
    padding:0 22px;
    font-size:16px;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.12);
}

.hero-search::placeholder{
    color:#888;
}

.hero-button,
.luxury-btn{

    min-width:max-content;
    height:60px;
    padding:0 30px;
    border-radius:18px;
    background:#c8a96b;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    transition:0.3s ease;
    box-shadow:
    0 10px 30px rgba(200,169,107,0.25);

}

.hero-button:hover,
.luxury-btn:hover{
    background:#b89555;
    transform:translateY(-3px);
}

/* ================= HERO GLOW ================= */

.hero-glow-left{
    position:absolute;
    left:-180px;
    top:50%;
    width:500px;
    height:500px;
    background:
    radial-gradient(
        rgba(200,169,107,0.18),
        transparent 70%
    );
    filter:blur(40px);
}

.hero-glow-right{
    position:absolute;
    right:-180px;
    bottom:-120px;
    width:500px;
    height:500px;
    background:
    radial-gradient(
        rgba(255,255,255,0.08),
        transparent 70%
    );
    filter:blur(40px);
}

/* ================= SECTION ================= */

.section-spacing{
    padding:110px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-subtitle{
    color:#c8a96b;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
    margin-bottom:14px;
}

.section-heading{
    font-size:clamp(40px,5vw,64px);
    line-height:1.1;
    font-weight:900;
}

/* ================= VILLA CARD ================= */

.villa-card{
    background:white;
    border-radius:30px;
    overflow:hidden;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.06);
    transition:0.4s ease;
}

.villa-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 60px rgba(0,0,0,0.12);
}

.villa-image-wrapper{
    position:relative;
    overflow:hidden;
    height:420px;
    border-radius:30px 30px 0 0;
}

.villa-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.5s ease;
    transform:scale(1);
}

.villa-card:hover .villa-image{
    transform:scale(1.04);
}

.villa-content{
    padding:34px;
}

.villa-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:14px;
}

.villa-name{
    font-size:30px;
    font-weight:800;
}

.villa-rating{
    color:#c8a96b;
    font-weight:700;
}

.villa-details{
    color:#666;
    line-height:1.8;
    margin-bottom:24px;
}

.villa-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.villa-feature{
    background:#f3efe8;
    padding:10px 16px;
    border-radius:999px;
    font-size:14px;
    font-weight:500;
}

.villa-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.villa-price-label{
    color:#999;
    font-size:14px;
    margin-bottom:4px;
}

.villa-price{
    color:#c8a96b;
    font-size:34px;
    font-weight:800;
}

.villa-btn{
    background:#c8a96b;
    color:white;
    padding:14px 22px;
    border-radius:16px;
    font-weight:600;
    transition:0.3s ease;
}

.villa-btn:hover{
    background:#b89555;
}

/* ================= FEATURE CARDS ================= */

.feature-card{
    background:white;
    padding:42px 34px;
    border-radius:28px;
    text-align:center;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.05);
    transition:0.4s ease;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-icon{
    width:90px;
    height:90px;
    margin:auto auto 24px;
    border-radius:24px;
    background:#f3efe8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

.feature-title{
    font-size:28px;
    font-weight:800;
    margin-bottom:14px;
}

.feature-text{
    color:#666;
    line-height:1.9;
}

/* ================= TESTIMONIAL ================= */

.testimonial-card{
    background:white;
    padding:36px;
    border-radius:28px;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.05);
    transition:0.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-stars{
    color:#c8a96b;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-text{
    color:#666;
    line-height:1.9;
    margin-bottom:24px;
}

.testimonial-name{
    font-weight:700;
}

/* ================= BLOG ================= */

.blog-card,
.featured-blog-card{
    background:white;
    border-radius:30px;
    overflow:hidden;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.05);
    transition:0.4s ease;
}

.blog-card:hover,
.featured-blog-card:hover{
    transform:translateY(-8px);
}

.featured-blog-card{
    display:grid;
    grid-template-columns:1.2fr 1fr;
}

.featured-blog-image{
    overflow:hidden;
}

.featured-image{
    height:100%;
    object-fit:cover;
}

.featured-blog-content{
    padding:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.featured-blog-title{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:20px;
}

.featured-blog-text{
    color:#666;
    line-height:1.9;
    margin-bottom:24px;
}

.blog-image-wrapper{
    overflow:hidden;
}

.blog-image{
    height:300px;
    object-fit:cover;
    transition:0.6s ease;
}

.blog-card:hover .blog-image{
    transform:scale(1.06);
}

.blog-content{
    padding:30px;
}

.blog-tag{
    display:inline-block;
    background:#f3efe8;
    color:#c8a96b;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.blog-title{
    font-size:28px;
    font-weight:800;
    margin-bottom:14px;
}

.blog-text{
    color:#666;
    line-height:1.9;
}

.blog-info{
    display:flex;
    gap:24px;
    margin-bottom:28px;
}

.blog-info-item{
    color:#888;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
}

.blog-btn{
    width:max-content;
}

/* ================= CONTACT ================= */

.contact-card{
    background:white;
    padding:28px;
    border-radius:28px;
    display:flex;
    align-items:center;
    gap:22px;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.05);
}

.contact-icon-box{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:22px;
    background:#f3efe8;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c8a96b;
    font-size:28px;
}

.contact-label{
    color:#888;
    font-size:14px;
    margin-bottom:6px;
}

.contact-value{
    font-size:22px;
    font-weight:700;
}

/* ================= FORM ================= */

.form-card{
    background:white;
    padding:40px;
    border-radius:30px;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.05);
}

.form-label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.form-input{
    width:100%;
    height:60px;
    border:none;
    outline:none;
    background:#f5f3ef;
    border-radius:16px;
    padding:0 18px;
    margin-bottom:20px;
    font-size:15px;
}

textarea.form-input{
    height:160px;
    padding-top:18px;
    resize:none;
}

.form-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:16px;
    background:#c8a96b;
    color:white;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
}

.form-btn:hover{
    background:#b89555;
}

/* ================= DETAILS PAGE ================= */

.details-card{
    background:white;
    padding:40px;
    border-radius:30px;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.05);
    margin-bottom:36px;
}

.details-price{
    color:#c8a96b;
    font-size:48px;
    font-weight:900;
    margin-bottom:18px;
}

.details-text{
    color:#666;
    line-height:1.9;
}

.details-label{
    color:#999;
    font-size:14px;
    margin-bottom:10px;
}

.details-icon-box{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#f3efe8;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c8a96b;
    font-size:24px;
}

/* ================= AMENITIES ================= */

.amenity-card{
    background:white;
    padding:22px;
    border-radius:22px;
    font-weight:600;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.amenity-card:hover{
    transform:translateY(-4px);
}

/* ================= BOOKING CARD ================= */

.booking-card{
    position:sticky;
    top:120px;
    background:white;
    padding:36px;
    border-radius:30px;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.05);
}

.booking-title{
    font-size:32px;
    font-weight:800;
    margin-bottom:24px;
}

.booking-input{
    width:100%;
    height:58px;
    border:none;
    outline:none;
    background:#f5f3ef;
    border-radius:16px;
    padding:0 18px;
    margin-bottom:18px;
}

.booking-btn{
    width:100%;
    height:58px;
    border-radius:16px;
    background:#c8a96b;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    margin-top:10px;
}

.booking-contact{
    margin-top:20px;
    color:#666;
    line-height:1.8;
}

/* ================= MAP ================= */

.map-wrapper{
    overflow:hidden;
    border-radius:30px;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.06);
}

.map-frame{
    width:100%;
    height:450px;
    border:none;
}

/* ================= FOOTER ================= */

.footer{
    background:#111;
    color:white;
    padding-top:100px;
}

.footer-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));
    gap:60px;
}

.footer-heading{
    color:#f5d08a;
    font-weight:700;
    margin-bottom:22px;
}

.footer-text,
.footer-links a,
.footer-contact{
    color:#999;
    line-height:1.9;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a:hover{
    color:white;
}

.footer-social{
    display:flex;
    gap:18px;
    font-size:24px;
}

.footer-social a{
    color:white;
}

.footer-social a:hover{
    color:#c8a96b;
}

.footer-bottom{
    border-top:
    1px solid rgba(255,255,255,0.08);
    text-align:center;
    padding:24px;
    margin-top:80px;
    color:#888;
}

/* ================= WHATSAPP ================= */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:64px;
    height:64px;
    border-radius:50%;
    background:#25D366;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    z-index:999;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.2);
}

/* ================= OFFER FLOAT ================= */

.offer-float{
    position:fixed;
    left:50%;
    bottom:20px;
    transform:
    translateX(-50%)
    translateY(40px);
    width:420px;
    max-width:92%;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(10px);
    border-radius:24px;
    padding:18px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.12);
    z-index:9998;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
}

.offer-visible{
    opacity:1;
    visibility:visible;
    transform:
    translateX(-50%)
    translateY(0);
}

.offer-content{
    display:flex;
    align-items:center;
    gap:12px;
}

.offer-icon{
    font-size:28px;
}

.offer-title{
    font-size:18px;
    font-weight:700;
}

.offer-subtitle{
    color:#666;
    font-size:13px;
}

.offer-btn{
    background:#c8a96b;
    color:white;
    padding:12px 16px;
    border-radius:14px;
    font-weight:600;
}

/* ================= POPUP ================= */

.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(6px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
}

.popup-overlay.active{
    opacity:1;
    visibility:visible;
}

.popup-card{
    position:relative;
    width:100%;
    max-width:460px;
    background:white;
    border-radius:30px;
    padding:40px 34px;
    text-align:center;
    box-shadow:
    0 20px 80px rgba(0,0,0,0.18);
}

.popup-close{
    position:absolute;
    top:16px;
    right:16px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#f3efe8;
    cursor:pointer;
}

.popup-icon{
    font-size:42px;
    margin-bottom:20px;
}

.popup-title{
    font-size:34px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:16px;
}

.popup-text{
    color:#666;
    line-height:1.8;
    margin-bottom:28px;
}

.popup-buttons{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.popup-book-btn{
    height:56px;
    border-radius:16px;
    background:#c8a96b;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}

.popup-later-btn{
    height:54px;
    border:none;
    border-radius:16px;
    background:#f5f3ef;
    cursor:pointer;
    font-weight:600;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .featured-blog-card{
        grid-template-columns:1fr;
    }

    .featured-image{
        height:420px;
    }

}
@media(max-width:768px){

    /* ================= CONTAINER ================= */

    .container-custom{
        padding:0 20px;
    }

    /* ================= NAVBAR ================= */

    #navbar{
        min-height:70px;
        padding:0 14px;
    }

    #navbar img{
        height:42px;
        width:auto;
    }

    /* ================= HERO ================= */

    .hero-section{

        min-height:100vh;

        display:flex;

        align-items:center;

        justify-content:center;

        text-align:center;

        padding-top:90px;

    }

    .hero-content{

        width:100%;

        max-width:100%;

        padding:0 20px;

        margin:auto;

        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

    }

    .hero-subtitle{

        font-size:12px;

        letter-spacing:4px;

        margin-bottom:16px;

    }

    .hero-title{

        font-size:46px;

        line-height:1.08;

        text-align:center;

        margin-bottom:20px;

        max-width:100%;

    }

    .hero-description{

        font-size:16px;

        line-height:1.9;

        text-align:center;

        max-width:100%;

    }

    /* ================= SEARCH ================= */

    .hero-search-wrapper{

        width:100%;

        flex-direction:column;

        margin-top:28px;

        gap:14px;

    }

    .hero-search{

        width:100%;

        height:56px;

        border-radius:14px;

    }

    .hero-button,
    .luxury-btn{

        width:100%;

        height:56px;

        border-radius:14px;

    }

    /* ================= SECTION ================= */

    .section-spacing{
        padding:80px 0;
    }

    .section-heading{
        font-size:38px;
    }

    /* ================= CARDS ================= */

    .villa-content,
    .blog-content,
    .featured-blog-content{
        padding:22px;
    }

    .villa-name{
        font-size:24px;
    }

    .villa-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

    .featured-blog-title{
        font-size:32px;
    }

    /* ================= WHATSAPP ================= */

    .whatsapp-btn{
        width:54px;
        height:54px;
        font-size:24px;
        right:14px;
        bottom:14px;
    }

    

}
/* =====================================================
   FINAL MOBILE NAVBAR FIX
===================================================== */

@media (max-width: 767px) {

    /* Navbar */
    #navbar {
        width: 100%;
        position: fixed;
    }

    /* Navbar inner container */
    #navbar .container-custom {
        width: 100%;
        max-width: 100%;
        padding: 10px 18px;
        box-sizing: border-box;
    }

    /* Logo */
    #navbar img {
        height: 42px !important;
        width: auto;
        max-width: 160px;
    }

    /* Hamburger */
    #mobileMenuButton {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 48px;
        height: 48px;

        padding: 0;
        margin: 0;

        background: transparent;
        border: none;

        color: white;
        font-size: 28px;

        flex-shrink: 0;
        cursor: pointer;
    }

    /* MOBILE MENU */
    #mobileMenu {
        position: absolute !important;

        top: 100%;
        left: 0 !important;
        right: auto !important;

        width: 100vw !important;
        max-width: 100vw !important;

        margin: 0 !important;
        padding: 15px 20px 25px !important;

        box-sizing: border-box;

        background: rgba(15, 15, 15, 0.98);

        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

        border-top: 1px solid rgba(255,255,255,0.12);

        z-index: 99999;

        /* IMPORTANT */
        display: none;
        flex-direction: column;
    }

    /* When menu is opened */
    #mobileMenu.active {
        display: flex !important;
    }

    /* Menu links */
    #mobileMenu a {
        display: block;

        width: 100%;

        padding: 16px 5px;

        box-sizing: border-box;

        color: white;

        text-decoration: none;

        font-size: 16px;
        font-weight: 500;

        letter-spacing: 1.5px;
        text-transform: uppercase;

        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    /* Hover */
    #mobileMenu a:hover {
        color: #f5d08a;
    }

    /* Mobile Book Now */
    #mobileMenu .mobile-book-btn {
        display: block;

        width: 100%;

        margin-top: 18px;
        padding: 14px 20px;

        box-sizing: border-box;

        text-align: center;

        background: #c8a96b;
        color: white;

        border: none;
        border-radius: 30px;

        font-weight: 600;
    }
}
/* =====================================================
   FINAL NAVBAR FIX
===================================================== */

/* MOBILE MENU MUST BE HIDDEN ON DESKTOP */
#mobileMenu {
    display: none !important;
}


/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 768px) {

    /* Desktop Book Now */
    #desktopBookNow {
        display: block !important;
    }

    /* Never show mobile menu on desktop */
    #mobileMenu {
        display: none !important;
    }

    /* Never show hamburger on desktop */
    #mobileMenuButton {
        display: none !important;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    /* Hide DESKTOP Book Now on mobile */
    #desktopBookNow {
        display: none !important;
    }

    /* Mobile hamburger */
    #mobileMenuButton {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 48px;
        height: 48px;

        padding: 0;
        margin: 0;

        background: transparent;
        border: none;

        color: white;
        font-size: 28px;

        flex-shrink: 0;
        cursor: pointer;
    }

    /* Mobile menu closed */
    #mobileMenu {
        display: none !important;

        position: absolute !important;

        top: 100%;
        left: 0 !important;
        right: auto !important;

        width: 100vw !important;
        max-width: 100vw !important;

        margin: 0 !important;
        padding: 15px 20px 25px !important;

        box-sizing: border-box;

        background: rgba(15, 15, 15, 0.98);

        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

        border-top: 1px solid rgba(255,255,255,0.12);

        z-index: 99999;

        flex-direction: column;
    }

    /* Mobile menu OPEN */
    #mobileMenu.active {
        display: flex !important;
    }

    /* Mobile links */
    #mobileMenu a {
        display: block;

        width: 100%;

        padding: 16px 5px;

        box-sizing: border-box;

        color: white;

        text-decoration: none;

        font-size: 16px;
        font-weight: 500;

        letter-spacing: 1.5px;
        text-transform: uppercase;

        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    #mobileMenu a:hover {
        color: #f5d08a;
    }

    /* Mobile Book Now inside menu */
    #mobileMenu .mobile-book-btn {
        display: block;

        width: 100%;

        margin-top: 18px;
        padding: 14px 20px;

        box-sizing: border-box;

        text-align: center;

        background: #c8a96b;
        color: white;

        border-radius: 30px;

        font-weight: 600;
    }
}
/* =========================================================
   FINAL DESKTOP NAVBAR
   ========================================================= */

@media (min-width: 768px) {

    /* Keep desktop menu centered */
    #navbar .desktop-menu {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        white-space: nowrap !important;
    }

    /* Desktop Book Now button ONLY */
    #navbar #desktopBookNow,
    #navbar .luxury-btn#desktopBookNow {
        display: flex !important;

        width: 170px !important;
        min-width: 170px !important;
        max-width: 170px !important;

        height: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;

        flex: 0 0 170px !important;

        padding: 0 !important;
        margin: 0 25px 0 auto !important;

        align-items: center !important;
        justify-content: center !important;

        box-sizing: border-box !important;

        border-radius: 22px !important;

        font-size: 18px !important;
        line-height: 1 !important;
        font-weight: 600 !important;

        transform: none !important;
    }

    /* Make sure mobile elements never appear */
    #navbar #mobileMenuButton {
        display: none !important;
    }

    #navbar #mobileMenu {
        display: none !important;
    }
}


/* =========================================================
   MOBILE — KEEP YOUR CURRENT WORKING VERSION
   ========================================================= */

@media (max-width: 767px) {

    #navbar #desktopBookNow {
        display: none !important;
    }

    #navbar #mobileMenuButton {
        display: flex !important;
    }
}
/* OTHER PAGE HERO - MOBILE NAVBAR CLEARANCE */
@media (max-width: 767px) {

    .page-hero-content {
        padding-top: 80px;
    }

}
/* =====================================================
   VILLA DETAILS PAGE - NAVBAR FIX
   ===================================================== */

/* Keep navbar visible but clean on villa detail page */
#navbar {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* Navbar text */
#navbar .desktop-menu a,
#navbar > div > div a {
    color: #333333 !important;
}

/* Gold hover */
#navbar .desktop-menu a:hover,
#navbar > div > div a:hover {
    color: #c8a96b !important;
}

/* Logo */
#navbar img {
    height: 52px;
    width: auto;
}

/* Prevent villa content from going underneath fixed navbar */
.villa-detail-header {
    padding-top: 150px !important;
}

/* Desktop */
@media (min-width: 768px) {
    .villa-detail-header {
        padding-top: 155px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .villa-detail-header {
        padding-top: 100px !important;
    }

    #navbar {
        background: #ffffff !important;
    }

    #navbar .desktop-menu a,
    #navbar > div > div a {
        color: #333333 !important;
    }

    #mobileMenuButton {
        color: #333333 !important;
    }
}
/* =====================================================
   ROTATING TRUST STATS
===================================================== */

.trust-stats-section {
    padding: 60px 20px;
    text-align: center;
    background: #faf8f5;
}

.trust-stat {
    min-height: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: opacity 0.5s ease;
}

.trust-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;

    color: #c8a96b;

    letter-spacing: 1px;
}

.trust-label {
    margin-top: 12px;

    font-size: 15px;
    font-weight: 600;

    color: #333;

    text-transform: uppercase;
    letter-spacing: 3px;
}


/* Mobile */

@media (max-width: 767px) {

    .trust-stats-section {
        padding: 45px 20px;
    }

    .trust-stat {
        min-height: 100px;
    }

    .trust-number {
        font-size: 42px;
    }

    .trust-label {
        font-size: 13px;
        letter-spacing: 2px;
    }

}