/* ==========================================================================
   PropVigil - Warm Cream Studio Design System (#FFF8F0)
   Palette:
   - Background Canvas: Warm Cream (#FFF8F0)
   - Cards & Containers: Crisp Pure White (#FFFFFF)
   - Primary Headings & Navy Accents: Deep Brand Navy (#1B3A5F)
   - Metallic Highlights & Badges: Brand Gold (#C9A227)
   - Text Body: Dark Slate (#1E293B) - 100% Contrast & Crystal Clear Readability
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  /* Warm Cream Core Palette */
  --bg-dark: #FFF8F0;
  --bg-light: #FFF8F0;
  --bg-navy: #1B3A5F;
  --navy-dark: #0F233B;
  --navy-light: #254E7E;

  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-input: #FFFFFF;

  --brand-navy: #1B3A5F;
  --brand-gold: #C9A227;
  --gold-bright: #D4AF37;
  --gold-hover: #B8921E;
  --gold-light: #FFFBEB;
  --gold-border: rgba(201, 162, 39, 0.4);
  --gold-gradient: linear-gradient(135deg, #E5C158 0%, #C9A227 50%, #A07F1A 100%);

  /* High Contrast Typography Colors */
  --text-primary: #0F172A;
  --text-heading: #1B3A5F;
  --text-body: #1E293B;
  --text-muted: #64748B;
  --text-white: #FFFFFF;

  /* Borders & Shadows */
  --border-light: #E2E8F0;
  --border-gold: rgba(201, 162, 39, 0.4);

  --shadow-dock: 0 12px 35px rgba(27, 58, 95, 0.1), 0 0 20px rgba(201, 162, 39, 0.1);
  --shadow-sm: 0 4px 14px rgba(27, 58, 95, 0.05);
  --shadow-md: 0 12px 32px rgba(27, 58, 95, 0.08);
  --shadow-lg: 0 24px 50px rgba(27, 58, 95, 0.12);
  --shadow-gold-glow: 0 0 25px rgba(201, 162, 39, 0.25);

  /* Radii & Transitions */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 9999px;

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

/* Studio Off-White Canvas */
body, .hero-section, .section-padding, .report-section {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Typography Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--brand-navy);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-gold);
}

/* Text Gradient Utilities */
.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

.section-padding {
  padding: 105px 0;
  position: relative;
  background-color: var(--bg-dark);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px auto;
}

.section-title {
  font-size: 2.75rem;
  color: var(--text-heading);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-intro {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* Badge Chips */
.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background: var(--gold-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.12);
}

/* ==========================================================================
   FLOATING ISLAND DOCK HEADER (CLEAN NAVY & GOLD EDITION)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, 94%);
  height: 72px;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1.5px solid var(--border-gold);
  border-top: 3px solid var(--brand-gold);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-dock);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 28px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  background: transparent;
  padding: 5px 0;
  border-radius: var(--radius-pill);
  border: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-navy);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-navy);
  background: var(--gold-light);
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
}

.mobile-nav-toggle {
  display: none;
  background: rgba(27, 58, 95, 0.04);
  border: 1.5px solid var(--border-gold);
  color: var(--brand-navy);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
  position: relative;
  z-index: 10002;
  font-size: 1.3rem;
  line-height: 1;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  background: var(--gold-light);
  border-color: var(--brand-gold);
  outline: none;
}

.mobile-nav-toggle .hamburger-box {
  width: 20px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.mobile-nav-toggle .hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: var(--brand-navy);
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--brand-navy);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-bounce);
  text-align: center;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1DA851;
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 22px rgba(201, 162, 39, 0.35);
}

.btn-gold:hover {
  background: var(--gold-hover);
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 32px rgba(201, 162, 39, 0.5);
}

.btn-navy {
  background: var(--brand-navy);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.btn-navy:hover {
  background: var(--navy-dark);
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.02);
}

/* Hero Section */
.hero-section {
  padding: 115px 0 70px 0;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-light);
}

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

.hero-title {
  font-size: 3.5rem;
  color: var(--text-heading);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subheading {
  font-size: 1.2rem;
  color: var(--text-body);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-navy);
  font-weight: 600;
}

.trust-chip svg {
  color: var(--brand-gold);
}

/* Hero Image Card */
.hero-image-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--transition-bounce);
}

.hero-image-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

/* Floating Glass Overlay Badges */
.floating-overlay-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  background: rgba(27, 58, 95, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.floating-geotag-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--border-gold);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Live Pulse Green Dot */
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.live-dot {
  width: 10px;
  height: 10px;
  background-color: #25D366;
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 2s infinite;
}

