/* ================================================
   West Coast Shopping Cart Service - Stylesheet
   Colors: #1a5fb4 (primary), #080c18 (dark), #2563eb (blue accent), #fff (white)
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1a5fb4;
  --navy:    #080c18;
  --orange:  #2563eb;
  --white:   #ffffff;
  --light:   #f4f7fb;
  --gray:    #686868;
  --border:  #dde4ee;
  --shadow:  0 4px 24px rgba(21,70,122,.12);
  --radius:  8px;
  --font:    'Roboto', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: #252525; background: var(--white); line-height: 1.65; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--orange); }

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

/* ── Utilities ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--light { background: var(--light); }
.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-align: center;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ── Top bar ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; }

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap img { height: 60px; width: auto; object-fit: contain; }

.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: #252525;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.nav-list a:hover { background: var(--light); color: var(--blue); }
.nav-list .nav-cta a {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  padding: 8px 18px;
}
.nav-list .nav-cta a:hover { background: #1d4ed8; color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .22s;
}

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(rgba(4,8,20,0.65), rgba(4,8,20,0.65)),
    url('hero section photo.jpeg') center 40%/cover no-repeat;
  color: var(--white);
  padding: 100px 0 96px;
  overflow: hidden;
}

/* Animated circle rings background */
.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Radial glow blobs */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 60%, rgba(26,95,180,.50) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 75% 30%, rgba(37,99,235,.30) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 55% 80%, rgba(37,99,235,.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Rotating circle rings */
.hero-circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, transparent, transparent) padding-box;
}

.hero-circle-ring:nth-child(1) {
  width: 520px; height: 520px;
  border-color: rgba(21,70,122,0.6);
  background: linear-gradient(135deg, rgba(21,70,122,0.15), transparent) padding-box;
  animation: ringRotate 6s ease-in-out infinite, ringPulse 6s ease-in-out infinite;
}
.hero-circle-ring:nth-child(2) {
  width: 520px; height: 520px;
  border-color: rgba(29,106,178,0.45);
  background: linear-gradient(135deg, rgba(29,106,178,0.08), transparent) padding-box;
  animation: ringRotate 6s ease-in-out infinite 0.4s, ringPulse2 6s ease-in-out infinite 0.4s;
}
.hero-circle-ring:nth-child(3) {
  width: 520px; height: 520px;
  border-color: rgba(100,150,200,0.25);
  animation: ringRotate 6s ease-in-out infinite 0.8s, ringPulse3 6s ease-in-out infinite 0.8s;
}

@keyframes ringRotate {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.8; }
  50% { transform: rotate(180deg) scale(1.07); opacity: 1; }
}
@keyframes ringPulse {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
}
@keyframes ringPulse2 {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}
@keyframes ringPulse3 {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.15); }
}

