@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --blue: #00AEEF;
  --blue-dark: #0088CC;
  --blue-light: #33C4FF;
  --purple: #6B3FA0;
  --purple-dark: #4e2d75;
  --black: #0A0A0A;
  --dark: #111111;
  --card: #1A1A1A;
  --border: rgba(0,174,239,0.2);
  --border-subtle: rgba(0,174,239,0.1);
  --text: #F0F0F0;
  --muted: #999999;
  --dim: #666666;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --nav-h: 204px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { line-height: 1.1; }

.eyebrow {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.93;
  color: #fff;
  letter-spacing: 1px;
}

.display-title .accent { color: var(--blue); }
.display-title .accent-purple { color: #B07FE0; }

.section-desc {
  font-size: 17px;
  color: #aaa;
  line-height: 1.75;
  max-width: 640px;
}

/* ===================== LAYOUT ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ===================== NAV ===================== */
nav {
  position: relative;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img {
  height: 192px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  position: relative;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 24px 14px;
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-menu > li > a:hover { color: var(--blue); }

.nav-menu > li > a.has-dropdown::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 5px;
  vertical-align: middle;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 220px;
  padding: 8px 0;
  z-index: 100;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

.nav-menu > li:hover .nav-dropdown { display: block; }

.nav-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown a:hover { color: var(--blue); background: rgba(0,174,239,0.05); }

.nav-cta {
  background: var(--blue);
  color: #000 !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue-light) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--blue);
  color: #000;
  padding: 15px 34px;
  font-size: 17px;
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  font-size: 17px;
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 70% 50%, rgba(107,63,160,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 15% 75%, rgba(0,174,239,0.12) 0%, transparent 60%),
    var(--black);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-visual { position: relative; align-self: start; margin-top: 100px; }

.hero-float-van {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 30px 38px rgba(0,0,0,0.7)) drop-shadow(0 0 60px rgba(0,174,239,0.25));
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-review {
  position: absolute;
  width: 230px;
  background: rgba(17,17,17,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 22px 44px rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-review-1 { top: -12%; left: -10%; animation: heroFloat 7s ease-in-out infinite; animation-delay: -1.5s; }
.hero-review-2 { bottom: -42%; right: -4%; animation: heroFloat 8s ease-in-out infinite; animation-delay: -3.5s; }

.hero-review-stars { display: flex; gap: 3px; color: var(--blue); margin-bottom: 8px; }
.hero-review-stars svg { width: 14px; height: 14px; }
.hero-review-text { font-size: 12.5px; color: #ddd; font-style: italic; line-height: 1.5; margin-bottom: 7px; }
.hero-review-author { font-size: 11px; color: var(--muted); font-weight: 600; }

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

@media (prefers-reduced-motion: reduce) {
  .hero-float-van, .hero-review { animation: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,174,239,0.1);
  border: 1px solid rgba(0,174,239,0.3);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 { font-family: var(--font-display); font-size: clamp(56px,7.5vw,92px); line-height: 0.91; color: #fff; letter-spacing: 2px; margin-bottom: 14px; }
.hero-slogan { font-family: var(--font-cond); font-size: 16px; font-weight: 700; color: var(--blue); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 18px; opacity: 0.9; }
.hero-desc { font-size: 17px; color: #bbb; line-height: 1.75; margin-bottom: 34px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-num { font-family: var(--font-display); font-size: 34px; color: var(--blue); line-height: 1; }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Inner page hero (shorter) */
.hero-inner {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner .hero-bg {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(107,63,160,0.2) 0%, transparent 70%),
    var(--black);
}
.hero-inner-content { position: relative; z-index: 1; padding: 64px 0; text-align: center; }
.hero-inner-content .section-desc { margin: 16px auto 28px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--dim); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: var(--dim); opacity: 0.5; }

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
}
.trust-icon {
  width: 30px; height: 30px;
  background: rgba(0,174,239,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===================== CARDS ===================== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.2s;
}
.card:hover { border-color: rgba(0,174,239,0.45); transform: translateY(-3px); }
.card-top-accent { border-top: 3px solid var(--blue); }

.card-icon { margin-bottom: 18px; }
.card-icon svg { width: 40px; height: 40px; stroke: var(--blue); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

.card h3 { font-family: var(--font-cond); font-size: 21px; font-weight: 700; color: #fff; letter-spacing: 0.3px; margin-bottom: 10px; }
.card p { font-size: 14px; color: #888; line-height: 1.7; }
.card-link { display: inline-flex; align-items: center; gap: 5px; color: var(--blue); font-size: 13px; font-weight: 600; text-decoration: none; margin-top: 14px; }
.card-link:hover { color: var(--blue-light); }
.card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.card-link:hover svg { transform: translateX(3px); }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tag {
  background: rgba(0,174,239,0.08);
  border: 1px solid rgba(0,174,239,0.2);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}

/* ===================== GRIDS ===================== */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }

/* ===================== SECTION HEADERS ===================== */
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 16px auto 0; }
.section-header .section-desc { margin-top: 16px; }

/* ===================== TESTIMONIALS ===================== */
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 26px 22px; position: relative; }
.t-source { position: absolute; top: 18px; right: 18px; font-size: 10px; color: var(--dim); letter-spacing: 0.5px; }
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-star { width: 14px; height: 14px; background: var(--blue); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.t-text { font-size: 14px; color: #bbb; line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--purple); display: flex; align-items: center; justify-content: center; font-family: var(--font-cond); font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0; }
.t-name { font-weight: 600; font-size: 14px; color: #fff; }
.t-meta { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ===================== FAQ ===================== */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-btn { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: color 0.2s; }
.faq-btn:hover { color: var(--blue); }
.faq-icon { width: 22px; height: 22px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; font-size: 16px; line-height: 1; transition: background 0.2s; }
.faq-item.open .faq-icon { background: var(--blue); color: #000; }
.faq-answer { display: none; font-size: 15px; color: #888; line-height: 1.75; padding-bottom: 18px; }
.faq-item.open .faq-answer { display: block; }

/* ===================== PROCESS STEPS ===================== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; }
.steps::before { content: ''; position: absolute; top: 34px; left: calc(12.5% + 14px); right: calc(12.5% + 14px); height: 1px; background: linear-gradient(90deg, var(--blue), var(--purple), var(--blue)); opacity: 0.25; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 68px; height: 68px; border-radius: 50%; background: var(--card); border: 2px solid var(--blue); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 30px; color: var(--blue); margin: 0 auto 18px; }
.step h3 { font-family: var(--font-cond); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step p { font-size: 13px; color: #888; line-height: 1.6; }

/* ===================== CTA BAND ===================== */
.cta-band {
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 50% 50%, rgba(107,63,160,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-magic { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(44px,7vw,76px); line-height: 0.93; color: #fff; letter-spacing: 2px; margin-bottom: 20px; }
.cta-band h2 .accent { color: var(--blue); }
.cta-band p { font-size: 18px; color: #aaa; line-height: 1.7; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-band-phone { font-family: var(--font-cond); font-size: 22px; font-weight: 700; color: var(--blue); letter-spacing: 1px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.cta-band-phone:hover { color: var(--blue-light); }
.cta-band-phone svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cta-band-sub { font-size: 13px; color: var(--dim); margin-top: 10px; }

/* ===================== BLOG ===================== */
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; text-decoration: none; display: block; transition: border-color 0.3s, transform 0.2s; }
.blog-card:hover { border-color: rgba(0,174,239,0.45); transform: translateY(-3px); }
.blog-card-img { height: 176px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card-img svg { width: 52px; height: 52px; stroke: var(--blue); fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; opacity: 0.7; }
.blog-card-body { padding: 22px 20px; }
.blog-tag { display: inline-block; background: rgba(0,174,239,0.1); border: 1px solid rgba(0,174,239,0.25); color: var(--blue); font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 3px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.blog-card h3 { font-family: var(--font-cond); font-size: 19px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: #888; line-height: 1.6; }
.blog-meta { display: flex; gap: 14px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 12px; color: var(--dim); }

/* ===================== CITY / SERVICE GRID ===================== */
.location-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 22px 18px; text-align: center; text-decoration: none; transition: border-color 0.3s, transform 0.2s; display: block; }
.location-card:hover { border-color: rgba(0,174,239,0.45); transform: translateY(-3px); }
.location-card-icon { width: 44px; height: 44px; background: rgba(0,174,239,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.location-card-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.location-card h3 { font-family: var(--font-cond); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.location-card p { font-size: 12px; color: var(--dim); line-height: 1.5; }

/* ===================== ABOUT / TWO-COL ===================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-content p { font-size: 16px; color: #aaa; line-height: 1.8; margin-bottom: 18px; }
.two-col-content p strong { color: var(--blue); font-weight: 600; }
.two-col-visual { position: relative; }
.visual-box { background: var(--black); border: 1px solid var(--border); border-radius: 8px; height: 380px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.visual-box svg { width: 80px; height: 80px; stroke: var(--blue); fill: none; stroke-width: 1; opacity: 0.6; stroke-linecap: round; stroke-linejoin: round; }
.visual-box::before { content: ''; position: absolute; inset: 0; background: url('/images/hero-van.png') center/cover no-repeat; filter: blur(22px) brightness(0.4); transform: scale(1.3); }
.visual-box img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; padding: 14px; }
.visual-box img.person-img { object-position: bottom; padding: 0; }
.visual-accent { position: absolute; bottom: -20px; right: -20px; width: 55%; height: 240px; background: var(--purple); border-radius: 8px; display: flex; align-items: center; justify-content: center; z-index: -1; }
.experience-badge { position: absolute; top: 20px; right: -16px; background: var(--blue); color: #000; padding: 14px 18px; border-radius: 8px; text-align: center; z-index: 2; }
.experience-badge .badge-num { font-family: var(--font-display); font-size: 36px; line-height: 1; display: block; }
.experience-badge .badge-label { font-family: var(--font-cond); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* ===================== VALUES GRID ===================== */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 28px; }
.value-item { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 16px; }
.value-icon { margin-bottom: 8px; }
.value-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-title { font-family: var(--font-cond); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.value-text { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ===================== REVIEWS CTA ===================== */
.reviews-bar { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 36px; }
.reviews-score { display: flex; align-items: center; gap: 16px; }
.score-num { font-family: var(--font-display); font-size: 52px; color: var(--blue); line-height: 1; }
.score-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ===================== CONTACT FORM ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: #ccc; margin-bottom: 7px; letter-spacing: 0.3px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--blue); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; padding: 16px; font-size: 17px; margin-top: 6px; }

.contact-info h3 { font-family: var(--font-cond); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(0,174,239,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-label { font-size: 12px; color: var(--muted); margin-bottom: 3px; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600; }
.contact-detail-value { font-size: 15px; color: #ddd; }
.contact-detail-value a { color: var(--blue); text-decoration: none; }
.contact-detail-value a:hover { color: var(--blue-light); }

/* ===================== FOOTER ===================== */
footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.05); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 28px; }
.footer-brand-name { font-family: var(--font-cond); font-size: 22px; font-weight: 800; color: var(--blue); letter-spacing: 1px; margin-bottom: 5px; }
.footer-van { display: block; width: 220px; max-width: 100%; height: auto; margin: 4px 0 12px; }
.footer-brand-tag { font-size: 11px; font-style: italic; color: var(--purple); margin-bottom: 14px; display: block; }
.footer-brand-desc { font-size: 13px; color: #aaa; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #bbb; margin-bottom: 7px; text-decoration: none; transition: color 0.2s; }
.footer-contact-row:hover { color: var(--blue); }
.footer-contact-row svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.footer-col h4 { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 13px; color: #aaa; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--blue); }
.footer-hours { font-size: 12px; color: #aaa; line-height: 2; margin-top: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; text-decoration: none; }
.footer-logo-img { height: 150px; width: auto; display: block; }
.footer-copy { font-size: 12px; color: #999; }
.footer-nap { font-size: 11px; color: #888; margin-top: 4px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: #999; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--blue); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 96px; }
  .nav-logo-img { height: 80px; }
  section { padding: 64px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-visual { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }
  .grid-1-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #0D0D0D; border-bottom: 1px solid var(--border); padding: 16px 0 24px; z-index: 999; }
  .nav-menu.open > li > a { padding: 12px 24px; font-size: 15px; min-height: 44px; display: flex; align-items: center; }
  .nav-dropdown { position: static; border: none; background: rgba(0,174,239,0.05); border-radius: 0; min-width: unset; display: block; padding: 0; }
  .nav-dropdown a { padding: 11px 36px; min-height: 44px; display: flex; align-items: center; }
  .reviews-bar { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .cta-band-actions { flex-direction: column; align-items: center; }
}

/* Service page expansion: neighborhood pills, included lists, mid-page CTA */
.area-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 940px; margin: 0 auto; }
.area-pill { font-family: var(--font-cond); font-size: 14px; font-weight: 600; letter-spacing: 0.3px; color: #cfd2d6; background: var(--card); border: 1px solid var(--border); border-radius: 999px; padding: 10px 20px; text-decoration: none; transition: border-color .25s, color .25s, background .25s; }
.area-pill:hover { border-color: rgba(0,174,239,0.55); color: #fff; background: rgba(0,174,239,0.08); }
.area-pill-all { color: var(--blue); border-color: rgba(0,174,239,0.45); }
.area-pill-all:hover { background: var(--blue); color: #0A0A0A; }
.incl-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 26px; }
.incl-card h3 { font-family: var(--font-cond); font-size: 19px; font-weight: 700; letter-spacing: 0.3px; color: #fff; margin-bottom: 14px; }
.incl-list { list-style: none; }
.incl-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14.5px; color: #aaa; line-height: 1.6; }
.incl-list li:last-child { border-bottom: none; }
.incl-ic { flex-shrink: 0; font-size: 15px; line-height: 1.5; font-weight: 700; }
.incl-ic svg { width: 17px; height: 17px; stroke: var(--blue); fill: none; stroke-width: 2; vertical-align: -3px; display: inline-block; }
.incl-yes { color: var(--blue); }
.incl-no { color: #e0625a; }
.incl-add { color: #8a8a8a; }
.incl-note { text-align: center; font-size: 14px; color: var(--muted); margin-top: 22px; font-style: italic; }
.usecase-emoji { font-size: 36px; line-height: 1; margin-bottom: 14px; }
.usecase-emoji svg { width: 44px; height: 44px; stroke: var(--blue); fill: none; stroke-width: 1.5; display: block; }
.mid-cta { background: linear-gradient(135deg, rgba(0,174,239,0.14), rgba(0,174,239,0.03)); border: 1px solid rgba(0,174,239,0.28); border-radius: 16px; padding: 48px 40px; text-align: center; max-width: 920px; margin: 0 auto; }
.mid-cta h2 { font-family: var(--font-display); font-size: clamp(28px,4vw,42px); letter-spacing: 1px; color: #fff; margin-bottom: 24px; line-height: 1.05; }
.mid-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) { .mid-cta { padding: 36px 22px; } }

/* ===================== GET A QUOTE SECTION (SmartMoving form) ===================== */
.quote-section {
  background-color: #F2F4F7;
  padding: 80px 0;
  position: relative;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 4px;
  background-color: #B07FE0;
  border-radius: 0 0 4px 4px;
}
.quote-header { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.quote-section .section-label {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #B07FE0;
  margin-bottom: 12px;
}
.quote-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  color: #14181F;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.quote-header p { font-size: 17px; color: #5A6472; line-height: 1.6; }
.quote-form-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 32px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(20,24,31,0.14);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.quote-form-wrapper iframe {
  display: block;
  width: 100%;
  min-width: 400px;
  min-height: 560px;
  border: none;
  margin: 0;
}
.quote-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  max-width: 760px;
  margin: 0 auto;
}
.quote-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: #3C4350;
  white-space: nowrap;
}
.quote-trust-item svg {
  width: 19px;
  height: 19px;
  stroke: #B07FE0;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.quote-trust-bar .divider {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #C2C9D2;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .quote-section { padding: 56px 0; }
  .quote-trust-bar { gap: 12px 18px; }
  .quote-trust-bar .divider { display: none; }
}

/* Customer reviews band (Elfsight Google Reviews) - injected site-wide via components.js */
.reviews-section {
  background: var(--black);
  padding: 90px 0;
  border-top: 1px solid var(--border);
}
.reviews-section .section-header {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .reviews-section { padding: 60px 0; }
}

/* Static Google Reviews widget */
.greviews {
  max-width: 1040px;
  margin: 0 auto;
}
.greviews-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 22px;
}
.greviews-logo {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  letter-spacing: -0.5px;
  line-height: 1;
}
.greviews-logo-label {
  color: var(--text);
  margin-left: 8px;
}
.greviews-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.greviews-score {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}
.greviews-stars {
  color: var(--blue);
  letter-spacing: 3px;
  font-size: 1.15rem;
}
.greviews-count {
  color: var(--muted);
  font-size: 0.95rem;
}
.greviews-btn {
  display: inline-block;
  background: #B07FE0;
  color: #1a1130;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.greviews-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.greviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.greview-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.greview-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.greview-avatar {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.greview-g {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 18px;
  height: 18px;
  padding: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  display: flex;
}
.greview-g svg {
  width: 100%;
  height: 100%;
  display: block;
}
.greview-meta {
  display: flex;
  flex-direction: column;
}
.greview-name {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}
.greview-date {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 2px;
}
.greview-stars {
  color: var(--blue);
  letter-spacing: 3px;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.greview-text {
  color: #cfcfcf;
  line-height: 1.6;
  font-size: 0.97rem;
}
.greview-readmore {
  color: #B07FE0;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.greview-readmore:hover {
  text-decoration: underline;
}
.greviews-footer {
  text-align: center;
  margin-top: 26px;
}
.greviews-footer-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}
.greviews-footer-link:hover {
  color: var(--blue-light, #33C5F4);
  text-decoration: underline;
}
@media (max-width: 900px) {
  .greviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .greviews-grid { grid-template-columns: 1fr; }
  .greviews-bar { flex-direction: column; align-items: flex-start; }
  .greviews-btn { width: 100%; text-align: center; }
}

/* ===================== MOBILE POLISH ===================== */
html { -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }

/* Media never overflows its container. Height is intentionally left untouched so
   the fixed-size nav/footer logos keep their dimensions. */
img, video, iframe, svg, embed, object { max-width: 100%; }

/* Long words, emails and URLs can't force horizontal scroll on narrow screens. */
p, h1, h2, h3, h4, h5, h6, li, a, span, label { overflow-wrap: break-word; }

/* Comfortable 44px tap target on every button. */
.btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

/* Tablet: 3-up grids step down to 2-up before collapsing to one column on phones. */
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* Small phones: stack hero actions full-width and ease oversized hero type. */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
}

/* Landing-page stat strip: the 4-up grid is set with an inline style, so the
   phone override needs !important to win. Drop to 2-up and ease the big number. */
@media (max-width: 600px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-strip > div > div:first-child { font-size: 38px !important; }
}

/* ===== VAN SHOWCASE — branded van + floating review cards on service & city
   landing pages. Mirrors the homepage hero van, reusing .hero-review chrome. ===== */
.van-show { position: relative; background: transparent; padding: 8px 0 4px; margin: 22px auto 8px; overflow: visible; }
.van-show::before {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 80%; height: 70%;
  background: radial-gradient(ellipse at center bottom, rgba(0,174,239,0.12) 0%, rgba(107,63,160,0.08) 42%, transparent 72%);
  pointer-events: none; z-index: 0;
}
.van-show-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.van-show .hero-review { text-align: left; }
.van-show-img {
  position: relative; z-index: 2; width: 100%; max-width: 600px; margin: 0 auto;
  filter: drop-shadow(0 30px 38px rgba(0,0,0,0.7)) drop-shadow(0 0 60px rgba(0,174,239,0.22));
  animation: heroFloat 6s ease-in-out infinite;
}
.van-show-img img { width: 100%; height: auto; display: block; }
.van-show .van-card-left { position: absolute; z-index: 1; left: 0; top: 6%; animation: heroFloat 7s ease-in-out infinite; animation-delay: -1.5s; }
.van-show .van-card-right { position: absolute; z-index: 1; right: 0; bottom: 8%; animation: heroFloat 8s ease-in-out infinite; animation-delay: -3.5s; }
@media (min-width: 768px) and (max-width: 1023px) {
  .van-show .hero-review { width: 188px; }
}
@media (max-width: 767px) {
  .van-show { padding: 12px 0 32px; }
  .van-show .van-card-left, .van-show .van-card-right { display: none; }
  .van-show-img { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .van-show-img, .van-show .hero-review { animation: none; }
}
