/* ==========================================================================
   N2 CLEANING SERVICES - STYLESHEET
   Optimized for spacing compaction (-30%), 99%+ browser compatibility,
   mobile-first responsiveness, and accessibility.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & CSS VARIABLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* BRAND COLOR PALETTE (Unified Brand Navy Blue #1F3A75) */
  --logo-blue: #1F3A75;
  --navy-dark: #142852;
  --navy: #1F3A75;
  --sky-blue: #E6EEFA;

  --green-dark: #1B5E3F;
  --green-medium: #2D7A52;
  --green-light: #E4EFEA;
  --primary-dark: #1B5E3F;
  --primary-medium: #2D7A52;
  --primary-light: #E4EFEA;
  --pale-green: #E4EFEA;

  --accent: #1F3A75;
  --accent-dark: #142852;
  --accent-light: #E6EEFA;
  --gold: #1F3A75;
  --gold-dark: #142852;
  --gold-light: #E6EEFA;

  --gray-dark: #2C3E50;
  --gray-medium: #475569;
  --gray-light: #EEF2F7;
  --off-white: #F4F7FB;
  --cream: #F4F7FB;
  --bg-light: #F4F7FB;
  --white: #F0F4F8;
  --card-bg: #F0F4F8;
  --card-border: #D0DCE7;

  --text: #1F3A75;
  --muted: #475569;
  --tertiary: #475569;
  --text-inverse: #F4F7FB;

  --shadow-soft: 0 6px 20px rgba(31, 58, 117, 0.08);
  --shadow-medium: 0 10px 30px rgba(31, 58, 117, 0.12);

  --crimson: #B22234;
  --crimson-dark: #8B0000;
  --success: #2D7A52;
  --warning: #1F3A75;
  --error: #D64545;
  --footer-bg: #1F3A75;
  --float-icon: #25d366;
  --radius: 20px;

  /* TYPOGRAPHY */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* RESPONSIVE HEADINGS (CONSERVATIVE CLAMP) */
  --h1-size: clamp(32px, 4.5vw, 48px);
  --h2-size: clamp(24px, 3.5vw, 36px);
  --p-size: clamp(13px, 1.8vw, 15px);

  /* COMPACT SPACING SYSTEM (30% REDUCTION) */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 0.75rem;
  --space-lg: 1rem;
  --space-xl: 1.5rem;
  --space-2xl: 2rem;
  --section-pad-val: 2.75rem 5%;
}

@media (max-width: 768px) {
  :root {
    --space-lg: 0.75rem;
    --space-xl: 1rem;
    --space-2xl: 1.25rem;
    --section-pad-val: 1.75rem 5%;
  }
}

/* --------------------------------------------------------------------------
   2. BASE STYLES
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-light);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.55;
  padding-top: 0;
  font-size: var(--p-size);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--h1-size); line-height: 1.12; }
h2 { font-size: var(--h2-size); line-height: 1.2; }

p {
  line-height: 1.55;
  color: var(--muted);
}

.section-pad {
  padding: var(--section-pad-val);
}

.section-head {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-label {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.section-label::before {
  content: '★';
  color: var(--logo-blue);
}

.section-title {
  font-size: var(--h2-size);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.heading-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.heading-line span {
  width: 70px;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--accent));
  border-radius: 2px;
}

.heading-line span.right {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.heading-line svg {
  color: var(--logo-blue);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   3. TOP TRUST BADGES BAR (ROTATING CITIES MARQUEE - OPTION 1)
   -------------------------------------------------------------------------- */
.top-trust-bar {
  background: #142852;
  color: #FFFFFF;
  width: 100%;
  padding: 7px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  user-select: none;
}

.top-trust-bar::before,
.top-trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 65px;
  z-index: 2;
  pointer-events: none;
}

.top-trust-bar::before {
  left: 0;
  background: linear-gradient(to right, #142852 20%, rgba(20, 40, 82, 0) 100%);
}

.top-trust-bar::after {
  right: 0;
  background: linear-gradient(to left, #142852 20%, rgba(20, 40, 82, 0) 100%);
}

.top-trust-marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.top-trust-marquee::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.top-trust-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: topTrustMarquee 105s linear infinite;
  animation-play-state: running;
}

.top-trust-marquee:hover .top-trust-marquee-track,
.top-trust-marquee:focus-within .top-trust-marquee-track {
  animation-play-state: paused;
}

.top-trust-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  flex-shrink: 0;
}

.top-city-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.top-city-link:hover {
  color: #93C5FD;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-city-pin {
  color: #93C5FD;
  flex-shrink: 0;
}

.top-city-dot {
  width: 4px;
  height: 4px;
  background: #60A5FA;
  border-radius: 50%;
  opacity: 0.65;
  flex-shrink: 0;
}

@keyframes topTrustMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}


/* Fallback if old static top-trust-inner structure is present */
.top-trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0 5%;
}

.tt-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
  color: #E2E8F0;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.tt-icon {
  flex-shrink: 0;
  display: inline-block;
}

.tt-icon-pin {
  color: #93C5FD;
}

.tt-icon-shield {
  color: #34D399;
}

.tt-icon-tag {
  color: #FBBF24;
}

.tt-icon-user {
  color: #93C5FD;
}

.tt-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin: 0 0.45rem;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION
   -------------------------------------------------------------------------- */
nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(240, 244, 248, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: none;
  box-shadow: 0 3px 18px rgba(31, 58, 117, 0.05);
  padding: 0.65rem 5%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  text-decoration: none;
  color: var(--navy);
  margin: auto 0;
}

.nav-logo-stacked {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  gap: 0.65rem;
  text-decoration: none;
  margin: auto 0;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  color: var(--logo-blue);
  flex-shrink: 0;
  align-self: center;
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  line-height: 1.1;
  margin: auto 0;
}

.nav-logo-text .line-1 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.nav-logo-text .line-2 {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.nav-logo-img,
.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

.footer-logo-badge {
  background: #FFFFFF;
  padding: 6px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-logo-badge img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.2s;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active {
  color: var(--accent);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s;
}

.nav-links a:not(.nav-cta).active::after,
.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--text-inverse) !important;
  padding: 0.5rem 1.6rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  white-space: nowrap !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(31, 58, 117, 0.2) !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(31, 58, 117, 0.3) !important;
}

.mobile-toggle {
  display: none;
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - 98px);
  min-height: calc(100svh - 98px);
  padding: 0.85rem 3% 1.5rem;
  background: #E6EEFA;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: visible;
  z-index: 5;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.22fr 0.88fr;
  gap: 2.2rem;
  width: 100%;
  max-width: 1360px;
  margin: auto;
  z-index: 10;
  position: relative;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  background: rgba(178, 34, 52, 0.05);
  color: var(--navy);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: clamp(0.7rem, 2.5vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  border: 1.5px solid var(--crimson);
  box-shadow: 0 2px 8px rgba(178, 34, 52, 0.1);
  max-width: 100%;
  text-align: center;
}

