/* ═══════════════════════════════════════════════════════
   Tahoe WakeBusters — Main Stylesheet
   Design: Conversion-optimized, modern, mobile-first
   ═══════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --navy:       #0a1628;
  --navy-mid:   #112040;
  --teal:       #00b4d8;
  --teal-dark:  #0096b7;
  --orange:     #ff6b2b;
  --orange-dark:#e55a1e;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --gray-100:   #eef1f6;
  --gray-300:   #c8d0dd;
  --gray-500:   #7a8899;
  --gray-700:   #3d4f63;
  --text:       #1a2535;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg:  0 12px 48px rgba(10,22,40,0.18);
  --transition: 0.25s ease;
  --nav-h:      72px;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Spacing ── */
.section-pad { padding: 96px 0; }

/* ── Section Headers ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header--light .section-eyebrow,
.section-header--light .section-title,
.section-header--light .section-subtitle { color: var(--white); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-cta {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,43,0.35);
}
.btn-cta:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 28px rgba(255,107,43,0.45);
  transform: translateY(-2px);
}
.btn-cta:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ── Accent Color ── */
.accent { color: var(--teal); }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

/* Scrolled state — applied via JS */
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(10,22,40,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.nav-logo { display: flex; align-items: center; }
/* Single logo — always shown white via invert filter over dark navbar */
.logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); }

/* Nav links */
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--teal);
  transition: right var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { right: 0; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--navy);
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu .nav-link { font-size: 1rem; color: var(--white); }
.mobile-book-btn { width: 100%; margin-top: 8px; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,22,40,0.72) 0%,
    rgba(10,22,40,0.45) 55%,
    rgba(10,22,40,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,180,216,0.2);
  border: 1px solid rgba(0,180,216,0.5);
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
}
.trust-sep { color: rgba(255,255,255,0.3); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: bounce 2s infinite;
}
.scroll-cue span {
  display: block;
  width: 8px; height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  margin-top: -4px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════ */
.trust-bar {
  background: var(--navy);
  padding: 32px 0;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.trust-icon {
  width: 36px; height: 36px;
  color: var(--teal);
  flex-shrink: 0;
}

.trust-item div { display: flex; flex-direction: column; }
.trust-item strong {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.trust-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ════════════════════════════════════════
   FLEET
════════════════════════════════════════ */
.fleet { background: var(--off-white); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: start;
}

/* Fleet card */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.fleet-card.featured {
  border: 2px solid var(--teal);
}

.fleet-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.fleet-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.fleet-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.04); }

.fleet-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fleet-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.fleet-desc {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Fleet features list */
.fleet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: 24px;
}
.fleet-features li {
  font-size: 0.84rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chk {
  color: var(--teal);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Pricing */
.fleet-pricing {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--gray-700);
}
.price-row:last-of-type { border-bottom: none; }
.price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}
.price-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 10px;
  line-height: 1.5;
}

.fleet-btn { width: 100%; margin-top: auto; }

/* Fleet CTA row */
.fleet-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}
.fleet-cta-row p {
  font-size: 1rem;
  color: var(--gray-700);
}
.fleet-cta-row .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}
.fleet-cta-row .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ════════════════════════════════════════
   WHY WAKEBUSTERS
════════════════════════════════════════ */
.why-us {
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.78) 100%);
}

.why-inner { position: relative; z-index: 2; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.how-it-works { background: var(--white); }

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.step-arrow {
  font-size: 2rem;
  color: var(--gray-300);
  align-self: center;
  padding: 0 8px;
  flex-shrink: 0;
}

.how-cta {
  text-align: center;
  margin-top: 56px;
}

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery { background: var(--navy); }
.gallery .section-header { color: var(--white); }
.gallery .section-eyebrow { color: var(--teal); }
.gallery .section-title { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials { background: var(--off-white); }

.review-stars {
  font-size: 1.4rem;
  color: #f5b301;
  letter-spacing: 2px;
  margin-top: 8px;
}

.carousel { position: relative; overflow: hidden; }

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.t-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.t-stars { font-size: 1.1rem; color: #f5b301; letter-spacing: 2px; }
.t-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-700);
  font-style: italic;
  flex: 1;
}
.t-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.yelp-logo { height: 20px; width: auto; }
.t-card cite {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
}

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

.c-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.c-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.c-dots { display: flex; gap: 8px; }
.c-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.c-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about { background: var(--white); }

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

.about-images {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 520px;
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 4/3;
}

.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content .section-eyebrow { display: block; margin-bottom: 12px; }
.about-content p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-content p em { color: var(--navy); font-style: italic; }

.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0 36px;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
}
.about-stat strong {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.about-stat span {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 500;
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq { background: var(--off-white); }

.faq-inner { max-width: 760px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-item:first-child { border-top: 1px solid var(--gray-100); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-q[aria-expanded="true"] { color: var(--teal); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 0.94rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */

/* Footer CTA banner */
.footer-cta {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
}
.footer-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* Footer main */
.footer-main {
  background: var(--navy);
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0,180,216,0.1);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

/* Contact column */
.footer-contact ul { gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.65) !important;
}
.footer-contact li svg {
  width: 16px; height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact li a:hover { color: var(--white); }

/* Footer bottom bar */
.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ════════════════════════════════════════
   INQUIRE
════════════════════════════════════════ */
.inquire { background: var(--off-white); }

.inquire-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.inquire-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px 56px;
  min-width: 260px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--navy);
}

.inquire-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.inquire-icon {
  width: 64px; height: 64px;
  background: rgba(0,180,216,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inquire-icon svg {
  width: 28px; height: 28px;
  color: var(--teal);
}

.inquire-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.inquire-card p {
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}

/* ── Shop nav link highlight ── */
.nav-link-shop {
  color: var(--teal) !important;
  font-weight: 700;
}
.nav-link-shop:hover { color: var(--white) !important; }

/* ════════════════════════════════════════
   VIDEO SECTION
════════════════════════════════════════ */
.video-section {
  background: var(--navy);
}
.video-section .section-title { color: var(--white); }
.video-section .section-eyebrow { color: var(--teal); }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
  max-width: 960px;
  margin: 0 auto;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* YouTube facade — thumbnail shown until user clicks to load iframe */
.video-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.video-facade img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.video-facade:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}

.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  transition: transform 0.2s ease, filter 0.2s ease;
  pointer-events: none;
}
.video-facade:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  filter: drop-shadow(0 6px 28px rgba(0,0,0,0.6));
}
.video-facade:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.video-cta {
  text-align: center;
  margin-top: 44px;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Tablet: 768px–1024px */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
  .about-inner { gap: 48px; }
}

/* Mobile: ≤768px */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Navbar mobile fixes */
  .nav-inner { padding: 0 16px; }
  .nav-actions { gap: 12px; }
  .logo-img { height: 36px; width: auto; max-width: 140px; object-fit: contain; }
  .btn-cta { font-size: 0.75rem; padding: 10px 18px; }

  .section-pad { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  /* Hero */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 6px; }
  .trust-sep { display: none; }

  /* Trust bar */
  .trust-grid { gap: 20px 32px; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-features { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; font-size: 1.5rem; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  /* Testimonials */
  .t-card { padding: 28px 24px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-images { padding-bottom: 80px; padding-right: 32px; }
  .about-content .section-title { font-size: 1.8rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-cta { padding: 56px 0; }
}

/* Small mobile: ≤480px */
@media (max-width: 480px) {
  .t-card { padding: 24px 20px; }
  .about-img-secondary { display: none; }
  .about-images { padding: 0; }
  .about-images .about-img-main { max-height: 300px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}
