/* =========================================================
   Quick Access Parking — stylesheet
   ========================================================= */

:root {
  --navy: #0b1f3a;
  --navy-light: #123262;
  --blue: #1a56db;
  --blue-light: #3b7bff;
  --accent: #ff8a1e;
  --accent-dark: #e6740a;
  --green: #16a34a;
  --ink: #10182b;
  --grey-900: #1f2937;
  --grey-700: #4b5563;
  --grey-500: #6b7280;
  --grey-300: #d1d5db;
  --grey-200: #e5e7eb;
  --grey-100: #f3f4f6;
  --grey-50: #f8fafc;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.18);

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; color: var(--grey-700); }

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

ul { list-style: none; margin: 0; padding: 0; }

img { max-width: 100%; display: block; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  color: var(--accent-dark);
  background: rgba(255, 138, 30, 0.12);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 138, 30, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 138, 30, .45); }
.btn--light {
  background: var(--white);
  color: var(--navy);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--block { width: 100%; }

/* =================== Top bar =================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; min-width: 0; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 6px; overflow-wrap: anywhere; }
.topbar__contact a:hover { color: var(--accent); }
.topbar__tag { opacity: .85; }
.icon { font-size: .95em; }

/* =================== Header =================== */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--grey-200);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
}
.logo__mark span { color: var(--accent); }
.logo__text {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.15;
}
.logo__text strong { font-weight: 800; }

.nav__list {
  display: flex;
  gap: 28px;
}
.nav__list a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--grey-700);
  position: relative;
  padding: 6px 0;
}
.nav__list a:hover { color: var(--blue); }

.header__cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================== Hero =================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, var(--blue) 130%);
  padding: 64px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 85% 10%, rgba(255,138,30,0.18), transparent 60%),
    radial-gradient(500px 260px at 10% 90%, rgba(59,123,255,0.25), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero__copy h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero__copy h1 span { color: var(--accent); }
.hero__copy > p {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  max-width: 480px;
}
.hero__points { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.hero__points li { color: rgba(255,255,255,.92); font-weight: 500; }

/* Booking card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  top: 10px;
}
.booking-card__header h2 { font-size: 1.3rem; margin-bottom: 4px; }
.booking-card__header p { margin-bottom: 0; font-size: .9rem; color: var(--grey-500); }

.field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--grey-700);
  letter-spacing: .01em;
}
.field-row { display: flex; gap: 14px; }

.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--grey-50);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(59,123,255,.15);
  background: var(--white);
}
.field input:invalid:not(:placeholder-shown) { border-color: #ef4444; }

.stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  background: var(--grey-50);
  overflow: hidden;
}
.stepper__btn {
  background: var(--grey-100);
  border: none;
  width: 40px;
  height: 44px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  transition: background .15s ease;
}
.stepper__btn:hover { background: var(--grey-200); }
.stepper input {
  border: none;
  background: transparent;
  text-align: center;
  padding: 12px 4px;
  width: 100%;
  font-weight: 600;
}
.stepper input:focus { box-shadow: none; }

.field-error {
  color: #dc2626;
  font-size: .85rem;
  font-weight: 500;
  min-height: 1.1em;
  margin: 0;
}

.booking-card__trust {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--grey-500);
  flex-wrap: wrap;
  gap: 8px;
}

/* =================== Trust strip =================== */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
.trust-strip__inner {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 26px 10px;
  transform: translateY(-10px);
}
.trust-item { display: flex; flex-direction: column; gap: 4px; padding: 6px 10px; border-right: 1px solid var(--grey-200); }
.trust-item:last-child { border-right: none; }
.trust-item strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); }
.trust-item span { font-size: .82rem; color: var(--grey-500); }

/* =================== Services =================== */
.services { padding: 96px 0 70px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cards--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  margin: 0 auto;
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(26,86,219,.12), rgba(255,138,30,.12));
  border-radius: 14px;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.15rem; }
.card p { font-size: .92rem; }
.card__link { color: var(--blue); font-weight: 600; font-size: .9rem; }
.card__link:hover { color: var(--accent-dark); }

