* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================
   BOOKING PHONE COUNTRY DROPDOWN FIX
========================================= */

.bookings-page-body .booking-form .iti{
    position:relative !important;
    z-index:20 !important;
}

.bookings-page-body .booking-form .iti:focus-within,
.bookings-page-body .booking-form .iti:has(.iti__selected-country[aria-expanded="true"]){
    z-index:1000 !important;
}

.bookings-page-body .booking-form .iti__dropdown-content,
.bookings-page-body .booking-form .iti__country-list{
    position:absolute !important;
    top:calc(100% + 8px) !important;
    left:0 !important;
    right:auto !important;
    width:min(360px, 100%) !important;
    max-height:260px !important;
    overflow-y:auto !important;

    background:#ffffff !important;
    border:1px solid rgba(17,17,17,.14) !important;
    border-radius:8px !important;
    box-shadow:0 18px 45px rgba(0,0,0,.18) !important;

    opacity:1 !important;
    z-index:1000000 !important;
    box-sizing:border-box !important;
}

.bookings-page-body .booking-form .iti__country{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    min-height:42px !important;
    padding:10px 14px !important;

    background:#ffffff !important;
    color:#111111 !important;
    font-size:14px !important;
    line-height:1.25 !important;
}

.bookings-page-body .booking-form .iti__country:hover,
.bookings-page-body .booking-form .iti__highlight{
    background:#f2eee8 !important;
}

.bookings-page-body .booking-form .iti__flag-box{
    flex:0 0 auto !important;
}

.bookings-page-body .booking-form .iti__country-name,
.bookings-page-body .booking-form .iti__dial-code{
    color:#111111 !important;
}

.bookings-page-body .booking-form .iti__search-input{
    width:100% !important;
    height:44px !important;
    margin:0 !important;
    padding:0 14px !important;
    background:#ffffff !important;
    color:#111111 !important;
    border:0 !important;
    border-bottom:1px solid rgba(17,17,17,.1) !important;
    border-radius:8px 8px 0 0 !important;
    box-shadow:none !important;
    outline:none !important;
}

/* =========================================
   TERMS PAGE — FAQ-STYLE LEGAL LAYOUT
========================================= */

.terms-page-body{
    background:#f7f3ec;
}

.terms-page{
    width:100%;
    background:#f7f3ec;
    padding:65px 7% 120px;
}

.terms-hero{
    width:100%;
    max-width:1450px;
    margin:0 auto;
}

.terms-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:9px;
    margin:0 0 10px;
    font-family:"Inter", sans-serif;
    font-size:12px;
    line-height:1.4;
    color:#8b847b;
}

.terms-breadcrumb a{
    color:#8b847b;
    text-decoration:none;
    transition:color .25s ease;
}

.terms-breadcrumb a:hover,
.terms-breadcrumb a:focus{
    color:#b08a4a;
}

.terms-page h1{
    margin:0 0 32px;
    font-family:"Playfair Display", serif;
    font-size:clamp(26px, 2.6vw, 38px);
    line-height:1.08;
    font-weight:500;
    color:#1b1b1b;
    text-align:left;
}

.terms-panel{
    width:100%;
    max-width:1300px;
    margin:0;
    padding:42px 56px 56px;
    background:rgba(255,255,255,.46);
    border:1px solid rgba(17,17,17,.05);
}

.terms-intro{
    max-width:860px;
    margin-bottom:34px;
}

.terms-intro p:first-child{
    margin:0 0 14px;
    font-family:"Inter", sans-serif;
    font-size:clamp(17px, 1.7vw, 22px);
    line-height:1.55;
    font-weight:400;
    color:#5f5952;
}

.terms-intro p:nth-child(2){
    max-width:820px;
    margin:0 0 14px;
    font-family:"Inter", sans-serif;
    font-size:13px;
    line-height:1.75;
    color:#817a72;
}

.terms-intro span{
    display:inline-flex;
    font-family:"Inter", sans-serif;
    font-size:12px;
    color:#9a938a;
}

.terms-section{
    border-top:1px solid rgba(17,17,17,.12);
    padding:20px 0 22px;
}

.terms-section:last-child{
    border-bottom:1px solid rgba(17,17,17,.12);
}

.terms-section h2{
    margin:0 0 10px;
    font-family:"Inter", sans-serif;
    font-size:13px;
    font-weight:600;
    line-height:1.5;
    color:#4d4842;
}

.terms-section p,
.terms-section li{
    max-width:960px;
    margin:0;
    font-family:"Inter", sans-serif;
    font-size:12.5px;
    line-height:1.8;
    color:#777067;
}

.terms-section ul{
    margin:10px 0 0;
    padding-left:18px;
}

.terms-section li + li{
    margin-top:6px;
}

.terms-section a{
    color:#4d4842;
    text-decoration-color:rgba(176,138,74,.58);
    text-underline-offset:4px;
}

.terms-section a:hover,
.terms-section a:focus{
    color:#b08a4a;
}

@media (max-width:768px){
    .terms-page{
        padding:42px 22px 86px;
    }

    .terms-page h1{
        margin-bottom:28px;
        font-size:38px;
        line-height:1.08;
    }

    .terms-panel{
        padding:30px 22px 38px;
    }

    .terms-intro p:first-child{
        font-size:17px;
    }
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fcfbf8;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 7%;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-toggle {
    display: none;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    left: 4px;
}

.nav-links {
    display: flex;
    gap: 24px;
    margin-left: auto;
    align-items: center;
    padding-right: 100px;
    width: 25%;
}


.nav-links a {
    text-decoration: none;
    color: #444;
    font-size:14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover{
  color:#000
  
}

.journey-btn {
    background: transparent;
    color: black;
    border: 1px solid #000;
    padding: 10px 16px;
    font-size: 12px;
    border-radius: 8px;
    cursor: pointer;
    margin-left: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    justify-content: center;
    /* Adjust the padding to create space for the arrow */

}

.journey-btn:hover{
    background:#000;
    color:#fff;
    border-color: #000;
    transform:translateY(-2px);
    transition: all 0.3s ease; 
}

.small-title {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}
.hero {
    display: block;
    width: 100%;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

.hero-booking-card {
    position: relative;
    z-index: 3;
    max-width: 520px;
    background: #fff;
    padding: 46px;
    border-radius: 16px;
}

.hero-booking-card h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 500;
    margin-bottom: 22px;
}

.hero-booking-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
}

.hero-card-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.hero-text {
    margin-left: 20px;
}

.hero-text {
    max-width: 600px;
}
.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero-description {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.hero-image {
    width: 50%;
    height: 650px;
    overflow: hidden;
}

.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    object-position: center 355;
}

.services {
    padding: 100px;
    margin-bottom: -100px;
    margin-top: 0px;
}

.services h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.service-card:hover{
    transform: translateY(-8px) ;
}

.service-image {
    height: 320px;
    background: #d8c7b3;
    margin-bottom: 14px;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}.experience {
    display: grid;
    grid-template-columns: 32% 68%;
    align-items: center;
    gap: 55px;
    padding:150px 90px 120px;
}

.experience-text {
    max-width: 480px;
}

.experience-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.experience-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 22px;
}

.experience-text li {
    font-size: 14px;
    margin-bottom: 10px;
}

.experience-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin-top: 40px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}
.primary-btn {
    display: inline-block;
    background: #111111;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.primary-btn:hover {
    background: #333333;
}

.secondary-btn {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: #111111;
    border: 1px solid #111111;
    padding: 14px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-left: 12px;
}

.secondary-btn:hover {
    background: #111111;
    color: white;
}

.difference-buttons {
    margin-top: 35px;
}
.signature {
    padding: 90px 90px 70px;
}

.signature h2 {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 35px;

}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
}

.signature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


.signature-card h3 {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 10px;
}


.signature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ===========================
   FOOTER
=========================== */

.footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 55px 90px;
    background: #fff;
    border-top: 1px solid #e9e9e9;
}

.footer-brand h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.footer-tagline {
    color: #555;
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.copyright {
    color: #888;
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all .3s ease;
}

.footer-column a:hover {
    color: #000;
    transform: translateX(4px);
}
body {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.service-card,
.signature-card {
    transition: all 0.35s ease;
    cursor: pointer;
}

.service-card:hover,
.signature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
html{
    scroll-behavior:smooth;
}
.menu-toggle {
    display: none;
}
@media (max-width: 768px) {
    .navbar {
    position: relative;
    padding: 24px;
}

.menu-toggle {
    display: block;
    background: transparent;
    border: none;
    font-size: 26px;
    color: #111;
    cursor: pointer;
    z-index: 1001;
}

.nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 24px;
    right: 25px;
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    gap: 18px;
    z-index: 1000;
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    font-size: 14px;
    text-decoration: none;
    color: #111;
}

.nav-links .journey-btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}
    .navbar {
        padding: 24px;
    }

    .nav-links {
        display: none;
    }

    .hero,
    .experience {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 55px 24px;
        gap: 30px;
    }

    .hero-text,
    .experience-text {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        text-align: left;
    }

    .hero-text h1,
    .experience-text h2 {
        font-size: 42px;
        line-height: 1.05;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-description,
    .experience-text p {
        max-width: none;
        width: 100%;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-image,
    .experience-image {
        width: 100%;
        height: 320px;
        overflow: hidden;
        border-radius: 14px;
    }

    .hero-image img,
    .experience-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .signature {
        padding: 50px 24px;
    }

    .signature h2 {
        font-size: 38px;
        line-height: 1.1;
        margin-bottom: 28px;
        text-align: left;
    }

    .signature-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .signature-card {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .signature-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 12px;
    }

    .signature-card h3 {
        margin-top: 16px;
        margin-bottom: 10px;
        text-align: left;
    }

    .signature-card p {
        text-align: left;
        line-height: 1.6;
    }
.services {
    padding: 55px 24px;
}

.services h2 {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: left;
}

.service-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 34px;
}

.service-card {
    width: 100% !important;
    background: transparent;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 14px;
}
.service-card {
    width: 100%;
}

.service-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 18px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.service-card h3 {
    margin-bottom: 10px;
    text-align: left;
}

.service-card p {
    line-height: 1.7;
    text-align: left;
}
.service-card h3 {
    font-size: 24px;
    line-height: 1.15;
    margin: 18px 0 8px;
    text-align: left;
}

.service-card p {
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
    max-width: 95%;
}
    .footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 45px 24px;
        text-align: left;
    }

    .footer-column {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .footer-column h4,
    .footer-column p,
    .footer-column a {
        text-align: left;
    }
  
    
}
/* BOOKINGS PAGE */

.booking-page {
    padding: 105px 80px 110px;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 90px;
    align-items: start;
}

.booking-hero-text {
    margin-bottom: 45px;
    margin-top: -12px;
    margin-left: -24px
}

.booking-hero-text h1 {
    font-family: "Playfair Display", serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 22px;
    color: #111;
}

.booking-hero-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 640px;
    margin-bottom: 20px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-left: -24px;
    margin-top: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    padding: 16px;
    border: 1px solid #ececec;
    background: transparent;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    border-color: #111;
}

.booking-form button {
    background: #111;
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.booking-form button:hover {
    background: #2a2a2a;
    transform:translateY(-2px);
    background:#222;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}


.booking-right {
    display: flex;
    flex-direction: column;
    gap: 34px;
    width: 100%;
    margin-top: -6px;
}

.booking-image {
    width: 100%;
    height: 600px;
    border-radius: 18px;
    overflow: hidden;
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* WHAT HAPPENS NEXT CARD */

.booking-info {
    background: #f8f6f2;
    padding: 42px;
    border-radius: 16px;
    border-top:4px solid #d4af37;
}

.booking-info h2 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 500;
    margin: 0 0 42px;
    color: #111;
}

.booking-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.booking-step span {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    min-width: 26px;
    padding-top: 7px;
}

.booking-step h3 {
    font-size: 17px;
    margin: 0 0 8px;
    color: #111;
}

.booking-step p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* MOBILE */

@media (max-width: 768px) {
    .booking-page {
        padding: 70px 24px 75px;
    }

    .booking-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    @media (max-width: 768px) {
    .booking-left,
    .booking-right {
        margin-top: -60px;
    }
}

    .booking-hero-text {
        margin-bottom: 35px;
    }

    .booking-hero-text h1 {
        font-size: 42px;
        line-height: 1.08;
    }

    .booking-hero-text p {
        font-size: 15px;
        max-width: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form input,
    .booking-form textarea,
    .booking-form select {
        font-size: 16px;
        padding: 16px 18px;
    }

    .booking-image {
        height: 380px;
        border-radius: 16px;
    }

    .booking-info{
    background:#fcfbf8;
    padding:36px;
    border-radius:18px;
    border:1px solid #ececec;
}
        
    }

    .booking-info h2 {
        font-size: 30px;
    }

    @media (max-width: 768px) {
    .booking-image {
        margin-top: 35px;
    }
}

.booking-hero-text {
    margin-left: 0;
}

.booking-hero-text h1 {
    margin-left: 0;
}
.booking-form {
    margin-left: 0;
}

/* Force the Plan My Journey button colours */
a.journey-btn{
    color:#000 !important;
    text-decoration:none;
}

a.journey-btn:hover{
    background:#000 !important;
    color:#fff !important;
    border-color:#000 !important;
}

a.journey-btn:visited{
    color:#000;
}

a.journey-btn:hover,
a.journey-btn:focus{
    color:#fff !important;
}
.hero{
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 650px;
    overflow: hidden;
}

.hero-image-box{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.55) 45%,
        rgba(0,0,0,0.100) 100%
    );
    z-index: 1;
}

.hero-content{
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 680px;
    margin-left: 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;

}

.hero-small-title{
    font-family: "Inter", sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 26px;
}

.hero-content h1{
    font-family: "Playfair Display", serif;
    font-size: 76px;
    line-height: 1.03;
    font-weight: 600;
    margin-bottom: 40px;
    margin-left: 10px; 
}

.hero-description{
    font-family: "Inter", sans-serif;
    font-size: 19px;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 36px;
    margin-left: 6px;
    color: rgba(255,255,255,0.9);
}

.hero-btn{
    width: fit-content;
    padding: 20px 50px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.hero-btn:hover{
    background: white;
    color: #111;
}

@media(max-width: 768px){
    .hero{
        height: 78vh;
        min-height: 560px;
    }

    .hero-content{
        margin-left: 6%;
        margin-right: 6%;
        max-width: 90%;
    }

    .hero-content h1{
        font-size: 45px;
    }

    .hero-description{
        font-size: 16px;
    }
}
.hero-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation: luxuryHero 20s ease-in-out infinite alternate;
}

@keyframes luxuryHero{

    0%{
        transform:scale(1) translateX(0);
    }

    100%{
        transform:scale(1.08) translateX(-2%);
    }

}
/* ===== NAVBAR — TRANSPARENT LUXURY STYLE ===== */

.navbar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    padding: 35px 7%;
    padding-top: 26px;
    padding-bottom: 26px;
}

.logo{
    color: #ffffff;
    font-size: 22px;
    letter-spacing: 4px;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-links a{
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s ease;
}

.journey-btn{
    border: 1px solid #ffffff;
    padding: 12px 22px;
    color: #ffffff;
    background: transparent;
}
.hero-content{
    animation:fadeUp 1.2s ease;
}

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(35px);
}

