/* =====================================================
   GIREEVAN REALTY — PREMIUM LUXURY DESIGN SYSTEM
   Futuristic Nature-Inspired Green Theme
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ===== RESET & ROOT ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --dark-0: #010804;
  --dark-1: #020C05;
  --dark-2: #041008;
  --dark-3: #071510;
  --dark-4: #0A1E14;
  --dark-5: #0F2A1A;
  --card-bg: rgba(6, 21, 10, 0.75);
  --glass-bg: rgba(4, 16, 8, 0.65);
  --glass-hover: rgba(10, 30, 16, 0.9);

  --emerald: #22C55E;
  --emerald-dim: #16A34A;
  --emerald-glow: rgba(34, 197, 94, 0.25);
  --emerald-light: #4ADE80;

  --gold: #C9A84C;
  --gold-light: #E8C870;
  --gold-glow: rgba(201, 168, 76, 0.25);

  --text-primary: #F0FFF4;
  --text-secondary: #BBF7D0;
  --text-muted: #86EFAC;
  --text-dim: rgba(240, 255, 244, 0.5);
  --border: rgba(34, 197, 94, 0.15);
  --border-gold: rgba(201, 168, 76, 0.2);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --section-y: 6rem;
  --container: 1180px;
  --radius: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t: all 0.3s var(--ease);
  --t-slow: all 0.6s var(--ease);

  --shadow-sm: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.6);
  --glow-green: 0 0 40px rgba(34,197,94,0.2), 0 0 80px rgba(34,197,94,0.08);
  --glow-gold: 0 0 40px rgba(201,168,76,0.2), 0 0 80px rgba(201,168,76,0.08);
}

body {
  font-family: var(--font-body);
  background: var(--dark-1);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-1); }
::-webkit-scrollbar-thumb { background: var(--emerald-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--emerald); }

/* ===== SELECTION ===== */
::selection { background: var(--emerald-glow); color: var(--text-primary); }

/* ===== CANVAS PARTICLES ===== */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: var(--t);
}
.navbar.scrolled {
  background: rgba(2, 12, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--emerald-glow));
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.nav-logo-tagline {
  font-size: 0.65rem;
  color: var(--emerald);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: var(--t);
  letter-spacing: 0.02em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--emerald);
  border-radius: 1px;
  transition: var(--t);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(34,197,94,0.06); }
.nav-links a:hover::after, .nav-links a.active::after { left: 0.9rem; right: 0.9rem; }
.nav-links a.active { color: var(--emerald); }
.nav-cta {
  background: linear-gradient(135deg, var(--emerald-dim), var(--emerald));
  color: #fff !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px var(--emerald-glow);
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--emerald-glow) !important;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light)) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--t);
}
.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 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(1, 8, 4, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  transition: var(--t);
}
.mobile-menu a:hover { color: var(--emerald); }

