/* =============================================================================
   VIVID CLEAR GLASS — SHARED STYLESHEET
   Miami's Trusted Glass Restoration Specialists
   =============================================================================

   TABLE OF CONTENTS
   -----------------
   1.  CSS Custom Properties (Brand Tokens)
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Navbar
   6.  Footer
   7.  Hero Sections
   8.  Buttons & Links
   9.  Cards
   10. Logo Carousel
   11. Before / After Slider
   12. Lightbox
   13. Contact Form
   14. Call To Action Section
   15. Page: Home
   16. Page: Services
   17. Page: About
   18. Page: Properties
   19. Page: Blog
   20. Scroll Reveal Animations
   ============================================================================= */


/* =============================================================================
   1. CSS CUSTOM PROPERTIES — Brand Color Tokens & Spacing
   ============================================================================= */
:root {
  /* --- Brand Colors --- */
  --color-primary:    hsl(206, 60%, 56%);   /* Steel blue */
  --color-secondary:  hsl(210, 100%, 23%);  /* Deep navy */
  --color-accent:     hsl(181, 62%, 40%);   /* Teal / cyan */
  --color-gold:       hsl(47, 80%, 52%);    /* Gold CTA */
  --color-bg:         hsl(0, 0%, 98%);      /* Near-white page background */
  --color-border:     hsl(214, 32%, 91%);   /* Subtle border */
  --color-muted:      hsl(215, 16%, 47%);   /* Muted text */
  --color-text:       hsl(222, 47%, 11%);   /* Body text */

  /* --- Typography --- */
  --font-serif:   'new-atten-round', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans:    'new-atten-round', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* --- Spacing --- */
  --max-width:    1280px;
  --section-pad:  6rem 1.5rem;

  /* --- Transitions --- */
  --transition:   0.3s ease;
}


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

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

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}


/* =============================================================================
   3. TYPOGRAPHY — @font-face injected via functions.php (dynamic path)
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-secondary);
}

h1 { font-size: clamp(2.5rem, 6vw, 5.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }

p {
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.75;
}

.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-divider {
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 1rem auto 0;
}


/* =============================================================================
   4. LAYOUT UTILITIES
   ============================================================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 3rem; }
}

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

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }


/* =============================================================================
   5. NAVBAR
   ============================================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 1.5rem;
  transition: padding var(--transition), background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}
@media (min-width: 768px) { .navbar { padding: 1.5rem 3rem; } }

/* Scrolled state */
.navbar.scrolled {
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
@media (min-width: 768px) { .navbar.scrolled { padding: 0.75rem 3rem; } }

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar-logo img {
  height: 2.25rem;
  width: auto;
  transition: opacity var(--transition);
}
@media (min-width: 768px) { .navbar-logo img { height: 2.5rem; } }

/* Desktop navigation links */
.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .navbar-links { display: flex; } }

.navbar-links a {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

/* Dark navbar (over hero images) — default */
.navbar.theme-dark .navbar-links a          { color: rgba(255,255,255,1); }
.navbar.theme-dark .navbar-links a:hover    { color: rgba(255,255,255,0.6); }
.navbar.theme-dark .navbar-links a.active   { color: var(--color-gold); }
.vcg-nav-link.active   { color: var(--color-gold) !important; border-bottom: 2px solid var(--color-gold) !important; }

/* Light navbar (over white sections) */
.navbar.theme-light .navbar-links a         { color: var(--color-secondary); }
.navbar.theme-light .navbar-links a:hover   { color: var(--color-primary); }
.navbar.theme-light .navbar-links a.active  { color: var(--color-gold); }

/* Active underline indicator */
.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--color-gold);
}

/* Phone CTA button */
.navbar-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--color-gold);
  color: var(--color-secondary);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition);
}
@media (min-width: 768px) { .navbar-phone { display: flex; } }
.navbar-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mobile menu toggle */
.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-secondary);
  z-index: 101;
}
@media (min-width: 768px) { .navbar-toggle { display: none; } }

.navbar.theme-dark .navbar-toggle { color: #fff; }

/* Hamburger icon lines */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--color-accent); }

.mobile-menu .mobile-phone {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--color-gold);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1rem;
}


/* =============================================================================
   6. FOOTER
   ============================================================================= */
/* ── Footer ─────────────────────────────────────────────────────────── */
.vcg-footer {
  background: linear-gradient(135deg, hsl(210, 64%, 12%) 0%, hsl(206, 37%, 20%) 100%);
  color: #fff;
  padding: 80px 48px 40px;
}

.vcg-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

/* Brand column */
.vcg-footer-logo {
  width: 100%;
  max-width: 265px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.vcg-footer-rule {
  height: 2px;
  width: 24px;
  margin-bottom: 20px;
}
.vcg-rule-gold  { background: hsl(47, 80%, 52%); }
.vcg-rule-blue  { background: hsl(206, 60%, 56%); width: 24px; }
.vcg-rule-teal  { background: hsl(181, 62%, 40%); width: 24px; }

.vcg-footer-tagline {
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 24px;
}

.vcg-footer-callbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: hsl(47, 80%, 52%);
  color: hsl(213, 45%, 20%);
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.vcg-footer-callbtn:hover { opacity: 0.9; }

/* Nav columns */
.vcg-footer-colhead {
  font-family: var(--font-serif, 'new-atten-round', serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
  color: #fff;
}

.vcg-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vcg-footer-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.vcg-footer-link:hover { color: #fff; }

.vcg-footer-address { cursor: default; }
.vcg-footer-address:hover { color: rgba(255, 255, 255, 0.6); }

.vcg-footer-icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.vcg-icon-blue { color: hsl(206, 37%, 65%); }
.vcg-icon-teal { color: hsl(181, 41%, 55%); }
.vcg-icon-gold { color: hsl(47, 72%, 65%); }

/* Bottom bar */
.vcg-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.vcg-footer-copy {
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .vcg-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .vcg-footer {
    padding: 60px 24px 32px;
  }
  .vcg-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vcg-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}


/* =============================================================================
   7. HERO SECTIONS
   ============================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-full { min-height: 100vh; }
.hero-page  { padding: 8rem 1.5rem 6rem; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 1.5rem;
  padding-top: 5rem;     /* clear navbar */
}
@media (min-width: 768px) { .hero-content { padding: 5rem 3rem 0; } }

/* Scroll indicator on full-page hero */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* Gold eyebrow badge used in hero areas */
.hero-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: hsl(47, 80%, 52%, 0.25);
  color: hsl(47, 80%, 82%);
  border: 1px solid hsl(47, 80%, 52%, 0.4);
  margin-bottom: 1.25rem;
}


/* =============================================================================
   8. BUTTONS & LINKS
   ============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Gold primary button */
.btn-gold {
  background: var(--color-gold);
  color: var(--color-secondary);
}

/* Ghost white button (used over dark backgrounds) */
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* Teal solid button */
.btn-teal {
  background: var(--color-accent);
  color: #fff;
}

/* Flex row of buttons */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .btn-group { flex-direction: row; flex-wrap: wrap; }
}