.hero-badge-part {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-star {
  color: var(--crimson);
  font-size: 0.95rem;
  line-height: 1;
}

.hero-badge-dot {
  color: var(--navy);
  opacity: 0.5;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.8vw, 2.65rem);
  margin-bottom: 0.35rem;
  line-height: 1.14;
  text-wrap: balance;
}

.hero h1 .line-navy {
  color: var(--navy);
  display: inline;
}

.hero h1 .line-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hero p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.48;
  margin-bottom: 0.5rem;
  max-width: 500px;
  text-wrap: balance;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-inverse);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 14px rgba(31, 58, 117, 0.2);
  border: none;
  font-size: 0.92rem;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 58, 117, 0.3);
  background: var(--accent-dark);
}

.hero-phone-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
  padding: 0.3rem 0;
  transition: transform 0.2s;
}

.hero-phone-callout:hover {
  transform: translateX(3px);
}

.hpc-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hpc-text {
  display: flex;
  flex-direction: column;
}

.hpc-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.hpc-text span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* HERO 4 TRUST BADGES GRID */
.hero-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  max-width: 540px;
  width: 100%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem;
  border-radius: 18px;
  border: 1.5px solid var(--card-border);
  box-shadow: 0 4px 18px rgba(31, 58, 117, 0.05);
}

.hero-badge-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  box-shadow: 0 2px 8px rgba(31, 58, 117, 0.04);
}

.hero-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-text {
  display: flex;
  flex-direction: column;
}

.hero-badge-text strong {
  font-size: 0.82rem;
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}

.hero-badge-text span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* HERO IMAGE */
.hero-image-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap > img {
  width: 100%;
  max-width: 450px;
  height: 455px;
  max-height: 455px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  filter: drop-shadow(0 10px 24px rgba(31, 58, 117, 0.12));
}

.sparkle {
  display: none !important;
}



/* --------------------------------------------------------------------------
   6. SERVICES SECTION
   -------------------------------------------------------------------------- */
.our-services-section {
  padding: 1rem 5% 2.75rem;
  background: #FFFFFF;
  border-top: none;
  border-bottom: none;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.services-header-wrap {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 1.75rem;
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1250px;
  margin: 0 auto var(--space-xl);
}

.service-card-new {
  background: #F8FAFC;
  padding: 1.25rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid #D0DCE7;
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.service-card-new:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--navy);
  border-top-color: var(--logo-blue);
}

.scn-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}

.service-card-new:hover .scn-icon {
  background: var(--accent);
  color: var(--text-inverse);
}

.service-card-new h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.service-card-new p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.services-footer-action {
  text-align: center;
}

.lifestyle-watermark {
  position: absolute;
  right: -80px;
  bottom: -50px;
  width: 350px;
  height: 350px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
  background-size: 18px 18px;
}

/* --------------------------------------------------------------------------
   7. TRUST BAR (ALTERNATIVE 3: MODERN PILL BADGES)
   -------------------------------------------------------------------------- */
.trust-bar-wrap {
  padding: 1rem 5%;
  margin: var(--space-l) 0;
}

.tb-pills-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.tb-pill-item {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 50px;
  padding: 0.65rem 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 2px 8px rgba(9, 34, 68, 0.04);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tb-pill-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(9, 34, 68, 0.08);
  border-color: #CBD5E1;
}

.tb-stars-gold {
  color: #F59E0B;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.pill-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
}

.tb-pill-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #092244;
  white-space: nowrap;
}

.tb-pill-text strong {
  font-weight: 800;
}

@media (max-width: 640px) {
  .tb-pills-container {
    gap: 0.6rem;
  }
  .tb-pill-item {
    padding: 0.5rem 0.95rem;
  }
  .tb-pill-text {
    font-size: 0.82rem;
  }
}

