/* ================================================================
   style.css — LuxeHomes NCR Landing Page
   Palette: Deep Navy #1a3c5e | Gold #d4a843 | Off-white #faf8f3
   Fonts: Playfair Display (headings) + DM Sans (body)
================================================================ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #1a3c5e;
  --navy-dark:  #0f2540;
  --navy-light: #234d77;
  --gold:       #d4a843;
  --gold-light: #e8c06a;
  --gold-dark:  #b8902e;
  --cream:      #faf8f3;
  --cream-2:    #f2ede0;
  --text:       #2d2d2d;
  --text-muted: #666;
  --white:      #ffffff;
  --wa-green:   #25D366;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --container:  1200px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
address { font-style: normal; }

/* ── Container ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ── Typography ────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-label--gold { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: .8rem;
}
.section-header--light .section-title { color: var(--white); }
.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
}
.section-header--light .section-intro { color: rgba(255,255,255,.8); }
.section-header { margin-bottom: 3rem; }
.section-header.text-center { text-align: center; }
.section-header.text-center .section-intro { margin-inline: auto; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,67,.4); }
.btn--dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--dark:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--wa { background: var(--wa-green); color: var(--white); border-color: var(--wa-green); }
.btn--wa:hover { background: #1db954; transform: translateY(-2px); }
.btn--lg { padding: .9rem 2rem; font-size: 1rem; }
.btn--xl { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: .5rem 1rem; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Section common ────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-cta { text-align: center; margin-top: 3rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: .5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar__tagline { color: rgba(255,255,255,.6); font-style: italic; }
.topbar__wa {
  background: var(--wa-green);
  color: var(--white) !important;
  padding: .3rem .9rem;
  border-radius: 4px;
  font-weight: 600;
}
.topbar__wa:hover { background: #1db954; color: var(--white) !important; }

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 36px;
  z-index: 999;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner { display: flex; align-items: center; gap: 1.5rem; padding-block: .8rem; }
.navbar__brand { flex-shrink: 0; }
.navbar__logo { height: 44px; width: auto; }
.navbar__logo--text { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.navbar__menu { display: flex; align-items: center; gap: 1.75rem; flex: 1; justify-content: center; }
.navbar__menu a { font-size: .9rem; font-weight: 500; color: var(--text); padding-bottom: 2px; border-bottom: 2px solid transparent; transition: all var(--transition); }
.navbar__menu a:hover { color: var(--navy); border-bottom-color: var(--gold); }
.navbar__cta { flex-shrink: 0; }
.navbar__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.navbar__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,37,64,.85) 0%, rgba(26,60,94,.6) 60%, rgba(0,0,0,.3) 100%);
  z-index: 1;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 18s infinite;
}
.hero__slide--1 { background-image: url('/assets/images/hero-1.jpg'); animation-delay: 0s; }
.hero__slide--2 { background-image: url('/assets/images/hero-2.jpg'); animation-delay: 6s; }
.hero__slide--3 { background-image: url('/assets/images/hero-3.jpg'); animation-delay: 12s; }

@keyframes heroSlide {
  0%,5%    { opacity: 0; }
  10%,28%  { opacity: 1; }
  33%,100% { opacity: 0; }
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 1024px;
  padding-block: 4rem;
  animation: fadeUp .8s ease both;
}
.hero__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .6rem;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: .8rem;
}
.hero__body {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin-bottom: 1.5rem;
}
.hero__stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__stat {
  display: flex; flex-direction: column;
  border-left: 3px solid var(--gold);
  padding-left: .8rem;
}
.hero__stat span { font-size: 1.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.hero__stat small { font-size: .75rem; color: rgba(255,255,255,.65); letter-spacing: .05em; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero quick-enquiry panel */
.hero__panel {
  position: absolute;
  right: max(2rem, calc((100vw - 1200px) / 2));
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 300px;
}
.hero__panel-inner {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.hero__panel-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
}
.hero-quick-form { display: flex; flex-direction: column; gap: .75rem; }
.hero-quick-form input {
  padding: .65rem .9rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .9rem;
  transition: border-color var(--transition);
}
.hero-quick-form input:focus { outline: none; border-color: var(--navy); }
.panel-disclaimer { font-size: .72rem; color: var(--text-muted); text-align: center; margin-top: .5rem; }

