/* ===============================
   GLOBAL RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: #94A3B8;
  color: #0B1C2D;
  line-height: 1.6;
}

/* ===============================
   SHARED HERO NAV
================================ */
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

.hero-nav .logo {
  font-weight: 800;
  color: white;
  font-size: 1rem;
}

.hero-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}

.hero-nav a:hover {
  opacity: 1;
}

/* ===============================
   HOME HERO
================================ */
.hero {
  --hero-pad-top: 130px;
  --hero-copy-top: 76px;
  --hero-truck-top: calc(var(--hero-copy-top) - 150px);
  min-height: 100vh;
  background: color #94A3B8;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--hero-pad-top) 48px 0 48px;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 500px;
  text-align: center;
  position: relative;
  z-index: 5;
  margin-top: var(--hero-copy-top);
  margin-bottom: 40px;
  animation: heroFollowTruck 0.9s ease-out 0.5s both;
}

.hero-content.fade-up,
.hero-content.fade-up.show {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 12px;
}

.hero-content .brand {
  color: #0B3B6B;
}

.hero-content .accent {
  color: #2F80ED;
}

.hero-content p {
  font-size: 0.95rem;
  color: #0B3B6B;
  margin-bottom: 20px;
}

@media (min-width: 1600px) and (min-height: 900px) {
  .hero {
    --hero-copy-top: 90px;
  }
}

@media (min-width: 769px) and (max-width: 1599px) {
  .hero {
    --hero-copy-top: 60px;
  }
}

@media (min-width: 769px) and (max-height: 820px) {
  .hero {
    --hero-copy-top: 46px;
  }
}

