/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1F2937; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }
ul { list-style: none; }
input, select, button { font-family: inherit; }

/* ===================== VARIABLES ===================== */
:root {
  --blue-950: #0A1628;
  --blue-900: #1E3A8A;
  --blue-800: #1E40AF;
  --blue-700: #1D4ED8;
  --blue-600: #2563EB;
  --blue-500: #3B82F6;
  --blue-400: #60A5FA;
  --blue-200: #BFDBFE;
  --blue-100: #DBEAFE;
  --blue-50:  #EFF6FF;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;
  --white: #FFFFFF;
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --nav-h: 72px;
}

/* ===================== KEYFRAMES ===================== */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInCard { from { opacity:0; } to { opacity:1; } }
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-36px);} to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight{ from { opacity:0; transform:translateX(36px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }
@keyframes pulseDot   { 0%,100% { opacity:1; } 60% { opacity:0.4; } }
@keyframes shimmer    { from { background-position: -200% center; } to { background-position: 200% center; } }

/* ===================== GLOBAL COMPONENTS ===================== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.section-sub {
  font-size: 1.0rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-top: 10px;
  max-width: 540px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  letter-spacing: 0.005em;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-700);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-900);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(4px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

.btn-white {
  background: var(--white);
  color: var(--blue-700);
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}

/* ===================== NAVIGATION ===================== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: var(--nav-h);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--blue-700);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}
.logo-name span { color: var(--blue-700); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  display: block;
  padding: 7px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-xs);
  transition: all 0.17s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--blue-700);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1);
}

.nav-links a:hover { color: var(--blue-700); background: var(--blue-50); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue-700); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color 0.17s ease;
}
.nav-tel:hover { color: var(--blue-700); }
.nav-tel svg { flex-shrink: 0; }

/* Nav Auth Button */
.btn-nav-auth {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 100px;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.btn-nav-auth svg { flex-shrink: 0; }
.btn-nav-auth:hover {
  background: var(--blue-900);
  transform: translateY(-2px);
}
.btn-nav-auth:active { transform: translateY(0); }

/* ===================== HERO ===================== */
.hero {
  padding: 88px 0 104px;
  position: relative;
  overflow: hidden;
  background: var(--blue-950);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
  position: relative;
  /* Fixed height prevents layout shifts when slides change on mobile.
     All slide panels are position:absolute so the container must have an
     explicit height at every breakpoint — see mobile overrides below. */
  height: 380px;
}

.hero-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Always absolutely positioned — never shifts the document flow */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.hero-slide-content.active {
  /* Stay absolute — only visibility/opacity change, never layout */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 22px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--blue-400);
  border-radius: 50%;
  animation: pulseDot 2.2s infinite;
}

.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--blue-400);
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(191,219,254,0.85);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 430px;
}
.hero-desc strong { color: var(--white); font-weight: 700; }

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 38px;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(191,219,254,0.8);
}

.check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(96,165,250,0.15);
  border: 1px solid rgba(96,165,250,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slideshow-slides {
  position: absolute;
  inset: 0;
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1);
}

.slideshow-slide.active { opacity: 1; }

.slideshow-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(15,36,96,0.72) 0%, rgba(30,58,138,0.58) 100%);
}



.slideshow-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.slideshow-dot {
  width: 7px; height: 7px;
  border-radius: 100px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.slideshow-dot.active {
  background: var(--white);
  width: 22px;
}

/* Pickup Form Card */
.pickup-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 38px 36px;
  border: 1px solid var(--gray-200);
  animation: fadeInRight 0.7s 0.12s cubic-bezier(0.4,0,0.2,1) both;
}

.pickup-card-head { margin-bottom: 26px; }
.pickup-card-head h3 {
  font-size: 1.3125rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.pickup-card-head p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row.single { grid-template-columns: 1fr; }

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.01em;
}

.field input,
.field select {
  padding: 10px 13px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xs);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color 0.17s ease;
  -webkit-appearance: none;
  appearance: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue-500);
}

.field input::placeholder { color: var(--gray-400); }

.form-cta {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.975rem;
  border-radius: var(--radius-xs);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 10px;
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--gray-700);
  animation: fadeIn 0.5s ease both;
}

.trust-item svg { color: var(--blue-600); flex-shrink: 0; }
.trust-sep { width: 1px; height: 20px; background: var(--gray-200); }

