/* ==========================================================================
   Trade Business Website — Modeled after real electrician/trade sites.
   Sans-serif, warm palette, trust-forward, photo-heavy.
   Based on analysis of 14 real trade sites (Navy + Orange, 43% frequency).
   ========================================================================== */

:root {
  --primary: #dc2626;
  --primary-dark: #7f1d1d;
  --accent: #ea580c;
  --bg: #f8fafc;
  --text: #292524;
  --text-light: #78716c;
  --surface: #ffffff;
  --border: #e2e8f0;
  --cream: #f1f5f9;
  --dark: #0f172a;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --radius: 4px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font); line-height: 1.15; }

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

/* ==========================================================================
   Top Banner — Emergency / availability bar (36% of trade sites)
   ========================================================================== */

.top-banner {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.top-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}
.top-banner a {
  color: var(--accent);
  font-weight: 700;
  transition: color 0.2s;
}
.top-banner a:hover { color: #fff; }

/* ==========================================================================
   Navigation — Solid, professional (93% show phone in header)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; }
.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.2s;
}
.header-phone:hover { color: var(--accent); }
.header-phone svg { flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-lg { padding: 16px 32px; font-size: 0.9rem; }

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
}
.btn-white:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  box-shadow: inset 0 0 0 2px var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: inset 0 0 0 2px #fff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================================
   Hero — Full-bleed photo, dark gradient, trust strip (100% of trade sites)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,0.85) 0%,
    rgba(15,23,42,0.6) 40%,
    rgba(15,23,42,0.4) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  max-width: 700px;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Trust strip inside hero (100% of trade sites) */
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.75;
}
.hero-trust-item svg { flex-shrink: 0; }

/* Stars */
.star { font-size: 0.85em; }
.star-full { color: var(--accent); }
.star-half { color: var(--accent); opacity: 0.5; }
.star-empty { color: rgba(255,255,255,0.2); }
.section-dark .star-empty,
.site-footer .star-empty { color: rgba(255,255,255,0.15); }

/* ==========================================================================
   Trust Bar — Standalone section below hero (107% frequency!)
   ========================================================================== */

.trust-bar {
  background: var(--primary);
  color: #fff;
  padding: 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.05); }

.trust-item-value {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 2px;
}
.trust-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  font-weight: 600;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding: clamp(56px, 7vw, 88px) 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-cream { background: var(--cream); }

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.section-dark .section-label { color: var(--accent); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.section-dark .section-title { color: #fff; }

.section-intro {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-dark .section-intro { color: rgba(255,255,255,0.55); }

.section-header { margin-bottom: clamp(36px, 4vw, 52px); }

/* ==========================================================================
   Service Cards — 3-column grid with photos (critical section)
   3D flip cards on hover to reveal description
   ========================================================================== */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flip-card {
  perspective: 800px;
  height: 360px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
}

.flip-card-front {
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.flip-card-front img {
  width: 100%;
  height: 65%;
  object-fit: cover;
}
.flip-card-front-body {
  padding: 16px 20px;
}
.flip-card-front-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.flip-card-front .svc-num {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 1;
}

.flip-card-back {
  background: var(--primary);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.flip-card-back h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.flip-card-back p {
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 20px;
}
.flip-card-back .btn {
  align-self: flex-start;
}

/* Non-flip service grid (fallback/services page) */
.svc-card-static {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.svc-card-static:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.svc-card-static img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.svc-card-static-body {
  padding: 20px 24px;
}
.svc-card-static-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.svc-card-static-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Service rows (services page — alternating) */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  min-height: 380px;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:nth-child(even) { direction: rtl; }
.svc-row:nth-child(even) > * { direction: ltr; }

.svc-row-img { overflow: hidden; }
.svc-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 380px;
  transition: transform 0.6s var(--ease);
}
.svc-row:hover .svc-row-img img { transform: scale(1.04); }

.svc-row-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 48px);
}
.svc-row-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}
.svc-row:hover .svc-row-num { color: var(--accent); }
.svc-row-body h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.svc-row-body p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; max-width: 420px; }

/* ==========================================================================
   Image Break
   ========================================================================== */

.img-break {
  position: relative;
  height: clamp(280px, 35vw, 420px);
  overflow: hidden;
}
.img-break img {
  width: 100%; height: 120%;
  object-fit: cover;
  position: absolute;
  top: -10%;
}
.img-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-break-text {
  text-align: center;
  color: #fff;
  max-width: 600px;
  padding: 0 24px;
}
.img-break-text blockquote {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
}

/* ==========================================================================
   Process Steps
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.process-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.process-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.process-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.process-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ==========================================================================
   Testimonials — With location attribution (critical for trust)
   ========================================================================== */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 3px solid var(--accent);
}
.testi-stars {
  margin-bottom: 12px;
}
.testi-card .star-full { color: var(--accent); }
.testi-card .star-empty { color: rgba(255,255,255,0.12); }
.testi-card blockquote {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #fff;
}
.testi-card cite {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  display: block;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { max-width: 720px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-light);
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}

/* ==========================================================================
   CTA Band
   ========================================================================== */

