/* ==========================================================================
   Anshu Property — Complete Design System & Stylesheet
   Themes: Trust Navy (#121C2B, #1B2A41) + Warm Gold (#C89B3C) + Terracotta (#B85B35)
   ========================================================================== */

:root {
  /* Colors */
  --navy-dark: #121C2B;
  --navy: #1B2A41;
  --navy-light: #2A3B54;
  --gold: #C89B3C;
  --gold-light: #DFB75A;
  --gold-dark: #9F7927;
  --terracotta: #B85B35;
  --terracotta-dark: #964220;
  --maroon: #7A2E2E;
  --maroon-dark: #5E2121;
  --heading: #0F172A;
  --body-text: #334155;
  --muted: #64748B;
  --border: #E2E8F0;
  --border-gold: rgba(200, 155, 60, 0.4);
  --bg-page: #F9F6F0; /* Warm Ivory Main Page Background */
  --bg-light: #F9F6F0;
  --bg-card: #FFFFFF; /* Crisp White Card Background */
  --white: #FFFFFF;

  /* Shadows & Radius */
  --shadow-sm: 0 2px 10px rgba(18, 28, 43, 0.05);
  --shadow-md: 0 8px 24px rgba(18, 28, 43, 0.09);
  --shadow-lg: 0 16px 40px rgba(18, 28, 43, 0.14);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;

  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background-color: #F9F6F0 !important; /* Warm Ivory Main Page Background */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Explicit Section Background Rhythm Classes */
.bg-ivory, section.section-ivory {
  background-color: #F9F6F0 !important;
}

.bg-white, section.section-white {
  background-color: #FFFFFF !important;
}

.bg-navy, section.section-navy {
  background-color: #1B2A41 !important;
  color: #FFFFFF !important;
}

.bg-maroon, section.section-maroon {
  background-color: #7A2E2E !important;
  color: #FFFFFF !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

/* ---------- Container & Grid Layout ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-head {
  margin-bottom: 56px;
}

.section-head.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--navy-dark);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- Circular Official Seal Badge ---------- */
.seal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border: 2px double var(--gold);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(27, 42, 65, 0.25);
  position: relative;
}

.seal-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  transform: rotate(-12deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(200, 155, 60, 0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 155, 60, 0.45);
}

.btn-terracotta {
  background: var(--terracotta);
  color: var(--white);
}

.btn-terracotta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s;
}

.btn-icon:hover {
  transform: scale(1.1);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 28, 43, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 155, 60, 0.25);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
}

.logo span {
  color: var(--gold);
}

.logo-mark {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(200, 155, 60, 0.35);
  flex-shrink: 0;
  border: 2.5px solid var(--gold);
  clip-path: circle(50%);
  background: #0e1726;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 14.5px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Nav Drawer */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(18, 28, 43, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--gold);
  padding: 24px 28px;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 1100;
  transition: all 0.3s ease;
}

.nav-mobile.open,
.nav-mobile.show {
  display: flex !important;
}

.nav-mobile a {
  color: var(--white);
  font-size: 16.5px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.nav-mobile a:hover,
.nav-mobile a:active {
  color: var(--gold);
  padding-left: 8px;
}

@media (max-width: 992px) {
  .nav-desktop, .header-phone { display: none; }
  .menu-toggle { display: block; }
}

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #152238 100%);
  color: var(--white);
  padding: 96px 0 140px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.12) 0%, rgba(184, 91, 53, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas, .hero-trust { justify-content: center; }
}

.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  color: var(--white);
  line-height: 1.18;
  margin: 16px 0 20px;
}

.hero h1 .accent {
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
}

.hero-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust div strong {
  display: block;
  font-size: 24px;
  font-family: var(--font-heading);
  color: var(--gold);
}

.hero-trust div span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
}

.floating-card {
  position: absolute;
  background: rgba(18, 28, 43, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.fc-top { top: 20px; left: -20px; }
.fc-bottom { bottom: 20px; right: -20px; }

@media (max-width: 600px) {
  .fc-top, .fc-bottom { position: relative; top: 0; left: 0; right: 0; margin-top: 12px; }
}

.fc-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-icon svg { width: 18px; height: 18px; }
.floating-card div strong { display: block; font-size: 13.5px; color: var(--gold-light); }
.floating-card div span { font-size: 11.5px; color: rgba(255,255,255,0.7); }

/* ---------- Search Box ---------- */
.search-box {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: -60px;
  position: relative;
  z-index: 20;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: flex-end;
}

@media (max-width: 1024px) {
  .search-box { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .search-box { grid-template-columns: 1fr; }
}

.search-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.search-toggle button {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-light);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--body-text);
  cursor: pointer;
}

.search-toggle button.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--gold);
}

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

.field label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-dark);
  letter-spacing: 0.5px;
}

.field select, .field input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-light);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--heading);
  outline: none;
}

.field select:focus, .field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.2);
}

