/* =========================================================
   GAURS LEISURE PARK — CUSTOM STYLES
   Palette: Forest #1F3329 | Gold #C9A35F | Cream #F7F4EC | Sage #E4E9DD | Ink #23241F
   Type: Fraunces (display) + Inter (body)
   ========================================================= */

:root {
  --forest: #1F3329;
  --forest-dark: #142119;
  --forest-light: #2C4838;
  --gold: #C9A35F;
  --gold-dark: #A9803F;
  --gold-light: #E2C98C;
  --cream: #F7F4EC;
  --sage: #E4E9DD;
  --ink: #23241F;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1156px;
    }
}



h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

em { font-style: italic; color: var(--gold-dark); font-family: 'Fraunces', serif; }

a { text-decoration: none; }

::selection { background: var(--gold-light); }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-mark { font-size: 2.5rem; color: var(--gold); }
.leaf-spin { display: inline-block; animation: leafPulse 1.4s ease-in-out infinite; }
@keyframes leafPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* =========================================================
   UTILITY BAR
   ========================================================= */
.utility-bar {
  background: var(--forest-dark);
  color: rgba(247,244,236,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.utility-bar a { color: rgba(247,244,236,0.85); margin-left: 1.25rem; transition: color var(--transition); }
.utility-bar a:hover { color: var(--gold-light); }
.utility-bar i { color: var(--gold); margin-right: 4px; }

/* =========================================================
   NAVBAR
   ========================================================= */
.main-nav {
  background: rgba(247,244,236,0.97);
  backdrop-filter: blur(8px);
  padding: 5px 0;
  box-shadow: 0 1px 0 rgba(31,51,41,0.08);
  transition: padding var(--transition), box-shadow var(--transition);
  z-index: 1030;
}
.main-nav.scrolled { padding: 8px 0; box-shadow: 0 6px 24px rgba(31,51,41,0.1); }

.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  /*width: 38px; height: 38px;*/
  /*background: var(--forest);*/
  /*color: var(--gold);*/
  /*border-radius: 50%;*/
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  /*display: none;*/
}
.brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--forest);
}
.brand-text em { color: var(--gold-dark); }

.main-nav .nav-link {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color var(--transition);
}
.main-nav .nav-link:hover { color: var(--forest); }
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.25rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav .nav-link:hover::after { transform: scaleX(1); }

.btn-cta {
  background: var(--forest);
  color: var(--cream) !important;
  border: 1px solid var(--forest);
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: all var(--transition);
}
.btn-cta:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--forest-dark) !important; transform: translateY(-1px); }
.btn-cta:active { transform: translateY(0); }

.btn-outline-cta {
  background: var(--forest);
  color:  var(--cream) !important;
  border: 1.5px solid var(--forest);
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: all var(--transition);
}
.btn-outline-cta:hover { background: var(--forest); color: var(--cream) !important; }

.btn-outline-cta-light {
  background: transparent;
  color: var(--gold-light) !important;
  border: 1.5px solid var(--gold-light);
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: all var(--transition);
}
.btn-outline-cta-light:hover { background: var(--gold-light); color: var(--forest-dark) !important; }

/* =========================================================
   HERO  (mobile-first: base rules = phone, then scale up)
   ========================================================= */