100%{
opacity:1;
transform:translateY(0);
}

}
.logo{

font-family:"Playfair Display", serif;

font-size:28px;

font-weight:600;

letter-spacing:2px;

}
@media(max-width: 768px){
    .nav-links{
        display: none;
    }

    .nav-links.active{
        display: flex;
        position: absolute;
        top: 75px;
        right: 20px;
        width: 220px;
        padding: 25px;
        background: rgba(0,0,0,0.85);
        border-radius: 18px;
        flex-direction: column;
        gap: 18px;
        z-index: 999;
    }

    .nav-links.active a{
        color: #fff;
    }
}
@media(max-width: 768px){

    .navbar{
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 28px 22px !important;
        z-index: 9999 !important;
        background: transparent !important;

        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .logo{
        display: block !important;
        color: #ffffff !important;
        font-family: "Playfair Display", serif !important;
        font-size: 17px !important;
        font-weight: 600 !important;
        letter-spacing: 2px !important;
        line-height: 1 !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10000 !important;
    }

    .menu-toggle{
        display: block !important;
        color: #ffffff !important;
        background: none !important;
        border: none !important;
        font-size: 28px !important;
        z-index: 10000 !important;
    }
}
@media (max-width: 768px) {

    .navbar{
        padding: 32px 22px;
    }

    .hero-content{
        left: -32px;
        right: -22px;
    }

}
/* ===== FINAL LOGO + HERO ALIGNMENT FIX ===== */

.navbar{
    padding: 35px 6% !important;
}

.hero-content{
    position: relative !important;
    margin-left: 6% !important;
    padding-left: 0 !important;
    max-width: 720px !important;
}

.hero-content h1,
.hero-description{
    max-width: 520px;
    margin-left:0%;
}
.hero-btn{
    margin-left: 0 !important;
    line-height: 0,95;
}

/* MOBILE */
@media(max-width: 768px){

    .navbar{
        padding: 28px 22px !important;
    }

    .hero-content{
        margin-left: 6% !important;
        margin-right: 22px !important;
        max-width: calc(100% - 44px) !important;
    }

    .hero-content h1,
    .hero-description,
    .hero-btn{
        margin-left: 0 !important;
    }
    
}
.launch-veil{
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.launch-box{
    max-width: 650px;
    padding: 60px 24px 70px;
}

.launch-label{
    font-family: "Inter", sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.launch-box h1{
    font-family: "Playfair Display", serif;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 28px;
}

.launch-text{
    font-family: "Inter", sans-serif;
    font-size: 17px;
    margin-bottom: 48px;
    opacity: .9;
}

.countdown-boxes{
    display: flex;
    justify-content: center;
    gap: 22px;
}

.countdown-boxes div{
    min-width: 95px;
    padding: 20px 16px;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(8px);
    border-radius: 8px;
}

.countdown-boxes span{
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 600;
}

.countdown-boxes small{
    font-family: "Inter", sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media(max-width:768px){
    .launch-box h1{
        font-size: 42px;
    }

    .countdown-boxes{
        gap: 8px;
    }

    .countdown-boxes div{
        min-width: 64px;
        padding: 13px 8px;
    }

    .countdown-boxes span{
        font-size: 24px;
    }
}

html.launch-locked,
body.launch-locked{
    overflow: hidden !important;
    height: 100vh !important;
    width: 100% !important;
    position: fixed !important;
    inset: 0 !important;
    touch-action: none !important;
}
.launch-message{
    margin-top:20px;
    color:#d6d6d6;
    font-size:15px;
    font-family:'Inter',sans-serif;
}

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

.launch-btn{
    display:inline-block;
    margin-top:18px;
    margin-bottom:55px;
    padding:14px 34px;

    background:transparent;
    border:1px solid rgba(255,255,255,.45);

    color:#ffffff;
    text-decoration:none;

    font-family:"Inter",sans-serif;
    font-size:14px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;

    cursor:pointer;

    transition:
        background-color .35s ease,
        border-color .35s ease,
        transform .25s ease;
}

.launch-btn:hover{
    background:rgba(212,175,55,.08);
    border-color:#d4af37;
    color:#ffffff;
    box-shadow: 0 0 18px rgba(212, 175,55,18);
    transform:translateY(-2px);
}

.launch-btn:active{
    transform:translateY(0);
}

.launch-btn:focus{
    outline:none;
    box-shadow:0 0 0 3px rgba(255,255,255,.15);
}

.launch-box{
    animation: launchFadeUp 1.2s ease forwards;
}

@keyframes launchFadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
#launch-overlay{
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}
.time-box{
    transition:transform .2s ease;
}

.time-box.update{
    transform:scale(1.06);
}
.access-modal{
    position: fixed;
    inset: 0;
    z-index: 1000000;
    background: rgba(0,0,0,.75);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.access-modal.active{
    display: flex;
    animation: fademodal .28s ease;
}

.access-modal-box{
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #fff;
    color: #111;
    padding: 58px 54px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}

.close-modal{
    position: absolute;
    top: 18px;
    right: 22px;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.access-modal-box h2{
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-bottom: 15px;
}
.access-modal.closing{
    animation: modalFadeOut .3s ease forwards;
}

@keyframes modalFadeOut{
    0%{
        opacity:1;
    }

    100%{
        opacity:0;
    }
}
.access-text{
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
}

.access-form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.access-form input{
    padding: 16px;
    border: 1px solid #ddd;
    font-family: "Inter", sans-serif;
    font-size: 15px;
}

.access-form button{
    padding: 16px;
    border: none;
    background: #111;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
}

/* SUCCESS MESSAGE */

.access-success{
    display:none;
    text-align:center;
    animation:fadeModal .35s ease;
}

.access-success.show{
    display:block;
}

.success-icon{
    width:82px;
    height:82px;
    margin:0 auto 28px;
    border-radius:50%;
    background:#b08a4a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    font-weight:600;
    animation: popCheck .45s ease;
}

.access-success h2{
    font-family:"Playfair Display",serif;
    font-size:42px;
    margin-bottom:18px;
}

.access-success p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

#closeSuccess{
    background:#111;
    color:#fff;
    border:none;
    padding:17px 56px;
    cursor:pointer;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:.3s;
}

#closeSuccess:hover{
    background:#b08a4a;
    transform: translateY(-2px);
}
@keyframes fadeModal{

0%{
opacity:0;
}

100%{
opacity:1;
}

}

.access-modal-box{

animation:scaleModal .30s ease;

}

@keyframes scaleModal{

0%{
opacity:0;
transform:scale(.95);
}

100%{
opacity:1;
transform:scale(1);
}
}
@keyframes popCheck{

0%{
transform:scale(.7);
opacity:0;
}

70%{
transform:scale(1.08);
}

100%{
transform:scale(1);
opacity:1;
}

}
.launch-veil.hidden{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition: opacity .8s ease, visibility .8s ease;
}
@media (max-width: 768px){

    .experience{
        margin-top: 60px;
    }

}
.hero{
    height: 100vh !important;
    min-height: 720px !important;
    overflow: hidden !important;
}

.hero-image-box{
    height: 100% !important;
}

.hero-image-box img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}
/* ===== FINAL LOGO + MOBILE MENU FIX ===== */

/* Desktop logo */
.logo img{
    height: 160px;
    width: auto;
    display: block;
    position: relative;
    top: -20px;
}

/* Desktop nav position */
.nav-links{
    position: relative;
    top: -80px;
}

/* Mobile only */
@media (max-width: 768px) {

  .header .navbar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 22px 22px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    background: transparent !important;
    z-index: 9999 !important;
  }

  .header .navbar .logo {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }

  .header .navbar .logo img {
    height: 120px !important;
    width: auto !important;
    display: block !important;
  }

  .header .navbar .menu-toggle {
    display: block !important;
    position: absolute !important;
    top: 28px !important;
    right: 22px !important;
    z-index: 100001 !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 28px !important;
  }

  @media (max-width: 768px) {

  .navbar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 22px 22px !important;
    background: transparent !important;
    z-index: 9999 !important;
  }

  .menu-toggle {
    display: block !important;
    position: absolute !important;
    top: 28px !important;
    right: 22px !important;
    z-index: 100001 !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 28px !important;
  }

  .nav-links {
    display: none !important;
    position: absolute !important;
    top: 68px !important;
    right: 22px !important;
    left: auto !important;

    width: 125px !important;
    padding: 12px 0 !important;

    background: rgba(20, 18, 16, 0.72) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 14px !important;
    box-shadow: none !important;

    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;

    z-index: 100000 !important;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    width: 100% !important;
    padding: 9px 16px !important;
    font-size: 13px !important;
    color: #ffffff !important;
    text-align: left !important;
  }

  .nav-links .journey-btn {
    display: none !important;
  }
}
}
/* BOOKINGS PAGE HEADER ONLY */

.bookings-page-body .navbar {
    background: #4b4b4b !important;
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    padding: 18px 6% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.bookings-page-body .logo img {
    height: 120px !important;
    width: auto !important;
    display: block !important;
    top: 0 !important;
}

.bookings-page-body .nav-links {
    display: flex !important;
    gap: 42px !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    width: auto !important;
    top: 0 !important;
    position: relative !important;
}

.bookings-page-body .nav-links a{
    color:#ffffff !important;
    transition:color .3s ease;
}

.bookings-page-body .nav-links a:hover{
    color:#111111 !important;
}


.bookings-page-body .nav-links a:hover{
    color:#111111 !important;
}

@media (max-width: 768px) {
    .bookings-page-body .nav-links {
        display: none !important;
    }

    .bookings-page-body .nav-links.active {
        display: flex !important;
    }
}
.bookings-navbar{
    background:#f3f3f1 !important;
    position:sticky !important;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
}

.bookings-navbar .nav-links a{
    color:#111 !important;
}

.bookings-navbar .menu-toggle{
    color:#111 !important;
}
.bookings-navbar{
    background:#f3f3f1 !important;
    position:sticky !important;
    top:0 !important;
    width:100% !important;
    z-index:9999 !important;
}
.bookings-page-body .nav-links a{
    color:#ffffff !important;
    transition:color .3s ease;
}

.bookings-page-body .nav-links a:hover{
    color:#111111 !important;
}
/* FINAL BOOKINGS NAV FIX */

.bookings-page-body .bookings-navbar {
    background: #3e3e3e !important;
}

.bookings-page-body .bookings-navbar .nav-links a {
    color: #ffffff !important;
}

.bookings-page-body .bookings-navbar .nav-links a:hover {
    color: #111111 !important;
}

.bookings-page-body .bookings-navbar .menu-toggle {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .bookings-page-body .bookings-navbar .nav-links {
        display: none !important;
        position: absolute !important;
        top: 85px !important;
        right: 22px !important;
        left: auto !important;
        width: 135px !important;
        padding: 14px 0 !important;
        background: rgba(20, 18, 16, 0.95) !important;
        border-radius: 14px !important;
        flex-direction: column !important;
        gap: 0 !important;
        z-index: 100000 !important;
    }

    .bookings-page-body .bookings-navbar .nav-links.active {
        display: flex !important;
    }

    .bookings-page-body .bookings-navbar .nav-links a {
        color: #ffffff !important;
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
}
/* MOBILE MENU HOVER FIX — ALL PAGES */

@media (max-width: 768px) {

  .nav-links a:hover,
  .nav-links a:focus,
  .nav-links a:active {
    color: #ffffff !important;
    background: rgba(255,255,255,0.12) !important;
    border-radius: 8px !important;
  }

  .bookings-page-body .bookings-navbar .nav-links a:hover,
  .bookings-page-body .bookings-navbar .nav-links a:focus,
  .bookings-page-body .bookings-navbar .nav-links a:active {
    color: #ffffff !important;
    background: rgba(255,255,255,0.12) !important;
    border-radius: 8px !important;
  }
}
/* DESKTOP NAV HOVER ONLY */

@media (min-width: 769px) {

  .bookings-page-body .bookings-navbar .nav-links a:hover {
    color: #111111 !important;
  }

  .navbar .nav-links a:hover {
    color: #d4af37 !important;
  }
}
/* =========================================
   FINAL NAVIGATION HOVER FIX
   Landing Page + Bookings Page
========================================= */

/* ---------- DESKTOP ---------- */
@media (min-width:769px){

    .navbar .nav-links a{
        transition:color .3s ease;
    }

    .navbar .nav-links a:hover{
        background:transparent !important;
        transform:none !important;
        border-radius:0 !important;
        color:#111111 !important;
    }

}


/* ---------- MOBILE ---------- */
@media (max-width:768px){

    .nav-links a{
        transition:all .3s ease;
        border-radius:10px;
    }

    .nav-links a:hover,
    .nav-links a:focus,
    .nav-links a:active{

        background:rgba(255,255,255,.12) !important;
        color:#ffffff !important;
        transform:translateX(4px);
    }

}
/* =================================
   GLOBAL MOBILE NAVIGATION
================================= */

@media (max-width:768px){

    .nav-links a{
        display:block;
        width:100%;
        padding:12px 16px;
        box-sizing:border-box;
        border-radius:8px;
        transition:
            background .25s ease,
            color .25s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus,
    .nav-links a:active{
        background:rgba(255,255,255,.12);
        color:#fff !important;
        transform:none;
    }

}
/* FINAL BOOKINGS PAGE POLISH */

.bookings-page-body .booking-right{
    margin-top:10px !important;
}

.bookings-page-body .booking-hero-text p{
    margin-bottom:30px !important;
}

.bookings-page-body .booking-form input,
.bookings-page-body .booking-form textarea,
.bookings-page-body .booking-form select{
    border:1px solid #ececec !important;
    padding:18px !important;
}

.bookings-page-body .booking-form input:focus,
.bookings-page-body .booking-form textarea:focus,
.bookings-page-body .booking-form select:focus{
    border-color:#111111 !important;
}

.bookings-page-body .booking-image{
    border-radius:18px !important;
    overflow:hidden !important;
    box-shadow:0 18px 45px rgba(0,0,0,.08) !important;
}
/* BOOKING PLACEHOLDER */

.booking-form input::placeholder,
.booking-form textarea::placeholder{
    color:#a8a8a8;
    font-weight:400;
}
/* BOOKING INPUT FOCUS */

.booking-form input,
.booking-form textarea,
.booking-form select{
    transition:border-color .25s ease,
               box-shadow .25s ease;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus{

    outline:none;
    border-color:#2f2f2f;
    box-shadow:0 0 0 4px rgba(47,47,47,.08);

}
/* BOOKINGS — WHAT HAPPENS NEXT CARD + MOBILE SPACING */

/* Desktop + general card styling */
.bookings-page-body .booking-info{
    background:#fcfbf8 !important;
    padding:36px !important;
    border-radius:18px !important;
    border:1px solid #ececec !important;
    border-top:4px solid #d4af37 !important;
    box-shadow:0 18px 45px rgba(0,0,0,.06) !important;
}

.bookings-page-body .booking-step{
    margin-bottom:28px !important;
}

/* Mobile only */
@media (max-width:768px){

    /* Bring Plan Your Journey lower on mobile */
    .bookings-page-body .booking-page{
        padding-top:150px !important;
    }

    /* Make What Happens Next card work nicely on mobile */
    .bookings-page-body .booking-info{
        padding:30px 24px !important;
        border-radius:16px !important;
        margin-top:20px !important;
    }

    .bookings-page-body .booking-info h2{
        font-size:30px !important;
        margin-bottom:32px !important;
    }

    .bookings-page-body .booking-step{
        gap:16px !important;
        margin-bottom:26px !important;
    }

    .bookings-page-body .booking-step p{
        font-size:14px !important;
        line-height:1.7 !important;
    }
}
/* BOOKINGS SUCCESS MODAL */

.booking-success-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
    z-index:1000000;
}

.booking-success-modal.active{
    display:flex;
    animation:fadeModal .28s ease;
}

.booking-success-box{
    position:relative;
    width:100%;
    max-width:520px;
    background:#fff;
    color:#111;
    padding:58px 54px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 40px 100px rgba(0,0,0,.35);
    animation:scaleModal .30s ease;
}

.close-booking-success{
    position:absolute;
    top:18px;
    right:22px;
    border:none;
    background:transparent;
    font-size:28px;
    cursor:pointer;
}

.booking-success-box h2{
    font-family:"Playfair Display",serif;
    font-size:42px;
    margin-bottom:18px;
}

.booking-success-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

#doneBookingSuccess{
    background:#111;
    color:#fff;
    border:none;
    padding:17px 56px;
    cursor:pointer;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:.3s;
}

#doneBookingSuccess:hover{
    background:#b08a4a;
    transform:translateY(-2px);
}
/* BOOKING BUDGET CURRENCY ROW */

.budget-row{
    display:grid;
    grid-template-columns:0.38fr 1fr;
    gap:18px;
}

@media(max-width:768px){
    .budget-row{
        grid-template-columns:1fr;
    }
}
/* FINAL FIX — SINGLE BUDGET FIELD */

.bookings-page-body .budget-field{
    display:flex !important;
    width:100% !important;
}

.bookings-page-body .currency-select{
    width:50px !important;
    flex-shrink:0 !important;
    background:#f3f3f3 !important;
    border:1px solid #ececec !important;
    border-right:0 !important;
    border-radius:8px 0 0 8px !important;
    padding:18px 14px !important;
    text-align:center !important;
    cursor:pointer !important;
}

.bookings-page-body .budget-input{
    flex:1 !important;
    width:auto !important;
    min-width:0 !important;
    border:1px solid #ececec !important;
    border-left:0 !important;
    border-radius:0 8px 8px 0 !important;
    padding:18px !important;
}
/* FINAL PHONE COUNTRY CODE FIELD */

.bookings-page-body .phone-field{
    display:flex !important;
    width:100% !important;
}

.bookings-page-body .country-code-select{
    width:82px !important;
    flex-shrink:0 !important;
    background:#f3f3f3 !important;
    border:1px solid #ececec !important;
    border-right:0 !important;
    border-radius:8px 0 0 8px !important;
    padding:18px 10px !important;
    text-align:center !important;
    cursor:pointer !important;
}

.bookings-page-body .phone-input{
    flex:1 !important;
    width:auto !important;
    min-width:0 !important;
    border:1px solid #ececec !important;
    border-left:0 !important;
    border-radius:0 8px 8px 0 !important;
    padding:18px !important;
}
/* LUXURY PHONE INPUT */

.iti{
    width:100%;
}

.iti__selected-country{
    background:#f3f3f3 !important;
    border-right:1px solid #ececec !important;
    border-radius:8px 0 0 8px !important;
    height:54px !important;
    padding:0 8px !important;
    min-width: 74px !important
}
.iti__flag-container{
    width:74px !important;
}

.iti__selected-country-primary{
    gap:4px !important;
}

.iti--separate-dial-code .iti__selected-dial-code{
    color:#555;
    font-weight:500;
}

.iti{
    width:100%;
}

.iti input{
    width:100% !important;
    height:56px !important;
    padding-left:70px !important;
    padding-right:18px !important;
    border:1px solid #ececec !important;
    border-radius:8px !important;
    font-size:15px !important;
    box-sizing:border-box !important;
}

.iti input:focus{
    border-color:#111;
    box-shadow:0 0 0 4px rgba(0,0,0,.08);
}
/* FINAL COUNTRY CODE FIELD FIX */

.bookings-page-body .iti{
    width:100% !important;
    display:block !important;
}

.bookings-page-body .iti__country-container{
    width:92px !important;
    height:58px !important;
}

.bookings-page-body .iti__selected-country{
    width:100px !important;
    min-width:100px !important;
    height:58px !important;
    background:#f3f3f3 !important;
    border-right:1px solid #ececec !important;
    border-radius:8px 0 0 8px !important;
    padding:0 10px !important;
}

.bookings-page-body .iti input,
.bookings-page-body .iti .iti__tel-input{
    width:100% !important;
    height:58px !important;
    padding-left:105px !important;
    border:1px solid #ececec !important;
    border-radius:8px !important;
    box-sizing:border-box !important;
}
/* Grey country selector */
.bookings-page-body .iti__selected-country{
    background:#f3f3f3 !important;
    border-right:1px solid #ececec !important;
    color:#111111 !important;
}

/* Make +234 black */
.bookings-page-body .iti__selected-dial-code{
    color:#111111 !important;
    font-weight:500 !important;
}

/* Make dropdown arrow black */
.bookings-page-body .iti__arrow{
    border-top-color:#111111 !important;
}

/* Keep the flag visible */
.bookings-page-body .iti__flag{
    opacity:1 !important;
}
/* FIX COUNTRY CODE GREY BOX SPILL */

.bookings-page-body .iti{
    overflow:hidden !important;
    border-radius:8px !important;
}

.bookings-page-body .iti__country-container,
.bookings-page-body .iti__selected-country{
    height:53.8px !important;
    max-height:53.8px !important;
}

.bookings-page-body .iti input,
.bookings-page-body .iti .iti__tel-input{
    height: 55.8px !important;
    padding-left: 120px !important;
}
/* FIX COUNTRY DROPDOWN NOT SHOWING */

.bookings-page-body .iti{
    overflow:visible !important;
}

.bookings-page-body .iti__country-list{
    z-index:1000000 !important;
}
  
/* One focus outline around the whole budget field */
.bookings-page-body .budget-field:focus-within{
    border-color:#111111 !important;
    box-shadow:0 0 0 4px rgba(47,47,47,.08) !important;
}


/* ---------- PHONE COUNTRY SELECTOR ---------- */

/* Do not hide the dropdown list */
.bookings-page-body .iti{
    width:100% !important;
    overflow:visible !important;
    border-radius:8px !important;
}

/* Width of the complete grey section */
.bookings-page-body .iti__country-container{
    width:108px !important;
    height:56px !important;
}

/* Entire flag + arrow + code area */
.bookings-page-body .iti__selected-country{
    width:108px !important;
    min-width:108px !important;
    height:56px !important;

    padding:0 12px !important;

    background:#f3f3f3 !important;
    color:#111111 !important;

    border-right:1px solid #ececec !important;
    border-radius:8px 0 0 8px !important;

    box-sizing:border-box !important;
}

/* Hover the WHOLE grey section */
.bookings-page-body .iti__selected-country:hover,
.bookings-page-body .iti__selected-country:focus,
.bookings-page-body .iti__selected-country:active{
    background:#e7e7e7 !important;
}

/* Prevent a separate grey patch around only the flag */
.bookings-page-body .iti__selected-country-primary,
.bookings-page-body .iti__selected-country-primary:hover,
.bookings-page-body .iti__selected-country-primary:focus{
    background:transparent !important;
}

/* Keep country code black */
.bookings-page-body .iti__selected-dial-code{
    color:#111111 !important;
    font-weight:500 !important;
}

/* Push Phone Number beyond the wider selector */
.bookings-page-body .iti input,
.bookings-page-body .iti .iti__tel-input{
    width:100% !important;
    height:56px !important;

    padding-left:122px !important;
    padding-right:18px !important;

    border:1px solid #ececec !important;
    border-radius:8px !important;

    background:#ffffff !important;
    box-sizing:border-box !important;
}

/* Keep the country list visible above the form */
.bookings-page-body .iti__dropdown-content,
.bookings-page-body .iti__country-list{
    z-index:1000000 !important;
}
/* ==========================================
   GLOBAL BLACKWOOD LUXURY FOOTER
========================================== */

#siteFooter{
    width:100%;
}