/* Arrow icon inside a button */
.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }
.cta-section .cta-inner .btn-group a {gap: 10px;}


/* =============================================================================
   9. CARDS — Generic service / advantage card
   ============================================================================= */
.card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

/* Color bar accent at the top of a card */
.card-bar {
  width: 2.5rem;
  height: 6px;
  margin-bottom: 1.25rem;
}

.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 0.875rem; }

/* Service number badge */
.service-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}


/* =============================================================================
   10. LOGO CAROUSEL
   ============================================================================= */
/* Light background matching the live site: hsl(206 37% 53% / 0.07) ≈ #f4f7f9,
   30px vertical padding, dark logo artwork blended with multiply (no invert). */
.logo-carousel {
  background: #f4f7f9;
  border-bottom: 1px solid hsla(206, 60%, 46%, 0.2);
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}

.logo-carousel-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* Fade edges */
.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}
.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, #f4f7f9, transparent);
}
.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, #f4f7f9, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-logos 90s linear infinite;
}

.logo-track:hover { animation-play-state: paused; }

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

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  min-width: 25vw;
  max-width: 25vw;
}
.logo-item img {
  max-height: 4rem;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity var(--transition);
}
.logo-item img:hover { opacity: 0.8; }


/* =============================================================================
   10b. "OUR EXPERTISE" HEADER — heading left, link right (home page)
   ============================================================================= */
/* ── Navbar ──────────────────────────────────────────────────────────── */
.vcg-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px 48px;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* Scrolled state */
.vcg-nav.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.3);
}

.vcg-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.vcg-nav-logo-link { display: flex; align-items: center; z-index: 50; position: relative; }
.vcg-nav-logo { height: 36px; width: auto; transition: all 0.3s ease; display: block; }

/* Desktop links */
.vcg-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.vcg-nav-link {
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: hsl(213, 45%, 20%); /* default: light theme = dark text */
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}
.vcg-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: hsl(47, 80%, 52%);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.vcg-nav-link:hover { color: hsl(206, 37%, 53%); }

/* Active link */
.vcg-nav-link.is-active {
  color: hsl(47, 80%, 52%);
}
.vcg-nav-link.is-active::after {
  transform: scaleX(1);
}

/* Dark theme overrides (applied via JS when over a dark section) */
.vcg-nav.theme-dark .vcg-nav-link         { color: rgba(255,255,255,0.9); }
.vcg-nav.theme-dark .vcg-nav-link:hover   { color: rgba(255,255,255,0.6); }
.vcg-nav.theme-dark .vcg-nav-link.is-active { color: hsl(47, 80%, 52%); }

/* Phone CTA button */
.vcg-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: hsl(47, 80%, 52%);
  color: hsl(213, 45%, 20%);
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 20px;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  transition: box-shadow 0.2s, transform 0.2s, opacity 0.2s;
}
.vcg-nav-phone:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  transform: translateY(-1px);
}

/* Mobile toggle — hidden on desktop */
.vcg-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 50;
  position: relative;
  color: hsl(213, 45%, 20%);
}
.vcg-nav.theme-dark .vcg-nav-toggle { color: #fff; }
.vcg-icon-close { display: none; }
.vcg-nav-toggle.is-open .vcg-icon-menu  { display: none; }
.vcg-nav-toggle.is-open .vcg-icon-close { display: block; color: hsl(213, 45%, 20%); }

/* ── Mobile menu overlay ─────────────────────────────────────────────── */
.vcg-mobile-menu {
  display: none; /* shown only on mobile */
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #fff;
  flex-direction: column;
  padding-top: 96px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  height: 100dvh;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.vcg-mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.vcg-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.vcg-mobile-link {
  font-family: var(--font-serif, 'new-atten-round', serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: hsl(213, 45%, 20%);
  text-decoration: none;
  transition: color 0.2s;
  opacity: 0;
  transform: translateX(-16px);
  transition: color 0.2s, opacity 0.3s ease, transform 0.3s ease;
}
.vcg-mobile-link:hover   { color: hsl(206, 37%, 53%); }
.vcg-mobile-link.is-active { color: hsl(47, 80%, 52%); }

.vcg-mobile-menu.is-open .vcg-mobile-link {
  opacity: 1;
  transform: translateX(0);
}
/* stagger each link */
.vcg-mobile-menu.is-open .vcg-mobile-link:nth-child(1) { transition-delay: 0.04s; }
.vcg-mobile-menu.is-open .vcg-mobile-link:nth-child(2) { transition-delay: 0.08s; }
.vcg-mobile-menu.is-open .vcg-mobile-link:nth-child(3) { transition-delay: 0.12s; }
.vcg-mobile-menu.is-open .vcg-mobile-link:nth-child(4) { transition-delay: 0.16s; }
.vcg-mobile-menu.is-open .vcg-mobile-link:nth-child(5) { transition-delay: 0.20s; }

.vcg-mobile-footer {
  margin-top: auto;
  padding-bottom: 48px;
}

.vcg-mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: hsl(47, 80%, 52%);
  color: hsl(213, 45%, 20%);
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 32px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: opacity 0.2s;
}
.vcg-mobile-phone:hover { opacity: 0.9; }

/* Responsive breakpoints */
@media (max-width: 768px) {
  .vcg-nav { padding: 20px 24px; }
  .vcg-nav.is-scrolled { padding: 12px 24px; }
  .vcg-nav-links  { display: none; }
  .vcg-nav-toggle { display: block; }
  .vcg-mobile-menu { display: flex; }
}


/* =============================================================================
   10b-2. CERAMIC Nano-Coating
   ============================================================================= */
.nano-section {
  position: relative;
  overflow: hidden;
  background: hsl(181, 62%, 40%);
  padding: 96px 48px;
}

.nano-bg-image {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.nano-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.nano-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: hsl(47, 80%, 52%);
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}

.nano-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left column */
.nano-badge {
  display: inline-block;
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
  background: hsl(47, 80%, 52%, 0.25);
  color: hsl(47, 80%, 85%);
  border: 1px solid hsl(47, 80%, 52%, 0.4);
}

.nano-heading {
  font-family: var(--font-serif, 'new-atten-round', serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 24px;
}

.nano-body {
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0 0 32px;
}

.nano-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nano-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
}

.nano-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(47, 80%, 52%);
  color: hsl(213, 45%, 20%); /* --color-secondary */
}

.nano-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: hsl(213, 45%, 20%);
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, box-shadow 0.2s;
}
.nano-cta:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Right column — stat grid */
.nano-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 360px;
  justify-self: center;
}

.nano-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  text-align: center;
  color: #fff;
}