/* Reviews Block (Replaces Stats Counter Strip - A1) */
.reviews-block {
  margin-top: 48px;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--brand-gold);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.review-stars {
  display: flex;
  gap: 4px;
  color: #C9A227;
  font-size: 1.15rem;
  margin-bottom: 14px;
  line-height: 1;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-heading);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 500;
  flex-grow: 1;
}

.review-attribution {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 600;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  margin-top: auto;
  line-height: 1.4;
}

/* Cleaning is part of the plan section (A2) */
.cleaning-plan-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.cleaning-plan-title {
  font-size: 2.2rem;
  color: var(--brand-navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cleaning-plan-body p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.cleaning-plan-body p:last-of-type {
  margin-bottom: 28px;
}

/* What's Included Page Layout & Styling (A8) */
.whats-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.included-column-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.included-column-card.primary-plan {
  border: 1.5px solid var(--brand-gold);
  background: #FCFBF8;
}

.included-column-card h3 {
  font-size: 1.45rem;
  color: var(--brand-navy);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-gold);
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.included-list li {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-heading);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.included-list li::before {
  content: '✓';
  color: #10B981;
  font-weight: 800;
  font-size: 1.1rem;
}

.included-list.quoted-list li::before {
  content: '•';
  color: var(--brand-gold);
  font-size: 1.5rem;
  line-height: 1;
}



.quote-single-note {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-align: center;
  padding: 16px 20px;
  background: var(--gold-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-bottom: 44px;
}

.price-change-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 32px;
  text-align: center;
}

.price-change-card h3 {
  font-size: 1.35rem;
  color: var(--brand-navy);
  margin-bottom: 12px;
}

.price-change-points {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
}

.no-rate-card-box {
  background: var(--brand-navy);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  border: 2px solid var(--border-gold);
}

.no-rate-card-box h3 {
  color: var(--brand-gold);
  font-size: 1.85rem;
  margin-bottom: 14px;
}

.no-rate-card-box p {
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 28px auto;
  color: #F8FAFC;
  line-height: 1.65;
}

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

/* ==========================================================================
   SECTION 2: EXPANDABLE ACCORDION BLOCKS ("What do you own?")
   ========================================================================== */
.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 1020px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  position: relative;
}

.accordion-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--brand-gold);
  opacity: 0;
  transition: var(--transition);
}

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

.accordion-item.active {
  border-color: var(--brand-gold);
  box-shadow: var(--shadow-md), var(--shadow-gold-glow);
  transform: translateY(-4px);
}

.accordion-item.active::before {
  opacity: 1;
}

.accordion-header {
  padding: 26px 32px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.accordion-header h3 {
  font-size: 1.38rem;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  font-size: 0.95rem;
  font-weight: bold;
  transition: var(--transition);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--brand-gold);
  color: #FFFFFF;
  border-color: var(--brand-gold);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.accordion-content {
  display: none;
  padding: 32px;
  border-top: 1.5px solid var(--border-light);
  background: var(--bg-dark);
  animation: slideAccordion 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideAccordion {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.accordion-item.active .accordion-content {
  display: block;
}

.acc-block-title {
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
  margin: 22px 0 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.acc-block-title:first-child {
  margin-top: 0;
}

.acc-list {
  padding-left: 22px;
  margin-bottom: 18px;
}

.acc-list li {
  margin-bottom: 8px;
  color: var(--text-body);
  font-size: 0.98rem;
}

/* Section 3: Four Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
}

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

.step-number {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--brand-gold);
  font-family: 'Space Grotesk', 'Outfit', sans-serif;
  margin-bottom: 14px;
  width: 50px;
  height: 50px;
  background: var(--gold-light);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
  transition: var(--transition);
}

.step-card:hover .step-number {
  background: var(--brand-gold);
  color: #FFFFFF;
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.step-card p {
  font-size: 0.94rem;
  color: var(--text-body);
}

/* Section 4: Report Showcase */
.report-section {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 40px 0;
}

.report-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
}

.report-feature-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-4px);
}

.report-feature-card h4 {
  font-size: 1.18rem;
  color: var(--brand-navy);
  margin-bottom: 10px;
}

/* Section 5: Elevated Power of Attorney Trust Card */
.poa-band {
  padding: 60px 0;
  background: var(--bg-dark);
}

.poa-trust-card {
  background: linear-gradient(135deg, #1B3A5F 0%, #0F233B 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  border: 1.5px solid var(--border-gold);
  border-top: 4px solid var(--brand-gold);
  box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
  position: relative;
  overflow: hidden;
}

.poa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--brand-gold);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.poa-trust-card h2 {
  color: #FFFFFF;
  font-size: 2.3rem;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
}

.poa-trust-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 900px;
  margin-bottom: 16px;
  color: #E2E8F0;
}

