/* ============================================================
   Get Pressure Washing Services — Light Theme
   SOP Archetype B: Local Service — Reference Build
   Clean, professional, trust-forward
   ============================================================ */

/* --- Design Tokens (Archetype B: Local Service) --- */
:root {
  /* Core Palette — LIGHT THEME */
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-elevated: #f8fafc;
  --surface: #ffffff;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-light: #3b82f6;
  --accent-rgb: 37, 99, 235;
  --accent-glow: rgba(37, 99, 235, 0.1);
  --accent-subtle: rgba(37, 99, 235, 0.05);
  --text: #1e293b;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --border: #e2e8f0;
  --border-hover: rgba(37, 99, 235, 0.3);
  --green: #16a34a;
  --star: #f59e0b;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --heading-weight: 700;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --space-section: 5rem;

  /* Radius */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --radius-full: 50px;

  /* Shadows — subtle, not heavy */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --max-width: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: var(--space-section) 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--accent-subtle);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-full);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  text-decoration: none;
}
.btn-accent,
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover,
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-white:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
  border-radius: var(--radius);
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* --- Top Bar --- */
.top-bar {
  background: var(--accent);
  color: #fff;
  padding: 10px 0;
  font-size: 0.875rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: #fff; font-weight: 500; transition: opacity var(--transition); }
.top-bar a:hover { opacity: 0.85; }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-left span { color: rgba(255, 255, 255, 0.4); }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
}

/* --- Header --- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  font-size: 0.9375rem;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.header-cta { display: flex; gap: 12px; align-items: center; }
.header-phone {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--accent); }
.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

/* --- Hero (Gradient — no photo) --- */
.hero {
  position: relative;
  min-height: auto;
  max-height: 85vh;
  display: flex;
  align-items: center;
  padding: 100px 0 64px;
  background: linear-gradient(160deg, #ffffff 0%, #eff6ff 40%, #dbeafe 70%, #f0f9ff 100%);
  overflow: hidden;
}
/* Decorative orb */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
/* Hide the old hero-bg image overlay */
.hero-bg { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 40px 0;
}
.hero-content h1 {
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-content h1 .highlight {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-badge svg { color: var(--star); }

/* --- Trust Bar --- */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: relative;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.trust-item svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; }
.trust-item .stars { color: var(--star); font-size: 1.125rem; }
.trust-item strong { color: var(--accent); }

/* --- Service Cards (Solid — no glassmorphism) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
}
/* Accent top bar slides in on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  z-index: 3;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body h3 a { color: var(--text); transition: color var(--transition); }
.service-card-body h3 a:hover { color: var(--accent); }
.service-card-body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
}
.service-card-link:hover { gap: 12px; color: var(--accent-dark); }

/* --- Stats Counter (Blue inverted section) --- */
.stats {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 72px 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}
.stat-item {
  padding: 32px 16px;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  font-weight: 500;
}

/* --- Before/After Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}
.ba-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: grab;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.ba-card:hover {
  box-shadow: var(--shadow-lg);
}
.ba-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-card .ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0.05s linear; }
.ba-card .ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--accent);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
}
.ba-card .ba-divider::before {
  content: '\2039\00a0\203A';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 4px;
  z-index: 1;
}
.ba-label {
  position: absolute;
  bottom: 12px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-xs);
  z-index: 5;
  box-shadow: var(--shadow-xs);
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

/* --- Why Choose Us (Solid cards with accent top bar) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-glow);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: rgba(37, 99, 235, 0.15);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.125rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9375rem; margin: 0; line-height: 1.7; }

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  position: relative;
}
.process-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.15);
}
.process-step h3 { margin-bottom: 10px; }
.process-step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Testimonials (Solid cards with left accent border) --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(37, 99, 235, 0.08);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  color: var(--star);
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 2px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9375rem; color: var(--text); }
.testimonial-role { font-size: 0.8125rem; color: var(--text-muted); }

/* --- Service Area --- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.area-card {
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.area-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.area-card svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.area-card span { font-weight: 600; color: var(--text); }

/* --- CTA Banner (Blue inverted section) --- */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn { margin: 0 8px; }
.cta-banner .btn-accent {
  background: #fff;
  color: var(--accent-dark);
}
.cta-banner .btn-accent:hover {
  background: #f0f9ff;
  box-shadow: var(--shadow-lg);
}
.cta-banner .btn-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.cta-banner .btn-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: none;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 24px; color: var(--text-muted); line-height: 1.8; }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--accent-glow);
  border: 1px solid rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 24px; height: 24px; }
