/* ============================================================
   ADARSH URBANITE — Modern Real Estate Website
   Design System & Global Styles
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy:        #0d1b2e;
  --navy-mid:    #1a3050;
  --gold:        #c9a24a;
  --gold-light:  #e8d5a3;
  --gold-dark:   #a07c2e;
  --cream:       #f8f4ee;
  --cream-dark:  #ede8de;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #7a7a7a;
  --border:      #ddd6c8;
  --shadow-sm:   0 2px 8px rgba(13,27,46,.08);
  --shadow-md:   0 6px 24px rgba(13,27,46,.12);
  --shadow-lg:   0 16px 48px rgba(13,27,46,.18);
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --transition:  all .3s ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-mid); margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1400px; }
.section {
  padding: 88px 0;
}
.section--sm { padding: 56px 0; }
.section--lg { padding: 120px 0; }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.75); }
.section--cream { background: var(--cream); }
.section--cream-dark { background: var(--cream-dark); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ---- Section Headers ---- */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header {
  margin-bottom: 56px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  max-width: 640px;
}
.section-header.text-center p { margin: 0 auto; }
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
}
.divider--center { margin: 16px auto 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,162,74,.35);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,74,.4);
}
.btn--outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: .8rem; }
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- Header / Navigation ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
  padding: 20px 0;
}
.site-header--transparent {
  background: transparent;
}
.site-header--scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo img {
  height: 52px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255,255,255,.88);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(201,162,74,.12);
}
.header-cta {
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  transition: right .35s ease;
  flex-direction: column;
  padding: 96px 32px 40px;
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
}
.mobile-overlay.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 32px; width: 100%; justify-content: center; }

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,46,.88) 0%, rgba(13,27,46,.6) 60%, rgba(13,27,46,.4) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,74,.2);
  border: 1px solid rgba(201,162,74,.5);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* Hero with side form layout */
.hero--with-form .hero__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

/* ---- Inquiry Form / Lead Form ---- */
.inquiry-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.inquiry-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.inquiry-form-card p {
  font-size: .85rem;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,74,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.form-consent span {
  font-size: .75rem;
  color: var(--text-light);
  line-height: 1.5;
}
.form-submit { width: 100%; justify-content: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: #22c55e;
  margin: 0 auto 16px;
}
.form-success h4 { color: var(--navy); font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { font-size: .9rem; }

/* ---- Floating CTA Bar ---- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.floating-cta.visible { transform: translateY(0); }
.floating-cta__text { color: rgba(255,255,255,.85); font-size: .9rem; }
.floating-cta__text strong { color: var(--gold); }
.floating-cta__btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--navy);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,46,.7), rgba(13,27,46,.95));
}
.page-hero__content {
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ---- Stat Blocks ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}

/* ---- Feature / Info Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card__body { padding: 24px; }
.card__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.card__title { font-size: 1.2rem; margin-bottom: 10px; }
.card__text { font-size: .88rem; color: var(--text-mid); }

/* Icon feature card */
.feature-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-card__icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.6rem;
  transition: var(--transition);
}
.feature-card:hover .feature-card__icon {
  background: var(--gold);
  color: var(--white);
}
.feature-card h4 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: .85rem; color: var(--text-light); }

/* ---- Amenities Grid ---- */
.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.amenity-tag:hover,
.amenity-tag--active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.amenity-tags { display: flex; flex-wrap: wrap; gap: 10px; }

/* Amenity card with image */
.amenity-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.amenity-card:hover img { transform: scale(1.06); }
.amenity-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(13,27,46,.9), transparent);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}

/* ---- Floor Plan Tabs ---- */
.tabs {
  display: flex;
  gap: 0;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 4px;
  width: fit-content;
}
.tab-btn {
  padding: 12px 28px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---- Gallery Grid ---- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text-mid);
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,46,.5);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.93);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox__close:hover { background: var(--gold); }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--gold); }

/* ---- Location Section ---- */
.location-map-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.proximity-list { display: flex; flex-direction: column; gap: 0; }
.proximity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.proximity-item:last-child { border-bottom: none; }
.proximity-item__icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.proximity-item__name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.proximity-item__dist { font-size: .8rem; color: var(--text-light); margin-top: 2px; }

/* ---- Pricing Table ---- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.price-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.price-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--cream); }
.price-table td:first-child { font-weight: 600; color: var(--navy); }
.price-highlight { color: var(--gold); font-weight: 700; font-size: 1rem; }
.price-table-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ---- Accordion / FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--navy);
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-mid);
  font-size: .92rem;
  line-height: 1.7;
}

/* ---- CTA Sections ---- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a24a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: var(--white); position: relative; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-section .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ---- Footer ---- */
.site-footer {
  background: #080f1a;
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
}

