/* ==========================================================================
   Premium enhancements — Rustomjee Luxury Selections
   Loaded LAST so these rules win. Scope is intentionally specific.
   Covers:
     1. Design tokens + luxury display font
     2. Premium enquiry modals (all .modal-xl popups)
     3. intl-tel-input country-code fix (site-wide, no more overlap)
     4. Premium Bootstrap FAQ accordion (Read more / Read less)
     5. Premium off-canvas mobile menu (smooth open/close)
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
:root {
  --lux-gold: #c9a24b;
  --lux-gold-dark: #a8863b;
  --lux-gold-soft: rgba(201, 162, 75, 0.12);
  --lux-ink: #141414;
  --lux-ink-soft: #5a5a5a;
  --lux-line: rgba(20, 20, 20, 0.10);
  --lux-ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  /* keep the mobile-nav accent in sync with the modal/FAQ gold */
  --nav-accent: #c9a24b;
  --nav-accent-dark: #a8863b;
}

@font-face {
  font-family: "ColdiacLux";
  src: url("../fonts/Coldiac.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

/* ==========================================================================
   2. PREMIUM ENQUIRY MODALS  (enquiryModal, enquiryModal2..8, 11 — all .modal-xl)
   ========================================================================== */

/* Softer, blurred backdrop for a focused, premium feel */
.modal-backdrop.show {
  background-color: #0b0b0b;
  opacity: 0.72 !important;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* Dialog entrance — gentle rise + scale */
body .modal-xl {
  max-width: 940px;
}

.modal.fade .modal-xl {
  -webkit-transform: translateY(28px) scale(0.985);
  transform: translateY(28px) scale(0.985);
  -webkit-transition: -webkit-transform 0.5s var(--lux-ease), opacity 0.5s ease;
  transition: transform 0.5s var(--lux-ease), opacity 0.5s ease;
}

.modal.show .modal-xl {
  -webkit-transform: none;
  transform: none;
}

.modal-xl .modal-content {
  border: 1px solid var(--lux-line);
  border-top: 4px solid var(--lux-gold);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
  overflow: visible;
}

/* Header — luxury serif title + hairline rule */
.modal-xl .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 40px 18px !important;
  border-bottom: 1px solid var(--lux-line) !important;
  font-family: "Cormorant Garamond", "ColdiacLux", "futura", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.15;
  font-weight: 400;
  color: var(--lux-ink);
  letter-spacing: 0.3px;
}

.modal-xl .modal-body {
  padding: 26px 40px 42px !important;
}

/* Sub-heading (dynamic "Fill out the form for more details on ...") */
.modal-xl .form-section > h1,
.modal-xl #enquiryPopTitle {
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.5;
  color: var(--lux-ink-soft);
  letter-spacing: 0.2px;
  margin: 0 0 26px !important;
  text-transform: none;
}

/* Inputs — refined, taller, gold focus ring */
.modal-xl .footer-form-row .form-col {
  margin-bottom: 20px;
}

.modal-xl .form-control,
.modal-xl .footer-enquiry-form .form-control,
.modal-xl .select-wrapper select {
  height: 58px !important;   /* !important: beats #enquiryModal .form-section .form-control{height:51px} (ID specificity) */
  border: 1px solid #d9d4c9 !important;
  border-radius: 10px !important;
  background-color: #fbfaf7 !important;
  color: var(--lux-ink) !important;
  font-size: 15px !important;
  letter-spacing: 0.2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

/* Padding: apply to text inputs + selects, but NOT the phone input — its
   left padding is managed by intl-tel-input's JS (flag-width aware). Using a
   `padding` shorthand with !important on the tel field would reset that left
   padding and make the dial code overlap the number. */
.modal-xl .form-control:not([type="tel"]),
.modal-xl .select-wrapper select {
  padding: 14px 20px !important;
}
.modal-xl input[type="tel"].form-control {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  padding-right: 20px !important;
}

.modal-xl .form-control::-webkit-input-placeholder { color: #9a958a; }
.modal-xl .form-control::placeholder { color: #9a958a; }

.modal-xl .form-control:focus,
.modal-xl .select-wrapper select:focus {
  border-color: var(--lux-gold) !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px var(--lux-gold-soft) !important;
  outline: none !important;
}

/* Select chevron alignment for modals that still keep a dropdown */
.modal-xl .select-wrapper {
  position: relative;
}
.modal-xl .select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 44px !important;
  cursor: pointer;
}
.modal-xl .select-wrapper::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--lux-gold-dark);
  border-bottom: 2px solid var(--lux-gold-dark);
  -webkit-transform: translateY(-70%) rotate(45deg);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* WhatsApp opt-in checkbox */
.modal-xl .form-check-new {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 18px;
}
.modal-xl .form-check-input-new {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--lux-gold);
  cursor: pointer;
}
.modal-xl .checkbox-label {
  font-size: 14px;
  color: var(--lux-ink-soft);
  margin: 0;
  cursor: pointer;
}

/* Fine-print paragraphs */
.modal-xl .form-section p {
  font-size: 12.5px;
  line-height: 1.6;
  color: #8b8b8b;
  margin: 0 0 10px;
}

/* Submit — premium gold gradient */
.modal-xl .btn.primary,
.modal-xl .submit-bg {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px !important;
  height: 58px;
  margin-top: 12px;
  padding: 0 34px !important;
  border: none !important;
  border-radius: 40px !important;
  background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-dark) 100%) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 26px -8px rgba(201, 162, 75, 0.6) !important;
  -webkit-transition: transform 0.25s var(--lux-ease), box-shadow 0.25s ease, filter 0.25s ease;
  transition: transform 0.25s var(--lux-ease), box-shadow 0.25s ease, filter 0.25s ease;
}
.modal-xl .btn.primary:hover,
.modal-xl .submit-bg:hover {
  filter: brightness(1.05);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -8px rgba(201, 162, 75, 0.7) !important;
}
.modal-xl .btn.primary:disabled,
.modal-xl .submit-bg:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Premium circular close button */
.modal-xl .btn-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin: -6px -8px 0 0;
  border-radius: 50% !important;
  background-color: #f4f1ea;
  background-size: 12px;
  border: 1px solid var(--lux-line);
  opacity: 1;
  -webkit-transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.modal-xl .btn-close:hover {
  background-color: var(--lux-gold);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media (max-width: 767.98px) {
  .modal-xl .modal-content { border-radius: 14px; }
  .modal-xl .modal-header {
    padding: 22px 22px 14px !important;
    font-size: 1.45rem;
  }
  .modal-xl .modal-body { padding: 20px 22px 30px !important; }
  .modal-xl .form-control,
  .modal-xl .select-wrapper select { height: 54px !important; font-size: 16px !important; }
  .modal-xl .btn.primary,
  .modal-xl .submit-bg { max-width: 100% !important; }
}

/* ==========================================================================
   3. INTL-TEL-INPUT — country-code overlap fix (site-wide)
   Applies inside every modal AND the footer form.
   ========================================================================== */

/* CORE FIX: intl-tel-input v11 defaults its wrapper to `display:inline-block`,
   which collapses the phone field to content width — it then misaligns with the
   other inputs and the flag/dial-code overlaps the number. Forcing the wrapper
   to a full-width block realigns it and gives the number room. This is what the
   site actually renders (v11 uses `.intl-tel-input`); `.iti` is added for
   forward compatibility if the library is ever upgraded. */
.intl-tel-input,
.iti {
  display: block !important;
  width: 100% !important;
  position: relative;
}

/* Keep the input full width. We deliberately DO NOT set the phone input's
   left padding here — the inline padding (flag-width aware) already clears the
   dial code, and overriding it with !important would re-introduce the overlap. */
.intl-tel-input > input,
.intl-tel-input > input[type="tel"],
.intl-tel-input > input[type="text"],
.iti > input {
  width: 100% !important;
}

/* Separate-dial-code flag block — subtle premium tint + rounded left edge */
.intl-tel-input.separate-dial-code .selected-flag {
  background-color: #f1ede3;
  border-radius: 9px 0 0 9px;
}
.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
  background-color: #e9e3d4;
}
.intl-tel-input.separate-dial-code .selected-dial-code {
  color: var(--lux-ink);
  font-weight: 500;
}