/* ===================== SERVICES ===================== */
.services {
  padding: 100px 0;
  background-color: var(--blue-50);
  background-image: url('/images/services-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  pointer-events: none;
}
.services .container {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
  animation: fadeInUp 0.6s ease both;
}

.section-head .section-sub {
  margin: 10px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 12px;
}

.svc-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 34px 26px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30,58,138,0.07);
  transition: box-shadow 0.22s ease;
  animation: fadeInCard 0.5s ease both;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue-700);
  transform: scaleX(1);
}

.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 50px; height: 50px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.22s ease;
}
.svc-icon { background: var(--blue-50); }

.svc-icon svg {
  width: 22px; height: 22px;
  stroke: var(--blue-700);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-card h3 {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.svc-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 0.855rem;
  font-weight: 600;
  color: var(--blue-700);
  transition: gap 0.17s ease;
}
.svc-link:hover { gap: 8px; }
.svc-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.svc-card:nth-child(1) { animation-delay: 0.04s; }
.svc-card:nth-child(2) { animation-delay: 0.09s; }
.svc-card:nth-child(3) { animation-delay: 0.14s; }
.svc-card:nth-child(4) { animation-delay: 0.19s; }
.svc-card:nth-child(5) { animation-delay: 0.24s; }

/* Services Slider */
.svc-slider {
  overflow: hidden;
  position: relative;
}

.svc-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-page {
  flex: 0 0 auto;
  box-sizing: border-box;
}

.services-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 66.66%;
  margin: 0 auto;
}

.svc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.svc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.svc-arrow:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.svc-arrow svg {
  width: 18px; height: 18px;
  stroke: var(--gray-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}

.svc-arrow:hover svg { stroke: white; }

.svc-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-dot.active {
  background: var(--blue-700);
  width: 26px;
}


/* ===================== PROCESS ===================== */
.process {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 24px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30,58,138,0.06);
  transition: transform 0.24s cubic-bezier(0.4,0,0.2,1), box-shadow 0.24s ease, border-color 0.24s ease;
  animation: fadeInUp 0.5s ease both;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(30,58,138,0.12);
  border-color: var(--blue-200);
}

.step-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  animation: fadeIn 0.5s 0.1s ease both;
}

.step-connector svg {
  width: 56px; height: 20px;
  overflow: visible;
}

.conn-line {
  stroke: var(--blue-400);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 5 4;
  animation: connFlow 0.7s linear infinite;
}


@keyframes connFlow {
  from { stroke-dashoffset: 9; }
  to   { stroke-dashoffset: 0; }
}

.step:nth-child(1) { animation-delay: 0.05s; }
.step:nth-child(2) { animation-delay: 0.14s; }
.step:nth-child(3) { animation-delay: 0.23s; }
.step:nth-child(4) { animation-delay: 0.32s; }