/* ── Ticker ────────────────────────────────────────────────────── */
.ticker { background: var(--gold); overflow: hidden; padding: .6rem 0; }
.ticker__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker__track span { font-size: .85rem; font-weight: 600; color: var(--navy-dark); white-space: nowrap; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about__image-wrap { position: relative; }
.about__image {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; object-fit: cover;
}
.about__experience-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-num { display: block; font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.badge-num sup { font-size: 1.2rem; vertical-align: super; }
.badge-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.about__body { color: var(--text-muted); margin-bottom: 1.5rem; }
.about__stats { display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.about__stat { text-align: center; }
.stat-value { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

/* ═══════════════════════════════════════════════════════════════
   HIGHLIGHTS
═══════════════════════════════════════════════════════════════ */
.highlights { position: relative; color: var(--white); }
.highlights__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.highlights > .container { position: relative; z-index: 1; }
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.highlight-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(212,168,67,.25);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.highlight-card:hover { background: rgba(255,255,255,.12); border-color: var(--gold); transform: translateY(-4px); }
.highlight-card__icon { font-size: 2.5rem; margin-bottom: .8rem; }
.highlight-card h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold-light); margin-bottom: .4rem; }
.highlight-card p { font-size: .875rem; color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════════
   AMENITIES
═══════════════════════════════════════════════════════════════ */
.amenities { background: var(--white); }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1.25rem;
}
.amenity-card {
  display: flex; flex-direction: column; align-items: center;
  gap: .6rem;
  padding: 1.5rem 1rem;
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.amenity-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(212,168,67,.2); transform: translateY(-3px); }
.amenity-card__icon { font-size: 2rem; }
.amenity-card__title { font-size: .85rem; font-weight: 600; color: var(--navy); }

/* ═══════════════════════════════════════════════════════════════
   FLOOR PLANS
═══════════════════════════════════════════════════════════════ */
.floor-plans { background: var(--cream); }
.plans__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.plan-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.plan-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; cursor: zoom-in; transition: transform var(--transition); }
.plan-card:hover img { transform: scale(1.04); }
.plan-card__label { padding: .75rem 1rem; font-weight: 600; color: var(--navy); font-size: .9rem; border-top: 2px solid var(--gold); }
.plans__coming-soon { text-align: center; padding: 3rem 1rem; }
.coming-soon-card { display: inline-block; background: var(--white); border: 2px dashed var(--gold); border-radius: var(--radius-lg); padding: 3rem 4rem; }
.cs-icon { font-size: 3rem; margin-bottom: 1rem; }
.coming-soon-card h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); margin-bottom: .5rem; }

