/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* ── Seva Brand Palette ─────────────────────────────────── */
  --seva-navy:        #0D193A;   /* Authentic Navy — authority, structure */
  --seva-blue:        #367EE8;   /* Compassionate Blue — secondary accent */
  --seva-yellow:      #FFB743;   /* Bright Yellow — single anchor per page */
  --seva-white:       #FFFFFF;

  /* Neutral support */
  --seva-gray-light:  #F5F6F8;
  --seva-gray-mid:    #E2E5EA;
  --seva-text-sec:    #5A6478;
  --seva-text-muted:  #8C95A6;

  /* Dark background scale (navy-derived) */
  --navy-900: #080f22;
  --navy-800: #0D193A;   /* = Authentic Navy */
  --navy-700: #111f46;
  --navy-600: #162654;
  --navy-500: #1a2e62;
  --navy-400: #1f3670;

  /* Yellow / gold scale (from Bright Yellow #FFB743) */
  --gold-500: #FFB743;   /* = Bright Yellow — primary CTA, anchors */
  --gold-400: #FFB743;
  --gold-300: #ffc96a;
  --gold-200: #ffd98e;
  --gold-100: #ffecc0;
  --gold-glow: rgba(255,183,67,0.15);

  /* Blue accent */
  --blue-500: #367EE8;
  --blue-400: #5592ec;
  --blue-300: #74a6f0;

  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);

  /* ── Typography (Tier 2 — Web / Landing Page) ────────────── */
  --font-heading: 'Cabin', system-ui, -apple-system, sans-serif;  /* Cabin Bold — headings, buttons */
  --font-serif:   'Playfair Display', Georgia, serif;              /* Playfair — display/hero moments */
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;   /* Inter — body copy */

  /* ── Layout ─────────────────────────────────────────────── */
  --nav-height: 72px;
  --section-pad: 100px;
  --container-max: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--navy-900);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-400);
  font-family: var(--font-serif);
  font-weight: 500;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--white-70);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-500);
  color: var(--navy-800);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold-500);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
  transform: translateY(-1px);
}

.btn-primary.btn-full {
  width: 100%;
  padding: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white-90);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--white-30, rgba(255,255,255,0.3));
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-ghost:hover {
  border-color: var(--white-70);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold-400);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold-500);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-ghost-gold:hover {
  background: var(--gold-glow);
  color: var(--gold-300);
  transform: translateY(-1px);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold-500);
  color: var(--navy-800);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.btn-nav-cta:hover { background: var(--gold-300); }

.btn-unit {
  display: inline-flex;
  align-items: center;
  color: var(--gold-400);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.btn-unit:hover { color: var(--gold-200); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(13, 25, 58, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-10);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 25, 58, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* The logo is colour on white — invert for dark nav background */
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

.nav-logo-img:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white-70);
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  background: var(--navy-900);
  border-top: 1px solid var(--white-10);
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white-70);
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--white-10);
  transition: color var(--transition);
}

.nav-mobile-link:hover { color: var(--white); }

.mobile-cta {
  margin-top: 16px;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-800);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Seva brand standard: rgba(13,25,58,0.82) to 0.88 navy overlay */
  background: linear-gradient(
    to bottom,
    rgba(13, 25, 58, 0.55) 0%,
    rgba(13, 25, 58, 0.72) 40%,
    rgba(13, 25, 58, 0.88) 75%,
    rgba(13, 25, 58, 1) 100%
  );
}

/* Fallback gradient when image fails */
.hero-bg:not(:has(.hero-img[src])) {
  background: radial-gradient(ellipse at 30% 60%, rgba(26, 50, 96, 0.8) 0%, var(--navy-900) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 32px 48px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-500);
}

.eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  text-transform: uppercase;
}

.eyebrow-dot {
  color: var(--white-50);
  font-size: 0.8rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-400);
  font-family: var(--font-serif);
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  background: rgba(11, 22, 40, 0.7);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--white-10);
  padding: 0 32px;
  max-width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 32px;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white-50);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--white-20);
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--navy-800);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  padding: 40px 32px;
}

.intro-strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.intro-strip-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--white-70);
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
   SECTION CONTAINER
   ============================================================ */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   UNITS SECTION
   ============================================================ */
.units-section {
  padding: var(--section-pad) 0;
  background: var(--navy-900);
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.unit-card {
  background: var(--navy-800);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.unit-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-500);
}

.unit-card-featured {
  border-color: var(--gold-500);
  background: linear-gradient(135deg, var(--navy-800) 0%, rgba(26, 50, 96, 0.8) 100%);
  position: relative;
}

.unit-card-featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 2px;
}

.unit-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 0;
}

.unit-tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  text-transform: uppercase;
}

.unit-status {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.unit-status.available {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.unit-status.under-contract {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.unit-card-body {
  padding: 16px 20px;
  flex: 1;
}

.unit-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.unit-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 4px;
}

.unit-size {
  font-size: 0.8rem;
  color: var(--white-50);
  margin-bottom: 12px;
  font-weight: 500;
}

.unit-desc {
  font-size: 0.85rem;
  color: var(--white-70);
  line-height: 1.6;
  margin-bottom: 16px;
}

.unit-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.unit-features li {
  font-size: 0.8rem;
  color: var(--white-60, rgba(255,255,255,0.6));
  padding-left: 14px;
  position: relative;
}

.unit-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-size: 0.7rem;
}

.unit-card-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--white-10);
}

