/* ============================================================
   CHICHESTER CARPET & UPHOLSTERY CLEANING — Design System
   Palette: Dark Navy + Fresh Green + White
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Brand Palette — Green & Dark Navy */
  --color-bg:              #f8fafc;
  --color-surface:         #ffffff;
  --color-surface-2:       #f1f5f9;
  --color-surface-offset:  #e2e8f0;
  --color-divider:         #cbd5e1;
  --color-border:          #94a3b8;

  --color-text:            #0f172a;
  --color-text-muted:      #475569;
  --color-text-faint:      #94a3b8;
  --color-text-inverse:    #ffffff;

  /* Primary Green */
  --color-primary:         #22a04a;
  --color-primary-dark:    #166534;
  --color-primary-hover:   #15803d;
  --color-primary-light:   #dcfce7;
  --color-primary-subtle:  #f0fdf4;

  /* Navy */
  --color-navy:            #0f172a;
  --color-navy-mid:        #1e293b;
  --color-navy-light:      #334155;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.08);
  --shadow-md:  0 4px 16px rgba(15,23,42,0.10);
  --shadow-lg:  0 12px 40px rgba(15,23,42,0.14);
  --shadow-xl:  0 24px 64px rgba(15,23,42,0.18);

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16,1,0.3,1);
  --transition-slow:        400ms cubic-bezier(0.16,1,0.3,1);

  /* Content Widths */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;

  /* Fonts */
  --font-display: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
  --font-body:    'Work Sans', 'Helvetica Neue', sans-serif;
}

/* Dark mode — for completeness, rarely used on service sites */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0f172a;
    --color-surface: #1e293b;
    --color-surface-2: #334155;
    --color-surface-offset: #1e293b;
    --color-divider: #334155;
    --color-border: #475569;
    --color-text: #f1f5f9;
    --color-text-muted: #94a3b8;
    --color-text-faint: #64748b;
    --color-text-inverse: #0f172a;
    --color-primary: #4ade80;
    --color-primary-hover: #22c55e;
    --color-primary-light: #166534;
  }
}
[data-theme="dark"] {
  --color-bg: #0f172a;
  --color-surface: #1e293b;
  --color-surface-2: #334155;
  --color-surface-offset: #1e293b;
  --color-divider: #334155;
  --color-border: #475569;
  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-text-faint: #64748b;
  --color-text-inverse: #0f172a;
  --color-primary: #4ade80;
  --color-primary-hover: #22c55e;
  --color-primary-light: #166534;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}
.container--narrow {
  max-width: var(--content-default);
}
.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.section--sm {
  padding-block: clamp(var(--space-8), 5vw, var(--space-16));
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: var(--space-8);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-6);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--space-5);
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-center { text-align: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-navy);
  box-shadow: 0 2px 12px rgba(15,23,42,0.3);
}
.site-header .container {
  padding-inline-start: clamp(var(--space-2), 2vw, var(--space-4));
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
  gap: var(--space-6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 4.5rem;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: white;
  line-height: 1.2;
  max-width: 180px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: var(--space-2) var(--space-2);
  border-radius: var(--radius-md);
  white-space: nowrap;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  cursor: pointer;
}
.nav-dropdown-toggle:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: var(--space-2);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-4);
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
}
.nav-dropdown-menu a:hover { background: var(--color-surface-2); color: var(--color-primary); }

.nav-cta {
  background: var(--color-primary);
  color: white !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--color-primary-hover) !important; transform: translateY(-1px); }

/* Mobile nav */
.nav-mobile-toggle {
  display: none;
  color: white;
  padding: var(--space-2);
  border-radius: var(--radius-md);
}
.nav-mobile-toggle:hover { background: rgba(255,255,255,0.1); }
.mobile-menu {
  display: none;
  background: var(--color-navy-mid);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-4);
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: 500;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: white; }
.mobile-menu-section { margin-bottom: var(--space-4); }
.mobile-menu-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  padding: var(--space-2) var(--space-4);
  font-weight: 600;
}
.mobile-cta-wrap {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (max-width: 900px) {
  .nav-links, .nav-dropdown { display: none; }
  .nav-mobile-toggle { display: block; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  transition: all var(--transition-interactive);
}
.btn-primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,160,74,0.35);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-dark:hover {
  background: var(--color-primary);
  color: white;
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-lg {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
  min-height: 56px;
}
.btn-sm {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
  min-height: 40px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--color-navy);
  color: white;
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-16), 10vw, var(--space-24));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(34,160,74,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(34,160,74,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(34,160,74,0.15);
  border: 1px solid rgba(34,160,74,0.3);
  color: #86efac;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--space-5);
  color: white;
}
.hero h1 span {
  color: #4ade80;
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-8);
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}
.hero-trust-item svg { color: #4ade80; flex-shrink: 0; }
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 480px;
  width: 100%;
}
.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 768px) {
  .hero-img-wrap img { height: 380px; }
}
.hero-stat-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.hero-stat-card--tl { top: 1rem; left: 1rem; }
.hero-stat-card--br { bottom: 1rem; right: 1rem; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: var(--space-1);
}
.stars { color: #f59e0b; font-size: var(--text-sm); letter-spacing: 0.05em; }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-img-wrap { max-width: 100%; }
  .hero-stat-card--tl { top: 0.5rem; left: 0.5rem; }
  .hero-stat-card--br { bottom: 0.5rem; right: 0.5rem; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-navy-mid);
  color: white;
  padding-block: var(--space-5);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6) var(--space-10);
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.trust-item svg { color: #4ade80; flex-shrink: 0; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: var(--space-12);
}
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
}