/* Decorative SVG art layer */
.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-decor svg { width: 100%; height: 100%; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,.9);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 span { color: #2563eb; }
.hero-desc {
  font-size: 1.08rem;
  opacity: .88;
  margin-bottom: 36px;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  display: block;
}
.hero-stat-lbl { font-size: .8rem; opacity: .75; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  backdrop-filter: blur(10px);
}
.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { color: var(--white); }
.hero-card-title { font-weight: 700; color: var(--white); margin-bottom: 4px; }
.hero-card-text { font-size: .85rem; opacity: .78; color: var(--white); }

/* ── Trust bar ── */
.trust-bar {
  background: var(--blue);
  color: var(--white);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
}
.trust-item svg { opacity: .85; flex-shrink: 0; }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow .22s, transform .22s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  border-radius: 12px 12px 0 0;
  transform: scaleX(0);
  transition: transform .22s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card p { flex: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.service-link { font-size: .88rem; font-weight: 700; color: var(--orange); display: flex; align-items: center; gap: 6px; }
.service-link:hover { color: var(--blue); gap: 10px; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
}
.about-badge-num { font-size: 2rem; font-weight: 800; display: block; }
.about-badge-txt { font-size: .78rem; font-weight: 600; opacity: .9; text-transform: uppercase; letter-spacing: .06em; }
.about-content .section-title { text-align: left; }
.about-content p { color: var(--gray); margin-bottom: 16px; }
.about-list { list-style: none; margin: 24px 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  color: #252525;
}
.about-list li:last-child { border-bottom: none; }
.about-list .check {
  width: 22px;
  height: 22px;
  background: #e8f3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 1px;
}

/* ── Service Area ── */
.area-section { background: var(--navy); color: var(--white); }
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area-section .section-title { color: var(--white); text-align: left; }
.area-section .section-label { color: #2563eb; }
.area-section p { color: rgba(255,255,255,.75); margin-bottom: 16px; }
.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.city-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
}
/* ── Interactive California Map ── */
.area-map {
  position: relative;
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
}
.ca-map {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: block;
  overflow: visible;
}
.ca-service-zone {
  animation: svcZonePulse 4s ease-in-out infinite;
}
@keyframes svcZonePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
.ca-route {
  animation: routeDraw 3s linear infinite;
}
@keyframes routeDraw {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -40; }
}
.pin-pulse {
  fill: rgba(37,99,235,0.35);
  transform-box: fill-box;
  transform-origin: center;
  animation: mapPingOut 2.6s ease-out infinite;
}
@keyframes mapPingOut {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(3.4); opacity: 0; }
}
.pin-dot {
  fill: #2563eb;
  stroke: rgba(255,255,255,0.85);
  stroke-width: 1.5;
  transition: fill .2s;
}
.pin-dot.pin-extended {
  fill: rgba(255,255,255,0.45);
  stroke: rgba(255,255,255,0.5);
}
.map-pin { cursor: pointer; }
.map-pin:hover .pin-dot {
  fill: #ffffff;
  filter: drop-shadow(0 0 8px rgba(37,99,235,1));
}
.map-pin:hover .pin-pulse {
  fill: rgba(255,255,255,0.3);
}
.pin-lbl {
  font-family: 'Roboto', sans-serif;
  font-size: 9px;
  font-weight: 700;
  fill: rgba(255,255,255,0.9);
  pointer-events: none;
}
.map-pin:hover .pin-lbl,
.map-pin:focus .pin-lbl { fill: #ffffff; }
.map-pin:focus { outline: 2px solid #fff; outline-offset: 3px; border-radius: 50%; }
.map-pin { cursor: pointer; }
.map-tooltip-html {
  position: absolute;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
  font-size: .8rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s;
  transform: translateX(-50%) translateY(6px);
  white-space: nowrap;
  z-index: 20;
  color: var(--navy);
  line-height: 1.4;
  top: 0;
  left: 0;
}
.map-tooltip-html::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom: none;
  border-top-color: #ffffff;
}
.map-tooltip-html.visible {
  opacity: 1;
}
.map-tooltip-html strong {
  display: block;
  color: var(--blue);
  font-size: .85rem;
  margin-bottom: 1px;
}
.map-tooltip-html span {
  color: #16a34a;
  font-weight: 700;
  font-size: .78rem;
}
.map-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 18px;
}
.map-stat { text-align: center; }
.map-stat-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}
.map-stat-lbl {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 3px;
}
.area-map-label { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: 16px; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .18s;
}
.faq-question:hover { background: var(--light); }
.faq-question.open { background: var(--blue); color: var(--white); }
.faq-chevron { transition: transform .22s; flex-shrink: 0; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  background: var(--light);
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner { padding: 20px 24px; font-size: .95rem; color: var(--gray); line-height: 1.7; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-card-title { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-card-value { font-weight: 600; color: var(--navy); font-size: .95rem; }
.contact-card-value a { color: var(--navy); }
.contact-card-value a:hover { color: var(--orange); }

.contact-map-wrap {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-map-label {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--light);
  padding: 10px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.contact-map-label svg { color: var(--blue); flex-shrink: 0; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: #252525;
  transition: border-color .18s, box-shadow .18s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,70,122,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; }
.form-note { font-size: .78rem; color: var(--gray); margin-top: 12px; text-align: center; }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  transition: background .18s, color .18s;
}
.footer-social:hover { background: var(--orange); color: var(--white); }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 18px; letter-spacing: .04em; text-transform: uppercase; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .87rem; color: rgba(255,255,255,.65); transition: color .18s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .87rem; color: rgba(255,255,255,.65); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--white); }

/* ── Report Banner ── */
.report-banner {
  background: var(--navy);
  padding: 18px 0;
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.report-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.report-banner-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: .95rem;
  flex: 1;
  min-width: 0;
}
.report-banner-text svg { flex-shrink: 0; color: var(--orange); }
.report-banner-text strong { color: var(--white); }
.report-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 26px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(37,99,235,.4);
  transition: background .2s, transform .2s;
}
.report-banner-btn:hover { background: #1d4ed8; color: var(--white); transform: translateY(-2px); }

/* ── Floating CTAs ── */
.floating-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 28px rgba(37,99,235,.4);
  transition: transform .2s, box-shadow .2s;
}
.floating-phone:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,99,235,.5); color: var(--white); }