/* Fallback / legacy support for existing markup */
.trust-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.tb-item { display: flex; align-items: center; gap: 0.75rem; }
.tb-stars { color: #93C5FD; font-size: 1.05rem; }
.tb-text { display: flex; flex-direction: column; }
.tb-text strong { color: #F4F7FB; font-size: 0.88rem; }
.tb-text span, .tb-text a { color: #CBD5E1; font-size: 0.8rem; text-decoration: none; }
.tb-text a:hover { color: #93C5FD; }
.tb-icon { color: #93C5FD; display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; flex-shrink: 0; }
.tb-divider { width: 1px; height: 32px; background: rgba(255, 255, 255, 0.2); }

/* --------------------------------------------------------------------------
   8. DISCOUNT BANNER
   -------------------------------------------------------------------------- */
.discount-banner {
  background: linear-gradient(135deg, #1F3A75 0%, #152B56 100%);
  color: var(--text-inverse);
  padding: 2.2rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: var(--space-xl) 5%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--accent);
  border-top: 3px solid var(--accent);
}

.db-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.db-badge {
  background: var(--accent-light);
  color: var(--navy);
  border: 1.5px solid var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  padding: 0.45rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 3px 12px rgba(31, 58, 117, 0.15);
}

.db-title {
  margin-bottom: 0.6rem;
  color: var(--text-inverse);
}

.db-text {
  font-size: 0.98rem;
  color: #E2E8F0;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. MEET THE OWNER
   -------------------------------------------------------------------------- */
.about-section {
  background: #F4F7FB;
  border-top: 2.5px solid var(--accent);
  border-bottom: 1px solid #D0DCE7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  max-width: 1150px;
  margin: 0 auto;
  align-items: center;
}

.about-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-main-img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid #E2E8F0;
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent);
  margin-top: 1.2rem;
}

/* --------------------------------------------------------------------------
   10. AREAS WE SERVE
   -------------------------------------------------------------------------- */
.areas-section {
  background: #EEF4FA;
  border-top: 2.5px solid var(--accent);
  border-bottom: 1px solid #D0DCE7;
}

.areas-box {
  max-width: 1000px;
  margin: 0 auto;
  background: #F8FAFC;
  border: 1.5px solid var(--accent);
  border-top: 3.5px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.areas-box h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.area-chip {
  background: var(--navy);
  color: #F4F7FB !important;
  border: 1px solid var(--navy);
  border-radius: 50px;
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(31, 58, 117, 0.12);
  transition: transform 0.2s, background 0.2s;
}

.area-chip:hover {
  transform: translateY(-2px);
  background: var(--accent) !important;
  color: #FFFFFF !important;
  border-color: var(--accent);
}

/* --------------------------------------------------------------------------
   11. CHECKLISTS (STANDARD & DEEP)
   -------------------------------------------------------------------------- */
.checklist-section {
  background: #EFF6F2;
  border-top: 2.5px solid var(--accent);
  border-bottom: 1px solid #D2E4D9;
}

.checklist-grid,
.checklist-grid-4 {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist-card {
  background: #F8FAFC;
  border-radius: calc(var(--radius) - 4px);
  padding: 0;
  border: 1.5px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.checklist-card[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(31, 58, 117, 0.08);
}

.cl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.cl-header::-webkit-details-marker { display: none; }

.cl-header h3 {
  font-size: 1.05rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.cl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-light);
  color: var(--accent);
  flex-shrink: 0;
}

.cl-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.cl-header-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cl-badge {
  background: #E4EFEA;
  color: #1B5E3F;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 2rem;
}

.cl-toggle-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.2s;
  font-weight: bold;
}

.checklist-card[open] .cl-toggle-icon {
  transform: rotate(45deg);
}

.cl-body,
.cl-content {
  padding: 1.1rem 1.25rem 1.35rem;
  border-top: 1px solid var(--card-border);
  background: #FFFFFF;
}

.cl-list,
.checklist-ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cl-list li,
.checklist-ul li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.93rem;
  color: var(--navy);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
}

.checklist-ul li::before,
.cl-list li:not(:has(svg))::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23E4EFEA'/%3E%3Cpath d='M7.5 12l3 3 6-6' fill='none' stroke='%231B5E3F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.cl-list li svg {
  width: 15px;
  height: 15px;
  color: #1B5E3F;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   12. BEFORE & AFTER GALLERY
   -------------------------------------------------------------------------- */
.gallery-section {
  background: #E8EEF5;
  border-top: 2.5px solid var(--accent);
  border-bottom: 1px solid #D0DCE7;
}

.ba-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 1100px;
  margin: var(--space-xl) auto 0;
}

.ba-card {
  flex: 0 1 320px;
  width: 100%;
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  border: 1px solid var(--card-border);
}

.ba-slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  user-select: none;
  cursor: col-resize;
  touch-action: pan-y;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-img-before {
  clip-path: inset(0 50% 0 0);
  z-index: 1;
}

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.25);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: var(--accent);
  cursor: grab;
}

.ba-handle:focus-visible {
  outline: 3px solid var(--logo-blue);
  outline-offset: 2px;
}

.ba-label {
  position: absolute;
  bottom: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}

.ba-label-before { left: 10px; background: rgba(15,23,42,0.75); color: #fff; }
.ba-label-after  { right: 10px; background: rgba(37,99,235,0.85); color: #fff; }

/* --------------------------------------------------------------------------
   12b. BEHIND THE CLEAN: TEAM PHOTOS SECTION
   -------------------------------------------------------------------------- */
.team-photos-section {
  background: var(--bg-light);
  border-top: 1px solid #D0DCE7;
  border-bottom: 1px solid #D0DCE7;
}

.team-photos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 1100px;
  margin: var(--space-xl) auto 0;
}

.team-photo-card {
  flex: 0 1 320px;
  width: 100%;
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  border: 1px solid var(--card-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.team-photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(31, 58, 117, 0.1);
}

.team-photo-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #E2E8F0;
}

.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

/* --------------------------------------------------------------------------
   13. CALCULATOR / QUOTE ESTIMATE
   -------------------------------------------------------------------------- */
.calc-section {
  background: linear-gradient(180deg, #152B56 0%, #1F3A75 100%);
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.calc-inner {
  max-width: 800px;
  margin: 0 auto;
  background: #F8FAFC;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 10;
  border-top: 3.5px solid var(--accent);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.calc-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.calc-select {
  background-color: #F4F7FB;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231F3A75' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding: 0.65rem 2.2rem 0.65rem 0.85rem;
  border: 1.5px solid var(--card-border);
  color: var(--navy);
  font-weight: 600;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  cursor: pointer;
}

.calc-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(31,58,117,0.1);
}

.calc-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.calc-extra-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #F4F7FB;
  border: 1px solid var(--card-border);
  color: var(--muted);
  border-radius: 2rem;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.calc-extra-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
}

.calc-extra-btn.active {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
}

.discount-checkbox-wrap {
  background: var(--accent-light);
  border: 1.5px solid var(--card-border);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.discount-checkbox-wrap input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--navy);
}

.discount-checkbox-wrap label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  margin: 0;
}

/* PRICING TRANSPARENCY NOTICES */
.pricing-notice-banner {
  background: #FFFBEB;
  border: 1.5px solid #FCD34D;
  border-left: 4.5px solid #D97706;
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.08);
}

.pricing-notice-icon {
  font-size: 1.25rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.pricing-notice-text {
  flex: 1;
  color: #78350F;
  font-size: 0.88rem;
  line-height: 1.45;
}

.pricing-notice-text strong {
  color: #92400E;
  font-weight: 800;
}

.pricing-notice-bottom {
  margin-top: 1.1rem;
  margin-bottom: 0;
}

.quote-notes-discount-hint {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.quote-notes-discount-hint .hint-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.quote-notes-discount-hint strong {
  color: var(--navy);
}

/* HOW WE PRICE OUR CLEANING SERVICES CARD */
.pricing-policy-card {
  max-width: 800px;
  margin: 1.8rem auto 0;
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  border: 1.5px solid var(--card-border);
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 10;
}

.pricing-policy-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1.5px solid var(--card-border);
}

.pricing-policy-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #E6EEFA;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-policy-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.pricing-policy-body p {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.pricing-policy-body p:last-child {
  margin-bottom: 0;
}

.pricing-policy-list {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 1.1rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.2rem;
}

.pricing-policy-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}

.pricing-policy-list li::before {
  content: '•';
  position: absolute;
  left: 0.25rem;
  top: -0.15rem;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 800;
}

@media (max-width: 640px) {
  .pricing-policy-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .pricing-policy-card {
    padding: 1.5rem 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   14. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
  background: #E8EEF5;
  border-top: 2.5px solid var(--accent);
  border-bottom: 1px solid #D0DCE7;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1.5px solid var(--card-border);
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: #F8FAFC;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.faq-summary {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0.85rem 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item[open] .faq-summary::after { content: '−'; }

.faq-content {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.faq-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 1rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem 1.2rem;
}

.faq-pricing-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.4;
}

.faq-pricing-list li span {
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: 800;
}

@media (max-width: 640px) {
  .faq-pricing-list {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

/* --------------------------------------------------------------------------
   15. REVIEWS SECTION & PURE JS CAROUSEL
   -------------------------------------------------------------------------- */
.reviews-section {
  background: #EEF4FA;
  border-top: 2.5px solid var(--accent);
  border-bottom: 1px solid #D0DCE7;
}

.reviews-layout {
  max-width: 900px;
  margin: 0 auto;
}

/* PURE JS/CSS CAROUSEL STYLES (SAFE, FIXED HEIGHT ~260-280px) */
.reviews-carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 0.5rem;
}

.reviews-carousel-track {
  position: relative;
  width: 100%;
  min-height: 260px;
}

.reviews-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1;
}

.reviews-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* CAROUSEL CARD */
.review-card {
  background: #F8FAFC;
  border: 1px solid #D0DCE7;
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--shadow-soft);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.review-card p {
  color: var(--text);
  line-height: 1.45;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.review-card strong {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
}

/* CAROUSEL CONTROLS */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-top: 1.25rem;
  box-sizing: border-box;
  overflow: hidden;
}

.carousel-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.25rem 0.5rem;
}