.luxury-footer{
    width:100%;
    background:#171717;
    color:#ffffff;
    padding:82px 6% 28px;
    font-family:"Inter", Arial, sans-serif;
}

.luxury-footer-top{
    display:grid;
    grid-template-columns:1.7fr .75fr 1fr 1.25fr;
    gap:70px;
    align-items:start;
}

/* BRAND AREA */

.luxury-footer-brand{
    max-width:430px;
}

.luxury-footer-logo{
    display:inline-block;
    margin-bottom:24px;
}

.luxury-footer-logo img{
    display:block;
    width:auto;
    height:92px;
    object-fit:contain;
}

.luxury-footer-description{
    max-width:400px;
    margin:0 0 30px;
    color:rgba(255,255,255,.67);
    font-size:14px;
    line-height:1.9;
}

.luxury-footer-journey{
    display:inline-flex;
    align-items:center;
    gap:13px;

    padding-bottom:8px;
    border-bottom:1px solid rgba(212,175,55,.7);

    color:#ffffff;
    text-decoration:none;

    font-size:13px;
    font-weight:500;
    letter-spacing:1.4px;
    text-transform:uppercase;

    transition:
        color .3s ease,
        border-color .3s ease,
        gap .3s ease;
}

.luxury-footer-journey:hover{
    color:#d4af37;
    border-color:#d4af37;
    gap:19px;
}

/* FOOTER COLUMNS */

.luxury-footer-column{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.luxury-footer-column h3{
    position:relative;
    margin:0 0 26px;
    padding-bottom:13px;

    color:#ffffff;
    font-family:"Playfair Display", Georgia, serif;
    font-size:20px;
    font-weight:500;
    letter-spacing:.4px;
}

.luxury-footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;

    width:28px;
    height:1px;
    background:#d4af37;
}

.luxury-footer-column > a{
    display:inline-block;
    margin-bottom:14px;

    color:rgba(255,255,255,.65);
    text-decoration:none;

    font-size:13px;
    line-height:1.6;

    transition:
        color .25s ease,
        transform .25s ease;
}

.luxury-footer-column > a:hover{
    color:#ffffff;
    transform:translateX(4px);
}

/* CONTACT AREA */

.luxury-footer-label{
    margin:0 0 5px;

    color:rgba(255,255,255,.38);
    font-size:10px;
    font-weight:600;
    letter-spacing:1.3px;
    text-transform:uppercase;
}

.luxury-footer-contact > a{
    margin-bottom:19px;
    overflow-wrap:anywhere;
}

.luxury-footer-socials{
    display:flex;
    flex-wrap:wrap;
    gap:13px;
    margin-top:9px;
}

.luxury-footer-socials a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:40px;
    padding:10px 16px;

    border:1px solid rgba(255,255,255,.18);
    border-radius:50px;

    color:#ffffff;
    text-decoration:none;

    font-size:11px;
    font-weight:500;
    letter-spacing:.8px;
    text-transform:uppercase;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.luxury-footer-socials a:hover{
    background:#d4af37;
    border-color:#d4af37;
    color:#111111;
    transform:translateY(-2px);
}

/* BOTTOM SECTION */

.luxury-footer-divider{
    width:100%;
    height:1px;
    margin:58px 0 25px;
    background:rgba(255,255,255,.1);
}

.luxury-footer-bottom{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:28px;

    color:rgba(255,255,255,.45);
    font-size:11px;
    letter-spacing:.3px;
}

.luxury-footer-bottom p{
    margin:0;
}

.luxury-footer-legal{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
}

.luxury-footer-legal a{
    color:rgba(255,255,255,.45);
    text-decoration:none;
    transition:color .25s ease;
}

.luxury-footer-legal a:hover{
    color:#ffffff;
}

.luxury-footer-top-button{
    justify-self:end;

    display:inline-flex;
    align-items:center;
    gap:9px;

    padding:11px 16px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:999px;
    background:rgba(255,255,255,.05);

    color:rgba(255,255,255,.78);
    font-family:inherit;
    font-size:11px;
    letter-spacing:.8px;
    text-transform:uppercase;

    cursor:pointer;
    transition:
        color .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        transform .25s ease;
}

.luxury-footer-top-button:hover{
    color:#d4af37;
    border-color:rgba(212,175,55,.65);
    background:rgba(212,175,55,.08);
    transform:translateY(-2px);
}

/* TABLET */

@media(max-width:1050px){

    .luxury-footer-top{
        grid-template-columns:1.4fr 1fr 1fr;
        gap:50px;
    }

    .luxury-footer-contact{
        grid-column:2 / 4;
    }

}

/* MOBILE */