.poa-highlight {
  font-weight: 700;
  color: var(--brand-gold) !important;
  font-size: 1.18rem;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Data Tables */
.data-table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

table.plain-data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

table.plain-data-table th {
  background: var(--brand-navy);
  color: #FFFFFF;
  text-align: left;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
}

table.plain-data-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-body);
}

table.plain-data-table tr:last-child td {
  border-bottom: none;
}

table.plain-data-table tr:nth-child(even) {
  background: var(--bg-dark);
}

/* Founder Card */
.who-we-are-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
}

.founder-card:hover {
  transform: translateY(-4px);
}

.founder-photo-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-gold);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.founder-photo-placeholder {
  width: 100%;
  height: 280px;
  background: var(--bg-dark);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Image Showcase & Visual Enhancements */
.before-after-container {
  margin-top: 40px;
  margin-bottom: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.ba-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.ba-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.ba-card:hover img {
  transform: scale(1.03);
}

.ba-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ba-badge.before {
  background: rgba(239, 68, 68, 0.9);
  color: #FFFFFF;
}

.ba-badge.after {
  background: rgba(16, 185, 129, 0.9);
  color: #FFFFFF;
}

.ba-caption {
  padding: 12px 16px;
  background: var(--bg-card);
  font-size: 0.88rem;
  color: var(--text-heading);
  font-weight: 600;
  border-top: 1px solid var(--border-light);
}

.report-visual-preview {
  margin-top: 36px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.report-visual-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}

.report-sample-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
  .before-after-grid { grid-template-columns: 1fr; }
  .report-visual-grid { grid-template-columns: 1fr; }
}

/* FAQ Accordion */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.faq-item:hover {
  border-color: var(--brand-gold);
  transform: translateY(-3px);
}

.faq-item h4 {
  font-size: 1.15rem;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  display: none;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--border-light);
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Form Styling */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-family: inherit;
  color: var(--text-body);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--brand-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

/* Floating WhatsApp FAB */
.floating-whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition-bounce);
  cursor: pointer;
}

.floating-whatsapp-fab:hover {
  transform: scale(1.12);
  background: #1DA851;
}

/* Scroll Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.92rem;
  margin-top: 14px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: #64748B;
}



/* ==========================================================================
   EXTRAORDINARY INTERACTIVE & VISUAL ENHANCEMENTS
   ========================================================================== */

/* 1. Location Coverage Animated Ticker Bar */
.location-ticker-strip {
  background: var(--brand-navy);
  color: #FFFFFF;
  padding: 12px 0;
  overflow: hidden;
  border-top: 2px solid var(--brand-gold);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.ticker-wrap {
  display: flex;
  white-space: nowrap;
  animation: tickerSlide 28s linear infinite;
  gap: 40px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #E2E8F0;
  letter-spacing: 0.03em;
}

.ticker-item span.city-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-gold);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--brand-gold);
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 2. Interactive Fee Estimator Widget */
.estimator-widget-card {
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
  position: relative;
  overflow: hidden;
}

.estimator-widget-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gold-gradient);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  margin-top: 24px;
}

.estimator-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.est-field-group label {
  font-weight: 700;
  color: var(--brand-navy);
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: block;
}

.est-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text-heading);
  background: var(--bg-dark);
  cursor: pointer;
  transition: var(--transition);
}

.est-select:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
  outline: none;
}

.estimator-result-panel {
  background: var(--brand-navy);
  color: #FFFFFF;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.est-price-display {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brand-gold);
  margin: 12px 0 4px 0;
}

.est-price-subtitle {
  color: #94A3B8;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.est-feature-list {
  list-style: none;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.8;
  color: #E2E8F0;
  margin-bottom: 24px;
}

.est-feature-list li::before {
  content: '✓ ';
  color: var(--brand-gold);
  font-weight: bold;
}

/* 3. Floating FAB Pulsing Halo */
.floating-whatsapp-fab::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: fabPulse 2s infinite;
}

@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

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

/* ==========================================================================
   INTERACTIVE PROPERTY TABBED SHOWCASE SYSTEM
   ========================================================================== */
.prop-tabs-container {
  margin-top: 36px;
}

.prop-tab-nav {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 32px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.prop-tab-nav::-webkit-scrollbar {
  height: 4px;
}

.prop-tab-nav::-webkit-scrollbar-thumb {
  background: var(--brand-gold);
  border-radius: 99px;
}

.prop-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--brand-navy);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
  user-select: none;
}