/* --- Base / phone (< 576px) --- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 2rem;       /* breathing room below the sticky navbar */
  padding-bottom: 0;
  overflow: hidden;
  isolation: isolate;      /* keeps z-index contexts contained to this section */
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 100%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Mobile: more even top-to-bottom darkening so stacked text stays legible
     over a photo with unpredictable focal point */
  background: linear-gradient(180deg, rgba(20,33,25,0.88) 0%, rgba(20,33,25,0.86) 55%, rgba(20,33,25,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold-dark);
  margin-right: 10px;
  flex-shrink: 0;
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before { background: var(--gold-light); }

.hero-title {
  font-size: clamp(2rem, 8vw, 4.2rem);
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.1rem;
  word-break: break-word;
}
.hero-title em { color: var(--gold-light); }

.hero-sub {
  color: rgba(247,244,236,0.88);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.hero-price {
  display: inline-flex;
  flex-direction: column;
  background: rgba(247,244,236,0.1);
  border: 1px solid rgba(247,244,236,0.25);
  border-radius: 14px;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.hero-price-label {
  color: rgba(247,244,236,0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero-price-value {
  color: var(--gold-light);
  font-family: 'Fraunces', serif;
  font-size: clamp(1.15rem, 4vw, 1.5rem);
  font-weight: 600;
  white-space: nowrap;
}
.star { font-size: 0.85rem; vertical-align: top; }

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-actions .btn { flex: 1 1 auto; }

.hero-form-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 24px 48px rgba(20,33,25,0.35);
  margin-top: 2rem;
}
.hero-form-card h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 0.4rem; }
.hero-form-card p { font-size: 0.85rem; color: #6b6b63; margin-bottom: 1.1rem; }
.hero-form-card .form-control {
  background: #fff;
  border: 1px solid #ddd6c4;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.93rem;
}
.hero-form-card .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,163,95,0.2); }
.form-disclaimer { font-size: 0.72rem; color: #8a8a80; margin: 0.7rem 0 0; text-align: center; }

/* Stats Strip — base/phone: simple 2x2 grid, no vh tricks */
.stats-strip {
  position: relative;
  z-index: 1;
  background: rgba(20,33,25,0.65);
  border-top: 1px solid rgba(247,244,236,0.15);
  padding: 1.4rem 0;
  width: 100%;
  margin-top: -20px;
}
.stat-item {
  padding: 0.6rem 0.25rem;
  border-bottom: 1px solid rgba(247,244,236,0.15);
}
/* remove bottom border on the last visual row (last two items in 2-col phone grid) */
.stats-strip .row > .col-6:nth-last-child(-n+2) .stat-item { border-bottom: none; }

.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}
.stat-label {
  display: block;
  color: rgba(247,244,236,0.8);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* Park belt top accent on hero */
.park-belt-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  z-index: 2;
}

/* --- Small tablets / large phones (>= 576px) --- */
@media (min-width: 576px) {
  .hero-actions .btn { flex: 0 1 auto; }
  .hero-price-value { white-space: normal; }
}

/* --- Tablets (>= 768px) --- */
@media (min-width: 768px) {
  .hero { padding-top: 2.5rem; }
  .hero-content { padding-top: 2.5rem; padding-bottom: 3rem; }
  .hero-form-card { padding: 1.85rem; margin-top: 2.5rem; }

  .stat-item { border-bottom: none; border-right: 1px solid rgba(247,244,236,0.15); }
  .stats-strip .row > .col-6:nth-last-child(-n+2) .stat-item { border-bottom: 1px solid rgba(247,244,236,0.15); }
  .stats-strip .row > div:last-child .stat-item { border-right: none; }
}

/* --- Desktop (>= 992px) --- */
@media (min-width: 992px) {
  .hero {
    min-height: 80vh;
    flex-direction: row;
    align-items: center;
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
  .hero-overlay {
    /* Desktop: directional gradient works because the form card sits on the
       right against a clearer part of the image */
    background: linear-gradient(115deg, rgba(20,33,25,0.94) 0%, rgba(20,33,25,0.78) 38%, rgba(20,33,25,0.45) 70%, rgba(20,33,25,0.55) 100%);
  }
  .hero-content { padding-top: 1rem; padding-bottom: 0; }

  .eyebrow { font-size: 0.8rem; letter-spacing: 0.16em; margin-bottom: 0.9rem; }
  .eyebrow::before { width: 22px; }

  .hero-sub { font-size: 1.08rem; margin-bottom: 1.75rem; }
  .hero-price { padding: 0.9rem 1.4rem; margin-bottom: 1.75rem; backdrop-filter: blur(4px); }
  .hero-price-label { font-size: 0.78rem; letter-spacing: 0.08em; }
  .hero-actions { gap: 1rem; }
  .hero-form-card { margin-top: 0; }

  .stats-strip {
    position: relative;
    background: rgba(20,33,25,0.55);
    backdrop-filter: blur(6px);
    margin-top: 3rem;
    padding: 1.6rem 0;
    margin-top: -20px;
  }
  .stat-item { border-bottom: none; padding: 0.5rem 0; }
  .stats-strip .row > .col-6:nth-last-child(-n+2) .stat-item,
  .stats-strip .row > div:last-child .stat-item { border-bottom: none; }
}

/* =========================================================
   PARK BELT DIVIDER (signature element)
   ========================================================= */
.park-belt {
  height: 64px;
  background: var(--cream);
  background-image:
    radial-gradient(circle at 8% 50%, var(--forest) 0 5px, transparent 6px),
    radial-gradient(circle at 24% 50%, var(--gold) 0 3px, transparent 4px),
    radial-gradient(circle at 40% 50%, var(--forest) 0 5px, transparent 6px),
    radial-gradient(circle at 56% 50%, var(--gold) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 50%, var(--forest) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 50%, var(--gold) 0 3px, transparent 4px);
  position: relative;
}
.park-belt::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--forest-light) 0 10px, transparent 10px 18px);
  opacity: 0.4;
}

/* =========================================================
   SECTIONS — base
   ========================================================= */