.unit-card-cta {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  border: 1px solid var(--gold-500);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.unit-cta-inner {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.unit-cta-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.unit-cta-text {
  font-size: 0.85rem;
  color: var(--white-70);
  line-height: 1.6;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: var(--section-pad) 0;
  background: var(--navy-800);
  border-top: 1px solid var(--white-10);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  margin-bottom: 80px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-400);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.feature-text {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.7;
}

/* Offering Summary */
.offering-summary {
  background: var(--navy-900);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 40px;
}

.offering-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
}

.offering-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.offering-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--white-05);
}

.offering-row:nth-child(odd) {
  border-right: 1px solid var(--white-10);
}

.offering-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white-50);
  text-transform: uppercase;
}

.offering-value {
  font-size: 0.95rem;
  color: var(--white-90);
  font-weight: 400;
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  padding: var(--section-pad) 0;
  background: var(--navy-900);
  border-top: 1px solid var(--white-10);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-content .section-title {
  margin-bottom: 20px;
}

.location-desc {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 32px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.location-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--white-10);
}

.location-detail-item:last-child {
  border-bottom: none;
}

.location-detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  text-transform: uppercase;
}

.location-detail-value {
  font-size: 0.9rem;
  color: var(--white-80, rgba(255,255,255,0.8));
}

.location-map {
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--white-10);
  background: var(--navy-800);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) contrast(0.9);
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: var(--section-pad) 0;
  background: var(--navy-700);
  border-top: 1px solid var(--white-10);
}

.video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.video-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-desc {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.8;
}

.video-embed-wrap {
  flex: 1;
  min-width: 280px;
  max-width: 640px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy-700);
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .video-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--navy-800);
  border-top: 1px solid var(--white-10);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 4px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--navy-700);
}

/* Primary hero image spans 2 rows and 1 column */
.gallery-item-large {
  grid-row: 1 / 3;
}

/* Items 2–5 fill the 2×2 grid on the right of the hero */
/* Items 6–9 form a 4-column bottom row */
.gallery-grid .gallery-item:nth-child(n+6) {
  grid-column: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(11,22,40,0.9) 0%, transparent 100%);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-70);
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-cta {
  text-align: center;
  padding: 0 32px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--navy-900);
  border-top: 1px solid var(--white-10);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 32px;
}

.agent-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy-800);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 32px;
}

.agent-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy-700);
  flex-shrink: 0;
  border: 2px solid var(--gold-500);
}

.agent-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-400);
}

.agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.agent-title {
  font-size: 0.8rem;
  color: var(--gold-400);
  margin-bottom: 4px;
}

.agent-company {
  font-size: 0.78rem;
  color: var(--white-50);
  line-height: 1.4;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white-70);
  transition: color var(--transition);
}

.contact-detail-item:hover {
  color: var(--gold-300);
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.download-btn {
  align-self: flex-start;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--navy-800);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white-60, rgba(255,255,255,0.6));
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-900);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-30, rgba(255,255,255,0.3));
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFB743' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy-900);
  color: var(--white);
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--white-40, rgba(255,255,255,0.4));
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--white-10);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--white-10);
}

.footer-seva-logo {
  display: block;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  /* White version for dark footer */
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--white-50);
  line-height: 1.5;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: var(--white-60, rgba(255,255,255,0.6));
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-link:hover { color: var(--white); }

.footer-address {
  font-size: 0.82rem;
  color: var(--white-40, rgba(255,255,255,0.4));
  line-height: 1.6;
  margin-top: 8px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--white-50);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--white-30, rgba(255,255,255,0.3));
  line-height: 1.5;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .units-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .offering-table {
    grid-template-columns: 1fr;
  }

  .offering-row:nth-child(odd) {
    border-right: none;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .location-map {
    height: 360px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --nav-height: 64px;
  }

  .nav-links { display: none; }
  .btn-nav-cta:not(.mobile-cta) { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content {
    padding: 48px 24px 32px;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 16px;
  }

  .stat-item {
    padding: 16px 20px;
  }

  .stat-divider {
    display: none;
  }

  .section-container {
    padding: 0 24px;
  }

  .units-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .gallery-item-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 32px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-subtitle br {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    text-align: center;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .gallery-item-large {
    grid-column: 1;
    grid-row: 1;
  }
}

/* ============================================================
   SPRING PROMOTION BANNER
   ============================================================ */

.promo-banner {
  background: var(--navy-800);          /* Seva Authentic Navy — matches navbar */
  color: #fff;
  border-bottom: 2px solid var(--gold-500);
  position: relative;
  z-index: 1100;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 9px 20px 7px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-500);
  color: var(--navy-800);
  border-radius: 3px;
  padding: 3px 10px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
}

.promo-message {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255,255,255,0.9);
  text-align: center;
  letter-spacing: 0.04em;
  min-width: 0;
}

.promo-message strong {
  color: var(--gold-500);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.promo-cta {
  border: 1.5px solid var(--gold-500);
  color: var(--gold-500);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.promo-cta:hover {
  background: var(--gold-500);
  color: var(--navy-800);
}

.promo-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  transition: color 0.2s;
  flex-shrink: 0;
}

.promo-close:hover {
  color: rgba(255,255,255,0.85);
}

.promo-fine {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
  padding: 0 20px 6px;
  text-align: center;
  letter-spacing: 0.02em;
}

.promo-banner.hidden {
  display: none;
}

@media (max-width: 640px) {
  .promo-inner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 16px 6px;
  }
  .promo-badge {
    font-size: 0.62rem;
    padding: 3px 8px;
  }
  .promo-message {
    font-size: 0.75rem;
    flex-basis: 100%;
    order: 2;
    text-align: center;
  }
  .promo-cta {
    font-size: 0.62rem;
    padding: 4px 10px;
    order: 3;
  }
  .promo-close {
    order: 1;
    margin-left: auto;
  }
  .promo-fine {
    font-size: 0.58rem;
    padding: 0 12px 5px;
  }
}