@media(max-width:768px){

    .luxury-footer{
        padding:64px 24px 28px;
    }

    .luxury-footer-top{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:45px 26px;
    }

    .luxury-footer-brand{
        grid-column:1 / -1;
        max-width:100%;
    }

    .luxury-footer-logo img{
        height:78px;
    }

    .luxury-footer-description{
        max-width:100%;
        font-size:13px;
    }

    .luxury-footer-contact{
        grid-column:1 / -1;
    }

    .luxury-footer-divider{
        margin-top:48px;
    }

    .luxury-footer-bottom{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:17px;
    }

    .luxury-footer-legal{
        justify-content:flex-start;
        flex-wrap:wrap;
        gap:16px;
    }

    .luxury-footer-top-button{
        justify-self:start;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .luxury-footer-top{
        grid-template-columns:1fr;
    }

    .luxury-footer-brand,
    .luxury-footer-contact{
        grid-column:auto;
    }

    .luxury-footer-column h3{
        margin-bottom:21px;
    }

    .luxury-footer-socials{
        width:100%;
    }

    .luxury-footer-socials a{
        flex:1;
    }

}
/* =========================================
   TRUE FINAL PHONE + BUDGET FIELD FIX
========================================= */

:root{
    --booking-bg:#fcfbf8;
    --booking-border:#ececec;
    --booking-text:#111111;
    --booking-hover:#f2eee8;
}

/* =========================
   BUDGET FIELD
========================= */

.bookings-page-body .budget-field{
    display:flex !important;
    align-items:stretch !important;
    width:100% !important;
    height:56px !important;

    background:var(--booking-bg) !important;
    border:1px solid var(--booking-border) !important;
    border-radius:8px !important;
    overflow:hidden !important;
}

/* Currency section */
.bookings-page-body .budget-field .currency-select{
    width:64px !important;
    min-width:64px !important;
    height:100% !important;

    margin:0 !important;
    padding:0 12px !important;

    background-color:var(--booking-bg) !important;
    color:var(--booking-text) !important;

    border:0 !important;
    border-right:1px solid var(--booking-border) !important;
    border-radius:0 !important;

    box-shadow:none !important;
    outline:none !important;
    cursor:pointer !important;

    -webkit-appearance:auto !important;
    appearance:auto !important;
}

/* Budget number section */
.bookings-page-body .budget-field .budget-input{
    flex:1 !important;
    width:auto !important;
    min-width:0 !important;
    height:100% !important;

    margin:0 !important;
    padding:0 18px !important;

    background-color:var(--booking-bg) !important;
    color:var(--booking-text) !important;

    border:0 !important;
    border-radius:0 !important;

    box-shadow:none !important;
    outline:none !important;
}

/* One focus effect around the entire budget field */
.bookings-page-body .budget-field:focus-within{
    border-color:#111111 !important;
    box-shadow:0 0 0 4px rgba(47,47,47,.08) !important;
}

/* =========================
   PHONE FIELD
========================= */

.bookings-page-body .iti{
    display:block !important;
    width:100% !important;
    overflow:visible !important;
    border-radius:8px !important;
}

/* Phone input itself */
.bookings-page-body .iti input,
.bookings-page-body .iti .iti__tel-input{
    width:100% !important;
    height:56px !important;

    padding-left:122px !important;
    padding-right:18px !important;

    background-color:var(--booking-bg) !important;
    color:var(--booking-text) !important;

    border:1px solid var(--booking-border) !important;
    border-radius:8px !important;

    box-shadow:none !important;
    outline:none !important;
    box-sizing:border-box !important;
}

/* Full flag + arrow + country code section */
.bookings-page-body .iti__country-container{
    width:108px !important;
    height:56px !important;

    background:transparent !important;
    border-radius:8px 0 0 8px !important;
}

/* Remove permanent grey background */
.bookings-page-body .iti__selected-country{
    width:108px !important;
    min-width:108px !important;
    height:56px !important;

    padding:0 12px !important;

    background-color:var(--booking-bg) !important;
    color:var(--booking-text) !important;

    border:0 !important;
    border-right:1px solid var(--booking-border) !important;
    border-radius:8px 0 0 8px !important;

    box-shadow:none !important;
    outline:none !important;
    box-sizing:border-box !important;

    transition:background-color .25s ease !important;
}

/* Your corrected hover:
   the WHOLE country-code section changes together */
.bookings-page-body .iti__selected-country:hover,
.bookings-page-body .iti__selected-country:focus,
.bookings-page-body .iti__selected-country:active,
.bookings-page-body .iti__selected-country[aria-expanded="true"]{
    background-color:var(--booking-hover) !important;
}

/* Do not create a separate grey square around only the flag */
.bookings-page-body .iti__selected-country-primary,
.bookings-page-body .iti__selected-country-primary:hover,
.bookings-page-body .iti__selected-country-primary:focus,
.bookings-page-body .iti__selected-country-primary:active{
    background:transparent !important;
    box-shadow:none !important;
}

/* Dial code */
.bookings-page-body .iti__selected-dial-code{
    color:var(--booking-text) !important;
    font-weight:500 !important;
}

/* Dropdown arrow */
.bookings-page-body .iti__arrow{
    border-top-color:var(--booking-text) !important;
}

/* Phone focus */
.bookings-page-body .iti:focus-within input,
.bookings-page-body .iti:focus-within .iti__tel-input{
    border-color:#111111 !important;
    box-shadow:0 0 0 4px rgba(47,47,47,.08) !important;
}

/* Dropdown must remain visible */
.bookings-page-body .iti__dropdown-content,
.bookings-page-body .iti__country-list{
    z-index:1000000 !important;
}
/* =========================================
   BLACKWOOD SHARED FORM LOADING SPINNER
   Early Access + Booking Form
========================================= */

.form-submit-btn{
    position:relative !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:12px !important;

    width:100% !important;
    min-height:54px !important;

    background:#111111 !important;
    color:#ffffff !important;
    border:none !important;
    border-radius:8px !important;

    padding:16px 24px !important;

    font-family:"Inter",sans-serif !important;
    font-size:14px !important;
    font-weight:600 !important;
    letter-spacing:1px !important;

    cursor:pointer !important;

    transition:
        background-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease,
        opacity .3s ease !important;
}

.form-submit-btn:hover:not(:disabled){
    background:#222222 !important;
    transform:translateY(-2px) !important;
    box-shadow:0 10px 25px rgba(0,0,0,.15) !important;
}

.form-submit-btn:disabled{
    cursor:not-allowed !important;
    opacity:.82 !important;
    transform:none !important;
    box-shadow:none !important;
}

.form-button-text{
    display:inline-block !important;
}

/* Hidden normally */
.form-button-loader{
    display:none !important;

    width:20px !important;
    height:20px !important;

    border:2px solid rgba(212,175,55,.20) !important;
    border-top-color:#d4af37 !important;
    border-radius:50% !important;

    animation:blackwoodFormSpin 1s linear infinite !important;
}

/* Visible while loading */
.form-submit-btn.is-loading .form-button-loader{
    display:inline-block !important;
}

.form-submit-btn.is-loading{
    transform:none !important;
    box-shadow:none !important;
}

/* Keep early-access button uppercase */
.access-form .form-submit-btn{
    text-transform:uppercase !important;
    letter-spacing:1.5px !important;
}

/* Booking button keeps normal casing */
.booking-form .form-submit-btn{
    text-transform:none !important;
    letter-spacing:.3px !important;
    min-height:56px !important;
    padding:18px 30px !important;
}

@keyframes blackwoodFormSpin{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

/* ===========================
   SCROLL FADE-UP ANIMATIONS
=========================== */

.bw-reveal{
    opacity:0;
    transform:translateY(34px);
    transition:
        opacity .85s ease,
        transform .85s cubic-bezier(.22, 1, .36, 1);
    transition-delay:var(--reveal-delay, 0ms);
    will-change:opacity, transform;
}

.bw-reveal.is-visible{
    opacity:1;
    transform:translateY(0);
}

.service-card.bw-reveal.is-visible:hover,
.signature-card.bw-reveal.is-visible:hover{
    transform:translateY(-8px);
}

.bw-reveal-image{
    overflow:hidden;
}

.bw-reveal-image img{
    transform:scale(1.04);
    transition:transform 1.05s cubic-bezier(.22, 1, .36, 1);
}

.bw-reveal-image.is-visible img{
    transform:scale(1);
}

@media (prefers-reduced-motion: reduce){
    .bw-reveal,
    .bw-reveal-image img{
        opacity:1 !important;
        transform:none !important;
        transition:none !important;
    }
}

/* ===========================
   FINAL SITE POLISH PASS
   Countdown and launch rules intentionally untouched.
=========================== */

:root{
    --bw-bg:#fcfbf8;
    --bw-ink:#111111;
    --bw-muted:#5f5b55;
    --bw-soft:#f4f0e8;
    --bw-line:rgba(17,17,17,.10);
    --bw-gold:#b8914f;
    --bw-shadow:0 22px 60px rgba(18,15,11,.10);
    --bw-section:clamp(72px, 9vw, 128px);
    --bw-gutter:clamp(22px, 6vw, 90px);
    --bw-radius:8px;
}

html{
    background:var(--bw-bg);
}

body{
    font-family:"Inter", Arial, Helvetica, sans-serif;
    color:var(--bw-ink);
    background:var(--bw-bg);
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
}

img{
    max-width:100%;
}

::selection{
    background:rgba(184,145,79,.24);
}

.menu-toggle:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
    outline:2px solid rgba(184,145,79,.72);
    outline-offset:4px;
}

.hero-content{
    max-width:760px !important;
}

.hero-content h1{
    font-size:clamp(48px, 7vw, 82px) !important;
    letter-spacing:0;
}

.hero-description{
    color:rgba(255,255,255,.88) !important;
}

.hero-btn,
.primary-btn,
.secondary-btn,
.form-submit-btn,
#closeSuccess,
#doneBookingSuccess{
    min-height:50px;
}

.hero-btn{
    border-radius:0;
    box-shadow:0 0 0 1px rgba(255,255,255,.18) inset;
}

.services,
.experience,
.signature{
    padding-left:var(--bw-gutter) !important;
    padding-right:var(--bw-gutter) !important;
}

.services{
    padding-top:var(--bw-section) !important;
    padding-bottom:clamp(54px, 7vw, 92px) !important;
    margin:0 !important;
}

.services h2,
.signature h2,
.booking-hero-text h1,
.experience-text h2{
    letter-spacing:0;
}

.services h2,
.signature h2{
    font-size:clamp(34px, 4vw, 48px) !important;
    margin-bottom:clamp(28px, 4vw, 48px) !important;
}

.service-grid{
    gap:clamp(22px, 3vw, 34px) !important;
}

.service-card,
.signature-card{
    background:transparent !important;
    border-bottom:1px solid var(--bw-line);
    padding-bottom:22px;
    box-shadow:none !important;
}

.service-card:hover,
.signature-card:hover{
    box-shadow:none !important;
}

.service-image,
.signature-card img{
    border-radius:var(--bw-radius) !important;
    overflow:hidden;
    box-shadow:var(--bw-shadow);
}

.service-image{
    height:clamp(280px, 27vw, 380px) !important;
}

.service-card h3,
.signature-card h3,
.difference-item h3{
    color:var(--bw-ink);
}

.service-card p,
.signature-card p,
.difference-item p,
.booking-hero-text p,
.booking-step p{
    color:var(--bw-muted) !important;
}

.experience{
    grid-template-columns:minmax(300px, .8fr) minmax(0, 1.45fr) !important;
    gap:clamp(42px, 7vw, 88px) !important;
    padding-top:clamp(84px, 10vw, 145px) !important;
    padding-bottom:clamp(78px, 9vw, 125px) !important;
}

.experience-text{
    max-width:540px !important;
}

.experience-text h2{
    font-size:clamp(38px, 5vw, 58px) !important;
}

.difference-item{
    padding:18px 0 18px 22px;
    border-left:1px solid rgba(184,145,79,.45);
}

.difference-item + .difference-item{
    margin-top:4px;
}

.difference-item h3{
    font-family:"Playfair Display", serif;
    font-size:22px;
    font-weight:500;
    margin-bottom:8px;
}

.difference-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.secondary-btn{
    margin-left:0 !important;
}

.experience-image{
    height:clamp(420px, 42vw, 620px) !important;
    border-radius:var(--bw-radius) !important;
    box-shadow:var(--bw-shadow);
}

.experience-image img{
    border-radius:0 !important;
}

.signature{
    padding-top:clamp(66px, 8vw, 108px) !important;
    padding-bottom:clamp(82px, 9vw, 130px) !important;
}

.signature-grid{
    max-width:none !important;
    gap:clamp(26px, 4vw, 46px) !important;
}

.signature-card img{
    height:clamp(280px, 30vw, 420px) !important;
}

.booking-page{
    padding:clamp(76px, 8vw, 116px) var(--bw-gutter) clamp(90px, 10vw, 136px) !important;
}

.booking-layout{
    grid-template-columns:minmax(0, 1.08fr) minmax(340px, .92fr) !important;
    gap:clamp(44px, 7vw, 88px) !important;
    max-width:1240px;
    margin:0 auto;
}

.booking-hero-text,
.booking-form{
    margin-left:0 !important;
}

.booking-hero-text{
    margin-top:0 !important;
    margin-bottom:34px !important;
}

.booking-hero-text h1{
    font-size:clamp(46px, 6vw, 68px) !important;
}

.booking-form{
    margin-top:0 !important;
    gap:16px !important;
}

.booking-form input,
.booking-form textarea,
.booking-form select,
.access-form input{
    width:100%;
    border-radius:var(--bw-radius) !important;
    background:#fff !important;
    border:1px solid rgba(17,17,17,.12) !important;
    color:var(--bw-ink) !important;
}

.booking-form textarea{
    resize:vertical;
    min-height:150px;
}

.budget-field{
    border-radius:var(--bw-radius);
}

.bookings-page-body .currency-select{
    min-width:64px !important;
    border-radius:var(--bw-radius) 0 0 var(--bw-radius) !important;
}

.bookings-page-body .budget-input{
    border-radius:0 var(--bw-radius) var(--bw-radius) 0 !important;
}

.booking-image{
    height:clamp(460px, 47vw, 620px) !important;
    border-radius:var(--bw-radius) !important;
}

.booking-info{
    border-radius:var(--bw-radius) !important;
}

.booking-step{
    padding-bottom:22px;
    border-bottom:1px solid rgba(17,17,17,.08);
}

.booking-step:last-child{
    margin-bottom:0 !important;
    padding-bottom:0;
    border-bottom:0;
}

.booking-step span{
    color:var(--bw-gold) !important;
}

.access-modal-box,
.booking-success-box{
    border-radius:var(--bw-radius) !important;
}

.luxury-footer{
    padding-left:var(--bw-gutter) !important;
    padding-right:var(--bw-gutter) !important;
}

.luxury-footer-top{
    max-width:1240px;
    margin:0 auto;
}

.luxury-footer-bottom,
.luxury-footer-divider{
    max-width:1240px;
    margin-left:auto;
    margin-right:auto;
}

@media (max-width:1024px){
    .service-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    }

    .service-card:last-child{
        grid-column:1 / -1;
        max-width:520px;
    }

    .experience,
    .booking-layout{
        grid-template-columns:1fr !important;
    }

    .experience-image,
    .booking-image{
        max-height:560px;
    }
}

@media (max-width:768px){
    body{
        overflow-x:hidden;
    }

    .logo img{
        height:70px;
    }

    .navbar .nav-links{
        width:min(245px, calc(100vw - 44px)) !important;
        right:22px !important;
        left:auto !important;
        padding:12px !important;
        border-radius:var(--bw-radius) !important;
        background:rgba(12,12,12,.94) !important;
        backdrop-filter:blur(12px);
    }

    .navbar .nav-links a{
        font-size:12px !important;
        letter-spacing:.08em;
    }

    .navbar .nav-links a::after{
        display:none;
    }

    .hero{
        min-height:620px !important;
        height:88vh !important;
    }

    .hero-overlay{
        background:linear-gradient(
            180deg,
            rgba(0,0,0,.68) 0%,
            rgba(0,0,0,.54) 52%,
            rgba(0,0,0,.38) 100%
        ) !important;
    }

    .hero-content{
        justify-content:flex-end !important;
        padding-bottom:78px !important;
        margin-left:24px !important;
        margin-right:24px !important;
        max-width:calc(100% - 48px) !important;
    }

    .hero-content h1{
        font-size:clamp(42px, 12vw, 54px) !important;
        margin-bottom:22px !important;
    }

    .hero-description{
        font-size:15px !important;
        line-height:1.75 !important;
        margin-bottom:28px !important;
    }

    .hero-btn,
    .primary-btn,
    .secondary-btn{
        width:100%;
        justify-content:center;
        text-align:center;
    }

    .services,
    .experience,
    .signature,
    .booking-page{
        padding-left:24px !important;
        padding-right:24px !important;
    }

    .service-grid,
    .signature-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
    }

    .service-card:last-child{
        max-width:none;
    }

    .service-image,
    .signature-card img{
        height:300px !important;
    }

    .experience{
        padding-top:82px !important;
        margin-top:0 !important;
    }

    .difference-buttons{
        flex-direction:column;
    }

    .experience-image,
    .booking-image{
        height:380px !important;
    }

    .booking-page{
        padding-top:clamp(52px, 14vw, 84px) !important;
    }

    .booking-hero-text h1{
        font-size:42px !important;
    }

    .booking-right{
        margin-top:0 !important;
    }

    .booking-info{
        padding:28px 22px !important;
    }

    .form-row{
        grid-template-columns:1fr !important;
    }

    .access-modal-box,
    .booking-success-box{
        padding:44px 24px !important;
    }

    .access-modal-box h2,
    .access-success h2,
    .booking-success-box h2{
        font-size:34px !important;
    }
}

@media (max-width:480px){
    .hero-content h1{
        font-size:40px !important;
    }

    .service-image,
    .signature-card img,
    .experience-image,
    .booking-image{
        height:300px !important;
    }

    .booking-step{
        gap:14px !important;
    }

    .luxury-footer-top-button{
        width:100%;
        justify-content:center;
    }
}

.hero-btn,
.primary-btn,
.secondary-btn{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
}

/* ===========================
   LEGAL PAGES
=========================== */

.legal-page{
    padding:clamp(74px, 9vw, 118px) var(--bw-gutter) clamp(92px, 10vw, 140px);
    background:var(--bw-bg);
}

.legal-hero,
.legal-content{
    max-width:1180px;
    margin:0 auto;
}

.legal-hero{
    display:grid;
    grid-template-columns:minmax(300px, .75fr) minmax(420px, 1fr);
    align-items:end;
    gap:clamp(44px, 7vw, 96px);
    padding-bottom:clamp(44px, 6vw, 72px);
    border-bottom:1px solid var(--bw-line);
}

.legal-kicker{
    grid-column:1 / -1;
    font-family:"Inter", sans-serif;
    font-size:12px;
    font-weight:600;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--bw-gold);
    margin-bottom:18px;
}

.legal-hero h1{
    font-family:"Playfair Display", serif;
    font-size:clamp(62px, 7vw, 96px);
    font-weight:600;
    line-height:1;
    margin-bottom:0;
    color:var(--bw-ink);
}

.legal-hero p{
    max-width:680px;
    color:var(--bw-muted);
    font-size:18px;
    line-height:1.8;
    margin-bottom:22px;
}

.legal-hero span{
    display:inline-flex;
    color:rgba(17,17,17,.58);
    font-size:13px;
    letter-spacing:.04em;
}

.legal-content{
    padding-top:clamp(42px, 6vw, 70px);
}

.legal-section{
    display:grid;
    grid-template-columns:minmax(260px, 340px) minmax(0, 1fr);
    column-gap:clamp(48px, 6vw, 92px);
    row-gap:14px;
    padding:42px 0;
    border-bottom:1px solid var(--bw-line);
}