/* ===== HERO ===== */
/* ===== HERO INTRO ANIMATION ===== */
@keyframes heroImgIntro {
  0%   { transform: scale(1.08); filter: brightness(0.95) saturate(1); }
  60%  { transform: scale(1.04); filter: brightness(0.95) saturate(1); }
  100% { transform: scale(1);    filter: brightness(0.35) saturate(0.7); }
}
@keyframes heroOverlayIn {
  0%   { opacity: 0; }
  60%  { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes heroContentIn {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.7);
  animation: heroImgIntro 2.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(1,8,4,0.85) 0%, rgba(4,16,8,0.5) 50%, rgba(1,8,4,0.85) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(34,197,94,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%);
  animation: heroOverlayIn 2.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 5rem;
  animation: heroContentIn 0.9s cubic-bezier(0.4,0,0.2,1) 2s both;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 var(--emerald-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.hero-title .line-gold { color: var(--gold); display: block; }
.hero-title .line-green { color: var(--emerald-light); display: block; }
.hero-title .line-white { color: var(--text-primary); display: block; }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
}
.hero-badge strong { color: var(--gold); font-weight: 700; font-size: 1rem; }
.hero-badge span { color: var(--text-dim); font-size: 0.7rem; }

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 10rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(34,197,94,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.page-hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--t);
  border: none;
  outline: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--emerald-dim) 0%, var(--emerald) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--emerald-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(34,197,94,0.4);
}
.btn-gold {
  background: linear-gradient(135deg, #A07820 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #010804;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(34,197,94,0.08);
  border-color: var(--emerald);
  color: var(--emerald);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--emerald);
  padding: 0.5rem 0;
  border-radius: 0;
}
.btn-ghost::after { content: ' →'; transition: var(--t); }
.btn-ghost:hover::after { margin-left: 4px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== SECTION LAYOUT ===== */
.section { padding: var(--section-y) 2rem; position: relative; }
.section-dark { background: var(--dark-2); }
.section-alt { background: var(--dark-3); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-title span { color: var(--emerald); }
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}
.section-divider {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  margin: 1.5rem auto 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: rgba(4, 12, 7, 0.95);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 2;
}
.stats-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ===== GLASS CARD ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--t-slow);
  overflow: hidden;
}
.card:hover {
  border-color: rgba(34,197,94,0.3);
  box-shadow: var(--glow-green);
  transform: translateY(-4px);
}
.card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card:hover .card-img img { transform: scale(1.06); }
.card-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(1,8,4,0.9));
}
.card-body { padding: 1.75rem; }
.card-tag {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  border: 1px solid var(--border);
  color: var(--emerald);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* ===== HIGHLIGHTS GRID ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: var(--t-slow);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0;
  transition: var(--t);
}
.highlight-card:hover::before { opacity: 1; }
.highlight-card:hover {
  border-color: rgba(34,197,94,0.25);
  transform: translateY(-6px);
  box-shadow: var(--glow-green);
}
.highlight-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.1);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  transition: var(--t);
}
.highlight-card:hover .highlight-icon {
  background: rgba(34,197,94,0.15);
  box-shadow: 0 0 20px var(--emerald-glow);
}
.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.highlight-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== MASTER PLAN TEASER ===== */
.plan-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.plan-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--glow-green);
}
.plan-image-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--emerald-glow), var(--gold-glow));
  border-radius: var(--radius-lg);
  z-index: -1;
}
.plan-image-wrap img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  filter: brightness(0.9) contrast(1.05);
}
.plan-badge {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: rgba(1,8,4,0.9);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.plan-content .section-label { text-align: left; }
.plan-content .section-title { text-align: left; }
.plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.plan-features li::before {
  content: '✦';
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.7rem;
}
.plan-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== OFFERINGS ===== */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.offering-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--t-slow);
}
.offering-card:hover { transform: translateY(-6px); box-shadow: var(--glow-green), var(--shadow-lg); }
.offering-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.5) saturate(0.8);
}
.offering-card:hover img { transform: scale(1.05); filter: brightness(0.4) saturate(0.7); }
.offering-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(1,8,4,0.95) 0%, rgba(1,8,4,0.3) 60%, transparent 100%);
}
.offering-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.offering-tag {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  border: 1px solid var(--border);
  color: var(--emerald);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.offering-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.offering-features {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.offering-features li {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.offering-features li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; }
.offering-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--emerald-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--t);
}
.offering-link:hover { gap: 0.8rem; color: var(--emerald); }

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.amenity-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: var(--t-slow);
  cursor: default;
}
.amenity-item:hover {
  background: rgba(34,197,94,0.05);
  border-color: rgba(34,197,94,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.1);
}
.amenity-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.amenity-name { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 2rem; left: 10%;right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--emerald-glow), var(--border), transparent);
}
.process-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: var(--t-slow);
  position: relative;
}
.process-step:hover {
  border-color: rgba(34,197,94,0.3);
  transform: translateY(-4px);
}
.step-number {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--emerald-dim), var(--emerald));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px var(--emerald-glow);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.process-step p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== DOCUMENTS ===== */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.doc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: var(--t);
}
.doc-item:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.doc-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.doc-item span { font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); }

/* ===== CONFIG CARDS ===== */
.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.config-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  transition: var(--t-slow);
}
.config-card.featured {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}
.config-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #A07820, var(--gold));
  color: #010804;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.config-size {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.config-unit {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  display: block;
}
.config-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1.75rem;
}
.config-card:hover {
  transform: translateY(-6px);
  border-color: var(--emerald-dim);
  box-shadow: var(--glow-green);
}