.cta-band {
  background: var(--primary);
  color: #fff;
  padding: clamp(48px, 6vw, 72px) 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
}
.cta-band p {
  font-size: 0.95rem;
  opacity: 0.65;
  margin-top: 8px;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
.contact-form-side {
  padding: clamp(36px, 5vw, 64px);
  background: var(--surface);
}
.contact-info-side {
  padding: clamp(36px, 5vw, 64px);
  background: var(--cream);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { min-height: 110px; resize: vertical; }

.form-submit { width: 100%; }
.form-submit.sent { background: #059669; }

.contact-detail { margin-bottom: 24px; }
.contact-detail-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

/* ==========================================================================
   About page
   ========================================================================== */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-img { overflow: hidden; }
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 480px;
  transition: transform 0.7s var(--ease);
}
.split-section:hover .split-img img { transform: scale(1.03); }

.split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 56px);
}
.split-body p {
  font-size: 0.98rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}
.split-body .btn { align-self: flex-start; margin-top: 12px; }

/* Highlights */
.highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.highlight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.highlight-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.highlight-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
}
.highlight-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.highlight-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Service area */
.area-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}
.area-text {
  padding: clamp(36px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.area-visual {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.area-city {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: #fff;
}
.area-state {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

/* About stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s;
}
.stat-box:hover { border-color: var(--accent); }
.stat-box .stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}
.stat-box .stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-body {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-brand-col p {
  font-size: 0.86rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-stars { display: flex; align-items: center; gap: 8px; }
.footer-stars-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
  font-weight: 800;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-col p {
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.footer-col p strong { color: rgba(255,255,255,0.8); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 0;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ==========================================================================
   Animations — Scroll-triggered via data-animate
   ========================================================================== */

[data-animate] {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-animate].in-view { opacity: 1; transform: none; }

[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="fade-left"] { transform: translateX(-30px); }
[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate="scale"] { transform: scale(0.94); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeIn 0.8s var(--ease) forwards;
}
.hero-anim-2 { animation-delay: 0.1s; }
.hero-anim-3 { animation-delay: 0.2s; }
.hero-anim-4 { animation-delay: 0.3s; }
.hero-anim-5 { animation-delay: 0.4s; }

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ==========================================================================
   Rich Service Cards — Image + overlay + full description
   ========================================================================== */

.svc-card-rich {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.svc-card-rich:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.svc-card-rich-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.svc-card-rich-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.svc-card-rich:hover .svc-card-rich-img img { transform: scale(1.08); }
.svc-card-rich-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-card-rich:hover .svc-card-rich-overlay { opacity: 1; }

.svc-card-rich-body {
  padding: 20px 24px 24px;
  position: relative;
}
.svc-card-rich-body .svc-card-num {
  position: absolute;
  top: -14px; right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 2px;
}
.svc-card-rich-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.svc-card-rich-body p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ==========================================================================
   Stats Band — Full-bleed image background
   ========================================================================== */

.stats-band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.stats-band-overlay {
  background: rgba(15,23,42,0.85);
  padding: clamp(48px, 6vw, 72px) 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-band-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
.stats-band-item:last-child { border-right: none; }
.stats-band-value {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 4px;
}
.stats-band-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  font-weight: 600;
  margin-bottom: 8px;
}
.stats-band-detail {
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ==========================================================================
   Why Choose Us — Rich icon boxes
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.why-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.why-card-accent {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent);
}
.why-card-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================================================
   Process Section — On background image
   ========================================================================== */

.process-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.process-section-overlay {
  background: rgba(15,23,42,0.88);
  padding: clamp(64px, 8vw, 100px) 0;
}

.process-steps {
  max-width: 700px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.process-step-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  text-align: center;
}
.process-step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.process-step-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.process-step-connector {
  width: 2px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  margin: 8px 0 8px 31px;
}

/* ==========================================================================
   Testimonials — With avatars
   ========================================================================== */

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testi-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.testi-location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ==========================================================================
   Service Area — Image + dense content
   ========================================================================== */

.area-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.area-section-img {
  overflow: hidden;
}
.area-section-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 480px;
}
.area-section-body {
  padding: clamp(36px, 5vw, 56px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.area-section-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.area-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}
.area-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.area-feature svg { flex-shrink: 0; margin-top: 2px; }
.area-feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.area-feature span {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==========================================================================
   Inline Trust Checkmarks (in about section)
   ========================================================================== */

.inline-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.inline-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

/* ==========================================================================
   FAQ Split Layout
   ========================================================================== */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }

/* ==========================================================================
   CTA Actions row
   ========================================================================== */

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .why-grid { grid-template-columns: 1fr; }
  .split-section, .svc-row, .contact-layout, .area-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .svc-row:nth-child(even) { direction: ltr; }
  .testi-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .highlights-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-item:nth-child(2) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-left { position: static; }
}

@media (max-width: 768px) {
  .main-nav, .header-right { display: none; }
  .mobile-toggle { display: flex; }

  .main-nav.open {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 200;
    padding: 80px 24px 24px;
    overflow-y: auto;
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open li { border-bottom: 1px solid var(--border); }
  .main-nav.open a { display: block; padding: 16px 0; font-size: 1rem; }

  .top-banner-inner { flex-direction: column; gap: 4px; text-align: center; }
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 2rem; }
  .hero-trust { flex-direction: column; gap: 10px; }

  .svc-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .svc-row-img img, .split-img img, .area-section-img img { min-height: 260px; }
  .process-step { flex-direction: column; gap: 12px; }
  .process-step-connector { margin-left: 0; margin: 4px 0 4px 24px; }
}