.legal-section h2{
    font-family:"Playfair Display", serif;
    font-size:clamp(26px, 2.4vw, 34px);
    font-weight:500;
    line-height:1.15;
    color:var(--bw-ink);
    max-width:300px;
}

.legal-section > :not(h2){
    grid-column:2;
}

.legal-section p,
.legal-section li{
    color:var(--bw-muted);
    font-size:16px;
    line-height:1.9;
    max-width:760px;
}

.legal-section p + p,
.legal-section ul + p{
    margin-top:16px;
}

.legal-section ul{
    padding-left:20px;
    margin:14px 0 0;
}

.legal-section li + li{
    margin-top:8px;
}

.legal-section a{
    color:var(--bw-ink);
    text-decoration-color:rgba(184,145,79,.55);
    text-underline-offset:4px;
}

.legal-section a:hover{
    color:var(--bw-gold);
}

@media (max-width:768px){
    .legal-page{
        padding:64px 24px 88px;
    }

    .legal-hero{
        display:block;
    }

    .legal-hero h1{
        font-size:clamp(46px, 14vw, 64px);
        margin-bottom:24px;
    }

    .legal-section{
        grid-template-columns:1fr;
        gap:14px;
        padding:30px 0;
    }

    .legal-section > :not(h2){
        grid-column:1;
    }

    .legal-hero p{
        font-size:15px;
    }

    .legal-section p,
    .legal-section li{
        font-size:15px;
    }
}

/* ===========================
   FAQ PAGE
=========================== */

.faq-page-body{
    background:#f7f3ec;
}

.faq-page{
    background:#f7f3ec;
    padding:clamp(116px, 10vw, 142px) var(--bw-gutter) clamp(100px, 10vw, 140px);
}

.faq-hero{
    max-width:1180px;
    margin:0 auto;
}

.faq-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    font-family:"Inter", sans-serif;
    font-size:12px;
    line-height:1.4;
    color:#7d766d;
    margin-bottom:12px;
}

.faq-breadcrumb a{
    color:#7d766d;
    text-decoration:none;
    transition:color .25s ease;
}

.faq-breadcrumb a:hover,
.faq-breadcrumb a:focus{
    color:#b08a4a;
}

.faq-page h1{
    font-family:"Playfair Display", serif;
    font-size:clamp(26px, 2.7vw, 36px);
    line-height:1.12;
    font-weight:500;
    color:#151515;
    text-align:left;
    margin-bottom:clamp(28px, 4vw, 42px);
}

.faq-panel{
    max-width:1020px;
    margin:0;
    background:rgba(255,255,255,.68);
    border:1px solid rgba(17,17,17,.06);
    box-shadow:0 18px 54px rgba(42,34,20,.045);
    padding:clamp(34px, 4.5vw, 58px);
}

.faq-intro{
    max-width:900px;
}

.faq-intro > p:first-child{
    font-family:"Inter", sans-serif;
    font-size:clamp(15px, 1.5vw, 20px);
    font-weight:600;
    line-height:1.55;
    color:#5d574f;
    margin-bottom:28px;
}

.faq-intro h2,
.faq-group h3{
    font-family:"Playfair Display", serif;
    font-weight:600;
    color:#151515;
}

.faq-intro h2{
    font-size:clamp(24px, 2.4vw, 32px);
    line-height:1.08;
    margin-bottom:16px;
}

.faq-intro > p:last-child{
    font-family:"Inter", sans-serif;
    font-size:13px;
    line-height:1.75;
    color:#777067;
    max-width:none;
    margin-bottom:clamp(24px, 3vw, 34px);
    white-space:nowrap;
}

.faq-group{
    padding-top:clamp(10px, 2vw, 22px);
}

.faq-group + .faq-group{
    margin-top:clamp(38px, 5vw, 64px);
}

.faq-group h3{
    font-size:clamp(24px, 2.4vw, 32px);
    line-height:1.1;
    margin-bottom:18px;
}

.faq-item{
    border-top:1px solid rgba(17,17,17,.13);
}

.faq-item:last-child{
    border-bottom:1px solid rgba(17,17,17,.13);
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    position:relative;
    padding:17px 38px 17px 0;
    font-family:"Inter", sans-serif;
    font-size:14px;
    font-weight:600;
    line-height:1.5;
    color:#34302b;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:22px;
    height:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    line-height:1;
    color:#b08a4a;
}

.faq-item[open] summary::after{
    content:"-";
}

.faq-item p{
    font-family:"Inter", sans-serif;
    font-size:13px;
    line-height:1.8;
    color:#6e675f;
    max-width:850px;
    padding:0 42px 18px 0;
}

.faq-item[open] summary{
    color:#b08a4a;
}

@media (max-width:768px){
    .faq-page{
        padding:116px 22px 86px;
    }

    .faq-breadcrumb{
        justify-content:flex-start;
        margin-bottom:22px;
    }

    .faq-page h1{
        text-align:left;
        margin-bottom:30px;
    }

    .faq-panel{
        padding:32px 24px;
        max-width:none;
    }

    .faq-intro > p:last-child{
        white-space:normal;
    }

    .faq-item summary{
        padding-right:32px;
    }

    .faq-item p{
        padding-right:0;
    }
}

/* ===========================
   FINAL NAVBAR NORMALIZATION
=========================== */

.navbar{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    width:100% !important;
    z-index:9999 !important;
}

body:not(.bookings-page-body) .navbar{
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    background:transparent !important;
    padding:26px 6% !important;
}

.bookings-page-body .navbar{
    position:sticky !important;
    top:0 !important;
    left:0 !important;
    background:#3e3e3e !important;
    padding:18px 6% !important;
}

.navbar .logo{
    display:flex !important;
    align-items:center !important;
    position:relative !important;
    left:auto !important;
    top:auto !important;
    margin:0 !important;
    line-height:1 !important;
}

body:not(.bookings-page-body) .navbar .logo img{
    height:118px !important;
    width:auto !important;
    display:block !important;
    position:relative !important;
    top:-8px !important;
}

.bookings-page-body .navbar .logo img{
    height:92px !important;
    width:auto !important;
    display:block !important;
    position:relative !important;
    top:0 !important;
}

.navbar .nav-links{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:42px !important;
    width:auto !important;
    margin-left:auto !important;
    padding:0 !important;
    position:static !important;
    top:auto !important;
    left:auto !important;
    right:auto !important;
}

.navbar .nav-links a{
    color:#ffffff !important;
    font-family:"Inter", sans-serif !important;
    font-size:13px !important;
    font-weight:500 !important;
    letter-spacing:.12em !important;
    line-height:1 !important;
    text-transform:uppercase !important;
    text-decoration:none !important;
    transition:color .25s ease !important;
}

.navbar .nav-links a:hover,
.navbar .nav-links a:focus{
    color:#d4af37 !important;
    background:transparent !important;
}

.menu-toggle{
    margin-left:auto !important;
}

@media (max-width:768px){
    body:not(.bookings-page-body) .navbar,
    .bookings-page-body .navbar{
        padding:22px 24px !important;
    }

    body:not(.bookings-page-body) .navbar .logo img{
        height:86px !important;
        top:-6px !important;
    }

    .bookings-page-body .navbar .logo img{
        height:72px !important;
    }

    .navbar .menu-toggle{
        display:block !important;
        position:relative !important;
        top:auto !important;
        right:auto !important;
        color:#ffffff !important;
        background:transparent !important;
        border:0 !important;
        font-size:28px !important;
        z-index:100001 !important;
    }

    .navbar .nav-links{
        display:none !important;
        position:absolute !important;
        top:86px !important;
        right:24px !important;
        left:auto !important;
        width:min(220px, calc(100vw - 48px)) !important;
        padding:12px !important;
        background:rgba(20,18,16,.94) !important;
        backdrop-filter:blur(12px) !important;
        border-radius:12px !important;
        flex-direction:column !important;
        align-items:stretch !important;
        gap:0 !important;
        box-shadow:0 18px 45px rgba(0,0,0,.22) !important;
    }

    .navbar .nav-links.active{
        display:flex !important;
    }

    .navbar .nav-links a{
        display:block !important;
        width:100% !important;
        padding:12px 14px !important;
        border-radius:8px !important;
        font-size:12px !important;
        text-align:left !important;
    }

    .navbar .nav-links a:hover,
    .navbar .nav-links a:focus{
        color:#ffffff !important;
        background:rgba(255,255,255,.12) !important;
    }
}

/* Mobile navbar alignment correction */
@media (max-width:768px){
    body:not(.bookings-page-body) .navbar,
    .bookings-page-body .navbar{
        min-height:96px !important;
        padding:18px 24px 14px !important;
        align-items:center !important;
    }

    body:not(.bookings-page-body) .navbar .logo,
    .bookings-page-body .navbar .logo{
        display:flex !important;
        align-items:center !important;
        height:72px !important;
        position:relative !important;
        top:4px !important;
    }

    body:not(.bookings-page-body) .navbar .logo img{
        height:76px !important;
        top:0 !important;
    }

    .bookings-page-body .navbar .logo img{
        height:68px !important;
        top:0 !important;
    }

    .navbar .menu-toggle{
        align-self:center !important;
        top:0 !important;
        transform:translateY(2px) !important;
        line-height:1 !important;
        padding:8px 0 8px 12px !important;
    }

    .navbar .nav-links{
        top:88px !important;
    }
}

/* Final nav/form detail refinements */
.navbar .nav-links a{
    position:relative !important;
}

.navbar .nav-links a::after{
    content:"" !important;
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:-3px !important;
    height:1px !important;
    background:currentColor !important;
    transform:scaleX(0) !important;
    transform-origin:right !important;
    transition:transform .28s ease !important;
}

.navbar .nav-links a:hover::after,
.navbar .nav-links a:focus::after{
    transform:scaleX(1) !important;
    transform-origin:left !important;
}

.booking-form input,
.booking-form textarea,
.booking-form select,
.bookings-page-body .budget-field .budget-input,
.bookings-page-body .budget-field .currency-select{
    background:#fcfbf8 !important;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus,
.bookings-page-body .budget-field:focus-within .budget-input,
.bookings-page-body .budget-field:focus-within .currency-select{
    background:#ffffff !important;
}

@media (max-width:768px){
    body:not(.bookings-page-body) .navbar .logo,
    .bookings-page-body .navbar .logo{
        top:10px !important;
    }

    body:not(.bookings-page-body) .navbar .logo img{
        height:86px !important;
    }

    .bookings-page-body .navbar .logo img{
        height:76px !important;
    }

    .navbar .nav-links a::after{
        display:none !important;
    }
}

/* Reference-style navbar alignment + homepage WhatsApp action */
body:not(.bookings-page-body) .navbar{
    min-height:104px !important;
    padding:10px 6% !important;
}

.bookings-page-body .navbar{
    min-height:88px !important;
    padding:9px 6% !important;
}

body:not(.bookings-page-body) .navbar .logo,
.bookings-page-body .navbar .logo{
    align-self:stretch !important;
    display:flex !important;
    align-items:center !important;
    top:0 !important;
}

body:not(.bookings-page-body) .navbar .logo img{
    height:96px !important;
    top:0 !important;
}

.bookings-page-body .navbar .logo img{
    height:70px !important;
    top:0 !important;
}

.navbar .nav-links{
    align-self:stretch !important;
    align-items:center !important;
}

.navbar .nav-links a{
    display:flex !important;
    align-items:center !important;
    height:100% !important;
}

body:not(.bookings-page-body) .navbar .nav-links a:hover,
body:not(.bookings-page-body) .navbar .nav-links a:focus{
    color:#111111 !important;
}

.bookings-page-body .navbar .nav-links a:hover,
.bookings-page-body .navbar .nav-links a:focus{
    color:#111111 !important;
}

.menu-toggle{
    width:44px !important;
    height:44px !important;
    min-width:44px !important;
    min-height:44px !important;
    display:none !important;
    align-items:center !important;
    justify-content:center !important;
    padding:0 !important;
    font-size:30px !important;
    line-height:1 !important;
}

.floating-whatsapp{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:100002;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#ffffff;
    border:1px solid rgba(17,17,17,.14);
    box-shadow:0 18px 45px rgba(0,0,0,.18);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.floating-whatsapp svg{
    width:31px;
    height:31px;
    fill:#111111;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus{
    transform:translateY(-3px);
    border-color:#111111;
    box-shadow:0 24px 55px rgba(0,0,0,.24);
}

@media (max-width:768px){
    body:not(.bookings-page-body) .navbar,
    .bookings-page-body .navbar{
        min-height:98px !important;
        padding:16px 22px 12px !important;
    }

    body:not(.bookings-page-body) .navbar .logo,
    .bookings-page-body .navbar .logo{
        align-self:center !important;
        top:8px !important;
        height:auto !important;
    }

    body:not(.bookings-page-body) .navbar .logo img{
        height:88px !important;
    }

    .bookings-page-body .navbar .logo img{
        height:78px !important;
    }

    .navbar .menu-toggle{
        display:flex !important;
        position:relative !important;
        top:6px !important;
        right:auto !important;
        transform:none !important;
        font-size:30px !important;
    }

    .navbar .nav-links{
        align-self:auto !important;
        top:96px !important;
    }

    .floating-whatsapp{
        right:18px;
        bottom:18px;
        width:54px;
        height:54px;
    }

    .floating-whatsapp svg{
        width:29px;
        height:29px;
    }
}

/* Absolute hamburger size normalization */
@media (max-width:768px){
    header.navbar .menu-toggle,
    header.bookings-navbar .menu-toggle,
    body:not(.bookings-page-body) header.navbar .menu-toggle,
    .bookings-page-body header.navbar .menu-toggle,
    .bookings-page-body header.bookings-navbar .menu-toggle{
        width:44px !important;
        height:44px !important;
        min-width:44px !important;
        min-height:44px !important;
        max-width:44px !important;
        max-height:44px !important;

        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        flex:0 0 44px !important;

        padding:0 !important;
        margin:0 0 0 auto !important;
        border:0 !important;
        background:transparent !important;

        color:#ffffff !important;
        font-family:Arial, Helvetica, sans-serif !important;
        font-size:30px !important;
        font-weight:400 !important;
        line-height:1 !important;
        letter-spacing:0 !important;

        position:relative !important;
        top:6px !important;
        right:auto !important;
        transform:none !important;
        text-align:center !important;
    }
}

/* Desktop nav underline sits directly under text */
@media (min-width:769px){
    .navbar .nav-links a{
        height:auto !important;
        min-height:auto !important;
        padding:8px 0 !important;
    }

    .navbar .nav-links a::after{
        bottom:-12px !important;
    }
}

/* Footer legal links visibility safeguard */
.luxury-footer-bottom > p,
.luxury-footer-bottom > p.bw-reveal{
    display:block !important;
    opacity:1 !important;
    transform:none !important;
    visibility:visible !important;
    color:rgba(255,255,255,.62) !important;
}

.luxury-footer-legal,
.luxury-footer-legal.bw-reveal{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:24px !important;
    opacity:1 !important;
    transform:none !important;
    visibility:visible !important;
}

.luxury-footer-legal a{
    display:inline-flex !important;
    color:rgba(255,255,255,.62) !important;
    text-decoration:none !important;
}

.luxury-footer-legal a:hover,
.luxury-footer-legal a:focus{
    color:#ffffff !important;
}

@media (max-width:768px){
    .luxury-footer-legal,
    .luxury-footer-legal.bw-reveal{
        justify-content:flex-start !important;
        flex-wrap:wrap !important;
        gap:16px !important;
    }
}

/* Final hamburger icon consistency */
@media (max-width:768px){
    .navbar .menu-toggle,
    header.navbar .menu-toggle,
    header.bookings-navbar .menu-toggle,
    body:not(.bookings-page-body) header.navbar .menu-toggle,
    .bookings-page-body header.navbar .menu-toggle,
    .bookings-page-body header.bookings-navbar .menu-toggle{
        width:44px !important;
        height:44px !important;
        min-width:44px !important;
        min-height:44px !important;
        max-width:44px !important;
        max-height:44px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        padding:0 !important;
        margin:0 0 0 auto !important;
        font-size:0 !important;
        line-height:0 !important;
        color:transparent !important;
        background:transparent !important;
        border:0 !important;
        position:relative !important;
        top:6px !important;
        right:auto !important;
        transform:none !important;
    }

    .navbar .menu-toggle::before,
    header.navbar .menu-toggle::before,
    header.bookings-navbar .menu-toggle::before{
        content:"" !important;
        display:block !important;
        width:26px !important;
        height:2px !important;
        border-radius:999px !important;
        background:#ffffff !important;
        box-shadow:
            0 8px 0 #ffffff,
            0 16px 0 #ffffff !important;
        transform:translateY(-8px) !important;
    }
}

/* Final measured mobile navbar placement */
@media (max-width:768px){
    body:not(.bookings-page-body) .navbar,
    .bookings-page-body .navbar{
        position:relative !important;
        min-height:112px !important;
        padding:0 22px !important;
    }

    body:not(.bookings-page-body) .navbar{
        position:absolute !important;
    }

    .bookings-page-body .navbar{
        position:sticky !important;
        top:0 !important;
    }

    body:not(.bookings-page-body) .navbar .logo,
    .bookings-page-body .navbar .logo{
        position:absolute !important;
        left:22px !important;
        top:0 !important;
        height:112px !important;
        display:flex !important;
        align-items:center !important;
        margin:0 !important;
    }

    body:not(.bookings-page-body) .navbar .logo img{
        height:92px !important;
        width:auto !important;
        position:static !important;
    }

    .bookings-page-body .navbar .logo img{
        height:82px !important;
        width:auto !important;
        position:static !important;
    }

    .navbar .menu-toggle,
    header.navbar .menu-toggle,
    header.bookings-navbar .menu-toggle,
    body:not(.bookings-page-body) header.navbar .menu-toggle,
    .bookings-page-body header.navbar .menu-toggle,
    .bookings-page-body header.bookings-navbar .menu-toggle{
        position:absolute !important;
        top:34px !important;
        right:22px !important;
        left:auto !important;
        margin:0 !important;
    }

    .navbar .nav-links{
        top:112px !important;
    }
}

/* Privacy page aligns with header logo edge */
.legal-page-body .legal-hero,
.legal-page-body .legal-content{
    margin-left:0 !important;
    margin-right:auto !important;
}

@media (max-width:768px){
    .legal-page-body .legal-page{
        padding-left:22px !important;
        padding-right:22px !important;
    }
}

/* About page */
.about-page-body{
    background:#fcfbf8;
}

.about-page-body .about-navbar{
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    z-index:100 !important;
    background:transparent !important;
    padding:35px 6% !important;
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;
}

.about-page-body .about-navbar .logo img{
    height:112px !important;
    width:auto !important;
    display:block !important;
    position:static !important;
}

.about-page-body .about-navbar .nav-links{
    display:flex !important;
    align-items:center !important;
    gap:42px !important;
    margin-left:auto !important;
    padding-right:0 !important;
    width:auto !important;
    position:relative !important;
    top:auto !important;
}

.about-page-body .about-navbar .nav-links a{
    color:#ffffff !important;
    text-decoration:none !important;
    font-size:20px !important;
    font-weight:500 !important;
    padding:8px 0 !important;
}

.about-page-body .about-navbar .nav-links a:hover,
.about-page-body .about-navbar .nav-links a:focus{
    color:#d4af37 !important;
}

.about-hero{
    position:relative;
    min-height:760px;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#ffffff;
}

.about-hero-media,
.about-hero-overlay{
    position:absolute;
    inset:0;
}

.about-hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    animation:luxuryHero 22s ease-in-out infinite alternate;
}

.about-hero-overlay{
    background:
        linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.54) 48%, rgba(0,0,0,.12) 100%),
        linear-gradient(0deg, rgba(0,0,0,.28), rgba(0,0,0,.08));
    z-index:1;
}

