:root {
  /* ─── BRAND COLORS ─── */
  --gold: #C8861A;
  --gold-light: #E09B2A;
  --gold-pale: #FDF4E7;
  --gold-border: #F0C97A;

  /* ─── NEUTRALS ─── */
  --black: #111111;
  --charcoal: #2A2A2A;
  --slate: #5A5A5A;
  --mist: #F8F6F2;
  --white: #FFFFFF;
  --divider: #E8E0D4;

  /* ─── TYPOGRAPHY ─── */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;

  /* ─── LEGACY SHADOWS (gradual deprecation) ─── */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.13);

  /* ─── ELEVATION & GLASS ─── */
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(12px);
  --elevation-1: 0 1px 3px rgba(17, 17, 17, 0.04), 0 1px 2px rgba(17, 17, 17, 0.02);
  --elevation-2: 0 4px 12px rgba(17, 17, 17, 0.05), 0 2px 4px rgba(17, 17, 17, 0.03);
  --elevation-3: 0 12px 40px rgba(17, 17, 17, 0.07), 0 4px 12px rgba(17, 17, 17, 0.04);
  --elevation-4: 0 24px 80px rgba(17, 17, 17, 0.10), 0 8px 24px rgba(17, 17, 17, 0.06);

  /* ─── RADIUS SCALE ─── */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* ─── TRANSITION PRIMITIVES ─── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;

  /* ─── LAYOUT ─── */
  --nav-bg: rgba(255, 255, 255, 0.96);
  --footer-bg: var(--black);
  --footer-text: #888888;
  --footer-title: #FFFFFF;
  --map-filter: none;
  --construction-bg: var(--black);
}

