/* ========================================
   PICKUP EXPRESS - Main Stylesheet
   ======================================== */

:root {
  --orange: #C41230;
  --orange-dark: #9A0F26;
  --orange-light: #FFF0F2;
  --navy: #111111;
  --navy-light: #2d2d2d;
  --gold: #D4AF37;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --text: #111111;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1200px;
}

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

html { font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Loading Screen ── */
#loader {
  position: fixed; inset: 0; background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-truck {
  animation: loaderBounce 0.8s ease-in-out infinite alternate;
}
.loader-van-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.loader-van-img {
  width: min(320px, 82vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
  animation: loaderVanSway 0.75s ease-in-out infinite alternate;
}
@keyframes loaderVanSway {
  from { transform: rotate(-1deg); }
  to   { transform: rotate(1deg); }
}
.loader-bar {
  width: 200px; height: 4px; background: rgba(0, 0, 0, 0.08);
  border-radius: 2px; margin: 20px auto 0; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; background: var(--orange);
  border-radius: 2px; width: 0;
  animation: loadFill 1.4s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }
@keyframes loaderBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-logo img.logo-stamp {
  height: 88px; width: auto; display: block;
}
.footer-brand .nav-logo img.logo-stamp {
  height: 110px;
}
.nav-logo span.brand { color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  color: var(--gray-800); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--orange); transition: width 0.3s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: 1rem;
}
.btn-nav-call {
  color: var(--gray-700); font-size: 0.875rem; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.btn-nav-call:hover { color: var(--orange); }
.btn-book-nav {
  background: var(--orange); color: var(--white);
  padding: 10px 22px; border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(196,18,48,0.4);
}
.btn-book-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,18,48,0.5);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  padding: 1.5rem 2rem; z-index: 999;
  flex-direction: column; gap: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.3s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--navy); font-weight: 500; font-size: 1rem; }
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }

/* ── Hero ── */
#hero {
  min-height: 100vh; position: relative;
  padding-top: 72px;
  background: #ffffff;
  display: flex; align-items: center;
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 108px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: none;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 2;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.35);
  color: #D4AF37; padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900;
  color: var(--navy); line-height: 1.1; margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-title .highlight {
  color: var(--orange);
  text-shadow: none;
}
.hero-subtitle {
  font-size: 1.05rem; color: var(--gray-600);
  margin-bottom: 2rem; max-width: 480px; line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease 0.5s both;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 14px 32px; border-radius: var(--radius-full);
  font-size: 1rem; font-weight: 700; display: inline-flex;
  align-items: center; gap: 8px; transition: var(--transition);
  box-shadow: 0 6px 24px rgba(196,18,48,0.45);
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196,18,48,0.55);
}
.btn-outline {
  border: 2px solid rgba(0, 0, 0, 0.12); color: var(--orange);
  padding: 13px 30px; border-radius: var(--radius-full);
  font-size: 1rem; font-weight: 600; display: inline-flex;
  align-items: center; gap: 8px; transition: var(--transition);
  background: #ffffff;
}
.btn-outline:hover {
  border-color: var(--orange-dark); color: var(--orange-dark);
  background: #fff;
  transform: translateY(-2px);
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  animation: fadeInUp 0.6s ease 0.6s both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-600); font-size: 0.85rem;
}
.hero-trust-item i { color: var(--orange); font-size: 1rem; }

/* Hero Visual */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  animation: fadeInRight 0.8s ease 0.4s both;
}
.hero-truck-wrap {
  position: relative; width: 100%; max-width: 520px;
}
.hero-truck-svg {
  width: 100%; height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  animation: floatTruck 4s ease-in-out infinite;
}
@keyframes floatTruck {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}
.hero-card {
  position: absolute; background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px); border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius); padding: 14px 18px;
  color: var(--navy); display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.hero-card-icon { font-size: 1.6rem; }