.about-hero-content{
    position:relative;
    z-index:2;
    max-width:720px;
    padding:130px 6% 90px;
    transform:translateY(-48px);
}

.about-kicker,
.about-section-label{
    font-family:"Inter", sans-serif;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
}

.about-kicker{
    color:rgba(255,255,255,.78);
    margin-bottom:22px;
}

.about-hero-content h1{
    font-family:"Playfair Display", serif;
    font-size:76px;
    line-height:1.03;
    font-weight:600;
    max-width:680px;
    margin-bottom:28px;
}

.about-hero-content p:not(.about-kicker){
    font-family:"Inter", sans-serif;
    font-size:18px;
    line-height:1.85;
    max-width:610px;
    color:rgba(255,255,255,.88);
    margin-bottom:38px;
}

.about-intro{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:76px;
    align-items:center;
    padding:120px 6%;
}

.about-section-label{
    color:#b08a4a;
    margin-bottom:20px;
}

.about-intro-copy h2,
.about-vision-card h2,
.about-mission-card h2,
.about-cta h2{
    font-family:"Playfair Display", serif;
    font-size:54px;
    line-height:1.06;
    font-weight:500;
    color:#111111;
    margin-bottom:26px;
}

.about-intro-copy p:not(.about-section-label){
    font-family:"Inter", sans-serif;
    font-size:15px;
    line-height:1.85;
    color:#555555;
    margin-bottom:18px;
}

.about-intro-image{
    height:620px;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.about-intro-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.about-vision-mission{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:1px;
    background:#e7e2d8;
    padding:1px;
}

.about-vision-card,
.about-mission-card{
    min-height:420px;
    background:#111111;
    color:#ffffff;
    padding:56px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.about-vision-card span,
.about-mission-card span{
    font-family:"Inter", sans-serif;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#d4af37;
    margin-bottom:24px;
}

.about-vision-card h2,
.about-mission-card h2{
    color:#ffffff;
    font-size:46px;
    max-width:560px;
}

.about-vision-card p,
.about-mission-card p{
    font-family:"Inter", sans-serif;
    font-size:15px;
    line-height:1.85;
    color:rgba(255,255,255,.72);
    max-width:560px;
}

.about-cta{
    padding:110px 6%;
    text-align:center;
    background:#f4efe6;
}

.about-cta h2{
    max-width:760px;
    margin-left:auto;
    margin-right:auto;
}

.about-cta-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:36px;
}

.about-cta .secondary-btn{
    margin-left:0;
}

@media (max-width:768px){
    .about-page-body .about-navbar{
        min-height:112px !important;
        padding:0 22px !important;
        align-items:center !important;
    }

    .about-page-body .about-navbar .logo{
        position:absolute !important;
        left:22px !important;
        top:0 !important;
        height:112px !important;
        display:flex !important;
        align-items:center !important;
        margin:0 !important;
    }

    .about-page-body .about-navbar .logo img{
        height:92px !important;
        position:static !important;
    }

    .about-page-body .about-navbar .menu-toggle{
        display:flex !important;
        position:absolute !important;
        top:34px !important;
        right:22px !important;
        width:44px !important;
        height:44px !important;
        color:transparent !important;
        font-size:0 !important;
        background:transparent !important;
        border:0 !important;
    }

    .about-page-body .about-navbar .menu-toggle::before{
        content:"" !important;
        display:block !important;
        width:26px !important;
        height:2px !important;
        border-radius:999px !important;
        background:#ffffff !important;
        box-shadow:
            0 8px 0 #ffffff,
            0 16px 0 #ffffff !important;
        transform:translateY(-8px) !important;
    }

    .about-page-body .about-navbar .nav-links{
        display:none !important;
        position:absolute !important;
        top:112px !important;
        right:22px !important;
        left:auto !important;
        width:142px !important;
        padding:14px 0 !important;
        background:rgba(20, 18, 16, .88) !important;
        backdrop-filter:blur(12px) !important;
        border-radius:14px !important;
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:0 !important;
        z-index:100000 !important;
    }

    .about-page-body .about-navbar .nav-links.active{
        display:flex !important;
    }

    .about-page-body .about-navbar .nav-links a{
        width:100% !important;
        padding:10px 16px !important;
        font-size:13px !important;
        color:#ffffff !important;
    }

    .about-hero{
        min-height:680px;
        align-items:flex-end;
    }

    .about-hero-overlay{
        background:linear-gradient(0deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.58) 58%, rgba(0,0,0,.16) 100%);
    }

    .about-hero-content{
        padding:128px 22px 58px;
        transform:translateY(-26px);
    }

    .about-hero-content h1{
        font-size:46px;
        line-height:1.08;
    }

    .about-hero-content p:not(.about-kicker){
        font-size:15px;
    }

    .about-intro,
    .about-vision-mission{
        grid-template-columns:1fr;
        gap:36px;
        padding:70px 22px;
    }

    .about-intro-copy h2,
    .about-vision-card h2,
    .about-mission-card h2,
    .about-cta h2{
        font-size:38px;
        line-height:1.1;
    }

    .about-intro-image{
        height:380px;
        border-radius:16px;
    }

    .about-vision-card,
    .about-mission-card{
        min-height:330px;
        padding:36px 24px;
    }

    .about-cta{
        padding:70px 22px;
        text-align:left;
    }

    .about-cta-actions{
        justify-content:flex-start;
        flex-direction:column;
    }

    .about-cta .primary-btn,
    .about-cta .secondary-btn{
        width:100%;
        text-align:center;
    }
}

/* Premium spacing refinements */
.hero-content{
    gap:clamp(24px, 3vw, 38px) !important;
}

.hero-content h1,
.hero-description{
    margin-bottom:0 !important;
}

.hero-btn{
    margin-top:clamp(6px, 1vw, 12px) !important;
}

.about-intro{
    padding-top:clamp(145px, 13vw, 190px) !important;
}

.about-vision-card,
.about-mission-card{
    padding:clamp(64px, 6vw, 82px) !important;
}

.about-vision-card p + p,
.about-mission-card p + p{
    margin-top:18px;
}

.about-cta{
    padding-bottom:clamp(150px, 14vw, 210px) !important;
}

.testimonials{
    padding:clamp(88px, 10vw, 136px) var(--bw-gutter) clamp(120px, 12vw, 170px);
    background:#fcfbf8;
}

.testimonials-heading{
    max-width:760px;
    margin-bottom:clamp(34px, 5vw, 58px);
}

.testimonials-heading span{
    display:block;
    font-family:"Inter", sans-serif;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#b08a4a;
    margin-bottom:18px;
}

.testimonials-heading h2{
    font-family:"Playfair Display", serif;
    font-size:clamp(38px, 5vw, 58px);
    line-height:1.06;
    font-weight:500;
    color:#111111;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:clamp(22px, 3vw, 34px);
}

.testimonial-card{
    min-height:300px;
    position:relative;
    padding:clamp(46px, 5vw, 62px);
    border:1px solid rgba(17, 17, 17, .1);
    background:#ffffff;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:34px;
}

.testimonial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:clamp(46px, 5vw, 62px);
    right:clamp(46px, 5vw, 62px);
    height:2px;
    background:#b08a4a;
}

.testimonial-card p{
    font-family:"Playfair Display", serif;
    font-size:clamp(23px, 2vw, 30px);
    line-height:1.35;
    font-weight:500;
    color:#171717;
}

.testimonial-card strong{
    display:block;
    font-family:"Inter", sans-serif;
    font-size:14px;
    color:#111111;
    margin-bottom:8px;
}

.testimonial-card span{
    display:block;
    font-family:"Inter", sans-serif;
    font-size:13px;
    line-height:1.6;
    color:#777777;
}

@media (max-width:1024px){
    .testimonials-grid{
        grid-template-columns:1fr;
    }

    .testimonial-card{
        min-height:auto;
    }
}

@media (max-width:768px){
    .hero-content{
        gap:24px !important;
    }

    .hero-btn{
        margin-top:4px !important;
    }

    .about-intro{
        padding-top:96px !important;
    }

    .about-vision-card,
    .about-mission-card{
        padding:44px 28px !important;
    }

    .about-cta{
        padding-bottom:110px !important;
    }

    .testimonials{
        padding:78px 22px 104px;
    }

    .testimonial-card{
        padding:42px 34px;
    }

    .testimonial-card::before{
        left:34px;
        right:34px;
    }
}

/* Custom 404 page */
.error-page-body{
    background:#fcfbf8;
}

.error-page-body .error-navbar{
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    z-index:100 !important;
    background:transparent !important;
    padding:35px 6% !important;
    display:flex !important;
    justify-content:space-between !important;
    align-items:flex-start !important;
}

/* Final About navbar visibility guard */
@media (min-width:769px){
    .about-page-body .about-navbar{
        align-items:center !important;
        min-height:112px !important;
        padding:10px 6% !important;
    }

    .about-page-body .about-navbar .logo img{
        height:112px !important;
        position:static !important;
        top:auto !important;
    }

    .about-page-body .about-navbar .nav-links{
        display:flex !important;
        visibility:visible !important;
        opacity:1 !important;
        position:static !important;
        top:auto !important;
        right:auto !important;
        left:auto !important;
        width:auto !important;
        margin-left:auto !important;
        padding:0 !important;
        align-self:stretch !important;
        align-items:center !important;
        z-index:1000 !important;
    }

    .about-page-body .about-navbar .nav-links a{
        display:flex !important;
        align-items:center !important;
        color:#ffffff !important;
    }
}

.error-page-body .error-navbar .logo img{
    height:160px !important;
    width:auto !important;
    display:block !important;
    position:relative !important;
    top:-20px !important;
}

.error-page-body .error-navbar .nav-links{
    display:flex !important;
    align-items:center !important;
    gap:42px !important;
    margin-left:auto !important;
    padding-right:0 !important;
    width:auto !important;
    position:relative !important;
    top:0 !important;
}

.nav-links a{
    color:#ffffff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:0.3s ease;
}


.error-page-body .error-navbar .nav-links a:hover,
.error-page-body .error-navbar .nav-links a:focus{
    color:#d4af37 !important;
}

.error-page{
    min-height:calc(100vh - 112px);
}

.error-hero{
    position:relative;
    min-height:680px;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#ffffff;
}

.error-hero-media,
.error-hero-overlay{
    position:absolute;
    inset:0;
}

.error-hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    transform:scale(1.03);
}

.error-hero-overlay{
    background:
        linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.58) 48%, rgba(0,0,0,.18) 100%),
        linear-gradient(0deg, rgba(0,0,0,.42), rgba(0,0,0,.06));
    z-index:1;
}

.error-hero-content{
    position:relative;
    z-index:2;
    max-width:720px;
    padding:110px 6%;
}

.error-kicker{
    font-family:"Inter", sans-serif;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:22px;
    color:rgba(255,255,255,.78);
}

.error-code{
    font-family:"Playfair Display", serif;
    font-size:132px;
    line-height:.84;
    font-weight:600;
    margin-bottom:24px;
    color:#d4af37;
}

.error-hero-content h1{
    font-family:"Playfair Display", serif;
    font-size:66px;
    line-height:1.04;
    font-weight:600;
    max-width:620px;
    margin-bottom:24px;
}

.error-copy{
    font-family:"Inter", sans-serif;
    font-size:17px;
    line-height:1.8;
    max-width:590px;
    color:rgba(255,255,255,.86);
    margin-bottom:36px;
}

.error-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    align-items:center;
}

.error-page .primary-btn,
.error-page .secondary-btn{
    margin:0;
}

.error-page .secondary-btn{
    color:#ffffff;
    border-color:rgba(255,255,255,.72);
}

.error-page .secondary-btn:hover,
.error-page .secondary-btn:focus{
    background:#ffffff;
    border-color:#ffffff;
    color:#111111;
}