/* =================== How it works =================== */
.how { padding: 70px 0; background: var(--grey-50); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.step { text-align: center; padding: 0 10px; }
.step__num {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(26,86,219,.3);
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: .9rem; }

/* =================== Why us =================== */
.why { padding: 90px 0; }
.why__inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.why__media {
  background: linear-gradient(150deg, var(--blue), var(--navy));
  border-radius: var(--radius-lg);
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.why__media::before {
  content: "🚗✈️";
  position: absolute;
  top: 34px; left: 34px;
  font-size: 2.4rem;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.25));
}
.why__media-badge {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.why__media-badge strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--accent-dark); }
.why__media-badge span { font-size: .82rem; color: var(--grey-500); max-width: 200px; }

.why__list { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.why__list li { display: flex; gap: 16px; align-items: flex-start; }
.why__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.why__list h4 { font-size: 1.02rem; margin-bottom: 4px; }
.why__list p { font-size: .9rem; margin-bottom: 0; }

/* =================== Reviews =================== */
.reviews { padding: 90px 0; background: var(--grey-50); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--grey-200);
}
.review__stars { color: var(--accent); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review p { font-size: .94rem; font-style: italic; color: var(--grey-700); }
.review__author { font-weight: 600; color: var(--navy); font-size: .9rem; }

/* =================== FAQ / Accordion =================== */
.faq { padding: 90px 0; }
.accordion { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion__item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: .98rem;
  color: var(--navy);
  text-align: left;
}
.accordion__icon {
  font-size: 1.3rem;
  color: var(--blue);
  transition: transform .2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.accordion__item.open .accordion__icon { transform: rotate(45deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: var(--grey-50);
}
.accordion__panel p { padding: 0 22px 18px; margin: 0; font-size: .92rem; }

/* =================== CTA =================== */
.cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  padding: 64px 0;
}
.cta__inner { text-align: center; }
.cta h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); }
.cta p { color: rgba(255,255,255,.9); margin-bottom: 24px; }

/* =================== Footer =================== */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding-top: 70px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer ul { display: flex; flex-direction: column; gap: 12px; font-size: .9rem; }
.footer ul a:hover { color: var(--accent); }
.footer__brand p { color: rgba(255,255,255,.65); font-size: .9rem; max-width: 320px; margin: 16px 0 18px; }
.logo--footer .logo__text { color: var(--white); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.footer__social a:hover { background: var(--accent); }

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--accent); }

/* =================== Misc =================== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 400;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }

/* =================== Sticky Call / WhatsApp actions =================== */
.sticky-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 20px 0 16px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
  font-size: .92rem;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  transition: transform .18s ease, box-shadow .18s ease, padding .18s ease;
}
.sticky-btn:hover { transform: translateY(-3px) scale(1.02); }

.sticky-btn__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-btn__icon svg { width: 100%; height: 100%; }

.sticky-btn--call {
  background: linear-gradient(135deg, var(--blue-light), var(--navy));
}
.sticky-btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4a);
}

/* Pulse ring to draw attention without being obnoxious */
.sticky-btn { position: relative; }
.sticky-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  animation: sticky-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
.sticky-btn--call::after { box-shadow: 0 0 0 0 rgba(59, 123, 255, .5); }

@keyframes sticky-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 640px) {
  .sticky-actions { right: 14px; bottom: 14px; gap: 10px; }
  .sticky-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }
  .sticky-btn__label { display: none; }
  .back-to-top { left: 14px; bottom: 14px; width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-btn::after { animation: none; }
}

.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 999;
  max-width: 90%;
  text-align: center;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .booking-card { top: 0; }
  .why__inner { grid-template-columns: 1fr; }
  .why__media { min-height: 220px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw);
    background: var(--white); box-shadow: -10px 0 30px rgba(0,0,0,.15);
    transform: translateX(100%); transition: transform .3s ease; z-index: 600;
    padding: 100px 28px 28px; }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 8px; }
  .nav__list a { display: block; padding: 12px 8px; border-radius: 8px; }
  .nav__list a:hover { background: var(--grey-100); }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .topbar__tag { display: none; }
}

@media (max-width: 700px) {
  .hero { padding: 40px 0 90px; }
  .field-row { flex-direction: column; }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--grey-200); padding-bottom: 14px; }
  .trust-item:nth-child(2n) { border-right: none; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .booking-card { padding: 20px; }
  .logo__text { font-size: .88rem; }
}