.hero-card-text { font-size: 0.75rem; opacity: 0.8; }
.hero-card-num { font-size: 1.1rem; font-weight: 800; }
.hero-card.card-1 {
  top: 10%; left: -5%;
}
.hero-card.card-2 {
  bottom: 15%; right: -5%;
}
@keyframes floatCard1 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatCard2 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Road truck at bottom — tall enough strip so the van (and rumble) is not clipped */
.road-section {
  position: absolute; bottom: 0; left: 0; right: 0; height: 108px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.04), transparent);
  overflow: visible;
}
.road-line {
  position: absolute; bottom: 30px; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0, rgba(0, 0, 0, 0.22) 40px, transparent 40px, transparent 80px);
  animation: roadMove 1s linear infinite;
}
@keyframes roadMove { from { background-position: 0 0; } to { background-position: 80px 0; } }
.road-truck-mini {
  position: absolute; bottom: 12px;
  animation: driveAcross 28s linear infinite;
}
.road-van-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.road-truck-mini img.road-van-img {
  width: min(220px, 48vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
  animation: roadVanRumble 0.68s linear infinite;
}
@keyframes roadVanRumble {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-1px) rotate(-0.4deg); }
  50%      { transform: translateY(0.5px) rotate(0.3deg); }
  75%      { transform: translateY(-0.5px) rotate(-0.22deg); }
}
@keyframes driveAcross {
  from { left: calc(100% + 280px); }
  to   { left: -280px; }
}

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInRight {
  from { opacity:0; transform:translateX(40px); }
  to   { opacity:1; transform:translateX(0); }
}

/* ── Section Base ── */
section { padding: 5rem 2rem; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-block; background: #f1f5f9;
  color: var(--orange); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  color: var(--navy); line-height: 1.2; margin-bottom: 1rem;
}
.section-title span { color: var(--orange); }
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-600); max-width: 580px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ── Stats ── */
#stats {
  background: #ffffff;
  padding: 3rem 2rem;
}
.stats-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}
.stat-item {
  text-align: center; color: var(--navy);
  padding: 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}
.stat-item:hover {
  border-color: rgba(0, 0, 0, 0.14);
  background: #f8fafc;
  transform: translateY(-4px);
}
.stat-icon { font-size: 2rem; color: var(--orange); margin-bottom: 0.5rem; }
.stat-number {
  font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1;
}
.stat-label { font-size: 0.875rem; color: var(--gray-600); margin-top: 0.3rem; }

/* ── Services ── */
#services { background: var(--gray-50); }
.services-header { margin-bottom: 3rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--orange); transform: scaleX(0);
  transition: transform 0.3s ease; transform-origin: left;
}
.service-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: #f1f5f9; color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange); color: var(--white);
}
.service-card h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* ── How It Works ── */
#how-it-works { background: var(--white); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
  position: relative; margin-top: 3rem;
}
.steps-grid::before {
  content: ''; position: absolute; top: 56px; left: calc(16.67% + 28px);
  right: calc(16.67% + 28px); height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange));
  background-image: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 20px, transparent 20px, transparent 40px);
}
.step-item { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(196,18,48,0.4);
  transition: var(--transition);
}
.step-item:hover .step-number { transform: scale(1.15); }
.step-item h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.step-item p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; max-width: 220px; margin: 0 auto; }

/* ── Why Choose Us ── */
#why-us {
  background: #ffffff;
}
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
.why-content { max-width: 900px; margin: 0 auto; text-align: center; }
.why-content .section-title { color: var(--navy); }
.why-content .section-subtitle { color: var(--gray-600); margin: 0 auto; }
.why-list {
  margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  text-align: left;
}
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border-radius: var(--radius);
  padding: 1.25rem; border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.why-item:hover {
  background: #f8fafc; border-color: rgba(0, 0, 0, 0.12);
  transform: translateX(6px);
}
.why-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(196,18,48,0.2); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.why-item-text h4 { color: var(--navy); font-weight: 700; margin-bottom: 0.25rem; }
.why-item-text p { color: var(--gray-600); font-size: 0.875rem; line-height: 1.6; }