[data-theme="dark"] {
  --black: #F8F6F2;
  --charcoal: #E8E0D4;
  --slate: #AAAAAA;
  --mist: #1A1A1A;
  --white: #111111;
  --divider: #2A2A2A;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --nav-bg: rgba(17, 17, 17, 0.96);
  --gold-pale: #2A241A;
  --footer-bg: #000000;
  --footer-text: #AAAAAA;
  --footer-title: #F8F6F2;
  --map-filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
  --construction-bg: #1A1A1A;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}

@media (max-width: 1100px) {
  html, body {
    scroll-padding-top: 60px;
  }
}

@media (max-width: 600px) {
  html, body {
    scroll-padding-top: 56px;
  }
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

a{
  text-decoration: none;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(0.97);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* FONTS */
/* Register the Bold/Black font for the top line */
@font-face {
  font-family: 'Gotham-Bold';
  src: url('../fonts/Gotham/Gotham-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Register the Medium font for the bottom line */
@font-face {
  font-family: 'Gotham-Medium';
  src: url('../fonts/Gotham/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}


/* ─── SECTION COMMON ─── */
section {
  padding: 100px 0;
  border-bottom: 2px solid var(--divider);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
  text-align: center;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--slate);
  max-width: 520px;
  line-height: 1.7;
  text-align: center;
}

/* BTN's */
/* ─────────────────────────────────────────────
   POV ANIMATED BUTTONS
───────────────────────────────────────────── */
.pov-btn {
  position: relative;
  width: fit-content;
  height: 58px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  outline: none;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  transition: all 0.4s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}
.pov-btn:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(200, 134, 26, 0.15);
}
.pov-btn:active {
  transform: scale(0.98);
}

/* inner layout — icon + label sit together, centered as a unit */
.pov-btn .btn-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}



/* icon wrapper */
.pov-btn .icon {
  width: 0;
  overflow: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    width .4s cubic-bezier(.77, 0, .18, 1),
    opacity .3s .05s;
  flex-shrink: 0;
}

.pov-btn:hover .icon {
  width: 26px;
  opacity: 1;
}

.pov-btn .icon svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

/* label */
.pov-btn .label {
  position: relative;
  white-space: nowrap;
  transition: color 0.4s ease;
}

/* ─── BTN 1 — BOOK A SHOOT (Gold) ─── */
.btn-book {
  background: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 0 24px rgba(200, 134, 26, 0.3), 0 2px 8px rgba(0,0,0,0.1);
}

.btn-book:hover {
  box-shadow: 0 0 48px rgba(200, 134, 26, 0.5), 0 6px 20px rgba(0,0,0,0.15);
}

.btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
  z-index: 1;
}

.btn-book:hover::before {
  transform: scaleX(1);
}

.btn-book:hover .label {
  color: var(--white);
}

.btn-book:hover .icon svg rect,
.btn-book:hover .icon svg path,
.btn-book:hover .icon svg circle,
.btn-book:hover .icon svg line {
  stroke: var(--white);
}

/* flash on click */
.btn-book::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #FFFFFF;
  opacity: 0;
  pointer-events: none;
}

.btn-book:active::after {
  animation: flash .25s ease-out;
}

@keyframes flash {
  0% {
    opacity: .5
  }

  100% {
    opacity: 0
  }
}

.btn-book .cam-lens {
  transition: transform .35s .1s cubic-bezier(.34, 1.56, .64, 1);
}

.btn-book:hover .cam-lens {
  transform: scale(1.2);
}

.btn-book .cam-aperture {
  opacity: 0;
  transform: scale(.4);
  transition: opacity .25s .25s, transform .3s .25s cubic-bezier(.34, 1.56, .64, 1);
}

.btn-book:hover .cam-aperture {
  opacity: 1;
  transform: scale(1);
}

/* ─── BTN 2 — VIEW PRICING (Black) ─── */
.btn-pricing {
  background: var(--black);
  color: var(--white);
  border: none;
}

.btn-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
  z-index: 1;
}

.btn-pricing:hover::before {
  transform: scaleX(1);
}

.btn-pricing:hover {
  border: 1.5px solid var(--gold);
  color: var(--white);
}

.btn-pricing .icon svg path,
.btn-pricing .icon svg line,
.btn-pricing .icon svg circle {
  stroke: #FFFFFF;
}

.btn-pricing .tag-g {
  transform-origin: 50% 20%;
  transform: rotate(-25deg) translateY(-2px);
  transition: transform .45s .05s cubic-bezier(.34, 1.56, .64, 1);
}

.btn-pricing:hover .tag-g {
  transform: rotate(0deg) translateY(0);
}

/* ─── BTN 3 — OUR SERVICES (Outline Black) ─── */
.btn-services {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-services:hover {
  border-color: var(--gold);
}

.btn-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
  z-index: 1;
}

.btn-services:hover::before {
  transform: scaleX(1);
}

.btn-services:hover .label {
  color: var(--white);
}

.btn-services .star-ray {
  transform-origin: 11px 11px;
  opacity: 0;
  transform: scale(.2);
  transition: opacity .2s, transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.btn-services:hover .star-ray:nth-child(n) {
  opacity: 1;
  transform: scale(1);
}

.btn-services:hover .star-ray:nth-child(1) {
  transition-delay: .05s;
}

.btn-services:hover .star-ray:nth-child(2) {
  transition-delay: .10s;
}

.btn-services:hover .star-ray:nth-child(3) {
  transition-delay: .15s;
}

.btn-services:hover .star-ray:nth-child(4) {
  transition-delay: .20s;
}

.btn-services:hover .star-ray:nth-child(5) {
  transition-delay: .25s;
}

.btn-services:hover .star-ray:nth-child(6) {
  transition-delay: .30s;
}

.btn-services:hover .star-ray:nth-child(7) {
  transition-delay: .35s;
}

.btn-services:hover .star-ray:nth-child(8) {
  transition-delay: .40s;
}

.btn-services .star-core {
  fill: currentColor;
  transition: fill .2s .1s;
}

.btn-services:hover .star-core {
  fill: var(--gold);
}

.btn-services:hover .icon svg circle {
  stroke: var(--white);
}

/* Book Now buttons — icon always visible */
.btn-book .icon {
  width: 26px;
  opacity: 1;
}

.btn-book .icon svg {
  width: 22px;
  height: 22px;
}

.btn-book .label {
  transform: translateY(1px);
}

/* ─── BTN 4 — REAL ESTATE PACKAGE (dark) ─── */
.btn-re .tab-btn.active {
  background: var(--black);
  color: var(--white);
}

.btn-realestate {
  background: var(--black);
  color: var(--white);
}

.btn-realestate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
  z-index: 1;
}

.btn-realestate:hover::before {
  transform: scaleX(1);
}

.btn-realestate .house-walls {
  transform: translateY(5px);
  opacity: 0;
  transition: transform .4s .05s cubic-bezier(.34, 1.56, .64, 1), opacity .3s .05s;
}

.btn-realestate:hover .house-walls {
  transform: translateY(0);
  opacity: 1;
}

.btn-realestate .house-roof {
  transform: translateY(-6px) scaleY(.7);
  transform-origin: bottom center;
  opacity: 0;
  transition: transform .4s .1s cubic-bezier(.34, 1.56, .64, 1), opacity .3s .1s;
}

.btn-realestate:hover .house-roof {
  transform: translateY(0) scaleY(1);
  opacity: 1;
}

.btn-realestate .house-door {
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform .3s .25s;
}

.btn-realestate:hover .house-door {
  transform: scaleY(1);
}

/* ─── BTN 5 — CONSTRUCTION PACKAGE (gold) ─── */
.btn-construction {
  background: var(--gold);
  color: var(--white);
}

.btn-construction::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
  z-index: 1;
}