.floating-report {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 28px rgba(15,9,61,.45);
  border: 2px solid rgba(255,255,255,0.18);
  transition: transform .2s, box-shadow .2s;
}
.floating-report:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(15,9,61,.55); color: var(--white); background: #1a1060; }

/* ── Success message ── */
.form-success {
  display: none;
  background: #e6f9f0;
  border: 1px solid #34c77b;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #15803d;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

/* ── Video Section ── */
.video-section { padding-bottom: 72px; }
/* Unmute overlay button */
.video-unmute-btn {
  position: absolute;
  bottom: 60px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.62);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 8px 16px 8px 12px;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
  pointer-events: all;
}
.video-unmute-btn:hover {
  background: rgba(21,70,122,0.85);
  border-color: rgba(255,255,255,0.6);
}
.video-unmute-btn.is-unmuted {
  background: rgba(21,70,122,0.75);
  border-color: rgba(91,180,255,0.6);
}

.video-cta {
  text-align: center;
  margin-top: 36px;
}
.video-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 16px 40px;
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(21,70,122,.22);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #000;
}

/* ── Hero Cart Scene ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cart-scene {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.cart-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-cart-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

/* Cart float */
.cart-body {
  animation: cartFloat 3.6s ease-in-out infinite;
}

/* Wheel spin */
.wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheelSpin 2.8s linear infinite;
}
.wheel-right {
  animation-direction: reverse;
}
.wheel-front {
  animation-duration: 3.2s;
}

/* Items drop into basket */
.item-drop {
  opacity: 0;
  animation: itemDrop 3.9s ease-in-out infinite;
}
.item-1 { animation-delay: 0.4s; }
.item-2 { animation-delay: 1.7s; }
.item-3 { animation-delay: 3.0s; }

/* Background glow pulse */
.hero-glow {
  animation: glowPulse 4s ease-in-out infinite;
}

/* Location pins */
.pin-anim {
  animation: pinFloat 2.6s ease-in-out infinite;
}
.pin-delay {
  animation-delay: 1.3s;
}

