/* La Costa Towing - shared styles */
:root {
  --navy: #0a1440;
  --navy-dark: #060a24;
  --navy-light: #101c58;
  --blue-light: #6fd3ff;
  --blue: #29a8f0;
  --blue-deep: #0d6fc4;
  --silver-light: #f2f4f7;
  --silver: #c7cdd6;
  --silver-dark: #8b92a0;
  --red: #e6293e;
  --white: #ffffff;
  --font: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-head: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--silver-light);
  color: #1a2033;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo-text, .intro-text, .btn, nav.main-nav a, .call-btn {
  font-family: var(--font-head);
}

::selection { background: var(--blue); color: var(--white); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 2px;
}

/* ---------- Icon system ---------- */
.icon-svg {
  width: 26px;
  height: 26px;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-svg.filled { fill: currentColor; stroke: none; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.2,.6,.2,1), transform 0.7s cubic-bezier(.2,.6,.2,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--navy-dark);
  color: var(--silver);
  font-size: 0.85rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--blue-light); font-weight: 600; }
.top-bar .badge {
  color: #ff5c6c;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---------- Accessibility: skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-dark);
  color: var(--white);
  padding: 12px 20px;
  z-index: 10000;
  border-radius: 0 0 6px 0;
  font-weight: 700;
  font-size: 0.9rem;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Header / Nav ---------- */
header.site-header {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
header.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(3, 7, 26, 0.45);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 58px;
  width: auto;
  display: block;
}
.logo-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.logo-text {
  line-height: 1.05;
}
.logo-text .la {
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
  display: block;
}
.logo-text .towing {
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(180deg, var(--silver-light) 0%, var(--silver-dark) 55%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  display: block;
}

nav.main-nav ul {
  display: flex;
  gap: 16px;
  align-items: center;
}
nav.main-nav a {
  color: var(--silver-light);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--blue-light);
  border-color: var(--blue-light);
}
nav.main-nav a.locator-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-light);
}
nav.main-nav a.locator-link svg { width: 16px; height: 16px; }

.call-btn {
  background: linear-gradient(180deg, var(--red) 0%, #b8202f 100%);
  color: var(--white);
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 3px 0 #8f1826;
}
.call-btn:hover { filter: brightness(1.08); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  padding: 10px;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at top, rgba(41,168,240,0.25), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(41,168,240,0.15));
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-content { flex: 1 1 480px; }
.hero-eyebrow {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 span {
  background: linear-gradient(180deg, var(--blue-light), var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  color: var(--silver);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1rem;
  transition: transform .15s, filter .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, var(--red), #b8202f);
  color: var(--white);
  box-shadow: 0 4px 0 #8f1826;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--blue-light);
}
.btn-outline:hover { background: rgba(111,211,255,0.1); }

.hero-badges {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(111,211,255,0.3);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge .num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue-light);
}
.hero-badge .label {
  font-size: 0.85rem;
  color: var(--silver);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid #e2e5eb;
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 30px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.88rem;
}
.trust-item .icon-svg {
  color: var(--blue-deep);
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* ---------- Stats counter band ---------- */
.stats-band {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  padding: 54px 0;
  border-top: 1px solid rgba(111,211,255,0.15);
  border-bottom: 1px solid rgba(111,211,255,0.15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
}
.stat-number .suffix { color: var(--red); }
.stat-label {
  margin-top: 10px;
  color: var(--silver);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

/* ---------- Sources / citation note ---------- */
.sources-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid #e2e5eb;
}
.sources-note h4 { color: var(--navy); font-size: 0.9rem; margin-bottom: 10px; }
.sources-note ul li { margin-bottom: 6px; }
.sources-note a { color: var(--blue-deep); font-weight: 700; }

/* ---------- Testimonials ---------- */
.stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  margin-bottom: 12px;
}
.stars svg { width: 18px; height: 18px; }
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 26px;
  box-shadow: 0 6px 20px rgba(10,20,64,0.08);
  border-top: 4px solid var(--red);
}
.testimonial-card p.quote {
  color: #444;
  font-size: 0.96rem;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-light), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-author .name { font-weight: 800; color: var(--navy); font-size: 0.92rem; }
.testimonial-author .loc { font-size: 0.78rem; color: #707070; }
.testimonial-note {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 30px;
}

/* ---------- Coming soon badge ---------- */
.badge-soon {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- Section generic ---------- */
section { padding: 70px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-eyebrow {
  color: var(--blue-deep);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
}
.section-head p { color: #555; margin-top: 12px; }

.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-head h2 { color: var(--white); }
.bg-navy .section-head p { color: var(--silver); }
.bg-light { background: var(--silver-light); }

/* ---------- Cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 26px;
  box-shadow: 0 6px 20px rgba(10,20,64,0.08);
  border-top: 4px solid var(--blue);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10,20,64,0.14);
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 800;
}
.card p { color: #555; font-size: 0.95rem; }
.card a.more {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---------- Service area ---------- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-pill {
  background: var(--white);
  border: 1px solid var(--silver);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(90deg, var(--blue-deep), var(--navy));
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 10px; }
.cta-banner p { color: var(--silver); margin-bottom: 24px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-dark);
  color: var(--silver);
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 34px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-weight: 800;
}
.footer-col p, .footer-col li { font-size: 0.9rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--silver-dark);
}

/* ---------- Inner page hero (Services/About/Contact) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 54px 0;
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.page-hero h1 { font-size: 2.2rem; font-weight: 900; }
.page-hero p { color: var(--silver); margin-top: 10px; }
.breadcrumb { font-size: 0.85rem; color: var(--blue-light); margin-bottom: 12px; }

/* ---------- Service detail blocks ---------- */
.service-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 46px 0;
  border-bottom: 1px solid #e2e5eb;
}
.service-block:last-child { border-bottom: none; }
.service-block .icon-lg {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  flex-shrink: 0;
}
.service-block h3 { font-size: 1.4rem; color: var(--navy); font-weight: 900; margin-bottom: 10px; }
.service-block ul { margin-top: 14px; }
.service-block ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  color: #444;
}
.service-block ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-deep);
  font-weight: 900;
}

/* ---------- About page ---------- */
.about-flex {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}
.about-flex .text { flex: 1 1 460px; }
.about-flex .stats { flex: 1 1 300px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  border-bottom: 4px solid var(--red);
}
.stat-box .n { font-size: 2rem; font-weight: 900; color: var(--blue-light); }
.stat-box .l { font-size: 0.85rem; color: var(--silver); margin-top: 4px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-item { text-align: center; }
.value-item .icon {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-light), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem;
}
.value-item h4 { color: var(--navy); font-weight: 800; margin-bottom: 6px; font-size: 1rem; }
.value-item p { font-size: 0.88rem; color: #555; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 34px;
  box-shadow: 0 6px 20px rgba(10,20,64,0.08);
  border-top: 4px solid var(--red);
}
.contact-info-card h3 { color: var(--navy); font-weight: 900; margin-bottom: 20px; font-size: 1.3rem; }
.contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-row .icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.contact-row .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: #707070; font-weight: 700; }
.contact-row .value { font-weight: 700; color: var(--navy); font-size: 1.05rem; }

form.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 34px;
  box-shadow: 0 6px 20px rgba(10,20,64,0.08);
}
form.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
  margin-top: 16px;
}
form.contact-form label:first-child { margin-top: 0; }
form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--silver);
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.95rem;
}
form.contact-form textarea { resize: vertical; min-height: 110px; }
form.contact-form button {
  margin-top: 22px;
  width: 100%;
  border: none;
  cursor: pointer;
}
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0 6px 20px rgba(10,20,64,0.08);
}
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Intro: tsunami wave sweep ---------- */
html.intro-lock, html.intro-lock body { overflow: hidden; height: 100%; }

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--navy-dark);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.intro-overlay.intro-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tsunami-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.tsunami-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 160vw;
  height: 100%;
  display: block;
  transform: translateX(0);
  animation-timing-function: cubic-bezier(.6,0,.3,1);
  animation-fill-mode: forwards;
  animation-duration: 1.3s;
}
.tsunami-layer path { }
.tsunami-back path { fill: #cfe9ff; }
.tsunami-mid path { fill: #29a8f0; }
.tsunami-front path { fill: #0a1440; stroke: #eaf6ff; stroke-width: 6; stroke-linejoin: round; }

.tsunami-back { animation-name: tsunami-sweep; animation-delay: 0.95s; }
.tsunami-mid { animation-name: tsunami-sweep; animation-delay: 0.8s; }
.tsunami-front { animation-name: tsunami-sweep; animation-delay: 0.65s; }
@keyframes tsunami-sweep {
  to { transform: translateX(118vw); }
}

.tsunami-foam {
  position: absolute;
  z-index: 4;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.35));
  animation-name: tsunami-sweep;
  animation-delay: 0.65s;
  animation-duration: 1.3s;
  animation-timing-function: cubic-bezier(.6,0,.3,1);
  animation-fill-mode: forwards;
}
.tsunami-foam-1 { width: 300px; top: 6%; left: 1vw; }
.tsunami-foam-2 { width: 220px; top: 58%; left: -3vw; transform: scaleX(-1); opacity: 0.75; }

.intro-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 1;
  animation: intro-content-out 0.4s ease 1.9s forwards;
}
@keyframes intro-content-out {
  to { opacity: 0; }
}