.nano-stat-num {
  font-family: var(--font-serif, 'new-atten-round', serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(47, 72%, 75%);
  margin-bottom: 4px;
}

.nano-stat-label {
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Mobile: hide stats, single column */
@media (max-width: 768px) {
  .nano-section {
    padding: 72px 24px;
  }
  .nano-inner {
    grid-template-columns: 1fr;
  }
  .nano-stats {
    display: none;
  }
}

/* ── Scroll-in animations ─────────────────────────────────────────── */
.nano-animate[data-nano="left"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.nano-animate[data-nano="scale"] {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.nano-animate.nano-visible {
  opacity: 1;
  transform: none;
}


/* =============================================================================
   10c. GOOGLE REVIEWS SECTION
   ============================================================================= */
.reviews-section {
  padding: 6rem 1.5rem;
  background: hsl(210, 20%, 97%);
}
.reviews-section.reviews-dark { background: hsl(210, 64%, 12%); }

.reviews-header { text-align: center; margin-bottom: 3.5rem; }
.reviews-header .section-eyebrow { color: var(--color-gold); }
.reviews-header h2 { color: var(--color-secondary); margin-bottom: 1.25rem; }
.reviews-dark .reviews-header h2 { color: #fff; }

/* Google rating pill badge */
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid hsla(47, 80%, 52%, 0.35);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: transform var(--transition);
}
.reviews-badge:hover { transform: scale(1.05); }
.reviews-dark .reviews-badge { background: hsl(210, 50%, 20%); }
.reviews-badge-score { font-size: 0.875rem; font-weight: 700; color: hsl(210, 64%, 18%); }
.reviews-dark .reviews-badge-score { color: #fff; }
.reviews-badge-count { font-size: 0.75rem; color: hsl(210, 20%, 45%); }
.reviews-dark .reviews-badge-count { color: hsl(210, 20%, 65%); }

/* Star row (gold) */
.stars { display: inline-flex; align-items: center; gap: 2px; }
.stars svg { width: 0.9rem; height: 0.9rem; fill: hsl(47, 80%, 52%); stroke: none; }

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid hsl(210, 20%, 90%);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.reviews-dark .review-card {
  background: hsl(210, 50%, 18%);
  border-color: hsl(210, 40%, 28%);
  box-shadow: none;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
}
.review-card-top .google-icon { opacity: 0.7; }

.review-text {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: hsl(210, 20%, 35%);
  flex: 1;
}
.reviews-dark .review-text { color: hsl(210, 20%, 75%); }

.review-divider { height: 1px; margin: 0 1.5rem; background: hsl(210, 20%, 92%); }
.reviews-dark .review-divider { background: hsl(210, 40%, 26%); }

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
}
.review-author img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid hsla(47, 80%, 52%, 0.4);
  flex-shrink: 0;
}
.review-author-name { font-size: 0.875rem; font-weight: 700; color: hsl(210, 64%, 18%); }
.reviews-dark .review-author-name { color: #fff; }
.review-author-date { font-size: 0.75rem; color: hsl(210, 20%, 55%); margin-top: 2px; }

/* Bottom "read all" link */
.reviews-cta { text-align: center; margin-top: 2.5rem; }
.reviews-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(47, 80%, 45%);
  text-decoration: none;
}
.reviews-cta a:hover { text-decoration: underline; }


/* =============================================================================
   11. BEFORE / AFTER SLIDER
   ============================================================================= */
.slider-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

/* "After" image is the base layer */
.slider-after {
  position: absolute;
  inset: 0;
}
.slider-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* "Before" image clips from left — JS updates clip-path */
.slider-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);   /* default 50% */
  transition: clip-path 0s;       /* no transition for drag responsiveness */
}
.slider-before img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Divider line */
.slider-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.7);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

/* Drag handle circle */
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
  padding-left: 5px;
}

/* Chevrons SVG inside handle */
.slider-handle svg { color: var(--color-secondary); }

/* Before / After labels */
.slider-label {
  position: absolute;
  bottom: 0.75rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
}
.slider-label-before {
  right: 0.75rem;
  background: hsl(210, 100%, 23%, 0.85);
}
.slider-label-after {
  left: 0.75rem;
  background: hsl(181, 62%, 40%, 0.85);
}


/* =============================================================================
   12. LIGHTBOX
   ============================================================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: background var(--transition);
  z-index: 201;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* Prev / Next arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: background var(--transition);
  z-index: 201;
}
.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* Counter indicator */
.lightbox-counter {
  position: absolute;
  bottom: -2.5rem;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  white-space: nowrap;
}


/* =============================================================================
   13. CONTACT FORM
   ============================================================================= */
.w-8 {width: 40px;}
.h-1_5 {height: 7px; margin-bottom: 20px}
.mb-5 {margin-bottom: 30px;}
.mb-4 {margin-bottom: 20px;}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.9375rem;
  color: var(--color-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px hsl(181, 62%, 40%, 0.12);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-group .error-msg {
  font-size: 0.8rem;
  color: hsl(0, 62%, 45%);
  display: none;
}
.form-group.has-error .error-msg { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: hsl(0, 62%, 45%);
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-secondary);
  color: #fff;
  padding: 1rem 1.5rem;
  max-width: 22rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 300;
  transform: translateY(6rem);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-title { font-weight: 700; margin-bottom: 0.25rem; }
.toast-body { font-size: 0.875rem; color: rgba(255,255,255,0.75); }


/* =============================================================================
   14. CALL TO ACTION SECTION
   ============================================================================= */
.cta-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-accent) 0%, hsl(206, 37%, 40%) 60%, var(--color-secondary) 100%);
}

/* Dot grid overlay */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, white 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Glow blobs */
.cta-blob-1 {
  position: absolute;
  top: 0; right: 0;
  width: 20rem; height: 20rem;
  background: var(--color-gold);
  filter: blur(80px);
  opacity: 0.1;
  transform: translate(40%, -40%);
  pointer-events: none;
}
.cta-blob-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 16rem; height: 16rem;
  background: var(--color-primary);
  filter: blur(60px);
  opacity: 0.1;
  transform: translate(-30%, 30%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}
.cta-trusted {
  margin-top: 2rem;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}


/* =============================================================================
   15. PAGE: HOME
   ============================================================================= */

/* Full-screen hero */
.home-hero .hero-content {
  max-width: var(--max-width);
  text-align: center;
}
@media (min-width: 768px) {
  .home-hero .hero-content { text-align: left; }
}

.home-hero h1 {
  color: #fff;
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.home-hero .hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  max-width: 30rem;
  margin-bottom: 2.5rem;
}

/* Service cards on home */
.home-services {
  background: var(--color-bg);
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) { .home-services { padding: 5rem 3rem; } }

.service-home-card {
  position: relative;
  height: 18.75rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition);
}
.service-home-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.service-home-card-img {
  height: 10.5rem;
  flex-shrink: 0;
  overflow: hidden;
}
.service-home-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-home-card:hover .service-home-card-img img {
  transform: scale(1.07);
}