.contact-info-text strong { display: block; margin-bottom: 4px; color: var(--text); }
.contact-info-text span,
.contact-info-text a { color: var(--text-muted); transition: color var(--transition); }
.contact-info-text a:hover { color: var(--accent); }
.contact-form {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: all var(--transition);
  background: #fff;
  color: var(--text);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-alt);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-meta {
  font-size: 0.8125rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 500;
}
.blog-card-body h3 { font-size: 1.125rem; margin-bottom: 10px; }
.blog-card-body h3 a { color: var(--text); transition: color var(--transition); }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }

/* --- Footer --- */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; color: #fff; }
.footer-brand .logo span { color: var(--accent-light); }
.footer-brand p { color: #94a3b8; font-size: 0.9375rem; max-width: 320px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  color: #94a3b8;
  font-size: 0.9375rem;
  transition: all var(--transition);
}
.footer-col ul a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: start;
  margin-bottom: 14px;
  color: #94a3b8;
  font-size: 0.9375rem;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a { color: #94a3b8; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: #64748b; font-size: 0.8125rem; margin: 0; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: #94a3b8;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social a:hover {
  color: var(--accent-light);
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

/* --- Mobile Bottom Bar (Sticky CTA) --- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}
.mobile-bottom-bar .container { display: flex; gap: 12px; }
.mobile-bottom-bar .btn { flex: 1; justify-content: center; padding: 14px; font-size: 0.9375rem; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(160deg, #ffffff 0%, #eff6ff 50%, #dbeafe 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; position: relative; }
.page-hero p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.875rem;
  position: relative;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-dim); }

/* --- Service Detail Page --- */
.service-detail { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.service-content h2 { font-size: 1.5rem; margin: 32px 0 16px; }
.service-content p { color: var(--text-muted); line-height: 1.8; }
.service-content ul { margin: 16px 0; padding-left: 0; }
.service-content ul li { padding: 10px 0 10px 28px; position: relative; color: var(--text-muted); }
.service-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.service-sidebar { position: sticky; top: 100px; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 36px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.sidebar-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
}
.sidebar-cta h3 { color: #fff; margin-bottom: 12px; font-size: 1.25rem; position: relative; }
.sidebar-cta p { color: rgba(255,255,255,0.85); margin-bottom: 20px; font-size: 0.9375rem; position: relative; }
.sidebar-cta .btn-accent {
  background: #fff;
  color: var(--accent-dark);
}
.sidebar-cta .btn-accent:hover {
  background: #f0f9ff;
}
.sidebar-services {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.sidebar-services h4 { font-size: 1rem; margin-bottom: 16px; }
.sidebar-services ul li { border-bottom: 1px solid var(--border); }
.sidebar-services ul li:last-child { border-bottom: none; }
.sidebar-services ul a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: var(--text-muted);
  font-weight: 500;
  transition: all var(--transition);
}
.sidebar-services ul a:hover { color: var(--accent); padding-left: 4px; }
.sidebar-services ul a.active { color: var(--accent); font-weight: 700; }

/* --- Gallery Page --- */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-filters { display: flex; gap: 12px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.gallery-filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all var(--transition);
  background: transparent;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* --- Reviews Page --- */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.reviews-score { text-align: center; min-width: 140px; }
.reviews-score .big-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.reviews-score .stars { color: var(--star); font-size: 1.5rem; margin: 8px 0 4px; }
.reviews-score p { color: var(--text-muted); font-size: 0.875rem; }

/* --- Scroll Reveal Animations (Minimal) --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.26s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.38s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.44s; }
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Section Divider --- */
.section-divider {
  height: 1px;
  background: var(--border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 90px 0 48px; }
  .hero-content { padding: 24px 0; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .top-bar-right { display: none; }
  .trust-bar .container { gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { padding: 24px 12px; }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, 0.15); }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .services-grid, .testimonials-grid, .gallery-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: 72px; }
  .reviews-summary { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .cta-banner .btn { display: block; margin: 8px auto; width: 80%; max-width: 320px; text-align: center; justify-content: center; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-bar .container { flex-direction: column; gap: 14px; }
  .area-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.15); }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}

/* --- Mobile Nav Overlay --- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #fff;
  border-left: 1px solid var(--border);
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 24px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all var(--transition);
}
.mobile-nav-close:hover {
  background: var(--bg-card-hover);
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-links a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.mobile-nav-links a:hover { color: var(--accent); padding-left: 8px; }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* --- Selection --- */
::selection {
  background: rgba(37, 99, 235, 0.15);
  color: var(--text);
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