.carousel-btn {
  background: var(--navy);
  color: #FFFFFF;
  border: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(31, 58, 117, 0.25);
  touch-action: manipulation;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.carousel-btn:hover {
  background: var(--accent);
  transform: scale(1.06);
}

.carousel-counter {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 65px;
  text-align: center;
  user-select: none;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* REVIEW FORM */
.review-form {
  background: #F8FAFC;
  border: 1px solid #D0DCE7;
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--shadow-soft);
  display: none;
  margin-bottom: 1rem;
}

.review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.review-form label {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0.3rem 0 0.2rem;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid #D0DCE7;
  border-radius: 10px;
  background: #F4F7FB;
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  outline: none;
}

/* --------------------------------------------------------------------------
   16. CONTACT & LEAD FORMS
   -------------------------------------------------------------------------- */
.contact-section {
  background: #EEF4FA;
  border-top: 2.5px solid var(--accent);
}

.contact-inner {
  background: #F8FAFC;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid #D0DCE7;
  border-top: 3.5px solid var(--accent);
  max-width: 900px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group.full { grid-column: 1 / -1; }

.form-grid label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 0.35rem;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  display: block;
  min-width: 0;
  padding: 0.65rem 0.95rem;
  border-radius: 10px;
  border: 1.5px solid var(--card-border);
  background: #F4F7FB;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-grid input[type="date"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 42px;
  background-color: #F4F7FB;
  color: var(--navy);
  font-weight: 500;
}

.form-grid input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  min-height: 1.4em;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--accent);
  background: #F8FAFC;
}