/* Dark section header */
.section--dark .section-header h2 { color: white; }
.section--dark .section-header p { color: rgba(255,255,255,0.65); }
.section--dark .section-label { color: #86efac; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-interactive);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--color-surface-2);
}
.service-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.service-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  flex: 1;
}
.service-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.service-card:hover .service-card-link { gap: var(--space-2); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { background: var(--color-navy); color: white; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--space-8);
  counter-reset: steps;
}
.process-step { counter-increment: steps; }
.process-num {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(34,160,74,0.15);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #4ade80;
  margin-bottom: var(--space-5);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-2);
}
.process-step p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   GUARANTEE BANNER
   ============================================================ */
.guarantee-banner {
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.guarantee-icon {
  font-size: 4rem;
  flex-shrink: 0;
}
.guarantee-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
}
.guarantee-text p { font-size: var(--text-base); opacity: 0.9; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--color-surface-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-5);
}
.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.review-stars { margin-bottom: var(--space-3); }
.review-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  font-style: italic;
  line-height: 1.7;
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-primary-dark);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.review-source {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
}
.faq-question:hover { background: var(--color-surface-2); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-interactive);
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-item.is-open .faq-answer { display: block; }

/* ============================================================
   AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
  gap: var(--space-3);
}
.area-pill {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-4);
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition-interactive);
}
.area-pill:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.area-pill svg { flex-shrink: 0; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--color-navy);
  color: white;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: white;
}
.cta-section p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-8);
  max-width: 55ch;
  margin-inline: auto;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060d1f;
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer-brand .nav-logo-text { font-size: var(--text-base); max-width: 260px; }
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  max-width: 36ch;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-3);
  text-decoration: none;
}
.footer-contact-item:hover { color: #4ade80; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-links a:hover { color: #4ade80; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-badges { display: flex; align-items: center; gap: var(--space-4); }
.footer-reg { font-size: var(--text-xs); color: rgba(255,255,255,0.3); }

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

/* ============================================================
   STICKY WHATSAPP / PHONE BAR (mobile)
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-3) var(--space-4);
  gap: var(--space-3);
}
@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 5rem; }
}
.sticky-mobile-cta .btn { flex: 1; font-size: var(--text-sm); min-height: 48px; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--space-5);
}
.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-interactive);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.is-featured {
  background: var(--color-navy);
  border-color: var(--color-primary);
  color: white;
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-property {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  font-weight: 500;
}
.pricing-card.is-featured .pricing-property { color: rgba(255,255,255,0.6); }
.pricing-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.pricing-card.is-featured .pricing-price { color: #4ade80; }
.pricing-desc {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-bottom: var(--space-6);
}
.pricing-card.is-featured .pricing-desc { color: rgba(255,255,255,0.45); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--color-navy);
  color: white;
  padding-block: clamp(var(--space-12), 7vw, var(--space-20));
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(34,160,74,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: #86efac; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-4);
}
.page-hero h1 span { color: #4ade80; }
.page-hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 55ch;
  margin-bottom: var(--space-8);
}
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}
.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}
.page-hero-meta-item svg { color: #4ade80; }

/* ============================================================
   LOCATION PAGE SPECIFIC
   ============================================================ */
.location-map-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 360px;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  border: 1px solid var(--color-divider);
}

/* ============================================================
   ADS LANDING PAGE
   ============================================================ */