/* ===== TYPOLOGY CARDS ===== */
.typology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.typology-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: var(--t-slow);
}
.typology-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.3);
  box-shadow: var(--glow-green);
}
.typology-img {
  height: 200px;
  overflow: hidden;
}
.typology-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.85);
}
.typology-card:hover .typology-img img { transform: scale(1.07); }
.typology-body { padding: 1.75rem; }
.typology-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.typology-body p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}
.typology-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.spec { display: flex; flex-direction: column; gap: 0.1rem; }
.spec-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}
.spec-label { font-size: 0.68rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== WHAT'S INCLUDED ===== */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.included-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(20px);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.included-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  transform: scaleX(0);
  transition: var(--t);
}
.included-item:hover::after { transform: scaleX(1); }
.included-item:hover { border-color: rgba(34,197,94,0.2); }
.included-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.included-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.included-item p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(34,197,94,0.1);
  border-color: var(--emerald);
  color: var(--emerald);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s;
  filter: brightness(0.8) saturate(0.9);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.65) saturate(0.8); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(1,8,4,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
}
.gallery-zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 44px; height: 44px;
  background: rgba(34,197,94,0.2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t);
  backdrop-filter: blur(10px);
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.location-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.location-map-wrap iframe {
  width: 100%; height: 100%;
  display: block;
  filter: brightness(0.85) saturate(0.7) hue-rotate(80deg);
}
.distance-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.distance-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  transition: var(--t);
}
.distance-item:hover {
  border-color: rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.04);
}
.dist-icon { font-size: 1.4rem; flex-shrink: 0; }
.dist-info { flex: 1; }
.dist-place { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.dist-detail { font-size: 0.78rem; color: var(--text-dim); }
.dist-time {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== CONTACT FORM ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--t);
}
.contact-info-card:hover {
  border-color: rgba(34,197,94,0.25);
}
.ci-icon {
  width: 42px; height: 42px;
  background: rgba(34,197,94,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-content h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.25rem; }
.ci-content p { font-size: 0.92rem; color: var(--text-secondary); }
.ci-content a { color: var(--text-secondary); text-decoration: none; transition: var(--t); }
.ci-content a:hover { color: var(--emerald); }
.social-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn {
  width: 42px; height: 42px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--t);
  color: var(--text-secondary);
}
.social-btn:hover {
  background: rgba(34,197,94,0.1);
  border-color: var(--emerald);
  color: var(--emerald);
  transform: translateY(-2px);
}

/* Form */
.inquiry-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
}
.inquiry-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.inquiry-form .form-sub {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(4, 16, 8, 0.8);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--t);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-glow);
  background: rgba(4, 16, 8, 0.95);
}
.form-group select option { background: var(--dark-4); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-0);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.footer-logo img { height: 40px; filter: brightness(0.9); }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  line-height: 1.2;
}
.footer-logo-tagline {
  font-size: 0.62rem;
  color: var(--emerald);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--t);
}
.footer-col ul a:hover { color: var(--emerald); padding-left: 4px; }
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  align-items: flex-start;
}
.footer-contact li a { color: var(--text-dim); text-decoration: none; transition: var(--t); }
.footer-contact li a:hover { color: var(--emerald); }
.footer-contact .fi { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--emerald); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-btn {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--t);
  font-size: 1.5rem;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-actions {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.wa-mini {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  transition: var(--t);
}
.wa-mini:hover { border-color: var(--emerald); color: var(--emerald); }

/* ===== SCROLL REVEAL ANIMATION ===== */
/* Default: always visible (no-JS fallback) */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
/* Only animate when JS is active */
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
}
html.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RERA/DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: rgba(201,168,76,0.05);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 2rem 0;
}
.disclaimer-bar strong { color: var(--gold); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--dark-4), var(--dark-5));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.cta-band h2 span { color: var(--emerald); }
.cta-band p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== WHAT IS NA ===== */
.na-explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.na-explainer-points { display: flex; flex-direction: column; gap: 1.25rem; }
.na-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(20px);
  transition: var(--t);
}
.na-point:hover {
  border-color: rgba(34,197,94,0.25);
  transform: translateX(4px);
}
.na-point-icon {
  width: 44px; height: 44px;
  background: rgba(34,197,94,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.na-point h4 { font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; font-size: 0.95rem; }
.na-point p { color: var(--text-secondary); font-size: 0.85rem; }

/* ===== MASTER PLAN PAGE ===== */
.master-plan-full {
  max-width: 900px;
  margin: 0 auto;
}
.master-plan-full img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), var(--glow-green);
  filter: brightness(0.95) contrast(1.05);
}
.plan-legend {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.legend-dot {
  width: 14px; height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text-primary);
  transition: var(--t);
}
.lightbox-close:hover { background: rgba(34,197,94,0.1); border-color: var(--emerald); }

/* =====================================================
   INSTAGRAM INFINITE MARQUEE STRIP
   ===================================================== */

