/* ================================================================
   ZEAL by Kasana – Premium CSS Stylesheet (Reference-Matched)
   ================================================================ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --navy-deep: #0a1020;
  --navy-mid: #0f172a;
  --navy-light: #162036;
  --navy-text: #1a2d4a;
  --cream: #f8f6f0;
  --cream-dark: #e8e4da;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dark: #B8942A;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-subtle: rgba(212, 175, 55, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --muted: #64748B;
  --white: #FFFFFF;

  --ff-display: 'Inter', system-ui, sans-serif;
  --ff-body: 'Krub', system-ui, sans-serif;

  --nav-h: 80px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ── Custom Cursor ─────────────────────────────────────────────── */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  display: none;
}

@media (min-width: 769px) {
  .custom-cursor {
    display: block;
  }
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Typography Helpers ────────────────────────────────────────── */
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-heading-dark {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-text);
  margin-bottom: 16px;
}

.section-heading-dark em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

.section-tag-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--gold-subtle);
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  width: fit-content;
}

.tag-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-tag-center {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: none;
  color: var(--gold-dark);
  margin-bottom: 12px;
  text-align: center;
}

.gold-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.gold-underline.centered {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

/* ── Scroll Reveal ──────────────────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ─────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 5%;
  background: #080c16; /* Solid premium dark background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: #080c16;
  border-bottom: 1px solid var(--gold-subtle);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 100%;
}

.logo-new {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-decoration: none;
  font-family: var(--ff-display);
}

.logo-main {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 6px;
  color: var(--white);
  opacity: 0.9;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}

.nav-link {
  position: relative;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 0;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-enquire {
  flex-shrink: 0;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-enquire:hover {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, var(--navy-deep) 0%, rgba(10, 16, 32, 0.6) 40%, rgba(10, 16, 32, 0.25) 100%);
}

.hero-bottom-address {
  position: absolute;
  bottom: 30px;
  right: 5%;
  z-index: 10;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10, 16, 32, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: 4px;
  border-left: 2px solid var(--gold);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 5% 150px;
  max-width: 760px;
}

.hero-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--gold-subtle);
  background: rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(12px);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: -0.02em;
}

.hero-headline em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--ff-body);
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 32px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.85rem;
  padding: 12px 32px;
  border-radius: 8px;
  backdrop-filter: blur(12px);
  transition: all 0.2s;
}

.btn-hero-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

/* Slider dots removed */

.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gold-subtle);
}

.hero-stat {
  padding: 16px 24px;
  text-align: center;
  background: rgba(10, 16, 32, 0.85);
  backdrop-filter: blur(12px);
  border-right: 1px solid var(--gold-subtle);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Ticker ─────────────────────────────────────────────────────── */
.gold-ticker {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: scrollTicker 30s linear infinite;
}

.ticker-item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-deep);
  padding: 0 20px;
}



@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Floating CTA ──────────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s;
}

.float-btn svg {
  width: 18px;
  height: 18px;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-phone {
  background: linear-gradient(135deg, #1a73e8, #0d5bd1);
}

.float-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* ── Overview Section ──────────────────────────────────────────── */
.section-overview {
  padding: 40px 5%;
  background: linear-gradient(to bottom, var(--navy-deep), var(--navy-mid));
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.overview-image-wrap {
  position: relative;
}

.overview-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

.overview-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  padding: 20px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.badge-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy-deep);
}

.badge-label {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-deep);
}

.overview-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 32px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
}

.spec-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-subtle);
}

.spec-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.spec-text {
  display: flex;
  flex-direction: column;
}