.step-icon {
  width: 64px; height: 64px;
  background: var(--blue-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(29,78,216,0.35);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease;
}

.step:hover .step-icon {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 26px rgba(29,78,216,0.45);
}

.step-icon svg {
  width: 26px; height: 26px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 5px;
}

.step h3 {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.855rem;
  color: var(--gray-500);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ===================== STATS ===================== */
.stats {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 50%, var(--blue-800) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.stat {
  text-align: center;
  padding: 12px 20px;
  animation: fadeInUp 0.5s ease both;
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat:nth-child(1) { animation-delay: 0.05s; }
.stat:nth-child(2) { animation-delay: 0.13s; }
.stat:nth-child(3) { animation-delay: 0.21s; }
.stat:nth-child(4) { animation-delay: 0.29s; }

.stat-n {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 7px;
}
.stat-n span { color: var(--blue-400); }

.stat-l {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* ===================== TESTIMONIALS SLIDER ===================== */
.testimonials {
  padding: 100px 0;
  background-color: var(--blue-50);
  background-image: url('/images/testimonials-bg.webp');
  background-size: cover;
  background-position: center top;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}
.testimonials .container {
  position: relative;
  z-index: 1;
}

.testi-slider {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-page {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  background: var(--gray-50);
  transition: all 0.24s ease;
  position: relative;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 18px; right: 26px;
  font-size: 4rem;
  font-weight: 800;
  color: var(--blue-100);
  line-height: 1;
  font-family: Georgia, serif;
}

.testi-card.highlight {
  background: linear-gradient(140deg, var(--blue-900), var(--blue-700));
  border-color: transparent;
}

.testi-card:hover {
  border-color: var(--blue-100);
  transform: translateY(-4px);
  background: var(--white);
}

.testi-card.highlight::before { color: rgba(255,255,255,0.12); }
.testi-card.highlight:hover { border-color: transparent; background: linear-gradient(140deg, var(--blue-800), var(--blue-600)); }

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.star { color: #F59E0B; font-size: 0.85rem; }
.testi-card.highlight .star { color: #FCD34D; }

.testi-quote {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-card.highlight .testi-quote { color: rgba(255,255,255,0.88); }

.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-700);
  flex-shrink: 0;
}
.testi-card.highlight .avatar { background: rgba(255,255,255,0.18); color: white; }

.author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  display: block;
}
.testi-card.highlight .author-name { color: white; }

.author-role {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.testi-card.highlight .author-role { color: rgba(255,255,255,0.6); }

/* Slider Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.testi-arrow:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.testi-arrow svg {
  width: 18px; height: 18px;
  stroke: var(--gray-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}

.testi-arrow:hover svg { stroke: white; }

.testi-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-dot.active {
  background: var(--blue-700);
  width: 26px;
}

/* ===================== CTA BANNER ===================== */
.cta-band {
  padding: 96px 0;
  background: var(--gray-50);
}

.cta-box {
  background: linear-gradient(130deg, var(--blue-950) 0%, var(--blue-800) 55%, var(--blue-600) 100%);
  border-radius: var(--radius-xl);
  padding: 68px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(96,165,250,0.13) 0%, transparent 68%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(30,58,138,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.cta-text { position: relative; z-index: 1; }
.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.375rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-text p {
  font-size: 0.975rem;
  color: rgba(191,219,254,0.8);
  line-height: 1.7;
  max-width: 480px;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  min-width: 190px;
}

.cta-btns .btn {
  width: 100%;
  justify-content: center;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--blue-950);
  padding: 72px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
  margin-top: 14px;
  max-width: 272px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-logo-mark {
  width: 34px; height: 34px;
  background: var(--blue-700);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-logo-name span { color: var(--blue-400); }

.socials {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}

.social {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
}
.social:hover { background: var(--blue-700); border-color: var(--blue-700); }
.social svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.65); transition: fill 0.18s ease; }
.social:hover svg { fill: white; }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  /* Reset inherited <nav> element styles */
  position: static;
  background: transparent;
  border: none;
  box-shadow: none;
  height: auto;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.17s ease, padding-left 0.17s ease;
  background: transparent;
}
.footer-nav a:hover { color: var(--blue-400); padding-left: 3px; background: transparent; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 11px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
}
.contact-row svg {
  width: 14px; height: 14px;
  stroke: var(--blue-400);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}

.footer-bottom a {
  color: rgba(255,255,255,0.28);
  transition: color 0.17s ease;
}
.footer-bottom a:hover { color: var(--blue-400); }

.footer-bottom-links { display: flex; gap: 22px; }

/* ===================== HAMBURGER BUTTON ===================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xs);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-hamburger:hover { border-color: var(--blue-500); background: var(--blue-50); }

.ham-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== MOBILE NAV PANEL ===================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 199;
  overflow-y: auto;
  padding: 12px 0 32px;
  border-top: 1px solid var(--gray-200);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  padding: 8px 20px;
}

.mobile-nav-links li { border-bottom: 1px solid var(--gray-100); }

.mobile-nav-links a {
  display: block;
  padding: 15px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.17s ease, padding-left 0.17s ease;
}
.mobile-nav-links a:hover { color: var(--blue-700); padding-left: 6px; }

.mobile-nav-footer {
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  justify-content: center;
  transition: border-color 0.17s ease, color 0.17s ease;
}
.mobile-nav-tel:hover { border-color: var(--blue-500); color: var(--blue-700); }

.mobile-nav-cta { width: 100%; justify-content: center; }

/* ===================== INNER PAGE HERO ===================== */
.page-hero {
  background-color: var(--blue-950);
  background-image: url('/images/services-bg.webp');
  background-size: cover;
  background-position: center;
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(30,58,138,0.82) 42%, rgba(29,78,216,0.75) 100%);
  pointer-events: none;
}

.page-hero-glow {
  position: absolute;
  top: -80px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(191,219,254,0.6);
}

.breadcrumb a {
  color: rgba(191,219,254,0.6);
  transition: color 0.17s ease;
}
.breadcrumb a:hover { color: var(--blue-400); }

.breadcrumb-sep {
  width: 4px; height: 4px;
  background: rgba(191,219,254,0.4);
  border-radius: 50%;
  display: inline-block;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(191,219,254,0.8);
  line-height: 1.75;
  max-width: 560px;
}

/* ===================== SERVICES DETAIL PAGE ===================== */
.services-detail {
  padding: 100px 0;
  background: var(--white);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-detail-card:first-child { padding-top: 0; }
.service-detail-card:last-child { border-bottom: none; padding-bottom: 0; }

.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }

.service-detail-visual {
  background: var(--blue-50);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(59,130,246,0.12), transparent 60%);
}

.service-detail-visual-icon {
  width: 80px; height: 80px;
  background: var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.service-detail-visual-icon svg {
  width: 36px; height: 36px;
  stroke: var(--blue-700);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail-content .tag { margin-bottom: 14px; }

.service-detail-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.service-detail-content p {
  font-size: 0.975rem;
  color: var(--gray-600);
  line-height: 1.78;
  margin-bottom: 20px;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* ===================== PRICING PAGE ===================== */
.pricing-section {
  padding: 100px 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.pricing-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  position: relative;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-100);
}

.pricing-card.featured {
  background: linear-gradient(145deg, var(--blue-900), var(--blue-700));
  border-color: transparent;
}

.pricing-card.featured:hover { border-color: transparent; }

.price-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-card .price-badge { background: var(--blue-50); color: var(--blue-700); }
.pricing-card.featured .price-badge { background: rgba(255,255,255,0.15); color: white; }

.price-from {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.pricing-card.featured .price-from { color: rgba(255,255,255,0.6); }

.price-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card.featured .price-num { color: white; }

.price-num sup {
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: super;
}

.price-unit {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.pricing-card.featured .price-unit { color: rgba(255,255,255,0.6); }

.price-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pricing-card.featured .price-name { color: white; }

.price-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card.featured .price-desc { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.15); }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--gray-700);
}
.pricing-card.featured .price-feature { color: rgba(255,255,255,0.85); }

.price-feature-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-card.featured .price-feature-check { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }

.price-feature-check svg { width: 10px; height: 10px; stroke: var(--blue-700); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pricing-card.featured .price-feature-check svg { stroke: white; }

.pricing-card .btn-primary { width: 100%; justify-content: center; }
.pricing-card.featured .btn-white { width: 100%; justify-content: center; }

.pricing-addon-section {
  padding: 80px 0 100px;
  background: var(--gray-50);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.addon-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.addon-card:hover { transform: translateY(-3px); border-color: var(--blue-100); }

.addon-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-700);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.addon-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.addon-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ===================== LOCATIONS PAGE ===================== */
.locations-section {
  padding: 100px 0;
  background: var(--white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.location-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.24s ease, border-color 0.24s ease;
  position: relative;
  overflow: hidden;
}

.location-card:hover { transform: translateY(-4px); border-color: var(--blue-100); }

.location-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-700);
  transform: scaleX(0);
  transition: transform 0.26s ease;
}
.location-card:hover::before { transform: scaleX(1); }

.location-district {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 6px;
}

.location-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.location-info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.845rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 8px;
}

.location-info-row svg {
  width: 13px; height: 13px;
  stroke: var(--blue-500);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 4px 10px;
  border-radius: 100px;
}

.service-area-section {
  padding: 80px 0 100px;
  background: var(--gray-50);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.area-tag {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.area-tag:hover { border-color: var(--blue-200); color: var(--blue-700); }
.area-tag svg { width: 12px; height: 12px; stroke: var(--blue-500); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ===================== ABOUT PAGE ===================== */
.about-story {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-block {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(96,165,250,0.2), transparent 60%);
}

.about-img-icon {
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-img-icon svg {
  width: 48px; height: 48px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-stat-pill {
  position: absolute;
  background: white;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-stat-pill.pill-tl { top: -16px; left: -16px; }
.about-stat-pill.pill-br { bottom: -16px; right: -16px; }

.pill-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-700);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pill-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.3;
}

.about-text .tag { margin-bottom: 14px; }

.about-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 0.975rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-section {
  padding: 100px 0;
  background-color: var(--gray-50);
  background-image: url('/images/process-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}
.values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
  pointer-events: none;
}
.values-section .container {
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.value-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--blue-100); }

.value-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-icon svg { width: 22px; height: 22px; stroke: var(--blue-700); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.team-section {
  padding: 100px 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.team-card {
  text-align: center;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 20px 24px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}
.team-card:hover { transform: translateY(-4px); border-color: var(--blue-100); }

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.815rem;
  color: var(--blue-600);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.845rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.timeline-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.timeline {
  max-width: 700px;
  margin: 56px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-200), var(--blue-400), var(--blue-200));
}

.timeline-item {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue-700);
  letter-spacing: -0.02em;
}

.timeline-content { padding-top: 10px; }

.timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 4px;
}

.timeline-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===================== CONTACT PAGE ===================== */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  margin-top: 56px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.24s ease;
}
.contact-info-card:hover { border-color: var(--blue-100); }

.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--blue-700); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 3px;
}

.contact-info-sub {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.contact-form-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}

.contact-form-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

/* ── Contact success state ── */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  gap: 12px;
}
.contact-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ecfdf5;
  border: 2px solid #6ee7b7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin-bottom: 4px;
}
.contact-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin: 0;
}
.contact-success p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
  max-width: 340px;
}

