/* ==========================================================================
   PM Carpet Cleaning – Complete Design System (mobile-first)
   ========================================================================== */

:root {
  --primary: #1f1f1f;
  --primary-light: #4f4f4f;
  --primary-dark: #111111;
  --accent: #1e3a5f;
  --accent-light: #2d4d75;
  --accent-dark: #0d2847;
  --gold: #c4a24b;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --text-light: #6b6b6b;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --bg-dark: #0d2847;
  --border: #e0e0e0;
  --border-light: #eeeeee;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.08);
  --shadow: 0 4px 10px rgba(0,0,0,.08);
  --shadow-md: 0 12px 18px rgba(0,0,0,.12);
  --shadow-lg: 0 18px 28px rgba(0,0,0,.14);
  --shadow-xl: 0 28px 50px rgba(0,0,0,.18);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.22s ease;
  --paper: #ffffff;
  --paper-lines: rgba(0,0,0,.04);
  --wood: #0d2847;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, sans-serif;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', 'Merriweather', 'Times New Roman', 'Times', Georgia, serif;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
a { color: var(--accent-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Classic Layout (pmcleaning.net matching) --- */
.classic-hero {
  background: var(--paper);
  padding: 0 0 2rem;
}
.classic-hero-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.classic-hero-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.classic-hero-overlay {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.classic-hero-logo {
  margin-top: 0;
}
.classic-hero-logo {
  width: 150px !important;
  height: 150px !important;
  max-width: 150px;
  max-height: 150px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.2));
}
.classic-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
  z-index: 2;
}
.classic-hero-content h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  margin: 2.25rem 0 0.5rem;
  font-weight: 500;
}
.classic-hero-content p {
  margin: 0 0 1rem;
  font-weight: 600;
}
.classic-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.classic-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,.15));
  pointer-events: none;
  z-index: 1;
}
.classic-hero-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.classic-hero-card {
  border: 1px solid var(--border);
  background: #fffdf8;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.classic-logo {
  display: block;
  margin: 0 auto 0.75rem;
  max-width: 140px;
  height: auto;
}
.classic-call {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 0.35rem;
  font-weight: 700;
}
.classic-hero h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 0 0 0.5rem;
  font-weight: 900;
}
.classic-hero-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 0 0 0.5rem;
  font-weight: 900;
}
.classic-sub {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
}
.classic-email {
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.classic-email a { color: var(--accent-dark); }
.classic-cta {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-weight: 600;
}
.classic-phone {
  margin: 0.65rem 0 0;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.classic-location {
  text-align: center;
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  font-weight: 600;
}

.classic-section {
  padding: 2.75rem 0;
}
.classic-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin: 0 0 0.75rem;
}
.classic-divider {
  width: 160px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 1.75rem;
}
.classic-two-col {
  align-items: start;
}
.classic-image img {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
}
.classic-text h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  font-weight: 800;
}
.classic-text h4 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
}
.classic-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}
.classic-list li { margin-bottom: 0.4rem; }