/* Country dropdown — premium, scrollable, always above sibling fields.
   NOTE: the list lives inside the ~70px-wide .flag-container, so `width:100%`
   would collapse it. Size it to its content with a sensible min/max instead. */
.intl-tel-input .country-list {
  z-index: 100070;
  width: -webkit-max-content;
  width: max-content;
  min-width: 260px;
  max-width: 340px;
  max-height: 240px;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 6px 0 0;
  padding: 6px;
  border: 1px solid var(--lux-line);
  border-radius: 12px;
  background: #ffffff;
  white-space: nowrap;
  -webkit-box-shadow: 0 18px 44px -12px rgba(0, 0, 0, 0.35);
  box-shadow: 0 18px 44px -12px rgba(0, 0, 0, 0.35);
}
.intl-tel-input .country-list .country {
  display: block;
  padding: 9px 12px !important;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4em !important;
  white-space: nowrap;
}
.intl-tel-input .country-list .country .country-name {
  margin-right: 6px;
}
.intl-tel-input .country-list .country.highlight,
.intl-tel-input .country-list .country:hover {
  background-color: var(--lux-gold-soft) !important;
}
.intl-tel-input .country-list .country .dial-code {
  color: var(--lux-ink-soft);
}
.intl-tel-input .country-list .divider {
  border-bottom: 1px solid var(--lux-line);
}