/* Sparkles */
.spark {
  animation: sparkle 2.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.spark-1 { animation-delay: 0s; }
.spark-2 { animation-delay: 0.55s; }
.spark-3 { animation-delay: 1.1s; }
.spark-4 { animation-delay: 1.65s; }

/* Badge entrance */
.badge-pop {
  animation: badgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ── Keyframes ── */
@keyframes cartFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes itemDrop {
  0%       { opacity: 0;   transform: translateY(0px); }
  10%      { opacity: 1;   transform: translateY(0px); }
  62%      { opacity: 1;   transform: translateY(140px); }
  78%, 100%{ opacity: 0;   transform: translateY(150px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.28; }
  50%      { opacity: 0.65; }
}

@keyframes pinFloat {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.2) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1) rotate(15deg); }
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Compact nav — prevent Contact clipping at mid-widths */
@media (max-width: 1080px) and (min-width: 961px) {
  .nav-list a          { padding: 8px 9px; font-size: .85rem; }
  .nav-list .nav-cta a { padding: 8px 13px; }
  .logo-wrap img       { height: 52px; }
}

/* ── Tablet / Mobile (≤ 960px) ── */
@media (max-width: 960px) {

  /* ─ Global ─ */
  .section { padding: 56px 0; }
  .topbar .topbar-right { display: none; }
  .trust-bar .container { justify-content: center; flex-wrap: wrap; gap: 16px; }

  /* ─ Header / Nav ─ */
  .site-header   { position: relative; }
  .header-inner  { position: relative; }
  .logo-wrap img { height: 50px; }
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    gap: 4px;
    z-index: 99;
  }
  .nav-list.open { display: flex; }
  .nav-toggle    { display: flex; }

  /* ─ Report banner ─ */
  .report-banner-inner { flex-direction: column; gap: 16px; text-align: center; }
  .report-banner-text  { justify-content: center; font-size: .9rem; }
  .report-banner-btn   { width: 100%; justify-content: center; }

  /* ─ Hero ─ */
  .hero { padding: 40px 0 36px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-desc    { max-width: 100%; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 340px; }
  .hero-stats   { justify-content: center; gap: 24px; }

  /* Hide the cart SVG on mobile — too cluttered */
  .hero-visual { display: none; }
  .hero-inner  { grid-template-columns: 1fr; }

  /* ─ Services ─ */
  .services-grid { grid-template-columns: 1fr; }

  /* ─ About ─ */
  .about-grid    { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap { display: none; }

  /* ─ Service area ─ */
  .area-inner    { grid-template-columns: 1fr; gap: 24px; }
  .area-map      { order: -1; }
  .area-section .section-label { display: none; }
  .ca-map        { max-width: 280px; margin: 0 auto; }
  .map-stats     { gap: 20px; justify-content: center; }
  /* Hide city tags on mobile — map pins already show them */
  .area-cities   { display: none; }
  .area-section .section-title { text-align: center; }
  .area-section p { text-align: center; margin-bottom: 20px; }
  .area-cta-wrap { text-align: center; }
  .area-cta-wrap .btn { width: 100%; max-width: 320px; }

  /* ─ Contact ─ */
  .contact-grid  { grid-template-columns: 1fr; gap: 32px; }
  .contact-form  { padding: 28px 20px; }
  .form-row      { grid-template-columns: 1fr; }

  /* ─ Footer ─ */
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ─ Floating buttons — smaller on tablet ─ */
  .floating-phone,
  .floating-report {
    padding: 12px 18px;
    font-size: .82rem;
    bottom: 20px;
  }
  .floating-phone { right: 16px; }
  .floating-report { left: 16px; }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section   { padding: 44px 0; }
  .hero      { padding: 32px 0 28px; }

  .hero-badge  { font-size: .72rem; }
  .hero-stats  { gap: 16px; }
  .hero-stat-num { font-size: 1.4rem; }

  .cart-scene  { max-width: 200px; }

  /* Trust bar: 2-column grid on small screens */
  .trust-bar .container { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-item  { justify-content: center; font-size: .8rem; }

  /* Services cards less padding */
  .service-card { padding: 24px 20px; }

  /* City tags wrap neatly */
  .area-cities { gap: 8px; }
  .city-tag    { font-size: .78rem; padding: 5px 12px; }

  /* Map smaller on very small screens */
  .ca-map      { max-width: 260px; }

  /* Contact cards */
  .contact-card      { padding: 14px 16px; }
  .contact-card-icon { width: 36px; height: 36px; }

  /* Floating buttons: icon-only to free up screen space */
  .floating-phone .btn-txt,
  .floating-report .btn-txt { display: none; }
  .floating-phone,
  .floating-report {
    padding: 14px;
    border-radius: 50%;
    bottom: 16px;
    gap: 0;
  }
  .floating-phone  { right: 14px; }
  .floating-report { left: 14px; }

  /* FAQ */
  .faq-question { font-size: .9rem; padding: 16px; }

  /* Footer */
  .footer-logo img { height: 44px; }
}

/* ── Report Modal ── */
.rpt-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.rpt-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.rpt-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px 32px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  transform: translateY(16px);
  transition: transform .25s ease;
}
.rpt-overlay.open .rpt-modal { transform: translateY(0); }
.rpt-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.rpt-close:hover { color: #111; }
.rpt-header {
  text-align: center;
  margin-bottom: 28px;
}
.rpt-header svg { margin: 0 auto 12px; display: block; }
.rpt-header h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.rpt-header p  { color: var(--gray); font-size: .93rem; }
.rpt-required  { color: var(--orange); font-weight: 700; }
.rpt-submit    { width: 100%; justify-content: center; display: flex; margin-top: 8px; }
.rpt-note      { text-align: center; font-size: .8rem; color: var(--gray); margin-top: 12px; }

/* City spotlight inside report modal */
.rpt-cities {
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 22px;
}
.rpt-cities-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: 10px;
}
.rpt-city-cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.rpt-city-card {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid rgba(37,99,235,.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--navy);
}
.rpt-city-card svg { color: var(--orange); flex-shrink: 0; }
.rpt-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 20px 0 8px;
}
.rpt-success h3 { font-size: 1.4rem; color: var(--navy); }
.rpt-success p  { color: var(--gray); max-width: 360px; }

/* Report banner button as button element */
button.report-banner-btn {
  font-family: var(--font);
  cursor: pointer;
}
/* Floating report as button element */
button.floating-report {
  font-family: var(--font);
  cursor: pointer;
}

@media (max-width: 480px) {
  .rpt-modal { padding: 32px 20px 24px; }
}

/* ── Skip Link (ADA) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: .9rem;
  z-index: 99999;
  transition: top .2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 3px solid var(--orange);
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  transition: bottom .4s cubic-bezier(.22,1,.36,1);
  padding: 16px 0;
}
.cookie-banner.visible { bottom: 0; }
.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: #444;
  flex: 1;
  min-width: 220px;
}
.cookie-banner-text svg { flex-shrink: 0; color: var(--orange); }
.cookie-banner-text a { color: var(--orange); font-weight: 600; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 22px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}
.cookie-accept {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.cookie-accept:hover { background: #1d4ed8; border-color: #1d4ed8; }
.cookie-decline {
  background: transparent;
  color: #666;
  border-color: #ccc;
}
.cookie-decline:hover { border-color: #999; color: #333; }

/* ── Legal Modals (Privacy Policy & Terms of Service) ── */
.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.legal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.legal-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  transform: translateY(20px);
  transition: transform .25s ease;
}
.legal-overlay.visible .legal-modal { transform: translateY(0); }
.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.legal-modal-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.legal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.legal-close:hover { color: #333; background: #f0f0f0; }
.legal-modal-body {
  padding: 24px 28px 32px;
  overflow-y: auto;
  flex: 1;
}
.legal-date {
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.legal-modal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 8px;
}
.legal-modal-body h3:first-of-type { margin-top: 0; }
.legal-modal-body p, .legal-modal-body li {
  font-size: .92rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-modal-body ul {
  padding-left: 20px;
  margin-bottom: 8px;
}
.legal-modal-body a { color: var(--orange); font-weight: 600; }

/* Footer legal links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-legal a { color: rgba(255,255,255,.7); }
.footer-legal a:hover { color: #fff; }

@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; }
  .legal-modal-header { padding: 20px; }
  .legal-modal-body { padding: 20px; }
}

/* ── Gallery ── */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
  margin-top: 12px;
}
.gallery-item--wide { grid-column: span 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: #111;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .4s ease;
  filter: brightness(.92);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(.7);
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .3s, transform .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 50px;
  width: fit-content;
}
.gallery-tag--repair { background: #1a5fb4; }

/* Before / After card — specificity must beat .gallery-item img (0,1,1) */
.gallery-item-beforeafter { cursor: default; }
.gallery-item-beforeafter .ba-wrap { position: relative; width: 100%; height: 100%; }
.gallery-item-beforeafter .ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: none; transition: none;
}
.gallery-item-beforeafter:hover .ba-img { transform: none; filter: none; }
.gallery-item-beforeafter .ba-after-img { animation: baFade 5s ease-in-out infinite; }
@keyframes baFade {
  0%, 30%  { opacity: 0; }
  45%, 80% { opacity: 1; }
  95%, 100%{ opacity: 0; }
}
.ba-label {
  position: absolute; top: 12px; left: 12px; z-index: 10;
  background: rgba(0,0,0,.62); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  pointer-events: none;
}
.ba-label-after  { animation: baLabelAfter  5s ease-in-out infinite; }
.ba-label-before { animation: baLabelBefore 5s ease-in-out infinite; }
@keyframes baLabelAfter {
  0%, 30%  { opacity: 0; }
  45%, 80% { opacity: 1; }
  95%, 100%{ opacity: 0; }
}
@keyframes baLabelBefore {
  0%, 30%  { opacity: 1; }
  45%, 80% { opacity: 0; }
  95%, 100%{ opacity: 1; }
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox-overlay.visible { opacity: 1; pointer-events: all; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.lightbox-caption {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 2.2rem;
  cursor: pointer; line-height: 1;
  opacity: .75; transition: opacity .15s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none; color: #fff;
  font-size: 2.4rem; line-height: 1;
  cursor: pointer; padding: 12px 18px;
  border-radius: 8px; transition: background .2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }

@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-caption { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item--wide { grid-column: span 1; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ═══════════════════════════════════════
   Why Choose Us
═══════════════════════════════════════ */
.why-section { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background .2s;
}
.why-card:hover { background: rgba(255,255,255,.1); }
.why-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.why-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.why-card p  { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════
   Trusted By
═══════════════════════════════════════ */
.trusted-section { background: var(--light); padding: 52px 0; }
.trusted-title {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}
.trusted-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.trusted-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 24px;
  font-size: .85rem;
  font-weight: 700;
  color: #374151;
  transition: all .18s;
  letter-spacing: .01em;
}
.trusted-item:hover { border-color: var(--blue); color: var(--blue); }

/* ═══════════════════════════════════════
   Testimonials
═══════════════════════════════════════ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--light);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.testimonial-stars { color: #f59e0b; font-size: .95rem; letter-spacing: .1em; margin-bottom: 8px; }
.testimonial-quote {
  font-size: 3.5rem;
  line-height: .7;
  color: var(--blue);
  font-family: Georgia, serif;
  margin-bottom: 10px;
  opacity: .35;
}
.testimonial-text {
  font-size: .875rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: .8rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .85rem; color: var(--navy); }
.testimonial-role { font-size: .75rem; color: var(--gray); margin-top: 2px; }

/* ═══════════════════════════════════════
   Certifications Strip
═══════════════════════════════════════ */
.cert-strip {
  background: #f0f4ff;
  border-top: 1px solid #d5dff5;
  border-bottom: 1px solid #d5dff5;
  padding: 24px 0;
}
.cert-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 36px;
}
.cert-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 600; color: var(--navy);
}
.cert-item svg { color: var(--blue); flex-shrink: 0; }

/* ═══════════════════════════════════════
   CTA Banner
═══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #1e3a8a 100%);
  padding: 76px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: 2.1rem; font-weight: 800;
  color: var(--white); margin-bottom: 14px;
}
.cta-banner p {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  margin-bottom: 36px; max-width: 540px;
  margin-left: auto; margin-right: auto; line-height: 1.65;
}
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: var(--light); border-color: var(--light); color: var(--navy); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); }

/* ═══════════════════════════════════════
   Responsive — new sections
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .cta-banner { padding: 52px 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cert-strip-inner { gap: 10px 20px; }
}