.spec-text strong {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.spec-text span {
  font-size: 0.73rem;
  color: var(--muted);
}

/* ── Gallery ───────────────────────────────────────────────────── */
.section-gallery {
  padding: 48px 5%;
  background: linear-gradient(to bottom, var(--navy-mid), var(--navy-deep));
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.gallery-title-wrap {
  display: flex;
  flex-direction: column;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--ff-body);
  transition: all 0.3s;
}

.filter-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-item.hide {
  display: none;
}

.gallery-item img {
  transition: transform 0.7s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gi-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gi-tall {
  grid-row: span 2;
}

.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 32, 0.9) 0%, rgba(10, 16, 32, 0.2) 40%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gi-overlay {
  opacity: 1;
}

.gi-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.gallery-item:hover .gi-info {
  transform: translateY(0);
}

.gi-info-text h4 {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  line-height: 1.3;
}

.gi-info-text span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(212, 175, 55, 0.7);
}

.gi-zoom {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.gi-zoom svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.gi-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gi-corner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.gi-corner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.gallery-item:hover .gi-corner {
  opacity: 1;
}

/* ── Lightbox ──────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(10, 16, 32, 0.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.25s;
}

.lb-close:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.lb-close svg {
  width: 18px;
  height: 18px;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.25s;
}

.lb-nav:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.lb-nav svg {
  width: 18px;
  height: 18px;
}

.lb-prev {
  left: 16px;
}

.lb-next {
  right: 16px;
}

.lb-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  width: auto;
  height: auto;
}

.lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.lb-caption h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
}

.lb-caption span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(212, 175, 55, 0.6);
}

/* ── Spaces ────────────────────────────────────────────────────── */
.section-spaces {
  padding: 40px 5%;
  background: var(--cream);
}

.spaces-header {
  text-align: center;
  margin-bottom: 48px;
}

.spaces-sub {
  color: rgba(26, 45, 74, 0.7);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 12px auto 0;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.space-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.space-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.space-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.space-card:hover .space-img {
  transform: scale(1.08);
}

.space-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 32, 0.95) 0%, rgba(10, 16, 32, 0.15) 50%, transparent 100%);
}

.space-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.space-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--gold-subtle);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  backdrop-filter: blur(12px);
}

.space-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.space-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.space-card:hover .space-desc {
  max-height: 80px;
}



/* ── Connectivity ──────────────────────────────────────────────── */
.section-connectivity {
  padding: 28px 5%;
  background: var(--navy-light);
  border-top: 1px solid var(--gold-subtle);
  border-bottom: 1px solid var(--gold-subtle);
}

.connectivity-header {
  text-align: center;
  margin-bottom: 32px;
}

.connect-tag {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.connect-heading {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.connect-heading em {
  color: var(--gold);
  font-style: italic;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.connect-card {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
}

.connect-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-subtle);
  transform: translateY(-4px);
}

.connect-time {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.connect-place {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── Six Reasons ───────────────────────────────────────────────── */
.section-reasons {
  padding: 80px 5%;
  background: var(--cream);
}

.reasons-header {
  margin-bottom: 48px;
}

.reasons-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy-text);
  text-transform: none;
}

.reasons-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(139, 115, 85, 0.15);
  background: transparent;
}

.reason-card {
  background: transparent;
  border: 1px solid rgba(139, 115, 85, 0.15);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: -0.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reason-card:hover {
  z-index: 5;
  background: #ebe2ce;
  border-color: rgba(139, 115, 85, 0.3);
  box-shadow: 0 15px 40px rgba(139, 115, 85, 0.15);
  transform: translateY(-4px);
}

.reason-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 65%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.12;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reason-card:hover::before {
  opacity: 0.22;
  transform: scale(1.05);
}

/* Specific background illustrations */
.rcard-1::before { background-image: url('icons/building.png?v=2'); }
.rcard-2::before { background-image: url('icons/metro.png?v=2'); }
.rcard-3::before { background-image: url('icons/noun-building-101644.png?v=2'); }
.rcard-4::before { background-image: url('icons/noun-airport-8402401.png?v=2'); }
.rcard-5::before { background-image: url('icons/noun-highway-8381389.png?v=2'); }
.rcard-6::before { background-image: url('icons/school.png?v=2'); }

.rc-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(139, 115, 85, 0.35);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 2px;
  transition: color 0.4s ease;
}

.reason-card:hover .rc-num {
  color: var(--gold-dark);
}