.section { padding: 6rem 0; position: relative; }
.section-cream { background: var(--cream); }
.section-sage { background: var(--sage); }
.section-forest { background: var(--forest); color: rgba(247,244,236,0.9); }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--forest);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}
.section-title-light { color: var(--cream); }
.section-title em { color: var(--gold-dark); }
.section-title-light em { color: var(--gold-light); }

.section-lead { color: #4b4b43; font-size: 1.05rem; line-height: 1.75; max-width: 560px; }
.section-lead-light { color: rgba(247,244,236,0.8); }

.link-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.link-cta:hover { gap: 14px; color: var(--forest); }

/* =========================================================
   WHY US — feature cards
   ========================================================= */
.feature-card {
  background: #fff;
  border: 1px solid rgba(31,51,41,0.08);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(31,51,41,0.1);
  border-color: var(--gold);
}
.feature-card i { font-size: 1.6rem; color: var(--gold-dark); margin-bottom: 0.75rem; display: block; }
.feature-card h5 { font-size: 1.05rem; color: var(--forest); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: #6b6b63; line-height: 1.6; margin: 0; }

/* =========================================================
   OVERVIEW
   ========================================================= */
.overview-media img { width: 100%; box-shadow: 0 30px 60px rgba(0,0,0,0.35); }
.overview-list { list-style: none; padding: 0; margin: 1.75rem 0; border-top: 1px solid rgba(247,244,236,0.15); }
.overview-list li {
  display: flex; justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(247,244,236,0.15);
  font-size: 0.95rem;
}
.overview-list li span { color: rgba(247,244,236,0.6); }
.overview-list li strong { color: var(--gold-light); font-family: 'Fraunces', serif; font-weight: 600; }
.overview-copy { line-height: 1.75; margin-bottom: 1.75rem; }
.overview-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =========================================================
   HIGHLIGHTS — pills
   ========================================================= */
.highlight-pill {
  background: #fff;
  border: 1px solid rgba(31,51,41,0.08);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  transition: all var(--transition);
}
.highlight-pill:hover { background: var(--forest); border-color: var(--forest); }
.highlight-pill:hover i, .highlight-pill:hover span { color: var(--gold-light); }
.highlight-pill i { font-size: 1.7rem; color: var(--forest); display: block; margin-bottom: 0.6rem; transition: color var(--transition); }
.highlight-pill span { font-size: 0.85rem; font-weight: 600; color: var(--ink); transition: color var(--transition); }

/* =========================================================
   AMENITIES
   ========================================================= */
.amenity-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem 1.25rem;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(31,51,41,0.06);
  transition: all var(--transition);
}
.amenity-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(31,51,41,0.12); }
.amenity-card i {
  font-size: 1.9rem;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: rgba(31,51,41,0.06);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.amenity-card h5 { font-size: 0.95rem; color: var(--forest); margin: 0; }

/* =========================================================
   PRICING / FLOOR PLANS
   ========================================================= */
.floorplan-tabs { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.fp-tab {
  text-align: left;
  background: #fff;
  border: 1px solid rgba(31,51,41,0.12);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
  transition: all var(--transition);
}
.fp-tab.active, .fp-tab:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

.price-table-wrap { background: #fff; border-radius: 16px; padding: 1.5rem; box-shadow: 0 16px 40px rgba(31,51,41,0.08); }
.price-table { margin-bottom: 0.75rem; }
.price-table thead th {
  font-family: 'Fraunces', serif;
  color: var(--forest);
  border-bottom: 2px solid var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-table td { font-size: 0.92rem; vertical-align: middle; border-color: rgba(31,51,41,0.08); }
.price-disclaimer { font-size: 0.78rem; color: #8a8a80; margin: 0; }

.fp-panel { display: none; }
.fp-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-item { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* =========================================================
   LOCATION
   ========================================================= */
.location-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.location-list li {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(31,51,41,0.15);
  font-size: 0.95rem;
}
.location-list li i { color: var(--gold-dark); font-size: 1.1rem; }
.location-list li span { flex: 1; color: var(--ink); font-weight: 500; }
.location-list li strong { color: var(--forest); font-family: 'Fraunces', serif; }
.location-map-card { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(31,51,41,0.15); }
.location-map-card iframe { display: block; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.6rem;
  height: 100%;
  border: 1px solid rgba(31,51,41,0.07);
  position: relative;
}
.testimonial-card i.bi-quote { font-size: 2rem; color: var(--gold-light); }
.testimonial-card p { font-size: 0.95rem; color: #4b4b43; line-height: 1.7; margin: 0.75rem 0 1.25rem; }
.testimonial-card strong { display: block; color: var(--forest); font-family: 'Fraunces', serif; }
.testimonial-card span { font-size: 0.82rem; color: #8a8a80; }

/* =========================================================
   FAQ / ACCORDION
   ========================================================= */
.accordion-item { background: transparent; border: none; border-bottom: 1px solid rgba(31,51,41,0.12); }
.accordion-button {
  background: transparent;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--forest);
  font-size: 1.02rem;
  padding: 1.1rem 0;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--gold-dark); background: transparent; }
.accordion-body { color: #5a5a52; font-size: 0.92rem; line-height: 1.7; padding: 0 0 1.25rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-info-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.contact-info-list li { display: flex; align-items: center; gap: 0.85rem; padding: 0.6rem 0; }
.contact-info-list li i { color: var(--gold-light); font-size: 1.1rem; width: 22px; }
.contact-info-list li a, .contact-info-list li span { color: rgba(247,244,236,0.85); }
.contact-disclaimer {
  font-size: 0.78rem;
  color: rgba(247,244,236,0.55);
  line-height: 1.6;
  border-top: 1px solid rgba(247,244,236,0.15);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.contact-form-card { background: var(--cream); border-radius: 20px; padding: 2.25rem; box-shadow: 0 30px 60px rgba(0,0,0,0.25); }
.contact-form-card .form-label { font-size: 0.85rem; font-weight: 600; color: var(--forest); margin-bottom: 0.35rem; }
.contact-form-card .form-control, .contact-form-card .form-select {
  background: #fff; border: 1px solid #ddd6c4; border-radius: 10px; padding: 0.65rem 0.9rem; font-size: 0.93rem;
}
.contact-form-card .form-control:focus, .contact-form-card .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,163,95,0.2); }

.form-success { text-align: center; padding: 2rem 1rem; }
.form-success i { font-size: 3rem; color: var(--gold-dark); margin-bottom: 1rem; }
.form-success h4 { color: var(--forest); margin-bottom: 0.5rem; }
.form-success p { color: #6b6b63; margin: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--forest-dark); color: rgba(247,244,236,0.75); padding: 4.5rem 0 2rem; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem; }
.footer-brand .brand-text { color: var(--cream); }
.footer-about { font-size: 0.88rem; line-height: 1.7; max-width: 320px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(247,244,236,0.08);
  border-radius: 50%;
  color: var(--cream);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--forest-dark); }

.footer-heading { color: var(--gold-light); font-family: 'Fraunces', serif; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.65rem; font-size: 0.88rem; }
.footer-links a, .footer-links span { color: rgba(247,244,236,0.75); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-links i { color: var(--gold-light); margin-right: 6px; }

.footer-divider { border-color: rgba(247,244,236,0.12); margin: 2.5rem 0 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(247,244,236,0.7); }
.footer-legal a:hover { color: var(--gold-light); }
.footer-disclaimer { font-size: 0.74rem; color: rgba(247,244,236,0.4); line-height: 1.6; margin-top: 2rem; }

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1040;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
}
.mobile-cta-btn {
  flex: 1; text-align: center;
  padding: 0.9rem 0;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
}
.mobile-cta-btn.call { background: var(--forest); color: var(--cream); }
.mobile-cta-btn.book { background: var(--gold); color: var(--forest-dark); }

/* =========================================================
   BACK TO TOP
   ========================================================= */
#backToTop {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 1030;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }

@media (min-width: 992px) {
  #backToTop { bottom: 2rem; }
}

/* =========================================================
   ENQUIRY MODAL
   ========================================================= */
.enquiry-modal { background: var(--cream); border-radius: 20px; border: none; padding: 2.5rem 2rem; position: relative; }
.enquiry-modal .brand-mark { width: 50px; height: 50px; font-size: 1.3rem; margin-bottom: 1rem; }
.enquiry-modal h3 { color: var(--forest); margin-bottom: 0.35rem; }
.enquiry-modal p { color: #6b6b63; font-size: 0.9rem; margin-bottom: 1.5rem; }
.enquiry-modal .form-control { background: #fff; border: 1px solid #ddd6c4; border-radius: 10px; padding: 0.65rem 0.9rem; }
.enquiry-modal .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,163,95,0.2); }
.btn-close-custom {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(31,51,41,0.08);
  border: none; border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  transition: all var(--transition);
}
.btn-close-custom:hover { background: var(--forest); color: var(--cream); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].in-view { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-aos], .reveal { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .section { padding: 4rem 0; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 767.98px) {
  .section-title { font-size: 1.7rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .utility-bar { display: none !important; }
  .overview-list li { font-size: 0.88rem; }
}

@media (max-width: 575.98px) {
  .price-table-wrap { padding: 1rem; }
  .price-table { font-size: 0.85rem; }
}