/* ---------- Trust Badges Strip ---------- */
.trust-strip {
  background: var(--white);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(200, 155, 60, 0.12);
  color: var(--gold-dark);
  border: 1px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-item strong {
  display: block;
  font-size: 15px;
  color: var(--navy-dark);
  font-family: var(--font-heading);
}

.trust-badge-item span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- Stats Strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 860px) { .stats-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stats-strip { grid-template-columns: 1fr; } }

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--terracotta);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-num {
  font-size: 38px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- Property Cards & Grid ---------- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 960px) { .property-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .property-grid { grid-template-columns: 1fr; } }

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.pc-media {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}

.pc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: var(--navy-dark);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 43, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.play-overlay:hover {
  background: rgba(18, 28, 43, 0.2);
}

.play-btn-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.play-btn-icon svg { width: 22px; height: 22px; margin-left: 2px; }
.property-card:hover .play-btn-icon { transform: scale(1.12); }

.pc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pc-price {
  font-size: 22px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy-dark);
}

.pc-price span {
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  margin-left: 6px;
}

.pc-title {
  font-size: 17.5px;
  color: var(--heading);
  line-height: 1.35;
}

.pc-loc {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc-loc svg { width: 16px; height: 16px; color: var(--terracotta); flex-shrink: 0; }
.pc-desc { font-size: 14px; color: var(--body-text); margin: 4px 0; }

.pc-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ---------- Feature / Why Choose Us ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.feature-icon svg { width: 26px; height: 26px; }
.feature-card h4 { font-size: 18px; margin-bottom: 8px; color: var(--navy-dark); }
.feature-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Location Cards ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .location-grid { grid-template-columns: 1fr; } }

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta);
}

.location-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.location-card-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.location-card-body h4 { font-size: 19px; color: var(--navy-dark); }
.location-card-body p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- Mid-Page CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  box-shadow: 0 16px 40px rgba(122, 46, 46, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.18);
  pointer-events: none;
}

.cta-banner-text h3 { font-size: clamp(24px, 3vw, 36px); color: var(--white); margin-bottom: 10px; }
.cta-banner-text p { color: rgba(255, 255, 255, 0.9); font-size: 16.5px; margin: 0; }
.cta-banner-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.testi-stars { color: var(--gold); display: flex; gap: 4px; margin-bottom: 16px; }
.testi-text { font-size: 15px; color: var(--body-text); margin-bottom: 24px; font-style: italic; }
.testi-person strong { display: block; font-size: 15px; color: var(--navy-dark); }
.testi-person span { font-size: 13px; color: var(--muted); }

/* ---------- FAQ Accordion ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-dark);
  cursor: pointer;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] .faq-q svg { transform: rotate(45deg); }
.faq-a { padding: 0 28px 24px; color: var(--body-text); font-size: 15px; line-height: 1.65; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ---------- Blog Cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card-body h4 { font-size: 17.5px; color: var(--navy-dark); line-height: 1.35; }
.blog-card-body p { font-size: 14px; color: var(--muted); margin: 0; }
.blog-card-body .read-link { color: var(--gold-dark); font-weight: 700; font-size: 14px; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Reel Lightbox Modal ---------- */
.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(18, 28, 43, 0.88);
  backdrop-filter: blur(10px);
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.reel-modal.active,
.reel-modal.show {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}

.reel-modal-content {
  width: 100%;
  max-width: 440px;
  background: #000;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.reel-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-iframe-container iframe {
  width: 100%;
  height: 560px;
  border: none;
}

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-bottom: 2px solid var(--gold);
}

.page-hero h1 { color: var(--white); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
}

.breadcrumb a { color: var(--gold-light); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #CBD5E1;
  padding: 72px 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-about .footer-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-grid h5 {
  color: var(--gold-light);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-grid a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Floating Stack ---------- */
.float-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.fab-whatsapp {
  display: none !important;
}

.fab-top {
  background: var(--navy-dark);
  color: var(--gold);
  border: 1px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.fab-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Live Graphic Animations & Dynamic FX
   ========================================================================== */

/* Live pulse indicator dot */
.live-dot {
  width: 9px;
  height: 9px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: livePulse 2s infinite;
  margin-right: 6px;
}

@keyframes livePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Continuous slow seal icon spin */
.seal-icon {
  animation: spinSeal 12s linear infinite;
}

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

/* Gold Shimmer Light Sweep on Gold Buttons & Seals */
.btn-gold, .seal-badge {
  position: relative;
  overflow: hidden;
}

.btn-gold::before, .seal-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: goldShimmer 4s infinite;
}

@keyframes goldShimmer {
  0% { left: -100%; }
  25% { left: 180%; }
  100% { left: 180%; }
}

/* Floating background glow pulse */
.hero-bg-shape {
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.15) translate(-20px, 20px);
    opacity: 1;
  }
}

/* Scroll reveal with safe fallback */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Card hover smooth lift with gold glow border */
.property-card, .feature-card, .location-card, .blog-card, .stat-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.property-card:hover, .feature-card:hover, .location-card:hover, .blog-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(18, 28, 43, 0.12), 0 0 20px rgba(200, 155, 60, 0.18);
}