.classic-quote {
  background: var(--bg-alt);
}
.classic-quote-box {
  margin-bottom: 1.25rem;
  padding: 1.5rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.classic-quote-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.classic-quote-box p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.required { color: #9b1c1c; }
.what-happens-next {
  margin-top: 0;
  padding: 1rem;
  background: var(--paper);
  border-radius: 8px;
  font-size: 0.95rem;
  border: 1px solid var(--border);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
}
.hours-table td {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-light);
}

.classic-note {
  text-align: center;
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}
.classic-accordion details {
  background: #fffdf8;
  border-color: var(--border);
}
.classic-accordion summary {
  font-weight: 700;
}
.classic-accordion ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

/* Google Reviews Widget */
.google-reviews-widget {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 520px) {
  .google-reviews-widget {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .google-reviews-widget {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.google-review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}
.google-review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.google-review-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.google-review-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.google-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.google-review-initial {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #5b6b9e 0%, #7c8fc5 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.google-review-meta {
  flex: 1;
  min-width: 0;
}

.google-review-name {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.google-review-verified {
  color: #1a73e8;
  display: inline-flex;
}
.google-review-verified svg {
  display: block;
}

.google-review-time,
.google-review-source {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.google-review-source {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.google-g-logo {
  flex-shrink: 0;
}

.google-review-stars {
  display: flex;
  gap: 0.1rem;
  margin: 0.5rem 0 0.5rem;
  font-size: 1.1rem;
  line-height: 1;
}
.google-review-stars .google-star {
  color: #ddd;
}
.google-review-stars .google-star.filled {
  color: #f9ab00;
}

.google-review-text {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 0.5rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.google-review-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a73e8;
  text-decoration: none;
}
.google-review-read-more:hover {
  text-decoration: underline;
}

.classic-social-grid {
  display: grid;
  gap: 1.5rem;
}
.classic-social-grid--single {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.classic-social-card {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 1rem;
}
@media (min-width: 900px) {
  .classic-social-grid { grid-template-columns: 1fr 1fr; }
  .classic-social-grid--single { grid-template-columns: 1fr; max-width: none; }
}

@media (min-width: 900px) {
  .classic-hero-grid { grid-template-columns: 1fr 1fr; }
  .classic-hero-card { padding: 2rem; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 10px rgba(13,40,71,.25);
}
.btn-primary:hover {
  box-shadow: 0 6px 14px rgba(13,40,71,.35);
  color: #fff;
}
.btn-accent {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 10px rgba(13,40,71,.25);
}
.btn-accent:hover {
  box-shadow: 0 6px 14px rgba(13,40,71,.35);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.8);
  color: #fff;
  backdrop-filter: none;
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.btn-white:hover {
  box-shadow: var(--shadow-md);
  color: var(--primary-dark);
}
.btn-ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: #fff;
}
.btn-lg { padding: 0.9rem 2rem; font-size: 1.02rem; border-radius: 999px; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* --- Unified Header (navy & white – pmcleaning.net) --- */
.site-header {
  background: var(--accent-dark);
  border-bottom: 1px solid rgba(0,0,0,.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}

/* Main nav row: logo | links | CTA */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
  position: relative;
}

.header-cert-bar {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 0.42rem 0;
  background: var(--accent-dark);
}
.header-cert-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: thin;
}
.header-cert-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.header-cert-list {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.1rem 0;
}
.header-cert-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 9px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 5px 12px rgba(0,0,0,.24);
  padding: 0.28rem 0.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.header-cert-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 8px 16px rgba(0,0,0,.28);
}
.header-cert-logo {
  display: block;
  height: 28px;
  width: auto;
}
.header-cert-logo-round {
  height: 32px;
}
@media (max-width: 640px) {
  .header-cert-label { display: none; }
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }
.logo:hover .logo-name { color: #ffffff; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 900;
  font-size: 1.22rem;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.logo-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,.75);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav (classic: matches hero CTAs) */
.main-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  background: var(--paper);
  padding: 0.75rem 1.25rem 1rem;
  gap: 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: opacity 0.2s ease;
  z-index: 999;
  overflow: visible;
}
.main-nav.open {
  display: flex;
  right: 0;
}
.main-nav a {
  font-weight: 600;
  color: var(--text);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition), padding-left var(--transition);
  font-size: 1.05rem;
}
.main-nav a:hover {
  color: var(--accent-dark);
  padding-left: 0.5rem;
  text-decoration: none;
}
.nav-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #f9fafb !important;
  font-weight: 700 !important;
}
.nav-cta-phone:hover { color: var(--accent-dark) !important; }
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 999px;
  font-weight: 700 !important;
  margin-top: 0.5rem;
  border: none !important;
  text-align: center;
  box-shadow: 0 4px 10px rgba(13,40,71,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta-btn:hover {
  background: #ffffff !important;
  color: var(--accent-dark) !important;
  box-shadow: 0 6px 14px rgba(13,40,71,.35);
  transform: translateY(-1px);
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(2px);
  z-index: 998;
}
.mobile-overlay.active { display: block; }

/* Hamburger (classic wood tone when open) */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle.active span {
  background: #ffffff;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    gap: 0.5rem;
    align-items: center;
    overflow: visible;
  }
  .main-nav a {
    padding: 0.5rem 0.85rem;
    border-bottom: none;
    font-size: 0.9375rem;
    border-radius: var(--radius);
    color: #f9fafb;
  }
  .main-nav a:hover {
    background: var(--bg-alt);
    color: var(--accent-dark);
    padding-left: 0.85rem;
  }
  .nav-cta-btn {
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0.6rem 1.35rem !important;
  }
  .mobile-menu-toggle { display: none; }
}

/* --- Breadcrumb (minimal, not a third bar) --- */
.breadcrumb-nav {
  padding: 0.5rem 0;
  border-bottom: none;
}
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  color: var(--text-light);
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-current] {
  color: var(--primary-dark);
  font-weight: 500;
}

/* --- Hero --- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #3a4656 0%, #2f3a4a 55%, #2b2f36 100%);
  color: #fff;
  padding: 3.25rem 0 3.75rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(143,106,74,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(255,255,255,.08) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 72px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 36L60 30C120 24 240 14 360 18C480 22 600 40 720 44C840 48 960 38 1080 30C1200 22 1320 18 1380 24L1440 30V72H0Z' fill='%23fffaf2'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}
.hero-content { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.12);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-eyebrow svg { flex-shrink: 0; }
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: 0;
}
.hero-tagline {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  opacity: .92;
  line-height: 1.7;
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero-stat {
  text-align: center;
  padding: 1.15rem 0.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
}
.hero-stat-number {
  display: block;
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.75rem;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero { padding: 4.5rem 0 5.5rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-number { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* Hero decorative shapes */
.hero-visual {
  display: none;
}
@media (min-width: 1024px) {
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .hero-visual-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    text-align: center;
    max-width: 360px;
    width: 100%;
  }
  .hero-visual-card .icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
  }
  .hero-visual-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
  }
  .hero-visual-card p {
    font-size: 0.9rem;
    opacity: .8;
    margin: 0;
  }
  .hero-visual-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
    text-align: left;
  }
  .hero-visual-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
  }
  .hero-visual-feature svg { flex-shrink: 0; opacity: .8; }
}