.contact-form-card > p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 26px;
  line-height: 1.55;
}

.field textarea {
  padding: 10px 13px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xs);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color 0.17s ease;
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
  line-height: 1.6;
}
.field textarea:focus { border-color: var(--blue-500); }
.field textarea::placeholder { color: var(--gray-400); }

/* ===================== PRICE CALCULATOR ===================== */
.calc-section {
  padding: 100px 0;
  background: var(--blue-50);
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

/* Panel (left) */
.calc-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-block {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}

.calc-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 16px;
}

/* Mode toggle */
.calc-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.calc-mode-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  flex-wrap: wrap;
}

.calc-mode-btn:hover {
  border-color: var(--blue-300, #93C5FD);
  color: var(--blue-700);
}

.calc-mode-btn.active {
  border-color: var(--blue-700);
  background: var(--blue-50);
  color: var(--blue-700);
}

.calc-mode-btn svg { flex-shrink: 0; }

.calc-save-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  background: #DCFCE7;
  color: #166534;
  margin-left: 2px;
}

/* Tabs */
.calc-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  border-bottom: 1.5px solid var(--gray-200);
  padding-bottom: 0;
}

.calc-tab {
  padding: 9px 16px;
  font-size: 0.855rem;
  font-weight: 600;
  color: var(--gray-500);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  cursor: pointer;
  transition: color 0.17s ease, border-color 0.17s ease;
}