.btn-construction:hover::before {
  transform: scaleX(1);
}

.btn-construction::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
  pointer-events: none;
}

.btn-construction:hover::after {
  transform: translateX(100%);
}

.btn-construction .floor {
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform .25s, opacity .2s;
}

.btn-construction:hover .floor:nth-child(n) {
  transform: scaleX(1);
  opacity: 1;
}

.btn-construction:hover .floor:nth-child(1) {
  transition-delay: .00s;
}

.btn-construction:hover .floor:nth-child(2) {
  transition-delay: .07s;
}

.btn-construction:hover .floor:nth-child(3) {
  transition-delay: .14s;
}

.btn-construction:hover .floor:nth-child(4) {
  transition-delay: .21s;
}

.btn-construction .crane-arm {
  transform: translateX(-4px);
  opacity: 0;
  transition: transform .3s .28s cubic-bezier(.34, 1.56, .64, 1), opacity .2s .28s;
}

.btn-construction:hover .crane-arm {
  transform: translateX(0);
  opacity: 1;
}

.pov-btn:focus-visible {
  box-shadow: 0 0 0 2px var(--mist), 0 0 0 4px var(--gold);
}


@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .section-sub {
    font-size: 14px;
    max-width: 100%;
  }

}
/* Scroll arrow */
/* ─── SCROLL ARROW ─── */
  .scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Desktop only */
  }

  /* Rotating dashed circle */
  .scroll-arrow .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed var(--gold);
    border-color: var(--gold);
    opacity: 0.45;
    animation: spin 8s linear infinite;
  }

  /* Solid inner circle */
  .scroll-arrow .circle {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0.3;
    background: var(--gold-pale);
    transition: background 0.3s, border-color 0.3s, opacity 0.3s;
  }

  .scroll-arrow:hover .circle {
    background: var(--gold-pale);
    opacity: 0.7;
    border-color: var(--gold);
  }

  /* Arrow SVG bouncing */
  .scroll-arrow .arrow-icon {
    position: relative;
    z-index: 2;
    color: var(--gold);
    width: 18px;
    height: 18px;
    animation: bounce 1.6s ease-in-out infinite;
  }

  /* Hide on mobile — reduced size instead of hidden */
  @media (max-width: 768px) {
    .scroll-arrow {
      bottom: 32px;
      width: 48px;
      height: 48px;
    }
    .scroll-arrow .circle {
      inset: 5px;
    }
    .scroll-arrow .arrow-icon {
      width: 18px;
      height: 18px;
    }
  }

  @media (max-width: 480px) {
    .scroll-arrow {
      bottom: 20px;
      width: 44px;
      height: 44px;
    }
    .scroll-arrow .circle {
      inset: 4px;
    }
  }

  /* ─── KEYFRAMES ─── */
  @keyframes bounce {
    0%, 100% { transform: translateY(-3px); opacity: 0.6; }
    50%       { transform: translateY(3px);  opacity: 1;   }
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  /* pulse glow on hover */
  .scroll-arrow:hover .arrow-icon {
    animation: bounce 0.9s ease-in-out infinite;
    color: var(--gold-light);
  }
/* --- SCROLL TO TOP --- */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--divider);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-md);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(200, 134, 26, 0.25);
}

.scroll-top-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ─── BOOKING MODAL ─── */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: var(--white);
  border: 1px solid var(--divider);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  box-sizing: border-box;
  max-width: 640px;
  width: 100%;
  padding: 32px 32px 28px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.booking-modal-overlay.active .booking-modal {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate);
  padding: 8px;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  z-index: 6;
}

.booking-modal-close:hover {
  color: var(--black);
  background: var(--mist);
}

.booking-modal-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}

.booking-modal-header h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.booking-modal-header p {
  font-size: 13px;
  color: var(--slate);
}

.booking-modal-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.booking-option {
  border: 2px solid var(--divider);
  border-radius: 12px;
  padding: 24px 18px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  background: var(--white);
}

.booking-option:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 0 32px rgba(200, 134, 26, 0.18), 0 8px 24px rgba(0,0,0,0.08);
}

.booking-option-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: 12px;
  border: 1px solid var(--gold-border);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.booking-option:hover .booking-option-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}