.rc-icon {
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.rc-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.reason-card:hover .rc-icon {
  transform: scale(1.15) rotate(5deg);
}

.rc-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy-text);
  line-height: 1.4;
  margin-top: 8px;
  max-width: 80%;
  letter-spacing: 0.02em;
}



.inv-icon svg {
  width: 22px;
  height: 22px;
}

.inv-card:hover .inv-icon {
  transform: scale(1.1);
}

.inv-bar {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
  transition: width 0.3s;
}

.inv-card:hover .inv-bar {
  width: 48px;
}

.inv-title {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-text);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.inv-desc {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: #5a6d80;
  line-height: 1.6;
  font-weight: 400;
}

/* ── Catchment ─────────────────────────────────────────────────── */
.section-catchment {
  padding: 40px 5%;
  background: var(--cream);
}

.catchment-header {
  margin-bottom: 48px;
}

.catch-tag {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: none;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.catch-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy-text);
}

.catch-heading span {
  font-weight: 700;
}

.catch-heading em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.catchment-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; /* Increased gap for cards */
  background: transparent; /* Removed dark background */
}

.catchment-tabs {
  display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
  .catchment-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--cream);
    padding-top: 20px;
    padding-bottom: 12px;
  }

  .catchment-categories {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 20px 5% 40px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
  }

  .cat-tab-btn {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--gold-subtle);
    background: white;
    color: var(--gold-dark);
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .cat-tab-btn.active {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
  }

  .catchment-categories::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  .cat-col {
    display: block; /* Show all cards for scrolling */
    flex: 0 0 85%; /* Cards take up most of the width */
    scroll-snap-align: center;
    padding: 32px 24px;
  }

  .cat-col.active {
    /* No longer need display: block here as they are all block */
    border-color: var(--gold);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.15);
  }
}

.cat-col {
  background: white; /* Clean white cards */
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.cat-col:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-subtle);
}

.cat-icon {
  color: var(--gold);
  margin-bottom: 12px;
}

.cat-label {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: none;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.cat-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-text);
  margin-bottom: 20px;
}

.cat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(26, 45, 74, 0.75);
}

.cat-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Location ──────────────────────────────────────────────────── */
.section-location {
  padding: 80px 5%;
  background: var(--cream);
}

.location-header-new {
  margin-bottom: 48px;
}

.location-tag-new {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 12px;
}

.loc-heading-new {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy-text);
}

.loc-heading-new em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}