.error-routes{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:1px;
    background:#e7e2d8;
    padding:1px;
}

.error-route{
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    background:#fcfbf8;
    padding:36px;
    color:#111111;
    text-decoration:none;
    transition:background .3s ease, transform .3s ease;
}

.error-route:hover,
.error-route:focus{
    background:#f4efe6;
    transform:translateY(-4px);
}

.error-route span{
    font-family:"Inter", sans-serif;
    font-size:12px;
    letter-spacing:2px;
    color:#b08a4a;
    margin-bottom:22px;
}

.error-route strong{
    font-family:"Playfair Display", serif;
    font-size:26px;
    font-weight:500;
    margin-bottom:10px;
}

.error-route small{
    font-family:"Inter", sans-serif;
    font-size:14px;
    line-height:1.65;
    color:#606060;
    max-width:320px;
}

@media (max-width:768px){
    .error-page-body .error-navbar{
        min-height:112px !important;
        padding:0 22px !important;
        align-items:center !important;
    }

    .error-page-body .error-navbar .logo{
        position:absolute !important;
        left:22px !important;
        top:0 !important;
        height:112px !important;
        display:flex !important;
        align-items:center !important;
        margin:0 !important;
    }

    .error-page-body .error-navbar .logo img{
        height:92px !important;
        position:static !important;
    }

    .error-page-body .error-navbar .menu-toggle{
        display:flex !important;
        position:absolute !important;
        top:34px !important;
        right:22px !important;
        width:44px !important;
        height:44px !important;
        color:transparent !important;
        font-size:0 !important;
        background:transparent !important;
        border:0 !important;
    }

    .error-page-body .error-navbar .menu-toggle::before{
        content:"" !important;
        display:block !important;
        width:26px !important;
        height:2px !important;
        border-radius:999px !important;
        background:#ffffff !important;
        box-shadow:
            0 8px 0 #ffffff,
            0 16px 0 #ffffff !important;
        transform:translateY(-8px) !important;
    }

    .error-page-body .error-navbar .nav-links{
        display:none !important;
        position:absolute !important;
        top:112px !important;
        right:22px !important;
        left:auto !important;
        width:135px !important;
        padding:14px 0 !important;
        background:rgba(20, 18, 16, .88) !important;
        backdrop-filter:blur(12px) !important;
        border-radius:14px !important;
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:0 !important;
        z-index:100000 !important;
    }

    .error-page-body .error-navbar .nav-links.active{
        display:flex !important;
    }

    .error-page-body .error-navbar .nav-links a{
        width:100% !important;
        padding:10px 16px !important;
        font-size:13px !important;
        color:#ffffff !important;
    }

    .error-page{
        min-height:auto;
    }

    .error-hero{
        min-height:640px;
        align-items:flex-end;
    }

    .error-hero-overlay{
        background:
            linear-gradient(0deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.58) 58%, rgba(0,0,0,.18) 100%);
    }

    .error-hero-content{
        padding:120px 22px 56px;
    }

    .error-code{
        font-size:86px;
        margin-bottom:18px;
    }

    .error-hero-content h1{
        font-size:42px;
        line-height:1.08;
    }

    .error-copy{
        font-size:15px;
    }

    .error-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .error-page .primary-btn,
    .error-page .secondary-btn{
        width:100%;
        text-align:center;
    }

    .error-routes{
        grid-template-columns:1fr;
    }

    .error-route{
        min-height:180px;
        padding:30px 22px;
    }
}
/* =========================================
   WHATSAPP SUPPORT WIDGET
========================================= */

.whatsapp-widget {
    --whatsapp-gold: #bda12f;
    --whatsapp-green: #25d366;
    --whatsapp-dark: #27272a;
    --whatsapp-muted: #66666d;

    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
    font-family: inherit;
}

/* Floating button */

.whatsapp-floating-button {
    width: 76px;
    height: 76px;
    border: none;
    border-radius: 50%;
    background: var(--whatsapp-gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.whatsapp-floating-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
    background: #aa9028;
}

.whatsapp-floating-button:focus-visible {
    outline: 3px solid rgba(189, 161, 47, 0.35);
    outline-offset: 5px;
}

.whatsapp-floating-button svg {
    width: 39px;
    height: 39px;
}

/* Popup */

.whatsapp-popup {
    position: absolute;
    right: 0;
    bottom: 96px;
    width: 420px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
    overflow: visible;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px) scale(0.97);
    transform-origin: bottom right;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Speech bubble pointer */

.whatsapp-popup::after {
    content: "";
    position: absolute;
    right: 31px;
    bottom: -17px;
    width: 34px;
    height: 34px;
    background: #ffffff;
    transform: rotate(45deg);
    border-radius: 0 0 5px 0;
}

/* Gold header */

.whatsapp-popup-header {
    position: relative;
    min-height: 208px;
    padding: 30px 62px 30px 35px;
    background:
        linear-gradient(
            135deg,
            #c4aa35 0%,
            #b99c27 55%,
            #c8af3d 100%
        );
    color: #ffffff;
    border-radius: 14px 14px 0 0;
}

.whatsapp-popup-header h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 43px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px;
}

.whatsapp-popup-header p {
    max-width: 320px;
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
}

.whatsapp-popup-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    font-family: Arial, sans-serif;
    font-weight: 300;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.whatsapp-popup-close:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

/* Support contact area */