/* ═══════════════════════════════════════════════════════════════
   PRICE LIST
═══════════════════════════════════════════════════════════════ */
.price-list { background: var(--navy); }
.price-table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.price-table { width: 100%; border-collapse: collapse; background: var(--white); }
.price-table th {
  background: var(--navy-dark);
  color: var(--gold-light);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price-table td { padding: 1rem 1.25rem; border-bottom: 1px solid #f0ebe0; font-size: .95rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--cream); }
.price-note { color: rgba(255,255,255,.6); font-size: .8rem; margin-top: 1.25rem; text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════════ */
.gallery { background: var(--white); }
.gallery__grid { columns: 3 240px; gap: 1rem; }
.gallery__item { break-inside: avoid; margin-bottom: 1rem; overflow: hidden; border-radius: var(--radius-sm); }
.gallery__item img { width: 100%; cursor: zoom-in; transition: transform var(--transition); }
.gallery__item:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════════════════════════ */
.location { background: var(--cream); }
.location__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.location__points h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 1rem; }
.location__list { display: flex; flex-direction: column; gap: .7rem; }
.location__list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; }
.location__list .fa-circle-check { color: var(--gold); margin-top: .2rem; flex-shrink: 0; }
.map-placeholder {
  width: 100%; height: 380px;
  background: var(--cream-2);
  border: 2px dashed #ccc;
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  color: var(--text-muted);
  font-size: .9rem; text-align: center;
}
.map-placeholder .fa-map-location-dot { font-size: 3rem; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════════ */
.cta-banner { position: relative; padding: 5rem 0; text-align: center; }
.cta-banner__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f2540 0%, #1a3c5e 50%, #234d77 100%);
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}
.cta-banner__content { position: relative; z-index: 1; color: var(--white); }
.cta-banner h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,25,45,.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  animation: fadeIn .2s ease;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp .3s ease;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.5rem; color: var(--text-muted);
  cursor: pointer; line-height: 1; padding: .25rem .5rem;
  border-radius: 50%;
  transition: all var(--transition);
}
.modal-close:hover { background: #f0f0f0; color: var(--text); }
.modal-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 2rem 2rem 1.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .25rem .7rem; border-radius: 4px;
  margin-bottom: .75rem;
}
.modal-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: .4rem; }
.modal-subtitle { font-size: .875rem; color: rgba(255,255,255,.75); }
.lead-form { padding: 1.75rem 2rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.form-group label span { color: #e53935; }
.form-group input,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid #dde;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,60,94,.1);
}
.form-group input.error { border-color: #e53935; }
.form-error { font-size: .78rem; color: #e53935; min-height: 1em; }
.input-prefix { display: flex; }
.input-prefix span {
  padding: .7rem .9rem;
  background: var(--cream);
  border: 1.5px solid #dde;
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: .9rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.input-prefix input {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
  flex: 1;
}
.form-disclaimer { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: .75rem; }
.form-disclaimer .fa-lock { color: var(--gold); }

/* Lead success state */
.lead-success { padding: 2.5rem 2rem; text-align: center; }
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.lead-success h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy); margin-bottom: .5rem; }
.lead-success p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer__top { background: var(--navy-dark); padding: 4rem 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer__logo { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold-light); margin-bottom: .5rem; }
.footer__tagline { font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.footer__address { font-size: .85rem; color: rgba(255,255,255,.7); display: flex; gap: .5rem; }
.footer__address .fa-location-dot { color: var(--gold); flex-shrink: 0; margin-top: .2rem; }
.footer__rera { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .6rem; }
.footer__col h4 { font-size: .85rem; font-weight: 700; color: var(--gold-light); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col ul li { font-size: .875rem; color: rgba(255,255,255,.65); }
.footer__col ul li a { color: rgba(255,255,255,.65); }
.footer__col ul li a:hover { color: var(--gold-light); }
.footer__col ul li i { color: var(--gold); width: 1rem; }
.footer__enquiry { display: flex; flex-direction: column; gap: .75rem; }
.footer__enquiry h4 { margin-bottom: .25rem; }

.footer__bottom { background: #070f1a; padding: 1.25rem 0; }
.footer__bottom-inner { display: flex; flex-direction: column; gap: .4rem; text-align: center; }
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer__disclaimer { font-size: .73rem !important; }

/* ═══════════════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS
═══════════════════════════════════════════════════════════════ */
.fab-group { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1500; display: flex; flex-direction: column; gap: .75rem; }
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  color: var(--white);
}
.fab:hover { transform: scale(1.1); color: var(--white); }
.fab--phone { background: var(--navy); }
.fab--whatsapp { background: var(--wa-green); }

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.92); }
.lightbox__inner { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox__img { max-width: 100%; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox__close { position: absolute; top: -2.5rem; right: 0; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }
.lightbox__caption { color: rgba(255,255,255,.7); font-size: .85rem; margin-top: .75rem; }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@keyframes fadeIn  { from { opacity: 0; }           to { opacity: 1; } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__panel { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image-wrap { max-width: 480px; margin-inline: auto; }
  .location__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar__tagline { display: none; }
  .navbar__menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; gap: 0;
    box-shadow: var(--shadow-md);
    border-top: 2px solid var(--gold);
  }
  .navbar__menu.open { display: flex; }
  .navbar__menu a { padding: .9rem 1.5rem; border-bottom: 1px solid #f0f0f0; width: 100%; }
  .navbar__toggle { display: flex; }
  .navbar__cta { display: none; }
  .navbar { position: relative; top: 0; }
  .topbar { position: relative; }

  .hero { min-height: 85vh; }
  .hero__ctas { gap: .75rem; }

  .footer__grid { grid-template-columns: 1fr; }
  .highlights__grid { grid-template-columns: 1fr 1fr; }
  .amenities__grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .gallery__grid { columns: 2 180px; }
  .modal-box { max-width: 100%; border-radius: var(--radius-md) var(--radius-md) 0 0; align-self: flex-end; }

  .cta-banner__bg { clip-path: none; }
  .cta-banner { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 1rem; }
  .highlights__grid { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

/* ── Input prefix in hero quick form ─── */
.hero-quick-form .input-prefix {
  display: flex;
}
.hero-quick-form .input-prefix span {
  padding: .65rem .8rem;
  background: #f0f0f0;
  border: 1.5px solid #ddd;
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: .88rem;
  color: #888;
}
.hero-quick-form .input-prefix input {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
  flex: 1;
  width: 100%;
}

/* ── Focus visible for accessibility ─── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