.ads-header {
  background: var(--color-navy);
  padding: var(--space-4) 0;
  text-align: center;
}
.ads-trust-strip {
  background: var(--color-primary-subtle);
  border-bottom: 1px solid var(--color-primary-light);
  padding: var(--space-3) 0;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary-dark);
}
.ads-form-section {
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
}
.form-group { margin-bottom: var(--space-5); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-divider);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  background: var(--color-surface);
  color: var(--color-text);
  min-height: 48px;
  transition: border-color var(--transition-interactive);
}
.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(34,160,74,0.15);
}
.form-submit {
  width: 100%;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  min-height: 56px;
  transition: all var(--transition-interactive);
}
.form-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,160,74,0.35);
}
.form-privacy {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-photo {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-photo img { width: 100%; display: block; }
.stat-box {
  background: var(--color-primary-subtle);
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
}
.stat-box-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.stat-box-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

/* ============================================================
   CHECKLIST COMPONENT
   ============================================================ */
.checklist { display: flex; flex-direction: column; gap: var(--space-3); }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-muted);
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   WHATSAPP FLOAT BUTTON (desktop)
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 150;
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: all var(--transition-interactive);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
@media (max-width: 768px) { .whatsapp-float { display: none; } }

/* ============================================================
   BEFORE / AFTER GALLERY
   ============================================================ */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-5);
}
.before-after-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.before-after-card img {
  width: 100%;
  display: block;
}
.before-after-label {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   UTILITY
   ============================================================ */
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.divider { border: none; border-top: 1px solid var(--color-divider); margin-block: var(--space-8); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: var(--color-primary-subtle);
  color: var(--color-primary-dark);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.text-green { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }
.highlight-box {
  background: var(--color-primary-subtle);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-5) var(--space-6);
}

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 18, 40, 0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.modal-overlay.is-open {
  display: flex;
}
.modal {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 560px;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  background: var(--color-navy);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}
.modal-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  margin: 0;
}
.modal-header p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-top: var(--space-1);
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  transition: background var(--transition-interactive);
}
.modal-close:hover { background: rgba(255,255,255,0.22); }
.modal-body {
  padding: var(--space-6) var(--space-8);
}
.modal .form-group { margin-bottom: var(--space-5); }
.modal .form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.modal .form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-divider);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  background: var(--color-surface);
  color: var(--color-text);
  min-height: 48px;
  font-family: var(--font-body);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.modal .form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(34,160,74,0.15);
}
.modal textarea.form-input {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}
.modal-hint {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-2);
  line-height: 1.5;
}
.modal-submit {
  width: 100%;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  min-height: 52px;
  transition: all var(--transition-interactive);
  margin-top: var(--space-2);
}
.modal-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,160,74,0.35);
}
.modal-privacy {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
}
.modal-success {
  display: none;
  text-align: center;
  padding: var(--space-10) var(--space-8);
}
.modal-success-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-4);
}
.modal-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.modal-success p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

/* Desktop-only: "Get a Quote" button in hero triggers modal */
.hero-cta-desktop { display: flex; }
.hero-cta-mobile  { display: none; }

/* WhatsApp in hero — mobile only */
@media (max-width: 768px) {
  .hero-cta-desktop { display: none; }
  .hero-cta-mobile  { display: flex; }
}

/* ============================================================
   GLOWING BUTTONS — animated pulse on primary CTAs
   ============================================================ */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(34,160,74,0.45), 0 4px 16px rgba(34,160,74,0.25); }
  50%       { box-shadow: 0 0 22px 6px rgba(34,160,74,0.65), 0 8px 32px rgba(34,160,74,0.4); }
}
@keyframes glow-pulse-whatsapp {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(37,211,102,0.45), 0 4px 16px rgba(37,211,102,0.25); }
  50%       { box-shadow: 0 0 22px 6px rgba(37,211,102,0.65), 0 8px 32px rgba(37,211,102,0.4); }
}

.btn-primary {
  animation: glow-pulse 2.8s ease-in-out infinite;
}
.btn-primary:hover {
  animation: none;
  box-shadow: 0 0 28px 8px rgba(34,160,74,0.7), 0 8px 24px rgba(34,160,74,0.5);
}
.btn-whatsapp {
  animation: glow-pulse-whatsapp 2.8s ease-in-out infinite;
}
.btn-whatsapp:hover {
  animation: none;
  box-shadow: 0 0 28px 8px rgba(37,211,102,0.7), 0 8px 24px rgba(37,211,102,0.5);
}
/* Nav CTA has subtler glow */
.nav-cta {
  animation: glow-pulse 3.5s ease-in-out infinite !important;
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn-primary, .btn-whatsapp, .nav-cta { animation: none !important; }
}

/* ============================================================
   SERVICES GRID — 4 top + 3 centred bottom (7 total)
   ============================================================ */
.services-7-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.services-7-grid .service-card:nth-child(5) { grid-column: 1; }
/* Bottom row: cards 5,6,7 centred using auto margins */
.services-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: calc(75% + var(--space-5));
  margin-inline: auto;
  margin-top: var(--space-5);
}