.calc-tab:hover { color: var(--blue-700); }

.calc-tab.active {
  color: var(--blue-700);
  border-bottom-color: var(--blue-700);
}

.calc-tab-content { display: none; }
.calc-tab-content.active { display: block; }

.calc-tab-info {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 16px;
  font-style: italic;
}

/* Weight row (Wash & Fold) */
.calc-weight-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.calc-weight-row .calc-item-name {
  flex: 1;
  min-width: 100px;
}

/* Items list (Dry Clean / Iron & Press) */
.calc-items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-item-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-100);
}

.calc-item-row:last-child { border-bottom: none; }

.calc-item-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800);
}

.calc-item-walkin-price {
  font-size: 0.8rem;
  color: var(--gray-400);
  white-space: nowrap;
}

.calc-item-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-700);
  min-width: 60px;
  text-align: right;
  white-space: nowrap;
}

/* Stepper */
.calc-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.stepper-btn {
  width: 30px;
  height: 30px;
  background: var(--gray-50);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
  line-height: 1;
}

.stepper-btn:hover { background: var(--blue-50); color: var(--blue-700); }

.stepper-input {
  width: 44px;
  height: 30px;
  border: none;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  outline: none;
  -moz-appearance: textfield;
}

.stepper-input::-webkit-inner-spin-button,
.stepper-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Add-ons */
.calc-addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.calc-addon-item {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
  gap: 10px;
}