/* ==========================================================================
   4. PREMIUM FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background: #f7f4ee !important;
  padding: 72px 0 !important;
}
.faq-section .faq-title {
  text-align: center;
  margin-bottom: 12px;
  font-family: "futura", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--lux-ink);
  text-transform: uppercase;
}
.faq-section .faq-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
  color: var(--lux-ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.faq-group + .faq-group { margin-top: 40px; }
.faq-group-title {
  font-family: "futura", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--lux-gold-dark);
  margin: 0 0 18px;
  padding-left: 16px;
  border-left: 3px solid var(--lux-gold);
}

.faq-accordion {
  max-width: 920px;
  margin: 0 auto;
}
.faq-accordion .accordion-item {
  background: #ffffff;
  border: 1px solid var(--lux-line);
  border-radius: 14px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px -12px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(201, 162, 75, 0.5);
  box-shadow: 0 16px 40px -18px rgba(201, 162, 75, 0.5);
}

.faq-accordion .accordion-header { margin: 0; }
.faq-accordion .accordion-button {
  padding: 22px 26px;
  background: transparent !important;
  color: var(--lux-ink) !important;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: none !important;
  border-radius: 14px !important;
}
.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px var(--lux-gold-soft) !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--lux-gold-dark) !important;
  background: transparent !important;
}

/* Collapsed FAQ items hidden until "View More" is clicked */
.faq-accordion .accordion-item.faq-hidden {
  display: none !important;
}

/* "View More" / "View Less" toggle */
.faq-viewmore-wrap {
  margin-top: 34px;
}
.faq-viewmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: var(--lux-gold-dark);
  border: 1.5px solid var(--lux-gold);
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.35s var(--lux-ease), color 0.35s var(--lux-ease), box-shadow 0.35s var(--lux-ease);
}
.faq-viewmore-btn:hover,
.faq-viewmore-btn:focus {
  background: var(--lux-gold);
  color: #fff;
  box-shadow: 0 8px 22px var(--lux-gold-soft);
  outline: none;
}
.faq-viewmore-btn .faq-viewmore-icon {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.35s var(--lux-ease);
  margin-top: -4px;
}
.faq-viewmore-btn[aria-expanded="true"] .faq-viewmore-icon {
  transform: rotate(-135deg);
  margin-top: 3px;
}

/* Kill Bootstrap's default chevron; use our own +/- icon for open/close */
.faq-accordion .accordion-button::after {
  display: none !important;
}
.faq-accordion .accordion-button .faq-q { flex: 1 1 auto; padding-right: 18px; }

/* +/- open-close indicator on the accordion button */
.faq-accordion .accordion-button .faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}
.faq-accordion .accordion-button .faq-plus::before,
.faq-accordion .accordion-button .faq-plus::after {
  content: "";
  position: absolute;
  background: var(--lux-gold-dark);
  transition: transform 0.35s var(--lux-ease), opacity 0.35s ease;
}
.faq-accordion .accordion-button .faq-plus::before {
  top: 9px; left: 2px; width: 16px; height: 2px;    /* horizontal bar */
}
.faq-accordion .accordion-button .faq-plus::after {
  top: 2px; left: 9px; width: 2px; height: 16px;    /* vertical bar */
}
/* Expanded: vertical bar collapses -> becomes a minus */
.faq-accordion .accordion-button:not(.collapsed) .faq-plus::after {
  transform: scaleY(0);
  opacity: 0;
}