.submit-btn {
  width: 100%;
  background: var(--navy);
  color: var(--text-inverse);
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   17. FOOTER & FLOATING ACTIONS
   -------------------------------------------------------------------------- */
footer {
  background: var(--footer-bg);
  color: #CBD5E1;
  padding: 2.8rem 5% 1.5rem;
  font-size: 0.88rem;
  border-top: 3.5px solid var(--crimson);
}

footer p, footer li a, footer span {
  color: #CBD5E1;
}

footer a {
  color: #93C5FD;
}

footer a:hover, footer li a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

footer img {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   17. FLOATING ACTION CONTACT DOCK (WHATSAPP, SMS, INSTAGRAM, EMAIL)
   -------------------------------------------------------------------------- */
.float-actions {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
}

.fab-toggle {
  display: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  border: none;
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}

.fab-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.fab-toggle .fab-open-icon {
  display: block;
}

.fab-toggle .fab-close-icon {
  display: none;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.float-actions.active .fab-toggle {
  background: #0F172A;
}

.float-actions.active .fab-toggle .fab-open-icon {
  display: none;
}

.float-actions.active .fab-toggle .fab-close-icon {
  display: block;
}

.wa-float, .sms-float, .email-float, .ig-float {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  color: #FFFFFF !important;
  -webkit-tap-highlight-color: transparent;
}

.wa-float { background: #25D366; }
.sms-float { background: #092244; }
.email-float { background: #2563EB; }
.ig-float { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.wa-float:hover, .sms-float:hover, .email-float:hover, .ig-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.wa-float svg { width: 24px; height: 24px; fill: #FFFFFF; }
.sms-float svg { width: 20px; height: 20px; fill: #FFFFFF; }
.email-float svg { width: 20px; height: 20px; fill: #FFFFFF; }
.ig-float svg { width: 20px; height: 20px; fill: #FFFFFF; }

/* --------------------------------------------------------------------------
   18. BREAKPOINTS & MOBILE RESPONSIVENESS
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    max-width: 80vw;
    background: #FFFFFF;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    padding: 5.5rem 1.75rem 2rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    z-index: 1000;
  }
  .nav-links.active { right: 0; }
  .mobile-toggle {
    display: block;
    z-index: 1001;
    position: relative;
    cursor: pointer;
    touch-action: manipulation;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero-text {
    display: contents;
  }
  .hero-badge {
    order: 1;
    margin-bottom: 0.35rem;
  }
  .hero-text h1 {
    order: 2;
    margin: 0.4rem 0 0.5rem;
  }
  .hero-text p[data-site-text="heroText"],
  .hero-text > p {
    order: 3;
    margin-bottom: 1rem;
  }
  .hero-instant-estimator {
    order: 4;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image-wrap {
    order: 5;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-image-wrap > img {
    max-height: 380px;
  }
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .top-trust-bar {
    padding: 6px 0;
  }
  .top-city-link {
    font-size: 0.75rem;
    gap: 0.38rem;
  }
  .top-trust-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem 0.75rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0 4%;
  }
  .tt-divider {
    display: none;
  }
  .tt-item {
    font-size: 0.74rem;
    white-space: normal;
    line-height: 1.25;
    justify-content: flex-start;
    gap: 0.35rem;
  }
  .tt-icon {
    width: 14px;
    height: 14px;
  }
}

/* BACKDROP OVERLAY FOR MOBILE NAVIGATION */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 768px) {

  nav {
    padding: 0.42rem 4% !important;
    min-height: 52px !important;
  }
  .nav-logo-icon { width: 28px !important; height: 28px !important; }
  .nav-logo-text .line-1 { font-size: 0.92rem !important; }
  .nav-logo-text .line-2 { font-size: 0.56rem !important; }
  .nav-cta { padding: 0.38rem 1rem !important; font-size: 0.78rem !important; }

  .hero {
    position: relative;
    padding-top: 0.35rem !important;
    padding-bottom: 2rem !important;
    min-height: auto;
  }

  .hero-badge {
    padding: 0.2rem 0.6rem !important;
    gap: 0.25rem 0.35rem !important;
    font-size: 0.66rem !important;
    margin-bottom: 0.25rem !important;
  }
  .hero h1 {
    font-size: clamp(1.55rem, 7.2vw, 1.95rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 0.3rem !important;
  }
  .hero p {
    font-size: 0.84rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0.4rem !important;
  }
  .hero-instant-estimator {
    padding: 0.55rem 0.85rem !important;
    margin-top: 0.3rem !important;
    margin-bottom: 0.35rem !important;
  }
  .estimator-header { margin-bottom: 0.3rem !important; }
  .est-header-left strong { font-size: 0.84rem !important; }
  .est-tagline { font-size: 0.67rem !important; padding: 1px 6px !important; }
  .seg-row-label { font-size: 0.68rem !important; width: 68px !important; }
  .segmented-tray .pill-btn { padding: 3px 2px !important; font-size: 0.72rem !important; }
  /* CORREÇÃO 1: MOBILE DROPDOWNS */
  .desktop-pill-selectors {
    display: none !important;
  }
  .hero-mobile-dropdowns {
    display: flex !important;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 0.45rem;
  }
  .hero-select-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .hero-select-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.3px;
    min-width: 95px;
    flex-shrink: 0;
  }
  .hero-select-wrap {
    position: relative;
    flex: 1;
  }
  .hero-custom-select {
    width: 100%;
    height: 36px;
    padding: 0 1.8rem 0 0.75rem;
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  }
  .hero-select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--navy);
  }

  /* CORREÇÃO 2: TRUST STRIP IN MOBILE (OUTSIDE HERO) */
  .desktop-only-trust-strip {
    display: none !important;
  }
  .mobile-only-trust-strip {
    display: block !important;
  }

  .estimator-phone-subline { font-size: 0.74rem !important; gap: 0.25rem !important; }
  .hero-social-proof-quote {
    padding: 0.42rem 0.85rem 0.38rem !important;
    margin-top: 0 !important;
  }
  .hspq-top { margin-bottom: 0.2rem !important; gap: 0.35rem !important; }
  .hspq-stars { font-size: 0.76rem !important; letter-spacing: 1px !important; }
  .hspq-pill { padding: 1px 6px !important; font-size: 0.65rem !important; }
  .hspq-text { font-size: 0.78rem !important; line-height: 1.34 !important; margin-bottom: 0.2rem !important; }
  .hspq-meta { font-size: 0.68rem !important; }
  .hspq-carousel-dots { margin-top: 0.2rem !important; }
  .hspq-slides-container { min-height: 84px !important; }

  .our-services-section {
    padding: 0.75rem 5% 1.75rem;
  }

  /* COLLAPSIBLE CHECKLIST GRID IN MOBILE */
  .checklist-grid,
  .checklist-grid-4 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 100%;
  }

  /* 2 COLUMNS IN MOBILE FOR SERVICES & GALLERY */
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .service-card-new {
    padding: 0.85rem 0.75rem;
  }
  .service-card-new h3 {
    font-size: 0.95rem;
  }
  .service-card-new p {
    font-size: 0.78rem;
  }

  .ba-grid,
  .team-photos-grid {
    gap: 0.85rem;
    justify-content: center;
  }
  .ba-card,
  .team-photo-card {
    flex: 0 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    min-width: 140px;
  }

  .calc-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .calc-inner, .contact-inner {
    padding: 1.5rem 1rem;
  }
  .discount-banner {
    margin: 1.5rem 0;
    border-radius: 0;
  }

  /* UNIFIED MOBILE CTA CARD & FLOATING DOCK BUFFER */
  .hero-text {
    padding-right: 46px;
    box-sizing: border-box;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
    background: rgba(230, 238, 250, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid var(--card-border);
    border-radius: 20px;
    padding: 0.75rem;
    box-shadow: 0 4px 16px rgba(31, 58, 117, 0.08);
    margin-bottom: 1.5rem;
    box-sizing: border-box;
  }

  .hero-btns .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.84rem;
    padding: 0.75rem 0.65rem;
    white-space: nowrap;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(31, 58, 117, 0.2);
  }

  .hero-phone-callout {
    width: 100%;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.55rem 0.75rem;
    margin-top: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  }

  .hero-phone-callout .hpc-text strong {
    font-size: 0.95rem;
    color: var(--navy);
  }

  .hero-phone-callout .hpc-text span {
    font-size: 0.72rem;
    color: var(--muted);
  }

  /* RESPONSIVE FAB MENU ON MOBILE (<=768px) */
  .float-actions {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
    z-index: 9999;
  }
  .fab-toggle {
    display: flex !important;
  }
  .fab-menu {
    display: none !important;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.25rem;
  }
  .float-actions.active .fab-menu {
    display: flex !important;
    animation: fabMenuSlideUp 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes fabMenuSlideUp {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .wa-float, .sms-float, .email-float, .ig-float {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  }
  .wa-float svg { width: 22px; height: 22px; }
  .sms-float svg, .email-float svg, .ig-float svg { width: 18px; height: 18px; }

  /* RESPONSIVE TOP TRUST BADGES BAR ON MOBILE */
  .top-trust-bar {
    padding: 6px 0;
  }
  .top-trust-bar::before,
  .top-trust-bar::after {
    width: 40px;
  }

  .top-city-link {
    font-size: 0.74rem;
    gap: 0.35rem;
  }

  .top-trust-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem 0.75rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0 4%;
  }

  .tt-divider {
    display: none;
  }

  .tt-item {
    font-size: 0.72rem;
    white-space: normal;
    line-height: 1.25;
    justify-content: flex-start;
    gap: 0.35rem;
  }

  .tt-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .top-trust-bar {
    padding: 5px 0;
  }
  .top-city-link {
    font-size: 0.72rem;
    gap: 0.3rem;
  }
  .top-city-pin {
    width: 12px;
    height: 12px;
  }
  .top-trust-inner {
    gap: 0.35rem 0.5rem;
    padding: 0 3%;
  }
  .tt-item {
    font-size: 0.68rem;
    gap: 0.3rem;
  }
  .tt-icon {
    width: 13px;
    height: 13px;
  }
  .hero-badge {
    padding: 0.35rem 0.65rem;
    gap: 0.25rem 0.4rem;
    font-size: 0.69rem;
  }
  .hero-badge-dot {
    display: none;
  }
  .hero-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .hero-badge-card {
    padding: 0.45rem 0.6rem;
  }
  .hero-badge-icon {
    width: 28px;
    height: 28px;
  }
  .hero-badge-text strong { font-size: 0.75rem; }
  .hero-badge-text span { font-size: 0.68rem; }

  .ba-card,
  .team-photo-card {
    flex: 0 1 100%;
    max-width: 340px;
  }
}

/* ==========================================================================
   HIGH-CONVERSION REDESIGN PACKAGE (2026 REVISION)
   ========================================================================== */

/* 1. HERO SEGMENTED ESTIMATOR (MOCK 2 COMPACT LAYOUT) */
.hero-instant-estimator {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 12px 32px rgba(31, 58, 117, 0.08), 0 2px 6px rgba(0, 0, 0, 0.03);
  margin-top: 0.5rem;
  margin-bottom: 0.55rem;
  max-width: 530px;
}
.estimator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.est-header-left {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.est-lightning {
  font-size: 1.05rem;
}
.est-header-left strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.est-tagline {
  font-size: 0.72rem;
  color: #059669;
  font-weight: 700;
  background: #ECFDF5;
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid #A7F3D0;
}
.segmented-selectors {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}
.segmented-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.seg-row-label {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--muted);
  width: 78px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.segmented-tray {
  display: flex;
  gap: 0.35rem;
  flex-grow: 1;
  background: #E2E8F0;
  padding: 3px;
  border-radius: 10px;
}
.segmented-tray .pill-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--navy);
  padding: 5px 4px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.18s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.segmented-tray .pill-btn:hover:not(.selected) {
  background: rgba(255, 255, 255, 0.6);
  color: var(--navy);
}
.segmented-tray .pill-btn.selected {
  background: #FFFFFF;
  color: var(--navy);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.desktop-pill-selectors {
  display: flex;
  flex-direction: column;
}

.hero-mobile-dropdowns {
  display: none !important;
}

/* DESKTOP TRUST STRIP IN HERO */
.desktop-only-trust-strip {
  display: block;
}
.mobile-only-trust-strip {
  display: none;
}

.hero-trust-strip {
  margin-top: 0.85rem;
  max-width: 530px;
}
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.hero-trust-grid .trust-pill-card {
  padding: 0.55rem 0.65rem;
  gap: 0.5rem;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(31, 58, 117, 0.04);
}
.hero-trust-grid .tpc-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
}
.hero-trust-grid .tpc-icon svg {
  width: 16px;
  height: 16px;
}
.hero-trust-grid .tpc-info strong {
  font-size: 0.76rem;
  line-height: 1.15;
}
.hero-trust-grid .tpc-info span {
  font-size: 0.66rem;
  line-height: 1.2;
}

.estimator-submit-row {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: stretch;
}
.btn-gold-action {
  width: 100%;
  background: linear-gradient(135deg, #1F3A75 0%, #172E5D 100%);
  color: #FFFFFF !important;
  padding: 0.78rem 1.3rem;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(31, 58, 117, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.22s ease;
  box-sizing: border-box;
}
.btn-gold-action:hover {
  background: linear-gradient(135deg, #254E99 0%, #1F3A75 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(31, 58, 117, 0.38);
}
.estimator-phone-subline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--muted);
  white-space: nowrap;
}
.estimator-phone-subline svg {
  color: #10B981;
  flex-shrink: 0;
}
.estimator-phone-subline .phone-link-nowrap {
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.estimator-phone-subline .phone-link-nowrap strong {
  font-weight: 800;
  color: var(--navy);
}
.estimator-phone-subline .phone-link-nowrap:hover {
  text-decoration: underline;
}

/* 2. AUTHENTIC SOCIAL PROOF CAROUSEL (ROTATING EVERY 2.5s) */
.hero-reviews-strip-section {
  padding: 1rem 5% 1.25rem;
  background: transparent;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.real-reviews-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.alt1-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0.65rem;
}
.subtle-thumbtack-link {
  font-size: 0.78rem;
  color: #0284C7;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.subtle-thumbtack-link:hover {
  color: #0077A3;
  text-decoration: underline;
}
.real-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.real-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-left: 3.5px solid #10B981;
  border-radius: 12px;
  padding: 0.95rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 14px rgba(31, 58, 117, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.real-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 58, 117, 0.08);
}
.rc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
}
.rc-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.rc-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0077A3;
  background: #E0F2FE;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
.rc-text {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 0.65rem;
}
.rc-author {
  font-size: 0.76rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed var(--border);
  padding-top: 0.4rem;
}
.rc-author strong {
  color: var(--navy);
}

@media (max-width: 768px) {
  .real-cards-grid {
    grid-template-columns: 1fr;
  }
  .alt1-header {
    justify-content: center;
  }
  .hero-reviews-strip-section {
    padding: 1rem 1rem 0.5rem;
  }
}
.hero-reviews-strip-container {
  width: 100%;
  max-width: 680px;
  display: flex;
  justify-content: center;
}
.hero-social-proof-quote {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-left: 4px solid #10B981;
  border-radius: 14px;
  padding: 0.75rem 1.25rem 0.65rem;
  box-shadow: 0 6px 20px rgba(31, 58, 117, 0.07);
  width: 100%;
  max-width: 680px;
  margin-top: 0;
  box-sizing: border-box;
  position: relative;
}
.hspq-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.hspq-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.hspq-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  border-radius: 50px;
  padding: 2px 7px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
}
.hspq-slides-container {
  position: relative;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 580px) {
  .hspq-slides-container {
    min-height: 84px;
  }
}
.hspq-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
  pointer-events: none;
  box-sizing: border-box;
}
.hspq-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.hspq-slide.slide-exit-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-24px);
  pointer-events: none;
}
.hspq-text {
  font-size: 0.84rem;
  line-height: 1.42;
  color: #334155;
  font-style: italic;
  margin-bottom: 0.25rem;
}
.hspq-meta {
  font-size: 0.74rem;
  color: var(--muted);
}
.hspq-meta strong {
  color: var(--navy);
  font-weight: 800;
}
.hspq-carousel-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.25rem;
  justify-content: flex-end;
}
.hspq-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hspq-dot.active {
  background: #10B981;
  width: 18px;
  border-radius: 4px;
}

/* FLAVIA HERO PHOTO FRAME & OWNER-SUPERVISED QUALITY SEAL (MOCK 3) */
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
/* --------------------------------------------------------------------------
   HERO BEFORE/AFTER SHOWCASE (TOGGLE CAROUSEL - OPTION B)
   -------------------------------------------------------------------------- */
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 28px;
  border: 6px solid #FFFFFF;
  box-shadow: 0 20px 48px rgba(31, 58, 117, 0.14);
  overflow: hidden;
  background: #0F172A;
  line-height: normal;
  user-select: none;
  touch-action: pan-y;
}

.hero-ba-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.95;
  overflow: hidden;
  border-radius: 22px;
  background: #0F172A;
}

.hero-ba-slide-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  clip-path: none !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  will-change: opacity;
  display: block;
}