.calc-addon-item:hover { border-color: var(--blue-200); background: var(--blue-50); }

.calc-addon-check {
  width: 16px;
  height: 16px;
  accent-color: var(--blue-700);
  flex-shrink: 0;
  cursor: pointer;
}

.calc-addon-item:has(.calc-addon-check:checked) {
  border-color: var(--blue-700);
  background: var(--blue-50);
}

.calc-addon-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-addon-name {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.3;
}

.calc-addon-price {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--blue-600);
}

/* Summary (right) */
.calc-summary {
  background: var(--blue-950);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  color: var(--white);
}

.calc-summary-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.0rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.calc-summary-head svg { stroke: var(--blue-400); }

.calc-summary-mode {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.calc-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 60px;
}

.calc-summary-empty {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  line-height: 1.55;
}

.calc-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 0.855rem;
}

.calc-summary-line-label {
  color: rgba(255,255,255,0.7);
  flex: 1;
}

.calc-summary-line-val {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.calc-summary-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 16px 0;
}

.calc-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.calc-summary-subtotal { color: rgba(255,255,255,0.65); }

.calc-summary-addons-total { color: rgba(255,255,255,0.65); }

.calc-summary-grand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.calc-summary-note {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.55;
  margin-top: 14px;
  margin-bottom: 20px;
}

.calc-book-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.calc-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  transition: color 0.17s ease;
}

.calc-contact-link:hover { color: var(--blue-400); }
.calc-contact-link svg { stroke: currentColor; }

/* Responsive */
@media (max-width: 1024px) {
  .calc-layout { grid-template-columns: 1fr; }
  .calc-summary { position: static; }
}

@media (max-width: 640px) {
  .calc-mode-toggle { grid-template-columns: 1fr; }
  .calc-addons-grid { grid-template-columns: 1fr; }
  .calc-item-row { grid-template-columns: 1fr auto auto; }
  .calc-item-walkin-price { display: none; }
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
}

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open { border-color: var(--blue-100); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color 0.17s ease;
}

.faq-question:hover { color: var(--blue-700); }