.service-home-num {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.service-home-body {
  flex: 1;
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-home-body h3 {
  font-size: 0.9375rem;
  color: var(--color-secondary);
  line-height: 1.3;
}
.service-home-body p {
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* Why choose us grid */
.why-grid {
  background: var(--color-bg);
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) { .why-grid { padding: 5rem 3rem; } }


/* =============================================================================
   16. PAGE: SERVICES
   ============================================================================= */

/* ── Services Page Hero Header ───────────────────────────────────────── */
.svc-hero {
  position: relative;
  padding: 80px 24px;
  color: #fff;
  overflow: hidden;
}

.svc-hero-badge {
  display: inline-block;
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 20px;
  background: hsl(47, 80%, 52%, 0.25);
  color: hsl(47, 80%, 80%);
  border: 1px solid hsl(47, 80%, 52%, 0.4);
}

/* Background photo */
.svc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay */
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    hsl(210, 100%, 23%, 0.85) 0%,
    hsl(206, 37%,  30%, 0.80) 60%,
    hsl(181, 41%,  30%, 0.85) 100%
  );
}

/* Gold glow orb — top right */
.svc-hero-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: hsl(47, 80%, 52%);
  filter: blur(80px);
  opacity: 0.2;
  transform: translate(40%, -40%);
  z-index: 1;
  pointer-events: none;
}

/* Content */
.svc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.svc-hero-content {
  margin-top: 60px; /* clears fixed navbar */
}

.svc-hero-heading {
  font-family: var(--font-serif, 'new-atten-round', serif);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #fff;
}

.svc-hero-accent {
  font-style: italic;
  font-weight: 300;
  color: hsl(47, 72%, 70%);
}

.svc-hero-body {
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin: 0;
}

/* ── Fade-up animation ───────────────────────────────────────────────── */
.svc-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.svc-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .svc-hero { padding: 60px 20px; }
}

.service-section {
  padding: 5rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px) { .service-section { padding: 5rem 3rem; } }
.service-section:last-of-type { border-bottom: none; }

/* Alternating layout: odd rows image-left, even rows image-right */
.service-row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .service-row { flex-direction: row; align-items: center; gap: 3rem; }
  .service-row.reverse { flex-direction: row-reverse; }
}

.service-media {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 768px) { .service-media { width: 50%; } }

.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.service-media:hover img { transform: scale(1.04); }

.service-text {
  padding: 2rem 2.5rem;
  border: 1px solid var(--color-border);
  flex: 1;
}

.service-text-bar {
  width: 2.5rem; height: 6px;
  margin-bottom: 1.25rem;
}
.service-text h2 { margin-bottom: 1.25rem; font-size: 2rem; }
.service-text > p { margin-bottom: 2rem; font-size: 1.0625rem; }

/* Benefits list */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary);
}
.benefit-check {
  width: 1.5rem; height: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-check svg { color: #fff; }


/* About page — different gradient direction and glow position */
.svc-hero--about .svc-hero-overlay {
  background: linear-gradient(
    135deg,
    hsl(181, 41%, 30%, 0.85)  0%,
    hsl(206, 37%, 35%, 0.80) 50%,
    hsl(210, 64%, 20%, 0.85) 100%
  );
}

.svc-hero--about .svc-hero-glow {
  top: auto;
  bottom: 0;
  right: 0;
  transform: translate(0, 0);
  opacity: 0.15;
  filter: blur(100px);
}


/* Properties page — different gradient, glow moves to top-left */
.svc-hero--properties .svc-hero-overlay {
  background: linear-gradient(
    135deg,
    hsl(210, 100%, 23%, 0.85)  0%,
    hsl(206, 37%,  30%, 0.80) 60%,
    hsl(181, 41%,  28%, 0.85) 100%
  );
}

.svc-hero--properties .svc-hero-glow {
  top: 0;
  right: auto;
  left: 0;
  transform: translate(-30%, -30%);
  opacity: 0.15;
  filter: blur(80px);
  width: 288px;
  height: 288px;
}


/* Contact page — gradient, two glows, larger heading, CTA button */
.svc-hero--contact .svc-hero-overlay {
  background: linear-gradient(
    135deg,
    hsl(181, 41%, 32%, 0.85)  0%,
    hsl(206, 37%, 35%, 0.80) 50%,
    hsl(210, 64%, 20%, 0.85) 100%
  );
}

/* Gold glow — top right (same position as services, just override opacity) */
.svc-hero--contact .svc-hero-glow {
  opacity: 0.15;
}

/* Second glow — blue, bottom left */
.svc-hero-glow-2 {
  display: none; /* hidden by default; shown only on contact */
}
.svc-hero--contact .svc-hero-glow-2 {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: hsl(206, 60%, 56%);
  filter: blur(60px);
  opacity: 0.1;
  transform: translate(-30%, 30%);
  z-index: 1;
  pointer-events: none;
}

/* Larger h1 for contact page */
.svc-hero-heading--xl {
  font-size: clamp(3rem, 8vw, 4.5rem);
}

/* Hero CTA phone button */
.svc-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: hsl(47, 80%, 52%);
  color: hsl(210, 100%, 23%);
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 20px 32px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s, transform 0.2s;
}
.svc-hero-cta:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}


/* =============================================================================
   17. PAGE: ABOUT
   ============================================================================= */
.about-story {
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) { .about-story { padding: 5rem 3rem; } }

.about-story-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .about-story-inner { flex-direction: row; align-items: flex-start; gap: 5rem; }
}

.about-story-text { flex: 1; }
.about-story-text h2 { margin-bottom: 1.5rem; }
.about-story-text p  { margin-bottom: 1.25rem; font-size: 1.0625rem; }

.about-story-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
@media (min-width: 768px) { .about-story-img { width: 40%; } }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }

/* Values pills */
.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.value-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-secondary);
}
.value-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}


/* =============================================================================
   18. PAGE: PROPERTIES
   ============================================================================= */

/* F1 feature card */
.f1-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  height: 28rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.f1-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.f1-card:hover img { transform: scale(1.04); }

.f1-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(210, 100%, 10%, 0.85) 0%, transparent 55%);
}
.f1-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
}
.f1-card-content .eyebrow {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--color-gold);
  color: var(--color-secondary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.f1-card-content h3 {
  color: #fff;
  font-size: 1.625rem;
  margin-bottom: 0.5rem;
}
.f1-card-content p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.f1-gallery-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  cursor: pointer;
}

/* Property grid */
.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
}
@media (min-width: 640px)  { .property-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .property-grid { grid-template-columns: repeat(3, 1fr); } }

.property-card {
  position: relative;
  height: 15rem;
  overflow: hidden;
  background: var(--color-secondary);
  cursor: default;
}
.property-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover img { transform: scale(1.06); }

/* Default (non-hover) label overlay */
.property-default-label {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(10,20,50,0.7) 0%, transparent 100%);
  transition: opacity 0.4s ease;
  padding: 1.25rem;
  text-align: center;
}
.property-card:hover .property-default-label { opacity: 0; }

.property-default-label .prop-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.property-default-label .prop-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}

