/* ═══════════════════════════════════════════════════════════
   KODURI MEADOWS — Main Stylesheet
   Luxury Estate Editorial Design System
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Source+Sans+3:wght@300;400;600;700&family=Josefin+Sans:wght@300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --navy: #1B2A4A;
  --navy-light: #243558;
  --navy-90: rgba(27, 42, 74, 0.9);
  --orange: #D4842A;
  --orange-hover: #E8952F;
  --gold: #C8A86E;
  --gold-light: #d4ba8a;
  --ivory: #FAF7F2;
  --cream: #F0EDE5;
  --charcoal: #2C2C2C;
  --slate: #6B7280;
  --white: #FFFFFF;
  --green: #25D366;
  --meadow: #4A7C59;
  --shadow-sm: 0 2px 8px rgba(27,42,74,0.06);
  --shadow-md: 0 4px 24px rgba(27,42,74,0.08);
  --shadow-lg: 0 12px 40px rgba(27,42,74,0.14);
  --shadow-orange: 0 6px 20px rgba(212,132,42,0.35);
  --radius: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul, ol { list-style: none; }

/* ── Typography Classes ── */
.playfair { font-family: 'Playfair Display', Georgia, serif; }
.cormorant { font-family: 'Cormorant Garamond', Georgia, serif; }
.josefin { font-family: 'Josefin Sans', sans-serif; }
.text-gold { color: var(--gold); }
.text-orange { color: var(--orange); }
.text-slate { color: var(--slate); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes goldLine {
  from { width: 0; }
  to { width: 60px; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.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; }

/* ── Gold Line Decoration ── */
.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0 20px;
}
.gold-line-center { margin-left: auto; margin-right: auto; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-cream { background: var(--cream); }
.section-ivory { background: var(--ivory); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ── Section Titles ── */
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--slate);
  margin-top: 8px;
  line-height: 1.7;
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-center .gold-line { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(27, 42, 74, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}
.nav-logo-accent {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--orange);
  color: white;
  border-radius: 6px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.nav-wa:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}
.nav-wa svg { width: 14px; height: 14px; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}
.btn-outline-dark {
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: white;
}
.btn-sm { padding: 9px 22px; font-size: 0.85rem; }

/* ══════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 24px; }
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}
.card:hover .card-img { transform: scale(1.05); }
.card-img-wrapper { overflow: hidden; position: relative; }

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.88) 0%, rgba(27,42,74,0.55) 50%, rgba(27,42,74,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 20px 80px;
}
.hero-logo { max-width: 280px; margin: 0 auto 24px; }
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 2.5s ease-in-out infinite;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.5rem;
}

/* Page Hero (smaller) */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, #243558 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,110,0.06) 0%, transparent 70%);
}

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stat-bar {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
  padding: 40px 20px;
  background: var(--white);
  border-bottom: 1px solid #e8e4dc;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
}
.stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   PROPERTY CARDS
   ══════════════════════════════════════════ */
.property-card .card-img { height: 220px; }
.property-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: var(--orange);
  color: white;
  z-index: 2;
}
.property-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.property-meta span {
  font-size: 0.85rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
}
.property-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e8e4dc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ══════════════════════════════════════════
   AMENITIES GRID
   ══════════════════════════════════════════ */
.amenity-card {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: var(--transition);
}
.amenity-card:hover {
  background: rgba(200, 168, 110, 0.08);
  border-color: rgba(200, 168, 110, 0.2);
}
.amenity-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 168, 110, 0.12);
}
.amenity-icon svg { color: var(--gold); }
.amenity-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  margin-bottom: 4px;
}
.amenity-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════════════
   TABS
   ══════════════════════════════════════════ */
.tab-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  background: var(--white);
  color: var(--slate);
}
.tab:hover {
  border-color: var(--gold);
  color: var(--charcoal);
}
.tab.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ══════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,42,74,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-title {
  color: white;
  font-size: 0.92rem;
  margin-top: 4px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   SPECIFICATIONS TABLE
   ══════════════════════════════════════════ */
.spec-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid #e8e4dc;
}
.spec-row:last-child { border: none; }
.spec-label {
  width: 140px;
  flex-shrink: 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--slate);
}
.spec-value {
  flex: 1;
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* ══════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════ */
.blog-card .card-img { height: 200px; }
.blog-cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(200, 168, 110, 0.15);
  color: var(--gold);
}
.blog-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 10px;
}
.blog-meta svg {
  width: 13px;
  height: 13px;
  margin-right: 3px;
  vertical-align: -2px;
}
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-top: 10px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
  margin-top: 8px;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap 0.3s;
}
.blog-read-more:hover { gap: 8px; }

/* Blog Detail */
.blog-content { max-width: 750px; margin: 0 auto; padding: 48px 20px; }
.blog-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 20px;
}
.blog-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 32px 0 16px;
}
.blog-content strong { color: var(--navy); }
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 20px;
  transition: gap 0.3s;
}
.blog-back:hover { gap: 10px; }
.blog-cta {
  margin-top: 48px;
  padding: 36px;
  background: var(--cream);
  border-radius: 12px;
  text-align: center;
}

/* ══════════════════════════════════════════
   FOUNDERS
   ══════════════════════════════════════════ */
.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.founder-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.founder-role {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--orange);
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.founder-quals {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.founder-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate);
}

/* ══════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0ddd6;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.3s;
  outline: none;
  color: var(--charcoal);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  text-align: center;
  padding: 40px;
}
.form-success svg { color: var(--meadow); margin-bottom: 16px; }

/* Contact info */
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 132, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { color: var(--orange); }
.contact-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 2px;
}

/* Quick connect */
.quick-connect {
  margin-top: 32px;
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
}
.quick-connect-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 12px;
}
.wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--green);
  border-radius: 8px;
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
  transition: var(--transition);
}
.wa-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.wa-btn svg { width: 22px; height: 22px; fill: white; }
.call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--navy);
  border-radius: 8px;
  color: white;
  font-weight: 600;
  transition: var(--transition);
}
.call-btn:hover { background: var(--navy-light); }

/* ══════════════════════════════════════════
   LANDMARK CARDS (Location)
   ══════════════════════════════════════════ */
.landmark-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.landmark-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 132, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.landmark-icon svg { color: var(--orange); width: 18px; }
.landmark-cat {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.landmark-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0ede5;
  font-size: 0.9rem;
}
.landmark-item:last-child { border: none; }
.landmark-dist {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--orange);
  font-weight: 500;
  font-size: 0.85rem;
}
.connectivity-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--cream);
  font-size: 0.85rem;
}

/* Map */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  margin-bottom: 40px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}
.wa-float:hover {
  transform: scale(1.1);
  animation: none;
}
.wa-float svg {
  fill: white;
  width: 28px;
  height: 28px;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .playfair { font-size: 1.4rem; color: white; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  margin: 8px 0 16px;
}
.footer-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 8px; align-items: flex-start; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; width: 16px; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ══════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1a30 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,110,0.08) 0%, transparent 70%);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.75rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-wa { display: none !important; }
  .mobile-toggle { display: block !important; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { gap: 32px; }

  .hero-content { padding: 100px 20px 60px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { justify-content: center; text-align: center; }

  .section { padding: 48px 0; }
  .page-hero { padding: 100px 0 40px; }

  .stat-bar { gap: 20px; padding: 28px 16px; }
  .stat-num { font-size: 1.5rem; }

  .spec-row { flex-direction: column; gap: 4px; }
  .spec-label { width: auto; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
  .gallery-item img { height: 150px; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 2rem; }
  .page-hero .section-title { font-size: 1.8rem; }
}