.faq-chevron {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.faq-item.open .faq-chevron { background: var(--blue-700); transform: rotate(180deg); }

.faq-chevron svg { width: 12px; height: 12px; stroke: var(--gray-600); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.25s ease; }
.faq-item.open .faq-chevron svg { stroke: white; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ===================== PRICE MODES (Dual Service Type Display) ===================== */
.price-modes {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 0 0 20px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card.featured .price-modes { border-color: rgba(255,255,255,0.15); }

.price-mode { text-align: center; padding: 0 10px; }

.price-mode-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.pricing-card.featured .price-mode-label { color: rgba(255,255,255,0.5); }

.price-mode-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 3px;
}
.pricing-card.featured .price-mode-num { color: white; }
.price-mode-num sup { font-size: 0.8rem; font-weight: 700; vertical-align: super; }

.price-mode-num.is-save { color: var(--blue-700); }
.pricing-card.featured .price-mode-num.is-save { color: #93C5FD; }

.price-mode-unit {
  font-size: 0.71rem;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.pricing-card.featured .price-mode-unit { color: rgba(255,255,255,0.45); }

.save-pill {
  display: inline-block;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  background: #DCFCE7;
  color: #166534;
}
.pricing-card.featured .save-pill { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.price-mode-sep {
  width: 1px;
  height: 56px;
  background: var(--gray-200);
  flex-shrink: 0;
}
.pricing-card.featured .price-mode-sep { background: rgba(255,255,255,0.15); }

/* Location card map link & walk-in badge */
.location-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.location-badge.walk-in {
  background: #DCFCE7;
  color: #166534;
  border-color: #BBF7D0;
}

.location-map-preview {
  margin-top: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
}
.location-map-preview iframe {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
}

/* ===================== RESPONSIVE (INNER PAGES) ===================== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { padding: 44px 0 52px; }
  .page-hero h1 { font-size: 2rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-card { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-card.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stat-pill.pill-tl { top: -8px; left: -8px; }
  .about-stat-pill.pill-br { bottom: -8px; right: -8px; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .contact-form-card { padding: 28px 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid--two { max-width: 80%; }
  .process-steps { flex-wrap: wrap; gap: 16px; }
  .step { flex: 1 1 calc(50% - 40px); }
  .step-connector { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  /* Show hamburger, hide desktop nav items */
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-tel { display: none; }
  .btn-nav-auth { display: none; }

  /* Show mobile nav panel */
  .mobile-nav { display: block; }

  /* Hero */
  .hero { padding: 48px 0 64px; }
  .slideshow-slide { background-position: right center; }
  .hero-h1 { font-size: 2.1rem; }
  .hero-desc { max-width: 100%; }
  .hero-checks { gap: 9px; }
  /* Stable fixed height on tablet/mobile — all slides are position:absolute
     so the container height must be explicit to avoid layout shifts */
  .hero-content { height: 440px; }

  /* Pickup form */
  .pickup-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Trust bar */
  .trust-sep { display: none; }
  .trust-inner { gap: 14px 20px; justify-content: flex-start; padding: 0 4px; }

  /* Services */
  .services { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid--two { max-width: 100%; }
  .svc-controls { gap: 12px; }

  /* Process — vertical timeline stepper */
  .process { padding: 72px 0; }
  .process-steps {
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 0;
  }

  /* Dashed vertical line threading through all icons */
  .process-steps::before {
    content: '';
    position: absolute;
    left: 51px; /* 36px container offset + half of 32px icon = center of icon */
    top: 80px;  /* starts below first icon center */
    bottom: 80px;
    width: 2px;
    background-image: repeating-linear-gradient(
      to bottom,
      var(--blue-400) 0px,
      var(--blue-400) 5px,
      transparent 5px,
      transparent 9px
    );
    border-radius: 1px;
    z-index: 0;
  }

  /* Each step becomes a horizontal row: icon | text */
  .step {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 18px;
    text-align: left;
    align-items: start;
    flex: 1 1 100%;
    padding: 20px 20px 20px 20px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    border-left: 3px solid var(--blue-100);
  }
  .step:last-child { margin-bottom: 0; }

  /* Icon in column 1, spanning all 3 rows */
  .step-icon {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: center;
    margin-bottom: 0;
    width: 52px;
    height: 52px;
  }

  /* Text in column 2 */
  .step-num  { grid-column: 2; grid-row: 1; }
  .step h3   { grid-column: 2; grid-row: 2; margin-bottom: 6px; }
  .step p    { grid-column: 2; grid-row: 3; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat + .stat::before { display: none; }

  /* Testimonials: 1 card column per page */
  .testimonials { padding: 72px 0; }
  .testi-page { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band { padding: 64px 0; }
  .cta-box { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
  .cta-btns { align-items: stretch; flex-direction: column; min-width: unset; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 56px; }
  .hero-h1 { font-size: 1.85rem; }
  .hero-badge { font-size: 0.72rem; }
  /* Taller container on small phones — wrapping text needs more vertical room */
  .hero-content { height: 480px; }
  .pickup-card { padding: 24px 16px; border-radius: var(--radius-lg); }
  .pickup-card-head h3 { font-size: 1.15rem; }

  .section-title { font-size: 1.6rem; }
  .services { padding: 60px 0; }
  .process { padding: 60px 0; }
  /* Tighten the timeline icon on very small phones */
  .step-icon { width: 44px; height: 44px; }
  .step-icon svg { width: 20px; height: 20px; }
  .process-steps::before { left: 38px; } /* recalc for 16px container padding + 22px (half of 44px) */
  .testimonials { padding: 60px 0; }
  .cta-band { padding: 48px 0; }
  .cta-box { padding: 32px 20px; border-radius: var(--radius-lg); }
  .cta-text h2 { font-size: 1.5rem; }

  .stats { padding: 52px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }

  .footer-bottom-links { gap: 10px; font-size: 0.75rem; }
  .testi-controls { gap: 12px; }
}

/* ===================== AUTH PAGES ===================== */
.auth-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--gray-50);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 44px 40px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  animation: fadeInUp 0.5s cubic-bezier(0.4,0,0.2,1) both;
}

.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.auth-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 6px;
}

.auth-sub {
  font-size: 0.9375rem;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 24px;
}

/* Google Button */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 20px;
}
.btn-google:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  transform: translateY(-1px);
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.auth-divider span {
  font-size: 0.8125rem;
  color: var(--gray-400);
  white-space: nowrap;
}

/* Form elements */
.auth-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-label-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--blue-600);
}
.form-label-link:hover { color: var(--blue-800); }

.form-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-input::placeholder { color: var(--gray-400); }
.form-input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.form-input.is-invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 9px;
}
.check-input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue-700);
  cursor: pointer;
}
.check-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  cursor: pointer;
}