.insta-strip-section {
  padding: 0;
  overflow: hidden;
  position: relative;
  background: var(--dark-0);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Top decorative band */
.insta-strip-header {
  text-align: center;
  padding: 3rem 2rem 2rem;
  position: relative;
}
.insta-strip-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald-glow), var(--gold-glow), transparent);
}
.insta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.insta-eyebrow svg { width: 14px; height: 14px; }
.insta-strip-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.insta-strip-header h2 span { color: var(--emerald); }
.insta-strip-header p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}
.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
}
.insta-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(131, 58, 180, 0.45);
}

/* The scrolling track wrapper */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0 2rem;
  position: relative;
  /* Edge fade masks */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Two rows — top scrolls left, bottom scrolls right */
.marquee-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  width: max-content;
}
.marquee-row:last-child { margin-bottom: 0; }

/* Row 1: scroll left */
.marquee-row.scroll-left {
  animation: marquee-left 35s linear infinite;
}
/* Row 2: scroll right */
.marquee-row.scroll-right {
  animation: marquee-right 40s linear infinite;
}

/* Pause on hover for either row */
.marquee-wrapper:hover .marquee-row {
  animation-play-state: paused;
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Individual photo card */
.marquee-photo {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.marquee-photo:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}
.marquee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.85) saturate(0.9);
}
.marquee-photo:hover img {
  transform: scale(1.07);
  filter: brightness(0.7) saturate(0.8);
}
.marquee-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(1,8,4,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem;
}
.marquee-photo:hover .marquee-photo-overlay { opacity: 1; }
.marquee-photo-ig {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}
.marquee-photo-ig svg { width: 13px; height: 13px; color: var(--gold); }

