:root {
  --black: #050606;
  --ink: #111214;
  --muted: #666b73;
  --line: #e8e8e8;
  --paper: #f7f7f5;
  --white: #ffffff;
  --yellow: #ffc400;
  --yellow-2: #ffdd49;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background-image:
    radial-gradient(circle at 70% 0%, rgba(255, 196, 0, 0.12), transparent 28rem),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 100% 5px;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 10px 14px 10px 18px;
  color: var(--white);
  background: rgba(8, 9, 9, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  transition: height 240ms ease, background 240ms ease, top 240ms ease;
}

.site-header.scrolled {
  top: 10px;
  height: 66px;
  background: rgba(8, 9, 9, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 235px;
  height: 56px;
}

.brand img {
  width: 235px;
  height: 56px;
  object-fit: cover;
  object-position: 50% 51%;
  border-radius: 6px;
  filter: saturate(1.08) contrast(1.05);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.88);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.desktop-nav a.active {
  color: var(--yellow);
}

.call-pill,
.btn,
.cta-number {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 800;
  min-height: 54px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.call-pill {
  padding: 0 22px;
  color: var(--black);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
}

.call-pill:hover,
.btn:hover,
.cta-number:hover {
  transform: translateY(-2px);
}

.call-pill:active,
.btn:active,
.cta-number:active {
  transform: translateY(1px) scale(0.99);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 150px max(28px, calc((100vw - 1180px) / 2)) 66px;
  color: var(--white);
  overflow: hidden;
  background: #050606;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.95) 50%, transparent 50%) 0 0 / 32px 16px,
    linear-gradient(90deg, transparent 50%, rgba(255, 196, 0, 0.95) 50%) 16px 16px / 32px 16px;
  opacity: 0.9;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(610px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.eyebrow span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 196, 0, 0.8);
  animation: pulse-dot 1.8s infinite;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.35rem, 7.4vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

em {
  color: var(--yellow);
  font-style: normal;
}

.hero-text {
  margin: 28px 0 34px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.hero-features {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  min-width: 210px;
  padding: 0 26px;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 18px 40px rgba(255, 196, 0, 0.2);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--yellow);
}

.hero-features {
  margin-top: 44px;
  gap: 26px;
}

.hero-features article {
  display: grid;
  grid-template-columns: 32px auto;
  column-gap: 12px;
  align-items: center;
  min-width: 155px;
}

.hero-features svg {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  color: var(--yellow);
}

.hero-features strong {
  font-size: 0.95rem;
}

.hero-features small {
  color: rgba(255, 255, 255, 0.73);
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: hero-breathe 8s ease-in-out infinite;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.24) 73%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.3));
}

.section {
  padding: 78px max(28px, calc((100vw - 1180px) / 2));
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-title span,
.title-line {
  display: block;
  width: 48px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--yellow);
}

.title-line {
  margin-left: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 242px;
  padding: 32px 22px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.icon-bubble,
.quote-icon,
.benefits span,
.pulse-phone {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: radial-gradient(circle at 30% 25%, #fff3bf, var(--yellow));
}

.icon-bubble {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
}

.icon-bubble svg {
  width: 42px;
  height: 42px;
  stroke-width: 2.4;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.service-card p {
  margin: 0;
  color: #333;
  line-height: 1.5;
}

.quote-band {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: auto 1fr 1.75fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.1), transparent 34%),
    #090b0b;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-icon {
  width: 92px;
  height: 92px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--yellow);
}

.quote-icon svg {
  width: 52px;
  height: 52px;
}

.quote-band h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.quote-band p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.fare-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fare-form label {
  display: grid;
  gap: 7px;
}

.fare-form label span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
}

.fare-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  outline: none;
}

.fare-form input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.16);
}

.fare-form button {
  align-self: end;
  min-height: 58px;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--yellow-2);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.split p {
  color: #30343a;
  line-height: 1.55;
}

.map-card {
  display: block;
  width: 100%;
  height: 275px;
  margin-top: 28px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.benefits {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.benefits article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
}

.benefits span {
  width: 58px;
  height: 58px;
  font-weight: 900;
}

.benefits span svg {
  width: 32px;
  height: 32px;
}

.benefits h3 {
  margin: 0 0 4px;
}

.benefits p {
  margin: 0;
}

.reviews {
  padding: 72px max(28px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0, rgba(255, 196, 0, 0.16), transparent 30rem),
    linear-gradient(rgba(7, 9, 9, 0.86), rgba(7, 9, 9, 0.88)),
    url("assets/glow-bg.png") center / cover,
    #070909;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  position: relative;
  min-height: 190px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.stars {
  color: var(--yellow);
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.review-card p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.google {
  position: absolute;
  right: 26px;
  bottom: 22px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
}

.faq {
  background: var(--white);
}

.faq-list {
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  background: #f6f6f4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.urgent-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px max(28px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
}

.pulse-phone {
  width: 96px;
  height: 96px;
  color: var(--white);
  background: var(--black);
  animation: soft-pulse 2.6s ease-in-out infinite;
}

.pulse-phone svg {
  width: 46px;
  height: 46px;
}

.urgent-cta h2 {
  max-width: 510px;
  color: var(--black);
}

.urgent-cta p {
  margin: 8px 0 0;
  font-weight: 700;
}

.cta-number {
  min-width: 310px;
  padding: 0 34px;
  color: var(--white);
  background: #080909;
  font-size: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 44px;
  padding: 44px max(28px, calc((100vw - 1180px) / 2)) 28px;
  color: var(--white);
  background: #070909;
}

.footer img {
  width: 238px;
  height: 92px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  filter: saturate(1.1) contrast(1.1);
}

.footer p,
.footer a,
.footer small {
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.footer a {
  display: block;
  margin: 9px 0;
}

.footer small {
  grid-column: 1 / -1;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 700ms ease-out;
  pointer-events: none;
}

@keyframes pulse-dot {
  70% { box-shadow: 0 0 0 13px rgba(255, 196, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 196, 0, 0); }
}

@keyframes hero-breathe {
  0%, 100% { transform: scale(1.02); }
  50% { transform: scale(1.055); }
}

@keyframes soft-pulse {
  50% { box-shadow: 0 0 0 14px rgba(5, 6, 6, 0.12); }
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(26);
    opacity: 0;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .call-pill {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.menu-active .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-active .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-active .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 18px;
    color: var(--white);
    background: rgba(6, 7, 7, 0.96);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .mobile-nav a {
    padding: 13px 12px;
    border-radius: 6px;
  }

  .mobile-nav a:hover {
    background: rgba(255, 196, 0, 0.12);
  }

  .hero {
    min-height: 850px;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-band,
  .split,
  .urgent-cta,
  .footer {
    grid-template-columns: 1fr;
  }

  .fare-form,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .cta-number {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    top: 10px;
    height: 68px;
    padding-left: 12px;
  }

  .brand {
    min-width: 170px;
    height: 46px;
  }

  .brand img {
    width: 170px;
    height: 46px;
  }

  .hero {
    min-height: 790px;
    padding: 122px 22px 48px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.15rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .section,
  .reviews {
    padding: 58px 22px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .quote-band {
    width: calc(100% - 28px);
    padding: 24px;
  }

  .map-card {
    height: 230px;
  }

  .urgent-cta {
    padding: 30px 22px;
    text-align: left;
  }

  .pulse-phone {
    width: 74px;
    height: 74px;
  }

  .cta-number {
    min-width: 0;
    font-size: 1.5rem;
  }

  .footer {
    padding: 36px 22px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