.auth-submit {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  margin-top: 4px;
}

.auth-switch {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 20px;
}
.auth-switch a {
  color: var(--blue-700);
  font-weight: 600;
}
.auth-switch a:hover { color: var(--blue-900); }

.auth-terms {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.auth-terms a { color: var(--blue-600); }
.auth-terms a:hover { color: var(--blue-800); }

/* Alert */
.auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.auth-alert--error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}
.auth-alert svg { flex-shrink: 0; margin-top: 1px; }

/* Nav user menu */
.nav-user-menu { position: relative; }

.nav-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.nav-user-btn:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  color: var(--blue-700);
}

.nav-avatar {
  width: 26px;
  height: 26px;
  background: var(--blue-700);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}

.nav-user-name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 300;
}
.nav-dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 11px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
  text-align: left;
}
.nav-dropdown-item:hover { background: var(--gray-50); color: var(--gray-900); }

@media (max-width: 900px) {
  .nav-user-name { display: none; }
}
@media (max-width: 640px) {
  .auth-card { padding: 32px 24px 28px; }
}

/* =================== BOOKING PAGE =================== */
.booking-block {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
}
.booking-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.booking-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-950);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-block-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

/* Plan cards */
.booking-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.booking-plan-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  position: relative;
  user-select: none;
}
.booking-plan-card:hover { border-color: var(--blue-400); }
.booking-plan-card.is-selected {
  border-color: var(--blue-600);
  background: #EFF6FF;
}
.booking-plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.booking-plan-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}
.booking-plan-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
}
.booking-plan-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 4px;
}
.booking-plan-min {
  font-size: 0.78rem;
  color: var(--blue-600);
  font-weight: 600;
  margin-top: 6px;
}
.booking-plan-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.booking-plan-card.is-selected .booking-plan-check {
  background: var(--blue-600);
}

/* Service type toggle */
.booking-toggle-row {
  display: flex;
  gap: 14px;
}
.booking-toggle-card {
  flex: 1;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.15s;
  user-select: none;
}
.booking-toggle-card:hover { border-color: var(--blue-400); }
.booking-toggle-card.is-selected {
  border-color: var(--blue-600);
  background: #EFF6FF;
}
.booking-toggle-card svg { flex-shrink: 0; margin-top: 2px; color: var(--gray-500); }
.booking-toggle-card.is-selected svg { color: var(--blue-600); }
.booking-toggle-label { font-size: 0.95rem; font-weight: 700; color: var(--gray-800); }
.booking-toggle-sub { font-size: 0.8rem; color: var(--gray-400); margin-top: 2px; }

/* Addon cards */
.booking-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.booking-addon-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s;
  user-select: none;
}
.booking-addon-card:hover { border-color: var(--blue-400); }
.booking-addon-card.is-selected {
  border-color: var(--blue-600);
  background: #EFF6FF;
}
.booking-addon-name { font-size: 0.88rem; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.booking-addon-price { font-size: 0.8rem; font-weight: 700; color: var(--blue-600); }
.booking-addon-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.booking-addon-card.is-selected .booking-addon-check { background: var(--blue-600); }

/* Order summary */
.booking-summary-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}
.booking-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  padding: 14px 0 0;
}

@media (max-width: 768px) {
  .booking-plan-grid { grid-template-columns: 1fr; }
  .booking-toggle-row { flex-direction: column; }
  .booking-block { padding: 20px 18px; }
  .booking-summary-card { padding: 20px 18px; }
}

/* ── Hide section background images on mobile ── */
@media (max-width: 768px) {
  .services {
    background-image: none;
  }
  .services::before {
    display: none;
  }

  .testimonials {
    background-image: none;
  }
  .testimonials::before {
    display: none;
  }

  .values-section {
    background-image: none;
  }
  .values-section::before {
    display: none;
  }
}