/* Hover overlay */
.property-hover-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10,20,50,0.92) 0%, rgba(10,20,50,0.3) 60%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.property-card:hover .property-hover-label {
  opacity: 1; transform: translateY(0);
}
.property-hover-label .prop-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #fff;
  margin-top: 0.5rem;
}
.property-hover-label .prop-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

/* Tag badge */
.prop-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.2);
}


/* =============================================================================
   19. PAGE: BLOG
   ============================================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.blog-card-img {
  height: 13rem;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 0.875rem;
}

.blog-card-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  background: hsl(206, 60%, 56%, 0.1);
  color: var(--color-primary);
}

.blog-card-body h3 {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  color: hsl(213, 45%, 20%);
  transition: gap 0.2s;
  gap: 8px;
  background: rgba(231, 188, 35, 0.5);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 20px;
  width: fit-content;
}
.blog-card-link:hover { gap: 0.6rem; }

/* Blog post article (blog-post.html) */
.blog-post-article {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.blog-post-article h1 { font-size: 2.25rem; margin-bottom: 1rem; }
.blog-post-article h2 { font-size: 1.5rem; margin: 2.5rem 0 0.875rem; }
.blog-post-article p  { margin-bottom: 1.25rem; font-size: 1.0625rem; }



/* ── Blog Post Hero ─────────────────────────────────────────────────── */
.bp-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: min(70vh, 600px);
}
.bp-hero img.bp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsl(210, 100%, 10%, 0.90)  0%,
    hsl(210, 100%, 10%, 0.55) 50%,
    hsl(210, 100%, 10%, 0.25) 100%
  );
}
.bp-hero-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  height: 160px;
  background: hsl(47, 80%, 52%);
  filter: blur(60px);
  opacity: 0.2;
  pointer-events: none;
}
.bp-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 0px 64px;
  max-width: 48rem;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.bp-hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.bp-hero-meta svg { flex-shrink: 0; }
.bp-hero-title {
  font-family: var(--font-serif, 'new-atten-round', serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  max-width: 760px;
  margin: 0;
}

/* ── Blog Post Article Body ─────────────────────────────────────────── */
.bp-body-wrap {
  background: #fff;
  padding: 80px 24px;
}
.bp-body {
  max-width: 48rem;
  margin: 0 auto;
}
.bp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(215, 14%, 50%);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.2s;
}
.bp-back:hover { color: hsl(206, 37%, 53%); }

.bp-sections { display: flex; flex-direction: column; gap: 40px; }

.bp-section-heading {
  font-family: var(--font-serif, 'new-atten-round', serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: hsl(210, 100%, 23%);
  line-height: 1.25;
  margin: 0 0 16px;
}
.bp-para {
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 1.0625rem;
  font-weight: 300;
  color: hsl(215, 14%, 40%);
  line-height: 1.8;
  margin: 0 0 16px;
}
.bp-para:last-child { margin-bottom: 0; }

.bp-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 1rem;
  font-weight: 300;
  color: hsl(215, 14%, 40%);
  line-height: 1.7;
}
.bp-check {
  flex-shrink: 0;
  margin-top: 3px;
  color: hsl(47, 80%, 52%);
}