.booking-option-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: color 0.3s;
}

.booking-option:hover .booking-option-icon svg {
  color: #fff;
}

.booking-option h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.booking-option p {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.5;
  max-width: 240px;
}

.booking-option-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 0 20px rgba(200, 134, 26, 0.2);
}

.booking-option-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 0 32px rgba(200, 134, 26, 0.4);
  transform: translateY(-2px);
}

.booking-option-cta::after {
  content: '→';
  font-size: 12px;
}

/* Construction option actions */
.booking-cons-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  width: 100%;
}

.booking-cons-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--sans);
}

.booking-cons-form {
  background: var(--gold);
  color: #fff;
  border: none;
  box-shadow: 0 0 20px rgba(200, 134, 26, 0.2);
}

.booking-cons-form:hover {
  background: var(--gold-light);
  box-shadow: 0 0 32px rgba(200, 134, 26, 0.4);
  transform: translateY(-2px);
}

.booking-cons-call {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.booking-cons-call:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 0 24px rgba(200, 134, 26, 0.3);
  transform: translateY(-2px);
}

.booking-cons-btn svg {
  flex-shrink: 0;
}

/* Modal responsive */
@media (max-width: 600px) {
  .booking-modal {
    padding: 20px 20px 20px;
    max-width: 92vw;
    border-radius: 12px;
    max-height: calc(100vh - 32px);
  }

  .booking-modal-header {
    padding-bottom: 10px;
    margin-bottom: 14px;
  }

  .booking-modal-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-modal-header h3 {
    font-size: 18px;
  }

  .booking-modal-header p {
    font-size: 12px;
  }

  .booking-option {
    padding: 16px 16px;
  }

  .booking-option h4 {
    font-size: 16px;
    margin-bottom: 0;
  }

  .booking-option p {
    font-size: 11px;
    line-height: 1.35;
  }

  .booking-option-icon {
    margin-bottom: 4px;
  }

  .booking-option-icon svg {
    width: 32px;
    height: 32px;
  }

  .booking-option-cta {
    font-size: 11px;
  }

  .booking-option-icon {
    width: 52px;
    height: 52px;
  }

  .booking-option-icon svg {
    width: 28px;
    height: 28px;
  }

  .booking-option-cta {
    padding: 10px 20px;
    font-size: 10px;
  }

  .booking-cons-actions {
    flex-direction: column;
  }

  .booking-modal-close {
    top: 10px;
    right: 10px;
    padding: 6px;
  }
}

/* Modal-specific scrollbar (subtle) */
.booking-modal::-webkit-scrollbar {
  width: 6px;
}
.booking-modal::-webkit-scrollbar-track {
  background: transparent;
}
.booking-modal::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 6px;
}
.booking-modal {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.12) transparent;
}

/* ─── CONSTRUCTION FORM MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-panel {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  padding: 48px 40px 40px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s var(--ease-spring);
  box-shadow: var(--elevation-4);
}

.modal-overlay.active .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate);
  padding: 8px;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  z-index: 6;
}

.modal-close:hover {
  color: var(--black);
  background: var(--mist);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  border-radius: 100px;
}

.modal-header h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}

/* ─── CONSTRUCTION FORM ─── */
.cf-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-field--full {
  grid-column: 1 / -1;
}

.cf-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.cf-req {
  color: var(--gold);
}

.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--black);
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  outline: none;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--slate);
  opacity: 0.5;
}

.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

.cf-field textarea {
  resize: vertical;
  min-height: 80px;
  padding: 14px 16px;
}

.cf-select-wrap {
  position: relative;
}

.cf-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* ─── CHECKBOX GRID ─── */
.cf-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cf-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  text-transform: none;
  letter-spacing: 0;
}

.cf-checkbox:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.cf-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}

.cf-checkbox:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-pale);
}

/* ─── SUBMIT BUTTON ─── */
.cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  margin-top: 4px;
}

.cf-submit:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.18);
}

.cf-submit:active {
  transform: translateY(0) scale(0.98);
}

.cf-submit.success {
  background: #2e7d32;
  pointer-events: none;
}

/* ─── CONSTRUCTION FORM RESPONSIVE ─── */
@media (max-width: 600px) {
  .modal-panel--form {
    padding: 32px 20px 28px;
    border-radius: 12px;
    max-width: 94vw;
    max-height: 90vh;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .cf-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .modal-header h3 {
    font-size: 20px;
  }

  .cf-field input,
  .cf-field textarea,
  .cf-field select {
    font-size: 16px;
    padding: 14px 16px;
  }
}