.faq-accordion .accordion-body {
  padding: 4px 26px 24px;
  color: var(--lux-ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* Answer paragraph — only clamps + shows Read more when JS finds the text is
   long enough to overflow (see the FAQ read-more script). Short answers keep
   their full text and the toggle stays hidden. */
.faq-accordion .faq-answer { margin: 0; }
.faq-accordion .faq-answer.faq-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read more / Read less — hidden by default; JS adds .is-visible only when the
   answer actually overflows. */
.faq-accordion .faq-readmore {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0 !important;
  font-family: "futura", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--lux-gold-dark);
  cursor: pointer;
}
.faq-accordion .faq-readmore.is-visible { display: inline-flex; }
.faq-accordion .faq-readmore .rm-less { display: none; }
.faq-accordion .faq-readmore[aria-expanded="true"] .rm-more { display: none; }
.faq-accordion .faq-readmore[aria-expanded="true"] .rm-less { display: inline; }
.faq-accordion .faq-readmore .rm-caret {
  width: 7px; height: 7px;
  border-right: 2px solid var(--lux-gold-dark);
  border-bottom: 2px solid var(--lux-gold-dark);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s var(--lux-ease);
}
.faq-accordion .faq-readmore[aria-expanded="true"] .rm-caret {
  transform: translateY(1px) rotate(-135deg);
}

@media (max-width: 767.98px) {
  .faq-section { padding: 52px 0 !important; }
  .faq-section .faq-title { font-size: 1.9rem; }
  .faq-accordion .accordion-button { padding: 18px 18px; font-size: 1rem; }
  .faq-accordion .accordion-body { padding: 2px 18px 20px; }
}

/* ==========================================================================
   5. PREMIUM OFF-CANVAS MOBILE MENU  (smooth open / close)
   ========================================================================== */

/* Hamburger toggle — premium bordered pill */
.navbar-container .menu {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  padding: 6px;
  box-sizing: content-box;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.navbar-container .menu:hover {
  background: rgba(201, 162, 75, 0.18);
  border-color: var(--lux-gold);
  transform: scale(1.05);
}

/* Panel — full-screen, richer easing + longer, luxurious glide */
.offcanvas.offcanvas-end {
  width: 100% !important;
  max-width: 100% !important;
  background: linear-gradient(165deg, #1c1c1c 0%, #050505 100%);
  border-left: 3px solid var(--lux-gold);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.6);
  -webkit-transition: -webkit-transform 0.55s var(--lux-ease) !important;
  transition: transform 0.55s var(--lux-ease) !important;
}

/* Backdrop — soft blur + fade */
.offcanvas-backdrop {
  background-color: #000;
}
.offcanvas-backdrop.show {
  opacity: 0.6;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.offcanvas-backdrop.fade {
  -webkit-transition: opacity 0.55s ease;
  transition: opacity 0.55s ease;
}

.offcanvas.offcanvas-end .offcanvas-header {
  padding: 1.6rem 1.6rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.offcanvas-body { padding: 1.6rem; }

/* Links — staggered reveal when panel opens */
.offcanvas-links { gap: 0; margin: 0.5rem 0; }
.offcanvas-links a.offcanvas-link {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  padding: 1.05rem 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  -webkit-transform: translateX(28px);
  transform: translateX(28px);
  -webkit-transition: color 0.3s ease, padding-left 0.3s ease,
    opacity 0.5s var(--lux-ease), -webkit-transform 0.5s var(--lux-ease);
  transition: color 0.3s ease, padding-left 0.3s ease,
    opacity 0.5s var(--lux-ease), transform 0.5s var(--lux-ease);
}
.offcanvas.show .offcanvas-links a.offcanvas-link {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
.offcanvas.show .offcanvas-links a.offcanvas-link:nth-of-type(1) { transition-delay: 0.12s; }
.offcanvas.show .offcanvas-links a.offcanvas-link:nth-of-type(2) { transition-delay: 0.19s; }
.offcanvas.show .offcanvas-links a.offcanvas-link:nth-of-type(3) { transition-delay: 0.26s; }
.offcanvas.show .offcanvas-links a.offcanvas-link:nth-of-type(4) { transition-delay: 0.33s; }
.offcanvas.show .offcanvas-links a.offcanvas-link:nth-of-type(5) { transition-delay: 0.40s; }

.offcanvas-links a.offcanvas-link:hover,
.offcanvas-links a.offcanvas-link:focus {
  color: var(--lux-gold);
  padding-left: 0.8rem;
}

/* CTA reveal */
.offcanvas-cta {
  margin-top: auto;
  padding-top: 2rem;
  opacity: 0;
  -webkit-transform: translateY(16px);
  transform: translateY(16px);
  -webkit-transition: opacity 0.5s var(--lux-ease) 0.46s, -webkit-transform 0.5s var(--lux-ease) 0.46s;
  transition: opacity 0.5s var(--lux-ease) 0.46s, transform 0.5s var(--lux-ease) 0.46s;
}
.offcanvas.show .offcanvas-cta {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
.offcanvas-cta .btnPrimaryMobile {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-dark) 100%);
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.25s var(--lux-ease), box-shadow 0.3s ease, filter 0.25s ease;
}
.offcanvas-cta .btnPrimaryMobile:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(201, 162, 75, 0.45);
}

/* Close button — circular, gold on hover */
.offcanvas-close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  transform: none;
  filter: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--lux-ease);
}
.offcanvas-close:hover {
  background: var(--lux-gold);
  border-color: var(--lux-gold);
  transform: rotate(90deg);
}
.offcanvas-close i { font-size: 1.35rem; color: #fff; }

/* ==========================================================================
   6. ACCESSIBILITY — respect reduced motion; never leave content hidden
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-xl,
  .offcanvas.offcanvas-end,
  .offcanvas-links a.offcanvas-link,
  .offcanvas-cta {
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    -webkit-transition-delay: 0ms !important;
    transition-delay: 0ms !important;
  }
  .offcanvas-links a.offcanvas-link,
  .offcanvas-cta {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   7. TIGHTER "BUILT AROUND FAMILY / CURATED FOR YOU" SECTION SPACING
   Trims the oversized whitespace above the heading and around the intro.
   ========================================================================== */
.second-wrapper {
  padding-top: 20px;
}
.second-wrapper h2 {
  margin-bottom: 22px;
}
@media (max-width: 767.98px) {
  .second-wrapper {
    padding-top: 14px;
  }
}

/* ==========================================================================
   8. DESKTOP HEADER LAYOUT
   Logo pinned left; nav links + Enquire button grouped on the far right.
   (Mobile <=991px is untouched — it uses the hamburger + off-canvas.)
   ========================================================================== */
@media (min-width: 992px) {
  .navbar-container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-container .logo {
    margin-right: auto;      /* pushes the nav + button cluster to the far right */
  }
  .navbar-container .navLinks {
    margin-right: 2.5rem;    /* gap between the last nav link and the Enquire button */
  }
}

/* FAQ "More Locations" — premium gold chips */
.faq-accordion .faq-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.faq-accordion .faq-locations li {
  padding: 7px 18px;
  border: 1px solid rgba(201, 162, 75, 0.5);
  border-radius: 30px;
  background: rgba(201, 162, 75, 0.08);
  color: var(--lux-ink);
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   9. MOBILE NAVBAR — white bar, dark logo, black hamburger (visibility)
   Overrides the black mobile bar from mobile-nav.css (loads earlier).
   ========================================================================== */
@media (max-width: 991px) {
  #header.header-container,
  #header.header-container.sticky,
  #header.header-container.sticky-new,
  #header.header-container.scrolled {
    background: #ffffff !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  /* Dark logo on the white bar (remove the white-invert used for the black bar) */
  .navbar-container .logo img {
    filter: none !important;
  }
  /* Black hamburger so it reads clearly on white (svg strokes are white) */
  .navbar-container .menu img {
    filter: brightness(0) !important;
  }
  /* Toggle button outline: dark on the white bar */
  .navbar-container .menu {
    border-color: rgba(0, 0, 0, 0.18);
  }
  .navbar-container .menu:hover {
    background: rgba(201, 162, 75, 0.15);
    border-color: var(--lux-gold);
  }
}

/* ==========================================================================
   10. EXPLORE MORE LOCATIONS — standalone card (matches open accordion look)
   ========================================================================== */
.explore-locations-section {
  padding: 40px 0;
}
.explore-locations-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.06);
  overflow: hidden;
}
.explore-locations-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--lux-line);
}
.explore-locations-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--lux-gold-dark);
}
.explore-locations-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.explore-locations-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lux-gold-dark);
  transform: translateY(-50%);
  border-radius: 2px;
}
.explore-locations-body {
  padding: 22px 26px 24px;
}
.explore-locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.explore-locations-list li {
  padding: 9px 22px;
  border: 1px solid rgba(201, 162, 75, 0.5);
  border-radius: 30px;
  background: rgba(201, 162, 75, 0.06);
  color: var(--lux-ink);
  font-size: 14px;
  letter-spacing: 0.3px;
}