/* ── Testimonials ── */
#testimonials { background: var(--gray-50); }
.testimonial-wrapper {
  position: relative; overflow: hidden; margin-top: 2.5rem;
}
.testimonials-track {
  display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-slide { min-width: 100%; padding: 0.5rem; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-quote {
  position: absolute; top: -12px; left: 20px;
  font-size: 3rem; color: var(--orange); line-height: 1;
  font-family: Georgia, serif;
}
.stars { color: #FBBF24; margin-bottom: 0.75rem; font-size: 0.95rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; font-style: italic; }
.testimonial-author {
  display: flex; align-items: center; gap: 10px; margin-top: 1.25rem;
  padding-top: 1.25rem; border-top: 1px solid var(--gray-200);
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 0.875rem; color: var(--navy); }
.author-info .loc { font-size: 0.75rem; color: var(--gray-400); }
.testimonial-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem;
}
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-200); cursor: pointer; transition: var(--transition);
}
.testimonial-dot.active { background: var(--orange); transform: scale(1.4); }
.testimonial-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--gray-200); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 0.9rem;
}
.testimonial-arrow:hover { border-color: var(--orange); color: var(--orange); }

/* ── Service Areas ── */
#areas { background: var(--white); }
.areas-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.area-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200); background: var(--gray-50);
  font-size: 0.875rem; font-weight: 500; color: var(--gray-800);
  transition: var(--transition);
}
.area-item i { color: var(--orange); font-size: 0.8rem; }
.area-item:hover {
  border-color: rgba(0, 0, 0, 0.18); color: var(--orange);
  background: #f8fafc; transform: translateY(-2px);
}