.intro-logo-wave {
  width: 200px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 14px rgba(111,211,255,0.45));
  opacity: 0;
  transform: scale(0.85) translateY(12px);
  animation: intro-fade-scale 0.6s cubic-bezier(.2,.7,.25,1) forwards;
}
@keyframes intro-fade-scale {
  0% { opacity: 0; transform: scale(0.85) translateY(12px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.intro-text {
  margin-top: 14px;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--silver-light);
  opacity: 0;
  animation: intro-fade-up 0.5s ease 0.2s forwards;
}
.intro-text span {
  background: linear-gradient(180deg, var(--blue-light), var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.intro-tagline {
  margin-top: 6px;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  opacity: 0;
  animation: intro-fade-up 0.5s ease 0.38s forwards;
}
@keyframes intro-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none; }
}
@media (max-width: 600px) {
  .intro-logo-wave { width: 160px; }
  .intro-text { font-size: 1.4rem; }
  .tsunami-foam-1 { width: 220px; }
  .tsunami-foam-2 { width: 160px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-2, .contact-grid, .footer-grid, .values-grid { grid-template-columns: 1fr; }
  .about-flex .stats { grid-template-columns: 1fr 1fr; }
  .hero-inner { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1220px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  .nav-wrap.open nav.main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 20px 24px;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-wrap.open nav.main-nav ul { flex-direction: column; gap: 16px; align-items: stretch; width: 100%; }
  .nav-wrap.open nav.main-nav a { display: block; padding: 10px 4px; }
  .nav-wrap.open nav.main-nav a.call-btn { display: inline-block; text-align: center; width: 100%; box-sizing: border-box; }
}
@media (max-width: 760px) {
  .hero h1 { font-size: 2rem; }
  .top-bar .container { justify-content: center; text-align: center; }
  .service-block { flex-direction: column; gap: 18px; text-align: center; }
  .service-block .icon-lg { margin: 0 auto; }
}
@media (max-width: 480px) {
  .logo-img { height: 44px; }
  .contact-row { flex-direction: column; text-align: center; align-items: center; gap: 8px; }
}