@media (max-width: 1024px) {
  .services-7-grid { grid-template-columns: repeat(3, 1fr); }
  .services-bottom-row { max-width: 100%; grid-template-columns: repeat(3, 1fr); margin-top: 0; }
}
@media (max-width: 640px) {
  .services-7-grid,
  .services-bottom-row {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 420px) {
  .services-7-grid,
  .services-bottom-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE CARD — smoother, more modern mobile style
   ============================================================ */
.service-card {
  border-radius: var(--radius-2xl);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.25s cubic-bezier(0.16,1,0.3,1),
              border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(34,160,74,0.18), 0 4px 16px rgba(15,23,42,0.12);
  border-color: var(--color-primary);
}
/* Compact card style for 7-grid */
.services-7-grid .service-card-img-placeholder,
.services-bottom-row .service-card-img-placeholder {
  height: 140px;
  font-size: 2.5rem;
}
.services-7-grid .service-card-body,
.services-bottom-row .service-card-body {
  padding: var(--space-5);
}
.services-7-grid .service-card h3,
.services-bottom-row .service-card h3 {
  font-size: 1rem;
}
.services-7-grid .service-card p,
.services-bottom-row .service-card p {
  font-size: 0.85rem;
}

/* ============================================================
   HERO IMAGE — improved quality & framing
   ============================================================ */
.hero-img-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(34,160,74,0.2);
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  position: relative;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(15,23,42,0.6) 100%
  );
  pointer-events: none;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.05) saturate(1.1) brightness(1.03);
  transform: scale(1.02);
  transform-origin: center top;
}

/* ============================================================
   MOBILE IMPROVEMENTS — smoother, more modern feel
   ============================================================ */
@media (max-width: 768px) {

  /* Smoother hero on mobile */
  .hero { padding-block: clamp(var(--space-10), 8vw, var(--space-16)); }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; }

  /* Better card touch targets */
  .service-card { border-radius: var(--radius-xl); }
  .service-card:active { transform: scale(0.97); }

  /* Review cards full-width on small screens */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Pricing stack neatly */
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }

  /* Trust bar scrolls horizontally on mobile */
  .trust-bar-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: var(--space-6);
    padding-bottom: var(--space-2);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
  .trust-item { flex-shrink: 0; }

  /* Footer stacks cleanly */
  .footer-grid { gap: var(--space-8); }

  /* Section padding tighter on mobile */
  .section { padding-block: clamp(var(--space-10), 6vw, var(--space-16)); }

  /* FAQ bigger tap target */
  .faq-question { padding: var(--space-4) var(--space-5); font-size: 0.95rem; }

  /* Process steps centered */
  .process-grid { gap: var(--space-6); }
  .process-num { width: 44px; height: 44px; font-size: 1.1rem; }

  /* Areas grid 2 cols on mobile */
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  /* Guarantee banner stacks */
  .guarantee-banner { flex-direction: column; text-align: center; }
  .guarantee-icon { font-size: 3rem; }
}

/* Smoother scroll on all devices */
html { scroll-behavior: smooth; }

/* Better tap highlight */
a, button { -webkit-tap-highlight-color: rgba(34,160,74,0.15); }

/* Smooth card entrance on mobile */
@media (max-width: 768px) {
  .service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
}

/* ============================================================
   LOGO — transparent PNG on dark nav
   ============================================================ */
.nav-logo img {
  height: 4rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}
/* Footer logo slightly larger */
.site-footer .nav-logo img {
  height: 5rem;
}
/* Hide the text label when logo image is present */
.nav-logo-text--hidden {
  display: none;
}
/* Show text only if image fails */
.nav-logo img[style*="display: none"] ~ .nav-logo-text--hidden,
.nav-logo img[style*="display:none"] ~ .nav-logo-text--hidden {
  display: block;
}

/* ============================================================
   CHECKATRADE LOGO — nav + trust bar
   ============================================================ */
.nav-checkatrade {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.95;
  transition: opacity 0.2s;
}
.nav-checkatrade:hover {
  opacity: 1;
}
.nav-checkatrade-img {
  height: 2rem;
  width: auto;
  /* White background pill so the red/blue logo pops on dark nav */
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
}
/* Hide on mobile — nav is too narrow */
@media (max-width: 900px) {
  .nav-checkatrade { display: none; }
}

/* Trust bar Checkatrade item */
.trust-item--checkatrade {
  padding: 0;
}
.checkatrade-logo-inline {
  height: 1.6rem;
  width: auto;
  background: #fff;
  border-radius: 5px;
  padding: 3px 8px;
  display: block;
}

/* Hero image — new photo is portrait, ensure good framing */
.hero-img-wrap img {
  object-fit: cover;
  object-position: center top;
}