/* ---- Modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,.65);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 1.3rem;
  transition: var(--transition);
}
.modal__close:hover { background: var(--cream); color: var(--navy); }
.modal h3 { margin-bottom: 8px; }
.modal p { font-size: .88rem; margin-bottom: 24px; }

/* ---- Image + Text split sections ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}
.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }
.split-img {
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.split-img:hover img { transform: scale(1.04); }
.split-content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content.bg-navy {
  background: var(--navy);
}
.split-content.bg-cream {
  background: var(--cream);
}
.split-content.bg-navy h2,
.split-content.bg-navy h3 { color: var(--white); }
.split-content.bg-navy p { color: rgba(255,255,255,.75); }
.split-content.bg-navy .divider { background: var(--gold); }
.split-content ul { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.split-content ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--text-mid);
}
.split-content.bg-navy ul li { color: rgba(255,255,255,.75); }
.split-content ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- Highlight Box ---- */
.highlight-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { color: var(--text-mid); font-size: .92rem; }

/* ---- Scroll animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---- Responsive Breakpoints ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split-content { padding: 56px 40px; }
  .hero--with-form .hero__grid { grid-template-columns: 1fr; }
  .hero--with-form .hero__grid .inquiry-form-card { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .split-section {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .split-img { min-height: 280px; }
  .split-content { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-cta { flex-direction: column; padding: 16px; }
  .floating-cta__btns { justify-content: center; }
  .hero__stats { gap: 20px; }
  .hero__ctas { flex-direction: column; }
  .section-header { margin-bottom: 40px; }
  .price-table { font-size: .8rem; }
  .price-table th, .price-table td { padding: 12px 14px; }
}
@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .tabs { flex-direction: column; width: 100%; }
  .tab-btn { text-align: center; }
  .hero h1 { font-size: 2rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Enquiry Modal ---- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  z-index: 1;
}

.modal__close:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.modal__header {
  padding: 32px 32px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.modal__header h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.modal__header p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.modal__body {
  padding: 32px;
}

.modal-form .form-group {
  margin-bottom: 20px;
}

.modal-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.1);
}

.modal-form textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-form .form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
}

.modal-form .form-consent span {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.modal-form .form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.modal-form .form-success {
  text-align: center;
  padding: 40px 20px;
}

.modal-form .form-success svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}

.modal-form .form-success h4 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.modal-form .form-success p {
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}

.modal-form .submit-loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Modal responsive styles */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 16px;
  }
  
  .modal {
    max-width: 100%;
    margin: 0;
  }
  
  .modal__header {
    padding: 24px 24px 20px;
  }
  
  .modal__header h3 {
    font-size: 1.5rem;
  }
  
  .modal__body {
    padding: 24px;
  }
  
  .modal__close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* ---- Compact Modal Styles ---- */
.modal--compact {
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal--compact .modal__header {
  padding: 24px 24px 16px;
  text-align: center;
}

.modal--compact .modal__header h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.modal--compact .modal__header p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.modal--compact .modal__body {
  padding: 20px 24px 24px;
}

.modal-form--compact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.modal-form--compact .form-group {
  margin-bottom: 16px;
}

.modal-form--compact label {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.modal-form--compact input,
.modal-form--compact select,
.modal-form--compact textarea {
  padding: 10px 12px;
  font-size: 0.9rem;
}

.modal-form--compact textarea {
  min-height: 60px;
  resize: vertical;
}

.modal-form--compact .form-consent {
  margin-bottom: 20px;
  padding: 12px;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.modal-form--compact .form-consent span {
  font-size: 0.8rem;
  line-height: 1.4;
}

.modal-form--compact .form-error {
  margin-bottom: 16px;
  padding: 8px 12px;
  font-size: 0.8rem;
}

.modal-form--compact .form-submit {
  padding: 12px 24px;
  font-size: 0.95rem;
}

.modal-form--compact .form-success {
  padding: 32px 20px;
}

.modal-form--compact .form-success h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.modal-form--compact .form-success p {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Compact modal responsive */
@media (max-width: 600px) {
  .modal--compact {
    max-width: 95%;
    margin: 0;
  }
  
  .modal--compact .modal__header {
    padding: 20px 20px 16px;
  }
  
  .modal--compact .modal__body {
    padding: 16px 20px 20px;
  }
  
  .modal-form--compact .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .modal-form--compact .form-group {
    margin-bottom: 12px;
  }
  
  .modal-form--compact .form-consent {
    padding: 10px;
  }
}