@media (max-width: 768px) {
  .hero {
    --hero-pad-top: 112px;
    --hero-copy-top: 32px;
    padding: var(--hero-pad-top) 20px 0 20px;
  }

  .hero-content {
    width: min(92vw, 500px);
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: 1.02;
  }

  .hero-content p {
    font-size: 1.05rem;
    line-height: 1.45;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-cta {
    font-size: 1rem;
    padding: 14px 28px;
  }
}

.hero-cta {
  display: inline-block;
  background: white;
  color: #0B1C2D;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero .hero-cta {
  background: #0B3B6B;
  color: white;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ===============================
   SCROLL FADE
================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   TRAFFIC STRIP
================================ */
.traffic-strip {
  background: white;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.traffic-track {
  display: flex;
  gap: 80px;
  padding: 18px 0;
  font-weight: 800;
  letter-spacing: 0.18em;
  animation: move 20s linear infinite;
}

@keyframes move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===============================
   CAMPAIGN SECTION
================================ */
.campaign-section {
  padding: 200px 20px;
  text-align: center;
}

.campaign-header h2 {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.campaign-header p {
  font-size: 1.25rem;
  color: #334155;
}

.campaign-options {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  gap: 28px;
}

.campaign-option {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: all 0.3s ease;
}

.campaign-option.is-active p {
  opacity: 1;
}

.campaign-option.is-active h3,
.campaign-option.is-active .option-scale {
  opacity: 0;
}

.option-scale {
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #2F80ED;
}

.campaign-option h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 10px;
}

.campaign-option p {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  padding: 40px;
  font-size: 1.35rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.campaign-option:hover p {
  opacity: 1;
}

.campaign-option:hover h3,
.campaign-option:hover .option-scale {
  opacity: 0;
}

/* ===============================
   BOOKING HERO
================================ */
.hero-booking {
  min-height: 100vh;
  background: color #94A3B8;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
/* ===============================
   STICKY CONTACT
================================ */
.contact-strip {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #0B1C2D;
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  z-index: 30;
}
/* ===============================
   BOOKING FORM – UI UPGRADE
================================ */

.hero-booking + .section {
  background: #F5F7FA;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #0B1C2D;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #94A3B8;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #2F80ED;
  box-shadow: 0 0 0 4px rgba(47,128,237,0.18);
  transform: translateY(-1px);
}

.booking-form button.hero-cta {
  align-self: center;
  margin-top: 10px;
}
/* ===============================
   BOOKING FORM – PREMIUM CARD
================================ */

.hero-booking + .section {
  background: #F5F7FA;
  padding-top: 120px;
}

.booking-form {
  background: white;
  padding: 48px 44px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.booking-form button.hero-cta {
  margin-top: 10px;
}
.results-section {
  background: white;
  padding: 140px 6vw;
}

.results-grid {
  gap: 40px;
}
/* ===============================
   TESTIMONIALS – FRESH START
   (isolated classes: t-*)
================================ */

body.testimonials-page {
  background: #94A3B8;
}

/* HERO */
.t-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  overflow: hidden;

  background:
    color #94A3B8;
  background-size: cover;
  background-position: center;
  color: white;
}

/* subtle glow for “wow” */
.t-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: color #94A3B8;
  pointer-events: none;
  z-index: 0;
}

/* NAV */
.t-nav {
  position: absolute;
  top: 28px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.t-logo {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.t-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}

.t-link:hover {
  opacity: 1;
}

/* HERO CONTENT */
.t-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
}

.t-hero-content h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.t-accent {
  color: #2F80ED;
}

.t-hero-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #0B1C2D;
  max-width: 720px;
  margin: 0 auto;
}

/* RESULTS SECTION */
.t-results {
  background: #FFFFFF;
  padding: 120px 6vw;
}

.t-results-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.t-section-title {
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #0B1C2D;
}

.t-section-sub {
  max-width: 720px;
  color: #334155;
  margin-bottom: 40px;
}

/* GRID */
.t-grid {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.t-card {
  width: 90%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,0.18);
  background: #0B1C2D;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.25);
}

.t-card:nth-child(1) {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.t-card:nth-child(2) {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.t-card:nth-child(3) {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive */
@media (min-width: 900px) {
  .t-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ===============================
   BOOKING FORM – CLEAN PRO (RESET)
   Paste at bottom of style.css
================================ */

body {
  padding-bottom: 72px; /* prevents contact strip overlap */
}

/* Give the booking section breathing room */
.hero-booking + .section {
  padding: 90px 20px;
}

/* Headings on booking page */
.hero-booking + .section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-align: center;
}

/* The form itself (simple, centered, pro) */
.booking-form {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  margin: 0 auto;
  gap: 16px;
}

/* Inputs */
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 16px 18px;
  border: 1px solid #CBD5E1;
  border-radius: 14px;
  font-size: 1rem;
  background: #FFFFFF;
  color: #0B1C2D;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #94A3B8;
}

/* Focus */
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #2F80ED;
  box-shadow: 0 0 0 4px rgba(47,128,237,0.18);
  transform: translateY(-1px);
}

/* Button */
.booking-form button.hero-cta {
  width: 100%;
  background: #2F80ED;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(47,128,237,0.30);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.booking-form button.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(47,128,237,0.38);
}
/* BOOKING: hard-force centering for the heading area */
body.booking-page .section {
  text-align: center;
}

body.booking-page .section h2,
body.booking-page .section p {
  text-align: center !important;
  width: 100%;
}
.truck-wrapper {
  position: absolute;
  top: var(--hero-truck-top);
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.truck-wrapper img {
  width: 1450px;
  height: auto;
  animation: driveInTruck 0.9s ease-out forwards;
}

.truck {
  animation: driveIn 2s ease-out forwards;
}

@keyframes driveInTruck {
  from {
    opacity: 0;
    transform: translateX(-100vw);
  }
  to {
    opacity: 1;
    transform: translateX(180px);
  }
}

@keyframes heroFollowTruck {
  from {
    opacity: 0;
    transform: translateX(-80vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes driveIn {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(120vw);
  }
}

/* ===============================
   BOOKING HERO TYPOGRAPHY TUNE-UP
================================ */
.hero-booking .hero-content {
  width: min(92vw, 820px);
  max-width: 820px;
  margin-top: 0;
}

.hero-booking .hero-content h1 {
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero-booking .hero-content .hero-line {
  display: block;
}

.hero-booking .hero-content p {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.4;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-booking .hero-content {
    width: min(94vw, 620px);
  }

  .hero-booking .hero-content h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
    line-height: 1.02;
  }

  .hero-booking .hero-content p {
    font-size: 1.05rem;
    max-width: 32ch;
  }
}