/* Bottom CTA strip */
.insta-strip-footer {
  text-align: center;
  padding: 1.5rem 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.insta-count {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.insta-count strong { color: var(--emerald); }

/* Responsive */
@media (max-width: 768px) {
  .marquee-photo { width: 170px; height: 170px; }
  .marquee-row.scroll-left { animation-duration: 25s; }
  .marquee-row.scroll-right { animation-duration: 30s; }
}
@media (max-width: 480px) {
  .marquee-photo { width: 140px; height: 140px; border-radius: 12px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-y: 4.5rem; }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .plan-teaser { gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --section-y: 3.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .highlights-grid { grid-template-columns: 1fr; gap: 1rem; }
  .plan-teaser { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .docs-grid { grid-template-columns: 1fr; }
  .config-grid { grid-template-columns: 1fr; }
  .typology-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 4/3; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .na-explainer { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .plan-legend { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .process-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .hero-title { font-size: 2.2rem; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .inquiry-form { padding: 1.5rem; }
  .cta-band { padding: 2rem 1.5rem; }
}

/* =====================================================
   iOS & MOBILE OPTIMISATIONS
   ===================================================== */

/* iOS Safari viewport height — address bar aware */
.hero {
  min-height: 100svh;
}
@supports not (min-height: 100svh) {
  .hero { min-height: -webkit-fill-available; }
}

/* Prevent iOS auto-zoom on focused inputs (must be ≥16px) */
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 16px !important;
}

/* Smooth momentum scrolling on iOS */
html { -webkit-overflow-scrolling: touch; }

/* Prevent horizontal overflow site-wide */
body { overflow-x: hidden; }
.section, .page-hero { overflow-x: hidden; }

/* Ensure -webkit-backdrop-filter is present everywhere backdrop-filter is used */
.navbar.scrolled { -webkit-backdrop-filter: blur(20px); }
.card { -webkit-backdrop-filter: blur(20px); }
.mobile-menu { -webkit-backdrop-filter: blur(20px); }
.inquiry-form { -webkit-backdrop-filter: blur(20px); }
.config-card { -webkit-backdrop-filter: blur(20px); }
.process-step { -webkit-backdrop-filter: blur(20px); }
.highlight-card { -webkit-backdrop-filter: blur(20px); }
.amenity-item { -webkit-backdrop-filter: blur(20px); }
.na-point { -webkit-backdrop-filter: blur(20px); }
.contact-info-card { -webkit-backdrop-filter: blur(20px); }
.included-item { -webkit-backdrop-filter: blur(20px); }
.typology-card { -webkit-backdrop-filter: blur(20px); }
.wa-mini { -webkit-backdrop-filter: blur(10px); }

/* Safe-area insets for notched iPhones */
.navbar {
  padding-left: max(2rem, env(safe-area-inset-left));
  padding-right: max(2rem, env(safe-area-inset-right));
}
.footer {
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
}
.whatsapp-float {
  bottom: max(2rem, calc(env(safe-area-inset-bottom) + 1rem));
  right: max(2rem, env(safe-area-inset-right));
}
.mobile-menu {
  padding-top: max(1rem, env(safe-area-inset-top));
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

/* Minimum touch target size (44×44px) */
.btn { min-height: 44px; }
.hamburger { min-width: 44px; min-height: 44px; justify-content: center; }
.wa-btn { min-width: 56px; min-height: 56px; }
.filter-btn { min-height: 40px; }
.nav-cta { min-height: 44px; }

/* GPU-accelerate the hero image animation */
.hero-bg img { will-change: transform, filter; }

/* Config grid — override any inline style on mobile */
@media (max-width: 768px) {
  .config-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .page-hero { padding: 8rem 1.5rem 3.5rem; }
  .hero-content { padding: 0 1.25rem; padding-top: 5rem; }
  .hero-badge { flex-wrap: wrap; gap: 0.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .offering-content h3 { font-size: 1.5rem; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .cta-band { padding: 2.5rem 1.5rem; }
  .plan-legend { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .config-grid { grid-template-columns: 1fr !important; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .stat-number { font-size: 1.6rem; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); padding: 0.75rem 0.5rem; }
  .stat-item:last-child { border-bottom: none; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .mobile-menu a { font-size: 1.6rem; }
  .typology-grid { grid-template-columns: 1fr; }
  .na-explainer { gap: 2rem; }
  .section { padding: 3rem 1rem; }
  .page-hero { padding: 7rem 1rem 3rem; }
  .inquiry-form { padding: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .location-map-wrap { height: 280px; }
  .cta-band { padding: 1.75rem 1.25rem; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .offering-card { min-height: 320px; }
}

/* =====================================================
   HAMBURGER FIX — raise navbar above everything on iOS
   ===================================================== */
.navbar { z-index: 9999; }
.mobile-menu { z-index: 9998; }
.hamburger { z-index: 10000; position: relative; }

/* hero-content starts at y=0 and blocks taps — fix with pointer-events on mobile */
@media (max-width: 768px) {
  .hero-content { pointer-events: none; }
  .hero-content .hero-eyebrow,
  .hero-content .hero-title,
  .hero-content .hero-subtitle,
  .hero-content .hero-badge,
  .hero-content .hero-actions,
  .hero-content .hero-actions .btn,
  .hero-content a { pointer-events: auto; }
}

/* =====================================================
   MOBILE SINGLE-COLUMN LAYOUTS
   ===================================================== */
@media (max-width: 768px) {
  /* Bungalow packages — full width stacked */
  .typology-grid { grid-template-columns: 1fr !important; }

  /* Inline-style grids on na-plots documents section */
  section .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Plan teaser — image first, then text */
  .plan-teaser { display: flex; flex-direction: column; gap: 2rem; }
  .plan-teaser .plan-image-wrap { order: 1; }
  .plan-teaser .plan-content { order: 2; }

  /* Location — map first, distances below */
  .location-grid { display: flex; flex-direction: column; gap: 2rem; }

  /* Contact — info first, form below */
  .contact-layout { display: flex; flex-direction: column; gap: 2rem; }

  /* NA explainer — text first, points below */
  .na-explainer { display: flex; flex-direction: column; gap: 2rem; }

  /* Highlights — single column */
  .highlights-grid { grid-template-columns: 1fr !important; }

  /* Offerings — single column, taller cards */
  .offerings-grid { grid-template-columns: 1fr !important; }
  .offering-card { min-height: 360px; }
}

/* Disable hover effects on touch devices (improves performance + avoids sticky hover) */
@media (hover: none) {
  .card:hover, .highlight-card:hover, .amenity-item:hover,
  .process-step:hover, .config-card:hover, .typology-card:hover,
  .offering-card:hover, .distance-item:hover, .doc-item:hover,
  .na-point:hover, .included-item:hover, .contact-info-card:hover {
    transform: none;
    box-shadow: none;
  }
  .card:hover .card-img img,
  .typology-card:hover .typology-img img,
  .offering-card:hover img,
  .gallery-item:hover img { transform: none; }
  .gallery-item:hover .gallery-overlay,
  .gallery-item:hover .gallery-zoom { opacity: 0; }
  .btn-primary:hover, .btn-gold:hover, .btn-outline:hover { transform: none; }
}