@media (max-width: 575px) {
  .explore-locations-head {
    padding: 16px 18px;
  }
  .explore-locations-title {
    font-size: 17px;
  }
  .explore-locations-body {
    padding: 18px;
  }
  .explore-locations-list li {
    padding: 8px 18px;
  }
}

/* --- Explore More Locations: tabs + project cards ---------------------- */
.explore-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  border: none;
  list-style: none;
}
.explore-tab {
  padding: 10px 24px;
  border: 1px solid rgba(201, 162, 75, 0.5);
  border-radius: 30px;
  background: rgba(201, 162, 75, 0.06);
  color: var(--lux-ink);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.25s var(--lux-ease), color 0.25s var(--lux-ease),
    border-color 0.25s var(--lux-ease), box-shadow 0.25s var(--lux-ease);
}
.explore-tab:hover {
  border-color: var(--lux-gold);
  background: var(--lux-gold-soft);
}
.explore-tab.active {
  background: var(--lux-gold);
  border-color: var(--lux-gold);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.28);
}

/* Project card inside each tab */
.explore-project-card {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 360px;
  background: #ffffff;
  border: 1px solid var(--lux-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.06);
  animation: faqFade 0.4s var(--lux-ease);
  transition: box-shadow 0.3s var(--lux-ease), transform 0.3s var(--lux-ease);
}
.explore-project-card:hover {
  box-shadow: 0 26px 60px rgba(20, 20, 20, 0.12);
  transform: translateY(-2px);
}
@keyframes faqFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.epc-media {
  position: relative;
  flex: 0 0 46%;
  max-width: 46%;
  overflow: hidden;
}
.epc-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--lux-ease);
}
.explore-project-card:hover .epc-media img {
  transform: scale(1.06);
}
/* soft gradient so the badge always reads */
.epc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.28) 0%, rgba(20, 20, 20, 0) 42%);
  pointer-events: none;
}
.epc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lux-gold-dark);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 16px rgba(20, 20, 20, 0.18);
  backdrop-filter: blur(2px);
}
.epc-badge i {
  font-size: 12px;
}
.epc-body {
  position: relative;
  flex: 1 1 auto;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* faint decorative watermark for depth */
.epc-body::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(201, 162, 75, 0.10);
  pointer-events: none;
}
.epc-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding-left: 14px;
  position: relative;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lux-gold-dark);
}
.epc-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lux-gold);
}
.epc-title {
  margin: 0 0 14px;
  font-size: 27px;
  font-weight: 700;
  color: var(--lux-ink);
  line-height: 1.22;
}
.epc-desc {
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--lux-ink-soft);
  max-width: 42ch;
}
.epc-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 28px;
  border-radius: 30px;
  background: var(--lux-gold);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(201, 162, 75, 0.28);
  transition: background 0.25s var(--lux-ease), transform 0.25s var(--lux-ease),
    box-shadow 0.25s var(--lux-ease);
}
.epc-btn::after {
  content: "\2192";
  font-size: 16px;
  transition: transform 0.25s var(--lux-ease);
}
.epc-btn:hover {
  background: var(--lux-gold-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(201, 162, 75, 0.34);
}
.epc-btn:hover::after {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .explore-project-card {
    flex-direction: column;
    min-height: 0;
  }
  .epc-media {
    flex-basis: auto;
    max-width: 100%;
    height: 220px;
  }
  .epc-body {
    padding: 28px 24px;
  }
  .epc-body::before {
    font-size: 90px;
    right: 20px;
  }
  .epc-title {
    font-size: 22px;
  }
  .epc-desc {
    max-width: none;
  }
}