/* --- Trust Badges --- */
.trust-bar {
  padding: 1.75rem 0;
  background: var(--paper);
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--border-light);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}
.cert-logo {
  display: block;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.cert-logo-round {
  max-width: 58px;
  max-height: 58px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon.blue { background: #f4efe7; color: var(--primary-dark); }
.trust-icon.green { background: #f7efe3; color: var(--accent-dark); }
.trust-icon.amber { background: #f6ead8; color: var(--gold); }

/* --- Sections --- */
.section {
  padding: 3rem 0;
}
.section-lg {
  padding: 3.75rem 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-dark {
  background: linear-gradient(180deg, #2b2f36 0%, #1f2329 100%);
  color: #fff;
}
.section-dark h2 { color: #fff; }
.section-dark p { color: #e7dccd; }
.section-gradient {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--text);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.03rem;
  margin: 0;
  line-height: 1.75;
}
.section-header .overline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.section-header .overline::before,
.section-header .overline::after {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  opacity: .5;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  padding: 1.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: inherit;
  transition: all var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  text-decoration: none;
  transform: translateY(-2px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  background: #f2e6d5;
  color: #6f5035;
  border: 1px solid #e4d3be;
}
.service-icon.si-blue,
.service-icon.si-green,
.service-icon.si-purple,
.service-icon.si-amber,
.service-icon.si-rose,
.service-icon.si-teal { background: #f2e6d5; color: #6f5035; }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: var(--text);
}
.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
/* Service page hero image – small, uniform */
.service-page-hero-image {
  max-width: 720px;
  margin: 0 auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
}
.service-page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
  cursor: zoom-in;
}

.service-page-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.service-page-image {
  max-width: 480px;
  flex: 1 1 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.service-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
  cursor: zoom-in;
}

.service-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 1rem;
  transition: gap var(--transition);
}
.service-card:hover .card-arrow { gap: 0.6rem; }

/* --- Experience / Stats Section --- */
.stats-section {
  padding: 3.25rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.stat-number {
  display: block;
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  padding: 2rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1rem;
  color: var(--text);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #7f5c3b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff6e8;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Services (home) --- */
.services-home-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.services-home-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  transition: all var(--transition);
}
.services-home-links a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--accent-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Related services buttons on service pages */
.related-services-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* --- Areas Section (centred) --- */
.areas-section .areas-links {
  justify-content: center;
}
.areas-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.areas-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.areas-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff6e8;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.areas-van-image {
  max-width: 640px;
  margin: 1.75rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.areas-van-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- FAQ / Accordion --- */
.accordion details {
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: all var(--transition);
}
.accordion details:hover {
  border-color: var(--accent-light);
}
.accordion details[open] {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.accordion summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  transition: color var(--transition);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236f5035' stroke-width='2.5'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: all var(--transition);
}
.accordion details[open] summary::after {
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}
.accordion details[open] summary { color: var(--accent-dark); }
.accordion p,
.accordion .faq-answer {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Map Section --- */
.map-section {
  padding: 3rem 0 0;
}
.map-section .map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-section iframe {
  max-width: 100%;
  display: block;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(143,106,74,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(255,255,255,.08) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin: 0 0 0.75rem;
  color: #fff;
}
.cta-banner p {
  font-size: 1.05rem;
  opacity: .92;
  margin: 0 0 1.5rem;
  color: #f1e5d6;
}
.cta-banner .cta-group { justify-content: center; }

/* --- Page Top (internal pages) --- */
.page-hero {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(143,106,74,.2) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30L48 27C96 24 192 18 288 21C384 24 480 36 576 39C672 42 768 36 864 30C960 24 1056 18 1152 18C1248 18 1344 24 1392 27L1440 30V60H0Z' fill='%23fffaf2'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.page-hero .lead {
  font-size: 1.1rem;
  opacity: .92;
  margin: 0;
  max-width: 640px;
  color: #f1e5d6;
}

/* --- Prose Content --- */
.prose {
  max-width: 760px;
}
.prose h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}
.prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}
.prose p { margin: 0 0 1rem; color: var(--text-muted); }
.prose ul, .prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}
.prose li { margin-bottom: 0.5rem; }
.prose li::marker { color: var(--accent); }

/* Process Steps */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  counter-reset: steps;
}
.process-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}
.process-steps li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff6e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Merriweather', 'Georgia', serif;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

/* --- Contact Form --- */
.contact-form label {
  display: block;
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--text);
  transition: all var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(143,106,74,.18);
}
.contact-form .error {
  color: #dc2626;
  font-size: 0.8rem;
  display: block;
  margin-top: 0.25rem;
  font-weight: 500;
}
.contact-form .btn { margin-top: 1.5rem; }

.flashes { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.flash {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.flash.success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
.flash.error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

/* --- Contact Details --- */
.contact-details h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.contact-details address {
  font-style: normal;
  margin: 1rem 0;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-details h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  font-weight: 700;
}
.contact-details table { border-collapse: collapse; }
.contact-details td {
  padding: 0.3rem 1.5rem 0.3rem 0;
  font-size: 0.9rem;
}
.contact-details .contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  font-weight: 500;
}
.contact-details .contact-link svg { flex-shrink: 0; color: var(--accent-dark); }

/* --- Feature Grid (for about / process) --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.feature-card {
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  background: #f2e6d5;
  color: var(--accent-dark);
  border: 1px solid #e4d3be;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
}
.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Guarantee Banner --- */
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #f7efe3, #efe2d3);
  border: 1px solid #e2cfb9;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}
.guarantee-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff6e8;
}
.guarantee-banner h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.guarantee-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Why Choose Us (checklist) --- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.checklist li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--accent-dark);
}

/* --- Footer --- */
.site-footer {
  margin-top: 0;
}
.footer-top {
  background: var(--accent-dark);
  color: #d9cdbd;
  padding: 3.5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo strong {
  color: #fff6e8;
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.1rem;
}
.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 1rem;
  max-width: 320px;
}
.footer-cert-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}
.footer-cert-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 4px 10px rgba(0,0,0,.18);
  padding: 0.3rem 0.56rem;
}
.footer-cert-chip-round {
  border-radius: 999px;
  padding: 0.28rem;
}
.footer-cert-logo {
  display: block;
  max-height: 30px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.footer-cert-logo-round {
  max-width: 34px;
  max-height: 34px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid #4a3e33;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d9cdbd;
  letter-spacing: 0.02em;
}
.footer-col h3 {
  color: #fff6e8;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: #d9cdbd;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff6e8; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-contact-list svg { flex-shrink: 0; margin-top: 0.15rem; color: #b9a894; }
.footer-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #3a3128;
}
.footer-hours p {
  margin: 0 0 0.15rem;
  font-size: 0.85rem;
}
.footer-bottom {
  background: var(--primary-dark);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: #b9a894;
}
.footer-credit {
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-credit p {
  font-size: 0.75rem;
  opacity: 0.6;
  margin: 0;
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}
.footer-credit a:hover {
  opacity: 1;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 5.25rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  text-decoration: none;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.3);
  animation: wa-pulse 2s ease infinite;
}
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--bg-dark);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: var(--shadow-md);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@media (max-width: 768px) {
  .whatsapp-float {
    right: 0.75rem;
    bottom: 1.5rem;
  }
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* --- Hero Google & Quick Quote --- */
.hero-google { margin: 0 0 1rem; font-size: 0.95rem; }
.hero-google a { color: rgba(255,255,255,.95); text-decoration: none; }
.hero-google a:hover { text-decoration: underline; }
.hero-google-stars { color: var(--gold); margin-right: 0.25rem; }

.hero-quick-quote { margin-top: 1.5rem; }
.hero-quick-quote-intro { margin: 0 0 0.75rem; font-size: 0.95rem; opacity: .95; }
.quick-quote-form { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.quick-quote-form input, .quick-quote-form select {
  padding: 0.5rem 0.75rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.15); color: #fff; font-size: 0.95rem;
}
.quick-quote-form input::placeholder { color: rgba(255,255,255,.7); }
.quick-quote-form select { min-width: 140px; cursor: pointer; }
.quick-quote-form select option { background: var(--primary-dark); color: #fff; }
.quick-quote-form.contact-quick-quote { flex-direction: column; align-items: stretch; }
.quick-quote-form.contact-quick-quote label { display: block; margin-top: 0.75rem; margin-bottom: 0.25rem; font-weight: 500; }
.quick-quote-form.contact-quick-quote input,
.quick-quote-form.contact-quick-quote select { width: 100%; max-width: 320px; background: var(--bg); color: var(--text); border-color: var(--border); }
.quick-quote-form.contact-quick-quote input::placeholder { color: var(--text-muted); }

/* Checkbox lists (Quick Quote & Contact) */
.qq-service-checkboxes,
.contact-services-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--paper);
  font-size: 0.9rem;
  cursor: pointer;
}

.checkbox-pill input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}

/* --- Instagram feed (mobile-friendly) --- */
.instagram-feed-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
}
.instagram-feed-wrap .sk-instagram-feed,
.instagram-feed-wrap [class*="sk-"] {
  min-width: min(100%, 320px);
}

/* Centre Instagram (Elfsight) section */
.instagram-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.instagram-section .elfsight-app-6da6401d-72d0-4eee-8d1a-00dab4c27b14 {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .instagram-section .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .instagram-feed-wrap {
    margin: 0 -0.75rem;
    padding: 0 0.75rem;
  }
}

/* --- Gallery Lightbox (modal image viewer) --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 1.5rem;
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}
.lightbox-image {
  max-width: 100vw;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: rgba(0,0,0,.65);
  border-radius: 999px;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
}
@media (max-width: 600px) {
  .lightbox-overlay {
    padding: 1rem;
  }
  .lightbox-image {
    max-height: 75vh;
  }
  .lightbox-close {
    top: -2.25rem;
  }
}

/* --- Print --- */
@media print {
  .site-header, .whatsapp-float, .site-footer, .cta-banner { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}