.hero-ba-img.active {
  opacity: 1;
  pointer-events: auto;
}

/* Header Overlay: Quality Seal + Service Tag */
.hero-ba-topbar {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.hero-quality-seal.hero-ba-seal {
  position: static !important;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.hero-ba-seal .hqs-icon {
  font-size: 0.88rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero-ba-seal .hqs-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-ba-tag {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 5px 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #93C5FD;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

/* Floating Toggle Pill: Before / After */
.hero-ba-toggle-wrap {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 6;
  pointer-events: none;
}

.hero-ba-toggle {
  pointer-events: auto;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3px;
  border-radius: 40px;
  display: inline-flex;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.ba-toggle-btn {
  border: none;
  background: transparent;
  color: #CBD5E1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  line-height: 1.2;
}

.ba-toggle-btn:hover {
  color: #FFFFFF;
}

.ba-toggle-btn.active {
  background: #FFFFFF;
  color: #1F3A75;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ba-toggle-btn:focus-visible {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
}

/* Navigation Arrows */
.hero-ba-nav-btn {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1F3A75;
  border: 1px solid rgba(31, 58, 117, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  transition: all 0.2s ease;
  padding: 0;
}

.hero-ba-nav-btn.prev {
  left: 10px;
}

.hero-ba-nav-btn.next {
  right: 10px;
}

.hero-ba-nav-btn:hover {
  background: #FFFFFF;
  color: #2563EB;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 16px rgba(31, 58, 117, 0.28);
}

.hero-ba-nav-btn:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: 2px;
}

/* Bottom Info Bar: Room Name & Dots */
.hero-ba-bottombar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.6) 65%, transparent 100%);
  padding: 26px 14px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #FFFFFF;
  pointer-events: none;
}

.hero-ba-caption-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.hero-ba-room {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-ba-counter {
  font-size: 0.70rem;
  color: #94A3B8;
  font-weight: 500;
}

.hero-ba-dots {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
}

.hero-ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-ba-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero-ba-dot.active {
  width: 20px;
  border-radius: 10px;
  background: #FFFFFF;
}

.hero-ba-dot:focus-visible {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
}

.hero-ba-section-header {
  display: none !important;
}

/* Mobile responsive (<=768px) */
@media (max-width: 768px) {
  .hero-ba-section-header {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.15rem;
    width: 100%;
    max-width: 440px;
  }
  .hba-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: #2563EB;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
  }
  .hba-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1F3A75;
    margin: 0 0 0.35rem;
    letter-spacing: -0.01em;
  }
  .hba-subheading {
    font-size: 0.82rem;
    color: #64748B;
    margin: 0;
    line-height: 1.35;
  }

  .hero-photo-frame.hero-ba-showcase {
    max-width: 440px;
    border-radius: 24px;
    border: 5px solid #FFFFFF;
    box-shadow: 0 14px 32px rgba(31, 58, 117, 0.12);
    margin: 0 auto;
  }
  .hero-ba-viewport {
    aspect-ratio: 4 / 3.2;
    border-radius: 19px;
  }
  .hero-ba-img {
    border-radius: 19px;
  }
  /* Desafogar mobile: selo redundante e contador numérico ocultados */
  .hero-quality-seal.hero-ba-seal {
    display: none !important;
  }
  .hero-ba-counter {
    display: none !important;
  }
  .hero-ba-nav-btn {
    width: 36px;
    height: 36px;
    top: 46%;
  }
  .hero-ba-toggle-wrap {
    bottom: 44px;
  }
  .ba-toggle-btn {
    padding: 4px 14px;
    font-size: 0.74rem;
  }
  .hero-ba-topbar {
    top: 8px;
    left: 8px;
    right: 8px;
    justify-content: flex-end;
  }
  .hero-ba-tag {
    padding: 4px 10px;
    font-size: 0.68rem;
  }
  .hero-ba-bottombar {
    padding: 18px 12px 8px;
  }
  .hero-ba-room {
    font-size: 0.80rem;
  }
}

/* Dark mode support for BA card interior */
@media (prefers-color-scheme: dark) {
  .hero-photo-frame.hero-ba-showcase {
    border-color: rgba(255, 255, 255, 0.16);
    background: #0B1329;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  }
  .hero-ba-nav-btn {
    background: rgba(15, 23, 42, 0.92);
    color: #F1F5F9;
    border-color: rgba(255, 255, 255, 0.18);
  }
  .hero-ba-nav-btn:hover {
    background: #1E293B;
    color: #60A5FA;
  }
  .ba-toggle-btn.active {
    background: #2563EB;
    color: #FFFFFF;
  }
  .hero-ba-dot.active {
    background: #38BDF8;
  }
  .hero-ba-tag {
    color: #60A5FA;
    border-color: rgba(96, 165, 250, 0.3);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-ba-img,
  .ba-toggle-btn,
  .hero-ba-nav-btn,
  .hero-ba-dot {
    transition: none !important;
    animation: none !important;
  }
}

/* 3. POST-HERO TRUST STRIP */
.trust-strip-bar {
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%;
}
.trust-strip-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.trust-strip-grid.trust-strip-4,
.trust-strip-grid:has(> :nth-child(4)) {
  max-width: 1240px;
  grid-template-columns: repeat(4, 1fr);
}
.trust-pill-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: #E8EEF5;
  border: 1px solid #D8E1EC;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.22s ease;
}
.trust-pill-card:hover {
  transform: translateY(-2px);
  border-color: #3B82F6;
  box-shadow: 0 8px 20px rgba(31, 58, 117, 0.08);
}
.tpc-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: #E6EEFA;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tpc-info strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}
.tpc-info span {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
}

/* 3.1. SERVICE PAGES CONTENT & CHECKLIST CARDS */
.service-hero {
  padding: 8.5rem 5% 4.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, #102a4d 100%);
  color: var(--white);
  text-align: center;
}
.service-content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 5%;
}
.checklist-card-box {
  background: var(--card-bg);
  padding: 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}
.checklist-card-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 0.5rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.checklist-card-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.checklist-card-box li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
}
.checklist-card-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23E4EFEA'/%3E%3Cpath d='M7.5 12l3 3 6-6' fill='none' stroke='%231B5E3F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* 4. VISUAL TRANSFORMATION SERVICE CARDS */
.services-visual-grid {
  max-width: 1140px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.service-photo-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(31, 58, 117, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.25s ease;
}
.service-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(31, 58, 117, 0.15);
  border-color: #3B82F6;
}
.spc-media {
  height: 175px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.spc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-photo-card:hover .spc-media img {
  transform: scale(1.06);
}
.spc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.spc-badge.gold {
  background: #D97706;
}
.spc-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.spc-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.45rem;
}
.spc-body > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.spc-features {
  list-style: none;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.spc-features li {
  font-size: 0.82rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.spc-features li svg {
  color: #10B981;
  flex-shrink: 0;
  margin-top: 2px;
}
.spc-action-link {
  color: #2563EB;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F1F5F9;
  padding-top: 0.9rem;
  margin-top: auto;
  transition: color 0.2s;
}
.spc-action-link:hover {
  color: var(--navy);
}





/* RESPONSIVE QUERIES */
@media (max-width: 1024px) {
  .services-visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-strip-grid.trust-strip-4,
  .trust-strip-grid:has(> :nth-child(4)) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip-grid.trust-strip-4,
  .trust-strip-grid:has(> :nth-child(4)) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-strip-grid,
  .trust-strip-grid.trust-strip-4,
  .trust-strip-grid:has(> :nth-child(4)) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-instant-estimator {
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .desktop-pill-selectors {
    display: none !important;
  }
  .hero-mobile-dropdowns {
    display: flex !important;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
  }
  .hero-select-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .hero-select-label {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--navy);
    white-space: nowrap;
    min-width: 95px;
    letter-spacing: 0.02em;
  }
  .hero-select-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
  }
  .hero-custom-select {
    width: 100%;
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    border-radius: 9px;
    padding: 0.52rem 2.2rem 0.52rem 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .hero-custom-select:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  }
  .hero-select-arrow {
    position: absolute;
    right: 12px;
    pointer-events: none;
    color: #64748B;
  }
  .desktop-only-trust-strip {
    display: none !important;
  }
  .mobile-only-trust-strip {
    display: block !important;
  }
  .estimator-submit-row {
    flex-direction: column;
    align-items: stretch;
  }
  .services-visual-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   19. CITY LANDING PAGES & BLOG SHARED STYLES
   -------------------------------------------------------------------------- */
.city-hero, .blog-hero {
  padding: 8.5rem 5% 4.5rem;
  background: linear-gradient(135deg, #1F3A75 0%, #152B56 100%);
  color: #F4F7FB;
  text-align: center;
  border-bottom: none;
}
.city-hero h1, .blog-hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: #F4F7FB; margin-bottom: 1rem; }
.city-hero p, .blog-hero p { font-size: 1.2rem; color: #CBD5E1; max-width: 750px; margin: 0 auto 2rem; }
.city-hero .btn-primary {
  background: var(--accent);
  color: #F4F7FB;
  padding: 0.95rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(31, 58, 117, 0.25);
}
.city-hero .btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.city-hero .btn-phone {
  background: var(--accent-light);
  color: var(--navy);
  padding: 0.95rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-left: 1rem;
  border: 1.5px solid var(--card-border);
  transition: background 0.2s;
}
.city-hero .btn-phone:hover { background: #E6EEFA; }

.content-section { padding: 4.5rem 5%; max-width: 1050px; margin: 0 auto; }
.content-section h2 { font-size: 2.2rem; margin: 2rem 0 1rem; color: var(--navy); }
.content-section ul { list-style: none; padding: 0; margin: 1.25rem 0 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; }
.content-section li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  display: block;
}
.content-section li strong {
  color: var(--navy);
  font-weight: 700;
  margin-right: 0.35rem;
}
.content-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23DCFCE7'/%3E%3Cpath d='M7.5 12l3 3 6-6' fill='none' stroke='%2315803D' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.city-card { background: #F8FAFC; padding: 2rem; border-radius: var(--radius); border: 1px solid #D0DCE7; box-shadow: var(--shadow-soft); transition: transform 0.3s, border-color 0.3s; }
.city-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.city-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.6rem; }
.city-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.5; }
.city-card a { color: var(--accent); font-weight: 700; text-decoration: none; }

/* BLOG STYLES */
.article-container { padding: 8.5rem 5% 5rem; max-width: 850px; margin: 0 auto; }
.article-container p { margin-bottom: 1.2rem; font-size: 1.05rem; line-height: 1.7; }
.article-container ul { margin: 1rem 0 1.5rem 2rem; }
.article-container li { margin-bottom: 0.5rem; }

.article-body {
  padding: 3.5rem 5% 4rem;
  max-width: 850px;
  margin: -2.5rem auto 4rem;
  background: #FFFFFF;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}
.article-body p { margin-bottom: 1.2rem; font-size: 1.05rem; line-height: 1.7; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 2rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body h2 { font-size: clamp(1.4rem, 3.5vw, 1.85rem); margin: 2.2rem 0 1rem; color: var(--navy); }
.article-body h3 { font-size: 1.25rem; margin: 1.8rem 0 0.8rem; color: var(--navy); }

.cta-box { background: var(--accent-light); border: 1.5px solid var(--accent); border-radius: var(--radius); padding: 2rem; text-align: center; margin: 2.5rem 0; }
.cta-box h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem; }
.cta-box p { font-size: 1rem; color: var(--muted); margin-bottom: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; margin: 2.5rem 0; }
.blog-card { background: #FFFFFF; padding: 2rem; border-radius: var(--radius); border: 1px solid #D0DCE7; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.25s, box-shadow 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(31, 58, 117, 0.12); }
.blog-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.3; }
.blog-card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.55; }
.blog-card a { color: var(--accent); font-weight: 700; text-decoration: none; align-self: flex-start; }

@media (max-width: 768px) {
  .city-hero, .blog-hero { padding: 6.5rem 4% 3rem; }
  .city-hero .btn-primary, .city-hero .btn-phone { display: inline-block; width: 100%; text-align: center; margin-left: 0 !important; margin-top: 0.5rem !important; }
  .article-container { padding: 6.5rem 4% 3rem; }
  .article-container h1 { font-size: clamp(1.6rem, 5.5vw, 2.2rem); line-height: 1.25; }
  .article-container h2 { font-size: clamp(1.25rem, 4.5vw, 1.6rem); margin-top: 1.5rem; }
  .article-body { padding: 2.2rem 5%; margin: -1.5rem 1rem 2.5rem; }
  .article-body h2 { font-size: clamp(1.25rem, 4.5vw, 1.6rem); }
  .cta-box { padding: 1.25rem 1rem; margin: 1.8rem 0; }
  .owner-strip { flex-direction: column; text-align: center; }
}

/* --------------------------------------------------------------------------
   20. TRUST & CARE PAGE STYLES
   -------------------------------------------------------------------------- */
.content-wrap { max-width: 1050px; margin: 0 auto; padding: 4rem 5%; }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.pillar-card { background: #FFFFFF; border: 1px solid var(--card-border); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-soft); transition: transform 0.2s ease; }
.pillar-card:hover { transform: translateY(-4px); }
.pillar-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.pillar-icon svg { width: 26px; height: 26px; stroke: currentColor; }
.pillar-card h3 { font-size: 1.35rem; margin-bottom: 0.65rem; color: var(--navy); }
.pillar-card p { font-size: 0.98rem; color: var(--muted); line-height: 1.6; }

.owner-strip { background: #ECFDF5; border: 1.5px solid #A7F3D0; border-radius: var(--radius); padding: 2.5rem; margin: 4rem 0 2rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.owner-avatar { width: 90px; height: 90px; border-radius: 50%; background: #D1FAE5; color: #047857; font-size: 2.5rem; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; border: 3px solid #059669; }
.owner-text h3 { font-size: 1.4rem; color: #065F46; margin-bottom: 0.4rem; }
.owner-text p { color: #047857; font-size: 1rem; line-height: 1.6; }

/* --------------------------------------------------------------------------
   21. LEGAL & INSTITUTIONAL PAGES
   -------------------------------------------------------------------------- */
.page-container { padding: 7.5rem 5% 5rem; max-width: 860px; margin: 0 auto; }
.page-container h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 0.5rem; }
.page-container .subtitle { color: var(--muted); margin-bottom: 2.5rem; font-size: 0.95rem; border-bottom: 1px solid var(--card-border); padding-bottom: 1.5rem; }
.page-container h2 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--navy); margin: 2.5rem 0 0.75rem; border-left: 4px solid var(--accent); padding-left: 0.75rem; }
.page-container p { color: var(--muted); margin-bottom: 1rem; font-size: 1.02rem; line-height: 1.7; }
.page-container ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--muted); }
.page-container li { margin-bottom: 0.4rem; }
.page-container a { color: var(--accent); }
.highlight-box { background: var(--accent-light); border: 1.5px solid var(--card-border); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.contact-box { background: var(--accent-light); border: 1.5px solid var(--card-border); border-radius: var(--radius); padding: 1.75rem; margin-top: 2.5rem; }