.prop-tab-btn:hover {
  border-color: var(--brand-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.prop-tab-btn.active {
  background: var(--brand-navy);
  color: #FFFFFF;
  border-color: var(--brand-gold);
  box-shadow: var(--shadow-md), var(--shadow-gold-glow);
  transform: translateY(-3px);
}

.prop-tab-btn .tab-icon {
  font-size: 1.25rem;
}

.prop-tab-btn.active .tab-icon {
  transform: scale(1.15);
}

/* Tab Panels */
.prop-tab-panel {
  display: none;
  animation: tabFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.prop-tab-panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.prop-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.prop-info-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.prop-info-card.warning-card {
  border-left: 5px solid #EF4444;
}

.prop-info-card.checklist-card {
  border-left: 5px solid var(--brand-gold);
}

.prop-info-card.execution-card {
  border-left: 5px solid #10B981;
  grid-column: span 2;
}

.prop-info-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.card-header-badge.red {
  background: #FEE2E2;
  color: #991B1B;
}

.card-header-badge.gold {
  background: #FEF3C7;
  color: #92400E;
}

.card-header-badge.green {
  background: #D1FAE5;
  color: #065F46;
}

.prop-info-card h4 {
  font-size: 1.3rem;
  color: var(--brand-navy);
  margin-bottom: 12px;
}

.prop-info-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-body);
}

.check-list-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.check-list-grid li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.check-list-grid li::before {
  content: '✓';
  color: #10B981;
  font-weight: 800;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .prop-details-grid {
    grid-template-columns: 1fr;
  }
  .prop-info-card.execution-card {
    grid-column: span 1;
  }
}

/* ==========================================================================
   Civic & Compliance Updates — Dynamic Search, Filter Pills & Elevated Cards
   ========================================================================== */

.civic-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.search-box-wrapper {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.search-box-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-light);
  color: var(--text-primary);
  transition: var(--transition);
}

.search-box-input:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
  background: var(--bg-white);
}

.search-icon-svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.filter-pills-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  background: var(--bg-light);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill-btn:hover,
.filter-pill-btn.active {
  background: var(--brand-navy);
  color: var(--text-white);
  border-color: var(--brand-navy);
  box-shadow: var(--shadow-sm);
}

.notice-card-elevated {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.notice-card-elevated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-gold);
}

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