/* ── Hours ── */
#hours { background: var(--gray-50); }
.hours-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start; margin-top: 2.5rem;
}
.hours-table { width: 100%; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.875rem 1.25rem; border-radius: var(--radius-sm);
  margin-bottom: 0.5rem; transition: var(--transition);
}
.hours-row:hover { background: var(--gray-100); }
.hours-row.today { background: #f1f5f9; }
.hours-row.today .day { color: var(--orange); font-weight: 700; }
.hours-row .day { font-weight: 600; color: var(--navy); }
.hours-row .time { color: var(--gray-600); font-size: 0.9rem; }
.hours-row .closed { color: #EF4444; font-weight: 600; }
.hours-note {
  background: linear-gradient(145deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-radius: var(--radius); padding: 1.75rem;
}
.hours-note h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--orange); }
.hours-note p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.contact-btns { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
.contact-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}
.contact-btn:hover { background: var(--orange); border-color: var(--orange); }
.contact-btn i { font-size: 1rem; }

/* ── CTA Banner ── */
#cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 4rem 2rem; text-align: center;
}
#cta-banner h2 {
  font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 900;
  color: var(--white); margin-bottom: 1rem;
}
#cta-banner p {
  color: rgba(255,255,255,0.85); font-size: 1.05rem;
  margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto;
}
.btn-cta-white {
  background: var(--white); color: var(--orange);
  padding: 14px 36px; border-radius: var(--radius-full);
  font-size: 1rem; font-weight: 800; display: inline-flex;
  align-items: center; gap: 8px; transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-cta-white:hover {
  transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ── Footer ── */
footer {
  background: #ffffff;
  color: var(--gray-600); padding: 3.5rem 2rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: 0.875rem; line-height: 1.8; margin-top: 1rem; max-width: 280px;
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--gray-200); color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; transition: var(--transition);
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-col h4 { color: var(--navy); font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  color: var(--gray-600); font-size: 0.875rem;
  transition: color 0.2s;
  display: flex; align-items: flex-start; gap: 0.5rem;
  overflow-wrap: anywhere;
}
.footer-col ul li a i { margin-top: 0.2em; flex-shrink: 0; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: var(--gray-600);
}

/* ── Floating Elements ── */
.float-book {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: var(--orange); color: var(--white);
  padding: 14px 24px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.9rem; display: flex;
  align-items: center; gap: 8px;
  box-shadow: 0 8px 30px rgba(196,18,48,0.5);
  transition: var(--transition);
  animation: pulseBtn 2.5s ease-in-out infinite;
}
.float-book:hover {
  background: var(--orange-dark); transform: scale(1.05);
  animation: none; box-shadow: 0 12px 36px rgba(196,18,48,0.6);
}
@keyframes pulseBtn {
  0%,100% { box-shadow: 0 8px 30px rgba(196,18,48,0.5); }
  50% { box-shadow: 0 8px 40px rgba(196,18,48,0.75); }
}
.back-to-top {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 6px 20px rgba(196,18,48,0.35);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--orange); transform: translateY(-3px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-subtitle { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .hours-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
}

/* ── Hero Team Photo Frame ── */
.hero-team-frame {
  border-radius: 20px; overflow: hidden; position: relative;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
  border: 3px solid rgba(212,175,55,0.35);
}
.hero-team-frame img {
  width: 100%; height: 420px; object-fit: cover;
  display: block; object-position: center top;
}
.hero-team-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(196,18,48,0.93);
  color: var(--white); padding: 14px 20px;
  font-size: 0.95rem; font-weight: 800; text-align: center;
  letter-spacing: 0.5px;
}
.hero-team-tag i { color: var(--gold); margin-right: 6px; }
.hero-van-fallback { width: 100%; height: auto; }

/* ── Team Section ── */
#team { background: var(--white); }
.team-grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: 1.5rem;
  margin-top: 2.5rem; align-items: start;
}
.team-photo {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.team-photo-main img { height: 420px; object-position: center top; }
.team-photo-van img { height: 420px; object-position: center center; }
.team-photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: white; padding: 30px 16px 16px;
  font-size: 0.875rem; font-weight: 600;
}

/* ── Van Showcase ── */
.van-showcase {
  display: flex; align-items: center; justify-content: center;
  margin-top: 2rem; padding: 2rem;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.van-showcase img {
  max-width: 600px; width: 100%; height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
  transition: transform 0.5s ease;
}
.van-showcase img:hover { transform: scale(1.03); }

/* ── Why-us Visual with Van ── */
.why-van-wrap {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.why-van-img {
  border-radius: var(--radius); overflow: hidden; background: var(--navy-light);
  padding: 1.5rem; display: flex; align-items: center; justify-content: center;
}
.why-van-img img {
  width: 100%; max-width: 380px; height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

/* Logo nav gold color */
.nav-logo .brand { color: var(--gold); }
.logo-icon { background: var(--orange) !important; }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-photo-main img, .team-photo-van img { height: 280px; }
  .hero-team-frame img { height: 300px; }
}

/* ── Testimonial Cards — Solid Dark Red ── */
.testimonial-card {
  background: #A52422;
  border-color: transparent;
}
.testimonial-card:hover { background: #8B2020; }
.testimonial-quote { color: rgba(255,255,255,0.18); }
.stars { color: #FFB800; }
.testimonial-card p { color: rgba(255,255,255,0.92); }
.testimonial-author { border-top-color: rgba(255,255,255,0.2); }
.author-avatar { background: rgba(255,255,255,0.2); }
.author-info .name { color: #fff; }
.author-info .loc { color: rgba(255,255,255,0.6); }

/* ── What We Offer — 3-Card Section ── */
#offer { background: #fff; padding: 5rem 2rem; }
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-top: 2.5rem;
}
.offer-card {
  padding: 3.5rem 2rem; text-align: center; color: #fff;
  transition: transform 0.3s ease, filter 0.3s ease; position: relative; z-index: 1;
}
.offer-card:hover { transform: translateY(-6px); filter: brightness(1.1); z-index: 2; }
.offer-card-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
.offer-card h3 {
  font-size: 1rem; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.offer-card p { font-size: 0.9rem; line-height: 1.85; opacity: 0.92; }
.offer-navy { background: #1E2B45; }
.offer-red  { background: #A52422; }
.offer-gold { background: #C9A020; }
@media (max-width: 768px) { .offer-grid { grid-template-columns: 1fr; border-radius: var(--radius); } }