.whatsapp-support-contact {
    position: relative;
    z-index: 1;
    min-height: 300px;
    padding: 34px 25px 38px;
    background: #ffffff;
    border-radius: 0 0 14px 14px;
    color: var(--whatsapp-dark);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.whatsapp-support-contact:hover {
    background: #fafafa;
}

/* Avatar */

.whatsapp-avatar {
    position: relative;
    width: 112px;
    height: 112px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #edf1ef;
    overflow: visible;
}

.whatsapp-avatar-head {
    position: absolute;
    top: 14px;
    left: 50%;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #b9c8c5;
    transform: translateX(-50%);
}

.whatsapp-avatar-body {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 82px;
    height: 48px;
    border-radius: 50% 50% 44% 44%;
    background: #b9c8c5;
    transform: translateX(-50%);
}

.whatsapp-avatar-badge {
    position: absolute;
    top: 5px;
    right: -3px;
    width: 29px;
    height: 29px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: var(--whatsapp-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-avatar-badge svg {
    width: 19px;
    height: 19px;
}

.whatsapp-contact-role {
    margin-bottom: 8px;
    color: var(--whatsapp-muted);
    font-size: 21px;
    line-height: 1.2;
}

.whatsapp-contact-name {
    color: var(--whatsapp-dark);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

/* Tablet and mobile */

@media (max-width: 600px) {
    .whatsapp-widget {
        right: 16px;
        bottom: 18px;
    }

    .whatsapp-floating-button {
        width: 64px;
        height: 64px;
    }

    .whatsapp-floating-button svg {
        width: 33px;
        height: 33px;
    }

    .whatsapp-popup {
        position: fixed;
        right: 14px;
        bottom: 98px;
        width: calc(100vw - 28px);
        max-width: 390px;
    }

    .whatsapp-popup::after {
        right: 27px;
    }

    .whatsapp-popup-header {
        min-height: 175px;
        padding: 27px 55px 26px 27px;
    }

    .whatsapp-popup-header h2 {
        margin-bottom: 14px;
        font-size: 35px;
    }

    .whatsapp-popup-header p {
        font-size: 18px;
        line-height: 1.45;
    }

    .whatsapp-support-contact {
        min-height: 245px;
        padding: 28px 20px 32px;
    }

    .whatsapp-avatar {
        width: 94px;
        height: 94px;
        margin-bottom: 17px;
    }

    .whatsapp-avatar-head {
        width: 38px;
        height: 38px;
    }

    .whatsapp-avatar-body {
        width: 69px;
        height: 42px;
    }

    .whatsapp-contact-role {
        font-size: 18px;
    }

    .whatsapp-contact-name {
        font-size: 23px;
    }
}

@media (max-width: 380px) {
    .whatsapp-popup {
        right: 10px;
        width: calc(100vw - 20px);
    }

    .whatsapp-popup-header h2 {
        font-size: 32px;
    }

    .whatsapp-popup-header p {
        font-size: 17px;
    }
}
/* =========================================
   FINAL WHATSAPP WIDGET SIZE CORRECTION
========================================= */

/* Hide the old floating WhatsApp */
.floating-whatsapp {
    display: none !important;
}

/* New widget position */
.whatsapp-widget {
    right: 24px !important;
    bottom: 24px !important;
    z-index: 100002 !important;
}

/* Smaller floating button */
.whatsapp-floating-button {
    width: 60px !important;
    height: 60px !important;
}

.whatsapp-floating-button svg {
    width: 31px !important;
    height: 31px !important;
}

/* Smaller popup box */
.whatsapp-popup {
    width: 340px !important;
    bottom: 80px !important;
    border-radius: 12px !important;
}

/* Smaller gold section */
.whatsapp-popup-header {
    min-height: 150px !important;
    padding: 24px 48px 22px 27px !important;
    border-radius: 12px 12px 0 0 !important;
}

.whatsapp-popup-header h2 {
    font-size: 34px !important;
    margin-bottom: 14px !important;
}

.whatsapp-popup-header p {
    max-width: 270px !important;
    font-size: 17px !important;
    line-height: 1.45 !important;
}

.whatsapp-popup-close {
    top: 13px !important;
    right: 14px !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 31px !important;
}

/* Smaller white support section */
.whatsapp-support-contact {
    min-height: 190px !important;
    padding: 24px 20px 27px !important;
    border-radius: 0 0 12px 12px !important;
}

/* Smaller avatar */
.whatsapp-avatar {
    width: 76px !important;
    height: 76px !important;
    margin-bottom: 13px !important;
}

.whatsapp-avatar-head {
    top: 10px !important;
    width: 31px !important;
    height: 31px !important;
}

.whatsapp-avatar-body {
    bottom: 7px !important;
    width: 56px !important;
    height: 34px !important;
}

.whatsapp-avatar-badge {
    top: 2px !important;
    right: -3px !important;
    width: 23px !important;
    height: 23px !important;
    border-width: 2px !important;
}

.whatsapp-avatar-badge svg {
    width: 15px !important;
    height: 15px !important;
}

.whatsapp-contact-role {
    margin-bottom: 5px !important;
    font-size: 16px !important;
}

.whatsapp-contact-name {
    font-size: 21px !important;
}

/* Smaller popup pointer */
.whatsapp-popup::after {
    right: 21px !important;
    bottom: -12px !important;
    width: 25px !important;
    height: 25px !important;
}

/* Mobile */
@media (max-width: 600px) {

    .whatsapp-widget {
        right: 16px !important;
        bottom: 18px !important;
    }

    .whatsapp-floating-button {
        width: 56px !important;
        height: 56px !important;
    }

    .whatsapp-floating-button svg {
        width: 29px !important;
        height: 29px !important;
    }

    .whatsapp-popup {
        position: fixed !important;
        right: 14px !important;
        bottom: 88px !important;
        width: calc(100vw - 28px) !important;
        max-width: 340px !important;
    }

    .whatsapp-popup-header {
        min-height: 145px !important;
        padding: 22px 45px 21px 24px !important;
    }

    .whatsapp-popup-header h2 {
        font-size: 31px !important;
    }

    .whatsapp-popup-header p {
        font-size: 16px !important;
    }

    .whatsapp-support-contact {
        min-height: 180px !important;
        padding: 21px 18px 25px !important;
    }

    .whatsapp-avatar {
        width: 72px !important;
        height: 72px !important;
    }

    .whatsapp-contact-name {
        font-size: 20px !important;
    }
}
/* =========================================
   FAQ PAGE — CLEAN LUXURY LAYOUT
========================================= */

.faq-page-body {
    background: #f7f3ec;
}

.faq-page {
    width: 100%;
    background: #f7f3ec;
    padding: 65px 7% 120px;
}

.faq-hero {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/* BREADCRUMB */

.faq-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;

    margin: 0 0 10px;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.4;

    color: #8b847b;
}

.faq-breadcrumb a {
    color: #8b847b;
    text-decoration: none;
    transition: color 0.25s ease;
}

.faq-breadcrumb a:hover {
    color: #b08a4a;
}


/* MAIN PAGE TITLE */

.faq-page h1 {
    margin: 0 0 42px;

    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 2.6vw, 38px);
    line-height: 1.08;
    font-weight: 500;
margin-bottom: 32px;
    color: #1b1b1b;
    text-align: left;
}


/* FAQ CONTENT CONTAINER */

.faq-panel {
    width: 100%;
    margin: 0;

    padding: 42px 56px 56px;

    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(17, 17, 17, 0.05);

    box-shadow: none;
    border-radius: 0;
    max-width: 1300px;
}


/* INTRO */

.faq-intro {
    max-width: 820px;
    margin-bottom: 28px;
}

.faq-intro-heading {
    margin: 0 0 14px;

    font-family: "Inter", sans-serif;
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.55;
    font-weight: 400;

    color: #5f5952;
}

.faq-intro-copy {
    max-width: 760px;
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.75;

    color: #817a72;
}


/* FAQ GROUPS */

.faq-group {
    padding-top: 12px;
}

.faq-group + .faq-group {
    margin-top: 50px;
}

.faq-group h2 {
    margin: 0 0 14px;

    font-family: "Playfair Display", serif;
    font-size: clamp(27px, 2.8vw, 38px);
    line-height: 1.12;
    font-weight: 600;

    color: #202020;
}


/* FAQ ROWS */

.faq-item {
    border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}


/* QUESTION */

.faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;

    padding: 15px 42px 15px 0;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;

    color: #4d4842;

    transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
}


/* PLUS ICON */

.faq-item summary::after {
    content: "+";

    position: absolute;
    right: 4px;
    top: 50%;

    transform: translateY(-50%);

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 400;
    line-height: 1;

    color: #8d857b;
}


/* OPEN QUESTION */

.faq-item[open] summary {
    color: #b08a4a;
}

.faq-item[open] summary::after {
    content: "−";
}


/* ANSWER */

.faq-item p {
    max-width: 900px;

    margin: 0;
    padding: 0 54px 18px 0;

    font-family: "Inter", sans-serif;
    font-size: 12.5px;
    line-height: 1.8;

    color: #777067;
}


/* =========================================
   FAQ MOBILE
========================================= */

@media (max-width: 768px) {

    .faq-page {
        padding: 42px 22px 86px;
    }

    .faq-page h1 {
        margin-bottom: 28px;
        font-size: 38px;
        line-height: 1.08;
    }

    .faq-panel {
        padding: 30px 22px 38px;
    }

    .faq-intro-heading {
        font-size: 17px;
    }

    .faq-group + .faq-group {
        margin-top: 38px;
    }

    .faq-group h2 {
        font-size: 29px;
    }

    .faq-item summary {
        padding-right: 34px;
        font-size: 13px;
    }

    .faq-item p {
        padding-right: 8px;
    }

}

/* =========================================
   BOOKING PHONE COUNTRY MENU FINAL OVERRIDE
========================================= */

.bookings-page-body .booking-form .iti{
    position:relative !important;
    z-index:30 !important;
    overflow:visible !important;
}

.bookings-page-body .booking-form .iti:focus-within{
    z-index:10000 !important;
}

.bookings-page-body .booking-form .iti__dropdown-content{
    position:absolute !important;
    top:calc(100% + 8px) !important;
    left:0 !important;
    right:auto !important;
    width:min(430px, calc(100vw - 40px)) !important;
    min-width:100% !important;
    max-height:none !important;
    overflow:visible !important;
    background:#ffffff !important;
    border:1px solid rgba(17,17,17,.14) !important;
    border-radius:8px !important;
    box-shadow:0 18px 45px rgba(0,0,0,.2) !important;
    z-index:1000000 !important;
}

.bookings-page-body .booking-form .iti__country-list{
    position:static !important;
    width:100% !important;
    max-height:280px !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    background:#ffffff !important;
    border:0 !important;
    border-radius:0 0 8px 8px !important;
    box-shadow:none !important;
    z-index:auto !important;
}

.bookings-page-body .booking-form .iti__country{
    display:grid !important;
    grid-template-columns:auto minmax(0, 1fr) auto !important;
    align-items:center !important;
    column-gap:10px !important;
    min-height:42px !important;
    padding:10px 14px !important;
    background:#ffffff !important;
    color:#111111 !important;
    font-size:14px !important;
    line-height:1.25 !important;
}

.bookings-page-body .booking-form .iti__country:hover,
.bookings-page-body .booking-form .iti__highlight{
    background:#f3efe8 !important;
}

.bookings-page-body .booking-form .iti__flag-box{
    width:22px !important;
    margin-right:0 !important;
}

.bookings-page-body .booking-form .iti__country-name{
    min-width:0 !important;
    overflow:hidden !important;
    color:#111111 !important;
    text-overflow:ellipsis !important;
    white-space:nowrap !important;
}

.bookings-page-body .booking-form .iti__dial-code{
    margin-left:12px !important;
    color:#6f665c !important;
    font-weight:500 !important;
    white-space:nowrap !important;
}

.bookings-page-body .booking-form .iti__search-input{
    width:100% !important;
    height:44px !important;
    margin:0 !important;
    padding:0 14px !important;
    background:#ffffff !important;
    color:#111111 !important;
    border:0 !important;
    border-bottom:1px solid rgba(17,17,17,.1) !important;
    border-radius:8px 8px 0 0 !important;
    box-shadow:none !important;
    outline:none !important;
}

@media (max-width:600px){
    .bookings-page-body .booking-form .iti__dropdown-content{
        width:100% !important;
    }

    .bookings-page-body .booking-form .iti__country-list{
        max-height:240px !important;
    }
}

/* =========================================
   FAQ + TERMS PAGE TOP SPACING
========================================= */

.faq-page,
.terms-page{
    padding-top:30px !important;
}

.faq-breadcrumb,
.terms-breadcrumb{
    margin-bottom:14px !important;
}

.terms-intro span{
    display:none !important;
}

.terms-last-updated{
    margin:28px 0 0;
    padding-top:18px;
    border-top:1px solid rgba(17,17,17,.1);
    font-family:"Inter", sans-serif;
    font-size:12px;
    line-height:1.6;
    color:#9a938a;
}

@media (max-width:768px){
    .faq-page,
    .terms-page{
        padding-top:24px !important;
    }
}

/* =========================================
   FAQ + TERMS READABILITY SPACING
========================================= */

.faq-intro p,
.faq-item p,
.terms-intro p,
.terms-section p,
.terms-section li,
.terms-last-updated{
    line-height:2 !important;
}

.faq-item summary,
.faq-group h2,
.terms-section h2{
    line-height:1.65 !important;
}

/* =========================================
   ABOUT VALUES + FINAL MOBILE HEADER ALIGNMENT
========================================= */

.about-values{
    padding:115px 6%;
    background:#fcfbf8;
}

.about-values-heading{
    max-width:760px;
    margin:0 0 48px;
}

.about-values-heading span{
    display:block;
    margin-bottom:18px;
    font-family:"Inter", sans-serif;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#b08a4a;
}

.about-values-heading h2{
    margin:0;
    font-family:"Playfair Display", serif;
    font-size:clamp(38px, 4vw, 58px);
    line-height:1.08;
    font-weight:500;
    color:#111111;
}

.about-values-grid{
    display:grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    border-top:1px solid rgba(17,17,17,.12);
    border-left:1px solid rgba(17,17,17,.12);
}

.about-value-card{
    min-height:330px;
    padding:34px 28px;
    border-right:1px solid rgba(17,17,17,.12);
    border-bottom:1px solid rgba(17,17,17,.12);
    background:rgba(255,255,255,.42);
}

.about-value-card span{
    display:block;
    margin-bottom:68px;
    font-family:"Inter", sans-serif;
    font-size:12px;
    color:#b08a4a;
}

.about-value-card h3{
    margin:0 0 16px;
    font-family:"Playfair Display", serif;
    font-size:26px;
    line-height:1.12;
    font-weight:500;
    color:#151515;
}

.about-value-card p{
    margin:0;
    font-family:"Inter", sans-serif;
    font-size:13px;
    line-height:1.9;
    color:#67615a;
}

.about-cta .about-cta-actions{
    justify-content:center;
}

.about-cta .secondary-btn{
    min-width:210px;
}

@media (max-width:1100px){
    .about-values-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:768px){
    .navbar,
    header.navbar,
    .bookings-page-body .navbar,
    .about-page-body .about-navbar,
    .error-page-body .error-navbar{
        min-height:96px !important;
        height:96px !important;
        padding:0 22px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
    }

    .navbar .logo,
    header.navbar .logo,
    .bookings-page-body .navbar .logo,
    .about-page-body .about-navbar .logo,
    .error-page-body .error-navbar .logo{
        position:static !important;
        left:auto !important;
        top:auto !important;
        height:96px !important;
        margin:0 !important;
        display:flex !important;
        align-items:center !important;
    }

    .navbar .logo img,
    header.navbar .logo img,
    .bookings-page-body .navbar .logo img,
    .about-page-body .about-navbar .logo img,
    .error-page-body .error-navbar .logo img{
        height:76px !important;
        width:auto !important;
        position:static !important;
        display:block !important;
        object-fit:contain !important;
    }

    .navbar .menu-toggle,
    header.navbar .menu-toggle,
    header.bookings-navbar .menu-toggle,
    .bookings-page-body header.navbar .menu-toggle,
    .bookings-page-body header.bookings-navbar .menu-toggle,
    .about-page-body .about-navbar .menu-toggle,
    .error-page-body .error-navbar .menu-toggle{
        position:static !important;
        top:auto !important;
        right:auto !important;
        width:44px !important;
        height:44px !important;
        margin:0 !important;
        padding:0 !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        flex:0 0 44px !important;
        color:transparent !important;
        font-size:0 !important;
        line-height:1 !important;
        background:transparent !important;
        border:0 !important;
        transform:none !important;
    }

    .navbar .menu-toggle::before,
    header.navbar .menu-toggle::before,
    header.bookings-navbar .menu-toggle::before,
    .about-page-body .about-navbar .menu-toggle::before,
    .error-page-body .error-navbar .menu-toggle::before{
        content:"" !important;
        display:block !important;
        width:25px !important;
        height:2px !important;
        border-radius:999px !important;
        background:currentColor !important;
        box-shadow:0 8px 0 currentColor, 0 16px 0 currentColor !important;
        transform:translateY(-8px) !important;
    }

    .about-page-body .about-navbar .menu-toggle,
    .error-page-body .error-navbar .menu-toggle{
        color:#ffffff !important;
    }

    body:not(.about-page-body):not(.error-page-body) .navbar .menu-toggle,
    .bookings-page-body .navbar .menu-toggle{
        color:#111111 !important;
    }

    .navbar .nav-links,
    .about-page-body .about-navbar .nav-links,
    .error-page-body .error-navbar .nav-links{
        top:96px !important;
    }

    .about-values{
        padding:78px 22px;
    }

    .about-values-heading{
        margin-bottom:34px;
    }

    .about-values-grid{
        grid-template-columns:1fr;
    }

    .about-value-card{
        min-height:auto;
        padding:30px 24px;
    }

    .about-value-card span{
        margin-bottom:44px;
    }

    .about-cta .about-cta-actions{
        align-items:stretch;
    }
}

@media (max-width:768px){
    body.about-page-body header.navbar.about-navbar{
        min-height:96px !important;
        height:96px !important;
        padding:0 22px !important;
        align-items:center !important;
    }

    body.about-page-body header.navbar.about-navbar .logo{
        position:static !important;
        height:96px !important;
        display:flex !important;
        align-items:center !important;
    }

    body.about-page-body header.navbar.about-navbar .logo img{
        height:76px !important;
    }

    body.about-page-body header.navbar.about-navbar .menu-toggle{
        position:static !important;
        top:auto !important;
        right:auto !important;
        width:44px !important;
        height:44px !important;
        margin:0 !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
    }

    body.about-page-body header.navbar.about-navbar .nav-links{
        top:96px !important;
    }
}

/* =========================================
   ABOUT NAVBAR RESTORE
========================================= */

body.about-page-body header.navbar.about-navbar{
    min-height:104px !important;
    padding:10px 6% !important;
}

body.about-page-body header.navbar.about-navbar .logo img{
    height:96px !important;
    width:auto !important;
    top:0 !important;
}

body.about-page-body header.navbar.about-navbar .nav-links{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:42px !important;
    width:auto !important;
    margin-left:auto !important;
    padding:0 !important;
    position:static !important;
}

body.about-page-body header.navbar.about-navbar .nav-links a{
    display:flex !important;
    align-items:center !important;
    height:100% !important;
    padding:0 !important;
    color:#ffffff !important;
    font-family:"Inter", sans-serif !important;
    font-size:13px !important;
    font-weight:500 !important;
    letter-spacing:.12em !important;
    line-height:1 !important;
    text-transform:uppercase !important;
    text-decoration:none !important;
}

body.about-page-body header.navbar.about-navbar .nav-links a:hover,
body.about-page-body header.navbar.about-navbar .nav-links a:focus{
    color:#d4af37 !important;
}

@media (max-width:768px){
    body.about-page-body header.navbar.about-navbar{
        min-height:96px !important;
        height:96px !important;
        padding:0 22px !important;
    }

    body.about-page-body header.navbar.about-navbar .logo img{
        height:76px !important;
    }

    body.about-page-body header.navbar.about-navbar .nav-links{
        display:none !important;
        position:absolute !important;
        top:96px !important;
        right:22px !important;
        left:auto !important;
        width:min(220px, calc(100vw - 44px)) !important;
        padding:12px !important;
        background:rgba(20,18,16,.94) !important;
        border-radius:12px !important;
        flex-direction:column !important;
        align-items:stretch !important;
        gap:0 !important;
    }

    body.about-page-body header.navbar.about-navbar .nav-links.active{
        display:flex !important;
    }

    body.about-page-body header.navbar.about-navbar .nav-links a{
        width:100% !important;
        height:auto !important;
        padding:12px 14px !important;
        border-radius:8px !important;
        font-size:12px !important;
        text-align:left !important;
    }
}

/* =========================================
   ABOUT MOBILE HERO TITLE POSITION
========================================= */

@media (max-width:768px){
    .about-page-body .about-hero{
        min-height:620px !important;
        align-items:flex-start !important;
    }

    .about-page-body .about-hero-content{
        padding:180px 22px 48px !important;
        transform:none !important;
    }
}

/* =========================================
   ABOUT MOBILE HAMBURGER RESTORE
========================================= */

@media (max-width:768px){
    body.about-page-body header.navbar.about-navbar .menu-toggle{
        display:flex !important;
        position:static !important;
        width:44px !important;
        height:44px !important;
        min-width:44px !important;
        min-height:44px !important;
        margin:0 !important;
        padding:0 !important;
        align-items:center !important;
        justify-content:center !important;
        color:#ffffff !important;
        font-size:0 !important;
        line-height:1 !important;
        background:transparent !important;
        border:0 !important;
        z-index:100001 !important;
    }

    body.about-page-body header.navbar.about-navbar .menu-toggle::before{
        content:"" !important;
        display:block !important;
        width:25px !important;
        height:2px !important;
        border-radius:999px !important;
        background:#ffffff !important;
        box-shadow:0 8px 0 #ffffff, 0 16px 0 #ffffff !important;
        transform:translateY(-8px) !important;
    }
}

/* =========================================
   ABOUT MOBILE HERO CENTERING
========================================= */

@media (max-width:768px){
    .about-page-body .about-hero{
        min-height:660px !important;
        align-items:center !important;
        justify-content:center !important;
    }

    .about-page-body .about-hero-content{
        width:100% !important;
        max-width:720px !important;
        padding:0 22px !important;
        transform:none !important;
        text-align:left !important;
    }

    .about-page-body .about-hero-content h1{
        font-size:76px !important;
        line-height:1.03 !important;
        margin-bottom:28px !important;
    }

    .about-page-body .about-hero-content p:not(.about-kicker){
        margin-left:0 !important;
        margin-right:0 !important;
        font-size:16px !important;
    }
}

/* =========================================
   GLOBAL MOBILE HAMBURGER COLOR
========================================= */

@media (max-width:768px){
    header.navbar .menu-toggle,
    header.bookings-navbar .menu-toggle,
    .navbar .menu-toggle,
    .bookings-page-body header.navbar .menu-toggle,
    .bookings-page-body header.bookings-navbar .menu-toggle,
    .about-page-body header.navbar.about-navbar .menu-toggle,
    .error-page-body header.navbar.error-navbar .menu-toggle{
        color:#ffffff !important;
    }

    header.navbar .menu-toggle::before,
    header.bookings-navbar .menu-toggle::before,
    .navbar .menu-toggle::before,
    .bookings-page-body header.navbar .menu-toggle::before,
    .bookings-page-body header.bookings-navbar .menu-toggle::before,
    .about-page-body header.navbar.about-navbar .menu-toggle::before,
    .error-page-body header.navbar.error-navbar .menu-toggle::before{
        background:#ffffff !important;
        box-shadow:0 8px 0 #ffffff, 0 16px 0 #ffffff !important;
    }
}

/* =========================================
   FINAL IDENTICAL MOBILE MENU
========================================= */

.navbar .nav-links a[aria-current="page"]{
    color:#d4af37 !important;
}

@media (max-width:768px){
    header.navbar .nav-links,
    header.bookings-navbar .nav-links,
    .navbar .nav-links,
    .bookings-page-body header.navbar .nav-links,
    .bookings-page-body header.bookings-navbar .nav-links,
    .error-page-body header.navbar.error-navbar .nav-links{
        display:none !important;
        position:absolute !important;
        top:96px !important;
        right:22px !important;
        left:auto !important;
        width:min(220px, calc(100vw - 44px)) !important;
        padding:12px !important;
        background:rgba(20,18,16,.94) !important;
        border:1px solid rgba(255,255,255,.1) !important;
        border-radius:12px !important;
        box-shadow:0 18px 45px rgba(0,0,0,.22) !important;
        flex-direction:column !important;
        align-items:stretch !important;
        gap:0 !important;
        z-index:100000 !important;
    }

    header.navbar .nav-links.active,
    header.bookings-navbar .nav-links.active,
    .navbar .nav-links.active,
    .bookings-page-body header.navbar .nav-links.active,
    .bookings-page-body header.bookings-navbar .nav-links.active,
    .error-page-body header.navbar.error-navbar .nav-links.active{
        display:flex !important;
    }

    header.navbar .nav-links a,
    header.bookings-navbar .nav-links a,
    .navbar .nav-links a,
    .bookings-page-body header.navbar .nav-links a,
    .bookings-page-body header.bookings-navbar .nav-links a,
    .error-page-body header.navbar.error-navbar .nav-links a{
        display:block !important;
        width:100% !important;
        height:auto !important;
        padding:12px 14px !important;
        border-radius:8px !important;
        color:#ffffff !important;
        font-family:"Inter", sans-serif !important;
        font-size:12px !important;
        font-weight:500 !important;
        letter-spacing:.12em !important;
        line-height:1 !important;
        text-align:left !important;
        text-transform:uppercase !important;
        text-decoration:none !important;
    }

    header.navbar .nav-links a[aria-current="page"],
    header.bookings-navbar .nav-links a[aria-current="page"],
    .navbar .nav-links a[aria-current="page"]{
        color:#d4af37 !important;
        background:rgba(255,255,255,.08) !important;
    }
}