.location-grid-new {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .location-grid-new {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.map-column-new {
  width: 100%;
}

.map-iframe-wrap-new {
  border-radius: 4px;
  overflow: hidden;
  height: 480px;
  border: 1px solid rgba(197, 154, 63, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
}

.map-iframe-wrap-new iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.nearby-list-new {
  display: flex;
  flex-direction: column;
}

.nearby-item-new {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(197, 154, 63, 0.18);
}

.nearby-item-new:last-child {
  border-bottom: 1px solid rgba(197, 154, 63, 0.18);
}

.nearby-time-new {
  display: flex;
  align-items: baseline;
  color: var(--gold-dark);
  min-width: 90px;
}

.nearby-time-new .time-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.nearby-time-new .time-unit {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  margin-left: 2px;
  opacity: 0.8;
}

.nearby-info-new {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nearby-info-new strong {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-text);
}

.nearby-info-new span {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: rgba(26, 45, 74, 0.6);
  line-height: 1.4;
}



/* ── CTA Band ──────────────────────────────────────────────────── */
.section-cta-band {
  position: relative;
  padding: 100px 5%;
  background: var(--navy-deep);
  text-align: center;
  overflow: hidden;
}

.cta-band-content {
  position: relative;
  z-index: 1;
}

.cta-tag {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
  opacity: 0.9;
}

.cta-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.cta-heading em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.cta-sub {
  color: var(--muted);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0.8;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  background: #c59a3f;
  color: var(--navy-deep);
  padding: 14px 36px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid #c59a3f;
  text-decoration: none;
}

.btn-cta-primary:hover {
  background: #d4af37;
  border-color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 14px 36px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
  text-decoration: none;
}

.btn-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* ── Contact ───────────────────────────────────────────────────── */
.section-contact {
  padding: 80px 5%;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.section-heading-new {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--navy-text);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.section-heading-new em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dark);
}

.contact-details-new {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.cd-item-new {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cd-label-new {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-dark);
  opacity: 0.9;
}

.cd-value-new {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--navy-text);
  font-weight: 400;
}

.contact-form-card-new {
  background: transparent;
  border: none;
  padding: 0;
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-row-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .field-row-new {
    grid-template-columns: 1fr;
  }
}

.form-field-v2-new {
  background: #ffffff;
  border: 1px solid rgba(197, 154, 63, 0.18);
  padding: 10px 18px 12px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field-v2-new:focus-within {
  border-color: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(197, 154, 63, 0.08);
}

.field-label-new {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: #c59a3f;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.form-field-v2-new input,
.form-field-v2-new select,
.form-field-v2-new textarea {
  width: 100%;
  background: transparent;
  border: 1px solid transparent;
  padding: 4px 0;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--navy-text);
  outline: none;
  box-sizing: border-box;
}

.form-field-v2-new select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C59A3F' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 14px;
  padding-right: 20px;
}

.form-field-v2-new select option {
  background: #ffffff;
  color: var(--navy-text);
}

.form-field-v2-new textarea {
  min-height: 80px;
  resize: vertical;
}

.btn-submit-new {
  width: 100%;
  padding: 16px;
  background: #c59a3f;
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--ff-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-new:hover {
  background: #d4af37;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
}

.form-error {
  background: #fdf2f2;
  border: 1px solid #f8b4b4;
  border-radius: 6px;
  padding: 12px 16px;
  color: #9b1c1c;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fdfaf2;
  border: 1px solid #f3e6ca;
  border-radius: 12px;
  padding: 24px;
  color: var(--navy-text);
  margin-bottom: 16px;
}

.form-success svg {
  width: 36px;
  height: 36px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.form-success strong {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.form-success p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: #060c17;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-main {
  padding: 48px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 270px;
  margin-top: 12px;
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li {}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-address {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Back to Top ───────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  box-shadow: 0 4px 20px var(--gold-glow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .overview-grid {
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gi-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .investor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid-new {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 70px;
  }

  .logo,
  .logo-new {
    margin-right: auto;
  }

  .hamburger {
    display: flex;
    order: 2;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-links {
    position: fixed;
    margin: 0;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 280px;
    background: rgba(10, 16, 32, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 8px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), visibility 0.35s;
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 4px 0;
    display: inline-block;
    width: max-content;
    margin-bottom: 8px;
  }

  .btn-enquire {
    display: inline-flex;
    font-size: 0.7rem;
    padding: 6px 14px;
    margin-right: 4px;
    order: 1;
  }

  .hero-content {
    padding: 0 5% 96px;
  }

  .hero-headline {
    font-size: 2.8rem;
  }

  .hero-arrow {
    display: flex;
    width: 32px;
    height: 32px;
  }

  .hero-arrow svg {
    width: 14px;
    height: 14px;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-stat {
    padding: 8px 4px;
  }

  .hero-stat-num {
    font-size: 1rem;
  }

  .hero-stat-label {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .overview-main-img {
    height: 300px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .spec-card {
    padding: 10px;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gi-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gi-tall {
    grid-row: span 1;
  }

  .spaces-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .space-card {
    aspect-ratio: 16/10;
  }

  .space-desc {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
  }

  .space-title {
    font-size: 1rem;
  }

  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }





  .location-grid-new {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 5% 160px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-ctas {
    flex-direction: row;
    gap: 8px;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 50%;
    font-size: 0.75rem;
    padding: 10px 12px;
    justify-content: center;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gi-large,
  .gi-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .cta-bg-text {
    font-size: 30vw;
  }
}