.status-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge-tag.danger {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge-tag.warning {
  background: rgba(245, 158, 11, 0.12);
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-badge-tag.success {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge-tag.official {
  background: rgba(27, 58, 95, 0.08);
  color: var(--brand-navy);
  border: 1px solid rgba(27, 58, 95, 0.25);
}

.official-doc-attachment-card {
  transition: var(--transition);
}

.official-doc-attachment-card:hover {
  box-shadow: 0 8px 24px rgba(27, 58, 95, 0.08);
}


.btn-pdf-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-navy);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid var(--border-gold);
}

.btn-pdf-download:hover {
  background: var(--navy-dark);
  color: var(--brand-gold);
  box-shadow: 0 6px 20px rgba(27, 58, 95, 0.25);
  transform: translateY(-2px);
}

.toast-feedback {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.toast-feedback.success {
  background: rgba(16, 185, 129, 0.12);
  color: #065F46;
  border: 1px solid #10B981;
}

.toast-feedback.error {
  background: rgba(239, 68, 68, 0.12);
  color: #991B1B;
  border: 1px solid #EF4444;
}

.toast-feedback.warning {
  background: rgba(245, 158, 11, 0.14);
  color: #92400E;
  border: 1px solid #F59E0B;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Live Sample Inspection Report Showcase (Interactive Report Viewer)
   ========================================================================== */

.live-report-wrapper {
  background: var(--bg-white);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 36px;
  margin-bottom: 40px;
}

.report-header-banner {
  background: linear-gradient(135deg, #1B3A5F 0%, #0F233B 100%);
  color: var(--text-white);
  padding: 32px 36px;
  position: relative;
}

.report-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.report-brand-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.report-title-text {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.report-subtitle-text {
  color: var(--brand-gold);
  font-size: 1rem;
  font-weight: 600;
}

.report-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.report-meta-item .lbl {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.report-meta-item .val {
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 600;
}

.report-status-alert {
  background: var(--brand-gold);
  color: var(--brand-navy);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

.report-body-content {
  padding: 36px;
}

.report-section-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.report-summary-box {
  background: var(--bg-dark);
  border-left: 4px solid var(--brand-gold);
  padding: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.05rem;
  color: var(--text-heading);
  line-height: 1.7;
  margin-bottom: 32px;
}

.checklist-report-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
}

.checklist-report-table th {
  background: var(--bg-dark);
  color: var(--brand-navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border-light);
}

.checklist-report-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  vertical-align: middle;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 99px;
}
.status-dot.pass { background: rgba(16, 185, 129, 0.12); color: #059669; }
.status-dot.warn { background: rgba(245, 158, 11, 0.12); color: #D97706; }

.camera-positions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
  margin-bottom: 36px;
}

.camera-photo-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.camera-photo-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.camera-photo-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.camera-photo-body {
  padding: 16px;
}

.pos-chip {
  background: var(--brand-navy);
  color: var(--text-white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 6px;
}

.geotag-line {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--brand-gold);
  background: var(--bg-dark);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 8px;
}

.recommendation-banner {
  background: #FFFBEB;
  border: 1.5px solid #FCD34D;
  padding: 24px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .camera-positions-grid {
    grid-template-columns: 1fr;
  }
}/* ==========================================================================
   PropVigil Blog Platform & Content Manager (Refined UI)
   ========================================================================== */

/* Blog Hero Banner */
.blog-hero-section {
  background: linear-gradient(180deg, #090D16 0%, #0F172A 100%);
  padding: 150px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
  pointer-events: none;
}

.blog-category-badge-pill {
  display: inline-block;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(2, 132, 199, 0.4);
  color: #38BDF8;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.blog-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.blog-hero-subtitle {
  color: #94A3B8;
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Blog Filter & Search Bar */
.blog-controls-wrapper {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-categories-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-cat-btn {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #475569;
  padding: 8px 18px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-cat-btn:hover,
.blog-cat-btn.active {
  background: #0284C7;
  color: #FFFFFF;
  border-color: #0284C7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.blog-search-box {
  position: relative;
  min-width: 280px;
}

.blog-search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1px solid #E2E8F0;
  border-radius: 99px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease;
  background: #FFFFFF;
}

.blog-search-input:focus {
  border-color: #0284C7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Blog Grid & Cards */
.blog-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  padding: 0 20px 80px;
}

.blog-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-color: #CBD5E1;
}

.blog-card-thumb-link {
  display: block;
  height: 230px;
  position: relative;
  overflow: hidden;
  background: #0F172A;
  border-radius: 16px 16px 0 0;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-category {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0284C7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: #0284C7;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F1F5F9;
  padding-top: 16px;
  margin-top: auto;
}

.blog-read-link {
  color: #0284C7;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.blog-card:hover .blog-read-link {
  gap: 10px;
  color: #0369A1;
}

/* Single Blog Details View */
.article-header {
  background: linear-gradient(180deg, #090D16 0%, #0F172A 100%);
  color: #FFFFFF;
  padding: 150px 20px 100px;
  text-align: center;
  position: relative;
}

.article-hero-img-box {
  max-width: 860px;
  height: 440px;
  margin: -60px auto 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
  border: 4px solid #FFFFFF;
  background: #0F172A;
  position: relative;
  z-index: 10;
}

.article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.article-body-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 80px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
}

.article-body-wrapper p {
  margin-bottom: 20px;
}

.article-body-wrapper h1,
.article-body-wrapper h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0F172A;
  margin: 40px 0 18px;
  line-height: 1.35;
}

.article-body-wrapper h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0F172A;
  margin: 32px 0 14px;
}

.article-body-wrapper h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F172A;
  margin: 24px 0 10px;
}

.article-body-wrapper ol,
.article-body-wrapper ul {
  padding-left: 28px;
  margin-bottom: 24px;
}

.article-body-wrapper li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.article-body-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.article-body-wrapper th,
.article-body-wrapper td {
  padding: 14px 18px;
  border: 1px solid #E2E8F0;
  text-align: left;
}

.article-body-wrapper th {
  background: #0F172A;
  color: #FFFFFF;
  font-weight: 700;
}

.article-body-wrapper tr:nth-child(even) {
  background: #F8FAFC;
}

.article-body-wrapper a {
  color: #0284C7;
  text-decoration: underline;
}

/* Admin CMS Light/Dark Custom Theme */
.cms-body {
  background: #F8FAFC;
  color: #1E293B;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cms-topbar {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  sticky: top;
  z-index: 99;
}

.cms-brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cms-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.cms-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cms-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0F172A;
}

.btn-create-post {
  background: #0284C7;
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.btn-create-post:hover {
  background: #0369A1;
  transform: translateY(-1px);
}

.cms-table-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.cms-table {
  width: 100%;
  border-collapse: collapse;
}

.cms-table th {
  background: #F1F5F9;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #E2E8F0;
}

.cms-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.95rem;
  vertical-align: middle;
}

.cms-table tr:last-child td {
  border-bottom: none;
}

.cms-post-title {
  font-weight: 700;
  color: #0284C7;
  font-size: 1.05rem;
  margin-bottom: 4px;
  display: block;
}

.cms-post-slug {
  font-size: 0.82rem;
  color: #94A3B8;
  font-family: monospace;
}

.badge-pub-status {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-pub-status.published {
  background: #D1FAE5;
  color: #059669;
}

.badge-pub-status.draft {
  background: #FEF3C7;
  color: #D97706;
}

.cms-actions-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-cms-action {
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cms-action.view { background: #F0F9FF; color: #0284C7; }
.btn-cms-action.view:hover { background: #E0F2FE; }

.btn-cms-action.unpublish { background: #F1F5F9; color: #475569; }
.btn-cms-action.unpublish:hover { background: #E2E8F0; }

.btn-cms-action.publish { background: #ECFDF5; color: #059669; }
.btn-cms-action.publish:hover { background: #D1FAE5; }

.btn-cms-action.edit { background: #FEF3C7; color: #B45309; }
.btn-cms-action.edit:hover { background: #FDE68A; }

.btn-cms-action.delete { background: #FEE2E2; color: #DC2626; }
.btn-cms-action.delete:hover { background: #FCA5A5; }

/* Admin Glassmorphic Login Overlay (Image 2 style) */
.admin-login-backdrop {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(9, 13, 22, 0.95)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.admin-login-box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.admin-login-logo {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.admin-login-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
}

.admin-login-sub {
  font-size: 0.9rem;
  color: #64748B;
  margin-bottom: 30px;
}

.admin-form-group {
  text-align: left;
  margin-bottom: 20px;
}

.admin-form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0284C7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.admin-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #F8FAFC;
  outline: none;
  transition: all 0.2s ease;
}

.admin-form-input:focus {
  border-color: #0284C7;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.btn-admin-submit {
  width: 100%;
  padding: 14px;
  background: #0284C7;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-admin-submit:hover {
  background: #0369A1;
}

@media (max-width: 768px) {
  .blog-hero-title { font-size: 2.2rem; }
  .blog-grid-container { grid-template-columns: 1fr; }
  .cms-topbar { padding: 16px; flex-direction: column; gap: 12px; }
}

/* Admin Modal Overlay System */
.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.admin-modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.admin-modal-box {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.4);
  border: 1px solid #E2E8F0;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-modal-overlay.open .admin-modal-box {
  transform: translateY(0) scale(1);
}

/* AI Modal & Manual Write Modal Tabs (matching Image 1 & 2) */
.blog-modal-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.blog-modal-tab-btn {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  color: #334155;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-modal-tab-btn.active {
  background: linear-gradient(135deg, #00A3E0 0%, #0284C7 100%);
  color: #FFFFFF;
  border-color: #0284C7;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}

.ai-info-box {
  background: #F0F9FF;
  border: 1.5px solid #BAE6FD;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.ai-info-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0369A1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-info-desc {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.topic-chips-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 24px;
}

.topic-chip-btn {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.topic-chip-btn:hover,
.topic-chip-btn.selected {
  background: #F0F9FF;
  border-color: #0284C7;
  color: #0284C7;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.15);
}

.btn-modal-outline {
  background: #FFFFFF;
  border: 1.5px solid #0284C7;
  color: #0284C7;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-outline:hover {
  background: #F0F9FF;
}

.btn-modal-ai-action {
  background: linear-gradient(135deg, #00A3E0 0%, #0284C7 100%);
  color: #FFFFFF;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-modal-ai-action:hover {
  background: #0284C7;
  transform: translateY(-1px);
}

/* ==========================================================================
   Universal Site Footer System
   ========================================================================== */
.site-footer {
  background: #0E1B2E;
  border-top: 3px solid var(--brand-gold);
  color: #94A3B8;
  padding: 70px 0 35px 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 12px;
  max-width: 340px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: #94A3B8;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--brand-gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: #64748B;
}

.footer-bottom p {
  margin: 0;
  color: #94A3B8;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Design System
   Breakpoints: 992px (Tablet), 768px (Phablet/Mobile Landscape), 600px/480px (Mobile Portrait)
   ========================================================================== */

/* Universal Layout Classes */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

.civic-visual-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
  border: 1.5px solid var(--border-gold);
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-dark);
}

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

/* Base Form Controls on Mobile - Prevent iOS Safari Auto-Zoom */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  select,
  textarea,
  .form-control,
  .admin-form-input {
    font-size: 16px !important;
  }
}

/* ==========================================================================
   BREAKPOINT: Max-Width 992px (Tablets & Narrow Laptops)
   ========================================================================== */
@media (max-width: 992px) {
  /* Header & Navigation */
  .site-header {
    width: calc(100% - 24px);
    height: 64px;
    top: 10px;
    padding: 0;
  }

  .header-inner {
    padding: 0 18px;
  }

  .brand-logo img {
    height: 38px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    border: 1.5px solid var(--border-gold);
    border-top: 3px solid var(--brand-gold);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(27, 58, 95, 0.25);
    padding: 18px 16px;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    pointer-events: none;
    z-index: 10001;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-menu .nav-link {
    display: block;
    width: 100%;
    padding: 12px 18px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-navy);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    text-align: left;
    white-space: normal;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    background: var(--gold-light);
    border-color: var(--border-gold);
    color: var(--brand-navy);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.12);
  }

  /* Grid Layout Adjustments */
  .hero-grid,
  .who-we-are-grid,
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .whats-included-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .prop-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prop-info-card.execution-card {
    grid-column: span 1;
  }

  .report-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

/* ==========================================================================
   BREAKPOINT: Max-Width 768px (Phablets & Mobile Devices)
   ========================================================================== */
@media (max-width: 768px) {
  /* Global Sizing */
  .container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 2.1rem;
    letter-spacing: -0.02em;
  }

  .section-intro {
    font-size: 1.02rem;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6vw, 2.35rem);
    line-height: 1.22;
    margin-bottom: 16px;
  }

  .hero-subheading {
    font-size: 1rem;
    line-height: 1.62;
    margin-bottom: 24px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.96rem;
    justify-content: center;
  }

  .trust-strip {
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.82rem;
    margin-top: 24px;
    justify-content: flex-start;
  }

  .floating-geotag-badge {
    bottom: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  /* Section 2: Property Showcase Tabs */
  .prop-tab-nav {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 24px;
  }

  .prop-tab-nav::-webkit-scrollbar {
    display: none;
  }

  .prop-tab-btn {
    flex-shrink: 0;
    padding: 12px 18px;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
  }

  .prop-info-card {
    padding: 22px 18px;
  }

  .prop-info-card h4 {
    font-size: 1.18rem;
  }

  /* Section 3: Four Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 24px 20px;
  }

  /* Section: Cleaning Plan */
  .cleaning-plan-card {
    padding: 28px 20px;
    border-radius: var(--radius-md);
  }

  .cleaning-plan-title {
    font-size: 1.75rem;
    margin-bottom: 14px;
  }

  .cleaning-plan-body p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  /* Section: Before/After */
  .before-after-container {
    padding: 22px 16px;
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ba-card img {
    height: 200px;
  }

  /* Section 4: Live Interactive Report */
  .report-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .report-feature-card {
    padding: 22px 18px;
  }

  .live-report-wrapper {
    margin-top: 24px;
    margin-bottom: 28px;
    border-radius: var(--radius-md);
  }

  .report-header-banner {
    padding: 22px 18px;
  }

  .report-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 18px;
  }

  .report-title-text {
    font-size: 1.5rem;
  }

  .report-subtitle-text {
    font-size: 0.88rem;
  }

  .report-meta-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    padding: 14px;
  }

  .report-meta-item .lbl {
    font-size: 0.7rem;
  }

  .report-meta-item .val {
    font-size: 0.88rem;
  }

  .report-status-alert {
    padding: 12px 14px;
    font-size: 0.88rem;
    gap: 10px;
  }

  .report-body-content {
    padding: 22px 16px;
  }

  .report-summary-box {
    padding: 16px;
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .checklist-report-table th,
  .checklist-report-table td {
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .camera-positions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .camera-photo-img {
    height: 190px;
  }

  .recommendation-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 16px;
    text-align: left;
  }

  .recommendation-banner .btn {
    width: 100%;
    justify-content: center;
  }

  /* Section 5: Power of Attorney Card */
  .poa-band {
    padding: 40px 0;
  }

  .poa-trust-card {
    padding: 28px 20px;
    border-radius: var(--radius-md);
  }

  .poa-trust-card h2 {
    font-size: 1.75rem;
    margin-bottom: 14px;
  }

  .poa-trust-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .poa-highlight {
    font-size: 1.05rem;
    margin-top: 16px;
  }

  /* Section 8: Who we are */
  .founder-card {
    padding: 20px 16px;
  }

  .founder-photo-img {
    height: 220px;
  }

  /* Section 9: FAQ */
  .faq-item {
    padding: 18px 20px;
  }

  .faq-item h4 {
    font-size: 1.02rem;
  }

  .faq-answer {
    font-size: 0.92rem;
  }

  /* Civic Updates Page */
  .civic-filter-bar {
    padding: 14px 16px;
    gap: 12px;
  }

  .search-box-wrapper {
    min-width: 100%;
  }

  .notice-card-elevated {
    padding: 24px 18px;
    margin-bottom: 28px;
  }

  .notice-card-elevated h2 {
    font-size: 1.45rem !important;
  }

  .civic-visual-compare-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px;
  }

  /* Blog & Article Pages */
  .blog-hero-section {
    padding: 110px 16px 40px;
  }

  .blog-hero-title {
    font-size: 2.1rem;
  }

  .blog-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .blog-controls-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .blog-search-box {
    min-width: 100%;
  }

  .blog-grid-container {
    grid-template-columns: 1fr;
    padding: 0 16px 50px;
    gap: 20px;
  }

  .article-header {
    padding: 110px 16px 60px;
  }

  #articleTitle {
    font-size: 1.85rem !important;
  }

  .article-hero-img-box {
    height: 240px;
    margin: -30px 16px 30px;
    border-radius: 14px;
  }

  .article-body-wrapper {
    padding: 0 16px 60px;
    font-size: 1rem;
  }

  /* Pricing Page */
  .included-column-card {
    padding: 26px 20px;
  }

  .included-column-card h3 {
    font-size: 1.25rem;
  }

  .no-rate-card-box {
    padding: 30px 18px;
    border-radius: var(--radius-md);
  }

  .no-rate-card-box h3 {
    font-size: 1.5rem;
  }

  .no-rate-card-box p {
    font-size: 0.98rem;
  }

  /* Contact Page */
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-card {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  /* Admin & Modals */
  .admin-modal-box {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .blog-modal-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .admin-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Floating WhatsApp FAB */
  .floating-whatsapp-fab {
    bottom: calc(18px + env(safe-area-inset-bottom));
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ==========================================================================
   BREAKPOINT: Max-Width 480px (Compact Mobile Devices)
   ========================================================================== */
@media (max-width: 480px) {
  .site-header {
    width: calc(100% - 16px);
    height: 58px;
    top: 8px;
  }

  .header-inner {
    padding: 0 14px;
  }

  .brand-logo img {
    height: 34px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .hero-title {
    font-size: 1.72rem;
  }

  .badge-chip {
    padding: 5px 14px;
    font-size: 0.72rem;
  }

  .report-meta-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ==========================================================================
   Pricing Highlight Strip (Homepage Feature Banner)
   ========================================================================== */
.pricing-highlight-strip {
  padding: 10px 0 32px 0;
  background-color: var(--bg-dark);
  position: relative;
  z-index: 5;
}

.pricing-highlight-card {
  background: linear-gradient(135deg, #1B3A5F 0%, #0D1E32 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px 42px;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 16px 40px rgba(27, 58, 95, 0.16), 0 0 30px rgba(201, 162, 39, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  overflow: hidden;
}

.pricing-highlight-card::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0) 70%);
  pointer-events: none;
}

.pricing-highlight-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0) 70%);
  pointer-events: none;
}

.pricing-highlight-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.18);
  color: #F8D36A;
  border: 1px solid var(--border-gold);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-highlight-headline {
  font-family: 'Outfit', sans-serif;
  font-size: 2.15rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.pricing-highlight-headline .pricing-amount {
  color: #F8D36A;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(201, 162, 39, 0.25);
}

.pricing-highlight-headline .pricing-headline-sub {
  font-size: 1.45rem;
  font-weight: 600;
  color: #E2E8F0;
}

.pricing-highlight-line {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #F1F5F9;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-highlight-line svg {
  color: #25D366;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-cleaning-line {
  font-size: 0.9rem;
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-cleaning-line svg {
  color: #F8D36A;
  flex-shrink: 0;
}

.pricing-highlight-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn-pricing-cta {
  background: #25D366;
  color: #FFFFFF;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition-bounce);
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-pricing-cta:hover {
  background: #1DA851;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.pricing-cta-subtext {
  font-size: 0.8rem;
  color: #94A3B8;
  letter-spacing: 0.02em;
}

@media (max-width: 991px) {
  .pricing-highlight-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 22px;
  }
  
  .pricing-highlight-actions {
    width: 100%;
    align-items: stretch;
  }
  
  .btn-pricing-cta {
    width: 100%;
  }

  .pricing-cta-subtext {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .pricing-highlight-headline {
    font-size: 1.65rem;
  }
  .pricing-highlight-headline .pricing-headline-sub {
    font-size: 1.18rem;
  }
  .pricing-highlight-line {
    font-size: 0.95rem;
  }
  .pricing-cleaning-line {
    font-size: 0.84rem;
    border-radius: 8px;
  }
}