.bp-bottom-bar {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid hsl(214, 32%, 91%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.bp-all-articles {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(215, 14%, 50%);
  text-decoration: none;
  transition: color 0.2s;
}
.bp-all-articles:hover { color: hsl(206, 37%, 53%); }
.bp-tag {
  display: inline-block;
  font-family: var(--font-sans, 'new-atten-round', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: hsl(47, 80%, 52%, 0.15);
  color: hsl(47, 60%, 40%);
  border: 1px solid hsl(47, 80%, 52%, 0.35);
}

@media (max-width: 768px) {
  .bp-hero-content { padding: 24px 24px 48px; }
  .bp-body-wrap { padding: 56px 20px; }
}




/* =============================================================================
   20. SCROLL REVEAL ANIMATIONS
   ============================================================================= */

/* Initial hidden state — JS removes this class when element enters viewport */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* =============================================================================
   WORDPRESS THEME ADDITIONS
   ============================================================================= */

/* Blog grid */
.blog-section { padding: 5rem 1.5rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card { background: #fff; border: 1px solid var(--color-border); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--transition); }
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.blog-card-img-link { display: block; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; font-size: 0.8125rem; color: var(--color-muted); margin-bottom: 0.75rem; }
.blog-card-category { background: var(--color-primary); color: #fff; padding: 0.15rem 0.6rem; border-radius: 2px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.03em; }
.blog-card-title { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--color-primary); }
.blog-card-excerpt { color: var(--color-muted); font-size: 0.9375rem; line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.blog-card-link { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--color-primary); font-weight: 600; font-size: 0.9rem; transition: gap var(--transition); }
.blog-card-link:hover { gap: 0.6rem; }

/* Blog post content */
.blog-post-content h2, .blog-post-content h3 { color: var(--color-secondary); margin: 2rem 0 0.75rem; font-family: var(--font-serif); }
.blog-post-content p { margin-bottom: 1.25rem; }
.blog-post-content ul, .blog-post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-post-content li { margin-bottom: 0.4rem; }
.blog-post-content img { border-radius: 4px; margin: 1.5rem 0; }

/* Toast */
.toast-notification {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: hsl(181,62%,35%); color: #fff;
  padding: 1rem 1.5rem; border-radius: 4px;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(120%); opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  max-width: 340px; font-weight: 500;
}
.toast-notification.show { transform: translateY(0); opacity: 1; }

/* Blog pagination */
.blog-pagination { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border: 1px solid var(--color-border); border-radius: 4px; color: var(--color-text); font-weight: 600; font-size: 0.9rem; transition: all var(--transition); }
.blog-pagination .page-numbers.current, .blog-pagination .page-numbers:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.blog-pagination .prev, .blog-pagination .next { width: auto; padding: 0 1rem; }

/* Contact form wrapper */
.contact-form-wrap { background: #fff; border: 1px solid var(--color-border); padding: 2.5rem; border-radius: 4px; }

/* WP Admin bar offset */
.admin-bar .vcg-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .vcg-nav { top: 46px; } }

/* =============================================================================
   DROPDOWN NAV
   ============================================================================= */
.vcg-nav-item { position: relative; display: flex; align-items: center; }
.vcg-has-dropdown > .vcg-nav-link { display: flex; align-items: center; gap: 4px; }
.vcg-drop-arrow { transition: transform 0.25s ease; flex-shrink: 0; }
.vcg-has-dropdown:hover .vcg-drop-arrow,
.vcg-has-dropdown:focus-within .vcg-drop-arrow { transform: rotate(180deg); }

.vcg-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: #fff;
  border: 1px solid hsl(210,20%,90%);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
}
.vcg-has-dropdown:hover .vcg-dropdown,
.vcg-has-dropdown:focus-within .vcg-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.vcg-dropdown::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 10px;
}
/* arrow pointer */
.vcg-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid hsl(210,20%,90%);
  border-top: 1px solid hsl(210,20%,90%);
  transform: translateX(-50%) rotate(45deg);
}
.vcg-dropdown-inner { padding: 0.5rem; display: flex; flex-direction: column; gap: 2px; }
.vcg-dropdown-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  color: var(--color-text);
  font-size: 0.875rem; font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.vcg-dropdown-item:hover { background: hsl(206,37%,96%); color: var(--color-primary); }
.vcg-drop-icon {
  width: 2rem; height: 2rem; border-radius: 6px;
  background: hsl(206,37%,96%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.15s ease;
}
.vcg-dropdown-item:hover .vcg-drop-icon { background: hsl(206,60%,56%); }
.vcg-dropdown-item:hover .vcg-drop-icon svg { stroke: #fff; }
/* dark theme nav dropdown */
.vcg-nav.theme-dark .vcg-dropdown { background: hsl(210,64%,12%); border-color: hsl(210,30%,20%); }
.vcg-nav.theme-dark .vcg-dropdown::before { background: hsl(210,64%,12%); border-color: hsl(210,30%,20%); }
.vcg-nav.theme-dark .vcg-dropdown-item { color: rgba(255,255,255,0.85); }
.vcg-nav.theme-dark .vcg-dropdown-item:hover { background: hsl(210,50%,18%); color: #fff; }
.vcg-nav.theme-dark .vcg-drop-icon { background: hsl(210,50%,18%); }

/* mobile submenu */
.vcg-mobile-submenu { padding-left: 1rem; display: flex; flex-direction: column; gap: 2px; margin-bottom: 0.5rem; }
.vcg-mobile-sublink { font-size: 0.875rem; color: rgba(255,255,255,0.65); padding: 0.4rem 0.75rem; border-radius: 4px; transition: color 0.2s; }
.vcg-mobile-sublink:hover { color: #fff; }

/* =============================================================================
   HOME — HOW IT WORKS
   ============================================================================= */
.how-it-works { padding: 5rem 1.5rem; background: #fff; }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}
@media (max-width: 768px) { .hiw-grid { grid-template-columns: 1fr; gap: 2rem; } }

.hiw-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hiw-num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 800; color: hsl(210,20%,92%); line-height: 1; margin-bottom: 1rem; }
.hiw-icon-wrap { width: 4rem; height: 4rem; border-radius: 50%; border: 2px solid; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.hiw-step h3 { font-size: 1.125rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 0.6rem; }
.hiw-step p { color: var(--color-muted); font-size: 0.9375rem; line-height: 1.65; }
.hiw-connector {
  display: none;
  position: absolute; top: 4.5rem; right: -1.25rem;
  width: 2.5rem; height: 2px;
  background: linear-gradient(90deg, hsl(206,60%,70%), hsl(181,60%,60%));
}
@media (min-width: 769px) { .hiw-step:not(:last-child) .hiw-connector { display: block; } }

/* =============================================================================
   HOME — STATS BAND
   ============================================================================= */
.stats-band { padding: 3.5rem 1.5rem; background: var(--color-secondary); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-item { text-align: center; }
.stat-num { display: block; font-family: var(--font-serif); font-size: clamp(2.25rem,4vw,3rem); font-weight: 800; color: hsl(47,80%,62%); line-height: 1.1; margin-bottom: 0.5rem; }
.stat-unit { font-size: 0.65em; }
.stat-label { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.4; max-width: 180px; margin: 0 auto; }

/* =============================================================================
   HOME — COMPARE TABLE
   ============================================================================= */
.compare-section { padding: 5rem 1.5rem; background: #fff; }
.compare-table { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
@media (max-width: 680px) { .compare-table { grid-template-columns: 1fr; } .compare-vs { display: none; } }
.compare-col { padding: 2rem; }
.compare-col--bad { background: hsl(0,0%,98%); }
.compare-col--good { background: hsl(210,60%,97%); }
.compare-col-head { margin-bottom: 1.25rem; }
.compare-badge { display: inline-block; padding: 0.3rem 0.85rem; border-radius: 30px; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.02em; }
.compare-badge--bad { background: hsl(0,0%,88%); color: hsl(0,0%,35%); }
.compare-badge--good { background: hsl(206,60%,56%); color: #fff; }
.compare-vs { display: flex; align-items: center; justify-content: center; background: var(--color-secondary); color: rgba(255,255,255,0.4); font-weight: 800; font-size: 0.875rem; padding: 0 1.25rem; letter-spacing: 0.05em; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.compare-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; line-height: 1.5; }
.compare-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; stroke-width: 2.5; }
.compare-item--no svg { stroke: hsl(0,65%,55%); }
.compare-item--no { color: var(--color-muted); }
.compare-item--yes svg { stroke: hsl(181,62%,40%); }
.compare-item--yes { color: var(--color-text); font-weight: 500; }

/* =============================================================================
   SERVICES — QUICK NAV
   ============================================================================= */
.svc-quicknav { padding: 1.25rem 1.5rem; background: var(--color-secondary); }
.svc-quicknav-inner { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; max-width: 1100px; margin: 0 auto; }
.svc-quicknav-item { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.4rem 0.9rem; border-radius: 30px; font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s; white-space: nowrap; }
.svc-quicknav-item:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); }
.svc-quicknav-item svg { opacity: 0.6; }

/* =============================================================================
   SERVICES — TRUST BAR
   ============================================================================= */
.svc-trust-bar { padding: 4rem 1.5rem; background: #fff; border-top: 1px solid var(--color-border); }
.svc-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
@media (max-width: 900px) { .svc-trust-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .svc-trust-grid { grid-template-columns: 1fr; } }
.svc-trust-item { display: flex; align-items: flex-start; gap: 1rem; }
.svc-trust-icon { width: 3rem; height: 3rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-trust-label { font-weight: 700; color: var(--color-secondary); font-size: 0.9375rem; margin-bottom: 0.2rem; }
.svc-trust-sub { font-size: 0.8125rem; color: var(--color-muted); line-height: 1.4; }

/* =============================================================================
   SERVICES — FAQ
   ============================================================================= */
.svc-faq { padding: 5rem 1.5rem; }
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (max-width: 720px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item { background: #fff; border: 1px solid var(--color-border); border-radius: 8px; padding: 1.5rem; transition: box-shadow 0.2s ease; }
.faq-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.faq-q { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.faq-q svg { flex-shrink: 0; margin-top: 3px; }
.faq-q h3 { font-size: 0.9375rem; font-weight: 700; color: var(--color-secondary); line-height: 1.4; margin: 0; }
.faq-a { font-size: 0.875rem; color: var(--color-muted); line-height: 1.7; margin: 0; padding-left: calc(18px + 0.75rem); }

/* =============================================================================
   SERVICES — PROCESS STEPS
   ============================================================================= */
.svc-process { padding: 5rem 1.5rem; background: #fff; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.process-num { width: 3.5rem; height: 3.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.25rem; margin-bottom: 1rem; flex-shrink: 0; }
.process-connector { display: none; position: absolute; top: 1.75rem; right: -1rem; width: 2rem; height: 2px; background: hsl(210,20%,88%); }
@media (min-width: 901px) { .process-step:not(:last-child) .process-connector { display: block; } }
.process-step h3 { font-size: 0.9375rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; color: var(--color-muted); line-height: 1.65; }

/* =============================================================================
   ABOUT — MISSION SECTION
   ============================================================================= */
.about-mission { padding: 5rem 1.5rem; background: #fff; }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: 1100px; margin: 0 auto; }
@media (max-width: 820px) { .about-mission-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-mission-text .section-eyebrow { margin-bottom: 0.75rem; }
.about-mission-text h2 { margin-bottom: 1.25rem; }
.about-mission-text p { color: var(--color-muted); line-height: 1.75; margin-bottom: 1rem; }
.about-values-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.about-val-pill { display: flex; align-items: center; gap: 0.6rem; background: hsl(210,20%,97%); padding: 0.4rem 0.85rem 0.4rem 0.5rem; border-radius: 30px; font-size: 0.8125rem; font-weight: 600; color: var(--color-secondary); }

.about-mission-stats { display: flex; flex-direction: column; gap: 1.25rem; }
.about-mstat { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 1.5rem; background: hsl(210,20%,98%); border-radius: 8px; border-left: 3px solid var(--color-primary); }
.about-mstat-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 800; color: var(--color-primary); line-height: 1; white-space: nowrap; min-width: 70px; }
.about-mstat-label { font-weight: 700; color: var(--color-secondary); font-size: 0.9rem; }
.about-mstat-sub { font-size: 0.8125rem; color: var(--color-muted); margin-top: 0.1rem; }

/* =============================================================================
   ABOUT — SERVICE AREAS
   ============================================================================= */
.about-areas { padding: 5rem 1.5rem; }
.areas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .areas-grid { grid-template-columns: 1fr; } }
.area-card { background: #fff; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; transition: box-shadow 0.2s; }
.area-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.area-card-bar { height: 4px; }
.area-card-body { padding: 1.25rem 1.5rem; }
.area-card-body h3 { font-size: 0.9375rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 0.4rem; }
.area-card-body p { font-size: 0.8125rem; color: var(--color-muted); line-height: 1.6; }

/* =============================================================================
   PROPERTIES — STATS BAND
   ============================================================================= */
.props-stats-band { padding: 3.5rem 1.5rem; background: var(--color-secondary); }

/* =============================================================================
   PROPERTIES — QUOTE SECTION
   ============================================================================= */
.props-quote-section { padding: 5rem 1.5rem; background: hsl(210,64%,13%); }
.props-quote { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.props-quote-mark { width: 48px; height: auto; color: hsl(47,80%,52%,0.3); margin-bottom: 1.5rem; }
.props-quote blockquote { font-family: var(--font-serif); font-size: clamp(1.1rem,2.5vw,1.4rem); color: rgba(255,255,255,0.9); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.props-quote-author { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.props-quote-star { color: hsl(47,80%,52%); font-size: 1.1rem; letter-spacing: 3px; }
.props-quote-author span { font-size: 0.875rem; color: rgba(255,255,255,0.5); font-weight: 600; }

/* =============================================================================
   INNER SERVICE PAGE
   ============================================================================= */

/* Hero accent bar */
.is-hero { position: relative; }
.is-hero .svc-hero-content { text-align: center; }
.is-hero .svc-hero-heading { max-width: 700px; margin-left: auto; margin-right: auto; }
.is-hero .svc-hero-body { margin-left: auto; margin-right: auto; }
.is-hero .btn-group { justify-content: center; }
.is-hero .is-breadcrumb { display: inline-flex; margin-bottom: 1rem; }
.is-hero-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  opacity: 0.8;
  z-index: 10;
}

/* Breadcrumb back link */
.is-breadcrumb {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.65); font-size: 0.8125rem; font-weight: 600;
  margin-bottom: 1rem; transition: color 0.2s;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.is-breadcrumb:hover { color: rgba(255,255,255,0.95); }

/* Detail section */
.is-detail-section { padding: 5rem 1.5rem; background: #fff; }
.is-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .is-detail-row { grid-template-columns: 1fr; gap: 2.5rem; }
}
.is-detail-media { border-radius: 8px; overflow: hidden; }
.is-detail-media img { width: 100%; height: 420px; object-fit: cover; display: block; border-radius: 8px; }
.is-detail-media .slider-wrap { height: 420px; border-radius: 8px; overflow: hidden; }
@media (max-width: 860px) {
  .is-detail-media img,
  .is-detail-media .slider-wrap { height: 280px; }
}
.is-detail-text { position: relative; padding: 0; }
.is-detail-bar {
  width: 3.5rem; height: 4px; border-radius: 2px;
  margin-bottom: 1.25rem;
}
.is-detail-text h2 { margin-bottom: 1rem; }
.is-detail-text p { color: var(--color-muted); line-height: 1.75; margin-bottom: 0.5rem; }

/* Why section */
.is-why-section { padding: 5rem 1.5rem; }
.is-why-card { padding: 2rem; border:none; }
.is-why-icon {
  width: 3.25rem; height: 3.25rem; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.is-why-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 0.6rem; }
.is-why-card p { font-size: 0.875rem; color: var(--color-muted); line-height: 1.7; }

/* Process section */
.is-process-section { padding: 5rem 1.5rem; background: #fff; }
.is-process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) { .is-process-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .is-process-grid { grid-template-columns: 1fr; } }
.is-process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
}
.is-process-num {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 1rem; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.is-process-connector {
  display: none;
  position: absolute; top: 1.75rem; right: -1rem;
  width: 2rem; height: 2px;
  background: hsl(210,20%,88%);
}
@media (min-width: 901px) { .is-process-step:not(:last-child) .is-process-connector { display: block; } }
.is-process-step h3 { font-size: 0.9375rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 0.5rem; }
.is-process-step p { font-size: 0.8125rem; color: var(--color-muted); line-height: 1.65; }

/* Stats band */
.is-stats-band { padding: 3.5rem 1.5rem; }

/* FAQ section */
.is-faq-section { padding: 5rem 1.5rem; }
.is-faq-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.25rem;
}
@media (max-width: 720px) { .is-faq-grid { grid-template-columns: 1fr; } }

/* Other services grid */
.is-other-services { padding: 5rem 1.5rem; background: #fff; border-top: 1px solid var(--color-border); }
.is-other-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1rem;
}
@media (max-width: 1024px) { .is-other-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px)  { .is-other-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 380px)  { .is-other-grid { grid-template-columns: 1fr; } }

.is-other-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.75rem; padding: 1.5rem 1rem;
  border: 1px solid var(--color-border); border-radius: 8px;
  color: var(--color-secondary);
  font-size: 0.8125rem; font-weight: 600; line-height: 1.4;
  transition: all 0.2s ease;
}
.is-other-card:hover {
  border-color: var(--color-primary);
  background: hsl(206,37%,97%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.is-other-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.is-other-arrow {
  opacity: 0; margin-top: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: var(--color-primary);
}
.is-other-card:hover .is-other-arrow { opacity: 1; transform: translateX(3px); }

/* =============================================================================
   SERVICES PAGE — INNER SERVICE CARDS
   ============================================================================= */
.svc-inner-cards-section { padding: 4rem 1.5rem; background: #f3f6fa; }

.svc-inner-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px)  { .svc-inner-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .svc-inner-cards-grid { grid-template-columns: 1fr; } }

.svc-inner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  color: var(--color-text);
}
.svc-inner-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}
.svc-inner-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.svc-inner-card:hover .svc-inner-card-icon {
  filter: brightness(1.08);
}
.svc-inner-card-body { flex: 1; }
.svc-inner-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.svc-inner-card-body p {
  font-size: 0.8375rem;
  color: var(--color-muted);
  line-height: 1.65;
}
.svc-inner-card-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.svc-inner-card:hover .svc-inner-card-arrow {
  transform: translateX(4px);
}
.svc-inner-card-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.svc-inner-card:hover .svc-inner-card-bar { opacity: 1; }

/* =============================================================================
   HOME — 6-TILE SERVICES GRID (linked, no buttons)
   ============================================================================= */
.home-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px)  { .home-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .home-svc-grid { grid-template-columns: 1fr; } }

.home-svc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  color: var(--color-text);
}
.home-svc-tile:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.home-svc-tile-img {
  position: relative;
  height: 11rem;
  overflow: hidden;
  flex-shrink: 0;
}
.home-svc-tile-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.home-svc-tile:hover .home-svc-tile-img img { transform: scale(1.07); }

.home-svc-tile-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-svc-tile-num {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  width: 2.1rem; height: 2.1rem;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 2;
}

.home-svc-tile-body {
  flex: 1;
  padding: 1rem 1.1rem 0.75rem;
}
.home-svc-tile-body h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.home-svc-tile-body p {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.home-svc-tile-arrow {
  padding: 0.65rem 1.1rem 0.9rem;
  display: flex;
  align-items: center;
  transition: transform 0.22s ease;
}
.home-svc-tile:hover .home-svc-tile-arrow { transform: translateX(5px); }

/* =============================================================================
   INNER SERVICE — TRUST STRIP
   ============================================================================= */
.is-trust-strip {
  padding: 5rem 1.5rem;
  background: var(--color-secondary);
}
.is-trust-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .is-trust-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* Left */
.is-trust-left .section-eyebrow { color: hsl(47,80%,62%); }
.is-trust-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.is-trust-review {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.75rem;
}
.is-trust-stars {
  display: flex; gap: 2px;
  margin-bottom: 0.75rem;
}
.is-trust-quote {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.6rem;
}
.is-trust-author {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.is-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.is-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Right */
.is-trust-logos-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.is-trust-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 480px) {
  .is-trust-logos-grid { grid-template-columns: repeat(3, 1fr); }
}
.is-trust-logo-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/2;
}
.is-trust-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.is-trust-logo-item:hover img { opacity: 0.9; }

.is-trust-google {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
}
.is-trust-rating {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
.is-trust-stars-sm {
  color: hsl(47,80%,62%);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.is-trust-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-left: auto;
  font-weight: 600;
}

/* =============================================================================
   CONTACT PAGE — Full redesign
   ============================================================================= */

.cnt-section {
  padding: 5rem 1.5rem;
  background: #f3f6fa;
}

.cnt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .cnt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Info Panel ── */
.cnt-info-bar {
  width: 3rem; height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin-bottom: 1rem;
}
.cnt-info .section-eyebrow { margin-bottom: 0.5rem; }
.cnt-info-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--color-secondary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cnt-info-intro {
  color: var(--color-muted);
  line-height: 1.75;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.cnt-cards { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }

.cnt-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  color: var(--color-text);
}
.cnt-card:not(.cnt-card--plain):hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateX(3px);
}
.cnt-card-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cnt-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}
.cnt-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}
.cnt-card-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cnt-card-arrow {
  color: var(--color-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}
.cnt-card:hover .cnt-card-arrow { transform: translateX(3px); color: var(--color-primary); }

.cnt-trust {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cnt-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8375rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* ── Form Panel ── */
.cnt-form-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.cnt-form-head {
  padding: 1.75rem 2rem 0;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
}
.cnt-form-head h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.3rem;
}
.cnt-form-head p {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.cnt-form {
  padding: 0 2rem 2rem;
}

.cnt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .cnt-form-row { grid-template-columns: 1fr; } }

.cnt-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.cnt-form-group label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.01em;
}
.cnt-required { color: hsl(0,65%,55%); margin-left: 2px; }

.cnt-form-group input,
.cnt-form-group select,
.cnt-form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid hsl(210,20%,88%);
  border-radius: 7px;
  font-size: 0.9rem;
  color: var(--color-text);
  background: hsl(210,20%,99%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  font-family: inherit;
  appearance: none;
}
.cnt-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.cnt-form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.cnt-form-group input:focus,
.cnt-form-group select:focus,
.cnt-form-group textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 3px hsl(206,60%,56%,0.12);
}
.cnt-form-group input::placeholder,
.cnt-form-group textarea::placeholder {
  color: hsl(210,15%,65%);
}

/* Validation states */
.cnt-error {
  display: none;
  font-size: 0.75rem;
  color: hsl(0,65%,55%);
  font-weight: 600;
}
.cnt-form-group.cnt-has-error .cnt-error { display: block; }
.cnt-form-group.cnt-has-error input,
.cnt-form-group.cnt-has-error select,
.cnt-form-group.cnt-has-error textarea {
  border-color: hsl(0,65%,55%);
  box-shadow: 0 0 0 3px hsl(0,65%,55%,0.1);
}
.cnt-form-group.cnt-is-valid input,
.cnt-form-group.cnt-is-valid select,
.cnt-form-group.cnt-is-valid textarea {
  border-color: hsl(142,60%,45%);
}

/* Submit button */
.cnt-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
  position: relative;
}
.cnt-submit:hover:not(:disabled) {
  background: hsl(206,60%,56%);
  box-shadow: 0 4px 16px hsl(206,60%,56%,0.35);
  transform: translateY(-1px);
}
.cnt-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.cnt-submit-loading {
  display: none;
  animation: cnt-spin 0.8s linear infinite;
}
.cnt-submit.cnt-loading .cnt-submit-text { display: none; }
.cnt-submit.cnt-loading .cnt-submit-icon { display: none; }
.cnt-submit.cnt-loading .cnt-submit-loading { display: flex; }

@keyframes cnt-spin { to { transform: rotate(360deg); } }

/* Toast */
.vcg-toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: hsl(142,55%,38%);
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
  max-width: 340px;
}
.vcg-toast.show { transform: translateY(0); opacity: 1; }
