/* ============================================================
   VIP CAR TRANSFERS · Light theme
   ink #101418 · paper #ffffff · mist #f4f5f7 · line #e6e8eb
   ============================================================ */

:root {
  --ink: #101418;
  --ink-soft: #40474f;
  --muted: #6b7280;
  --paper: #ffffff;
  --mist: #f4f5f7;
  --line: #e6e8eb;
  --font: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;
  --container: 1160px;
  --r: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(16,20,24,.05), 0 2px 8px rgba(16,20,24,.05);
  --shadow-lg: 0 24px 60px rgba(16,20,24,.14);
  --t: .25s cubic-bezier(.3,.7,.3,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: opacity var(--t), color var(--t); }
a:hover { opacity: .72; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

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

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 18px; z-index: 200; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

/* ---------- Type ---------- */
h1, h2, h3 { font-weight: 700; letter-spacing: -.025em; line-height: 1.12; color: var(--ink); }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 12px; }
.section-lead { color: var(--muted); max-width: 600px; font-size: 1.07rem; }
.center { text-align: center; }
.center .section-lead { margin: 0 auto; }

section { padding: 88px 0; }
.section-alt { background: var(--mist); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font);
  font-size: .95rem; font-weight: 600;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: transform var(--t), background var(--t), border-color var(--t), opacity var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn:hover { opacity: 1; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); background: #000; box-shadow: 0 8px 20px rgba(16,20,24,.22); }
.btn-outline { background: #fff; color: var(--ink); border-color: #d4d7db; }
.btn-outline:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-1px); }
.btn-small { padding: 10px 20px; font-size: .9rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }

.brand { display: inline-flex; align-items: baseline; gap: 7px; font-size: 1.84rem; font-weight: 500; letter-spacing: -.02em; }
.brand em { font-style: normal; font-weight: 500; color: var(--muted); }

.main-nav ul { display: flex; gap: 4px; list-style: none; }
.main-nav a {
  display: inline-block;
  font-size: .94rem; font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 100px;
  transition: background var(--t), color var(--t);
}
.main-nav a:hover { color: var(--ink); opacity: 1; background: var(--mist); }
.main-nav a.active { color: var(--ink); background: var(--mist); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-email { color: var(--muted); font-size: .9rem; font-weight: 500; }
.header-email:hover { color: var(--ink); opacity: 1; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform var(--t), opacity var(--t); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 3.9rem); font-weight: 700; margin-bottom: 18px; }
.hero-sub { color: var(--muted); font-size: 1.14rem; max-width: 440px; margin-bottom: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.hero-badges li {
  font-size: .86rem; font-weight: 600;
  color: var(--ink-soft);
  background: var(--mist);
  padding: 8px 15px;
  border-radius: 100px;
}

/* Full-width photo banner under the hero */
.hero-photo { padding: 26px 0 0; }
.hero-photo .photo-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: clamp(260px, 44vw, 520px); object-fit: cover; }
.photo-chip {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: .9rem; font-weight: 600;
  color: var(--ink);
}

/* ---------- Booking widget ---------- */
.widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
}
.widget-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 6px; background: var(--mist); border-radius: calc(var(--r-lg) - 6px); margin-bottom: 8px; }
.widget-tab {
  border: 0; background: transparent;
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  color: var(--muted);
  padding: 12px;
  border-radius: calc(var(--r-lg) - 10px);
  cursor: pointer;
  transition: background var(--t), color var(--t), box-shadow var(--t);
}
.widget-tab.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.widget-body { padding: 16px 16px 18px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }

.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  padding: 13px 15px;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--ink);
}
.field textarea { min-height: 106px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa0a8; }

.hp-field { position: absolute !important; left: -9999px !important; height: 0; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 13px; line-height: 1.55; }
.form-note a { text-decoration: underline; text-underline-offset: 2px; }


/* iOS Safari date/time overflow fix */
@supports (-webkit-touch-callout: none) {
  .field input[type="date"],
  .field input[type="time"],
  .flatpickr-input {
    -webkit-appearance: none;
    appearance: none;
  }
}

/* ---------- Alerts ---------- */
.alert { border-radius: 14px; padding: 18px 22px; margin-bottom: 26px; font-size: .97rem; border: 1px solid; }
.alert-success { border-color: #b7e0c2; background: #ecf8ef; color: #1d6b34; }
.alert-error { border-color: #f0c2c2; background: #fdf0f0; color: #a13232; }
.alert ul { margin: 8px 0 0 18px; }

/* ---------- Photo cards (services / experience) ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; margin-top: 44px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-media { overflow: hidden; background: var(--mist); }
.card-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 22px 24px 26px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: .92rem; font-weight: 600; }
.card .card-link::after { content: "→"; transition: transform var(--t); }
.card:hover .card-link::after { transform: translateX(3px); }

/* ---------- Fleet ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 44px; }
.vehicle {

  background: #fff;

  border: 1px solid var(--line);

  border-radius: var(--r-lg);

  overflow: hidden;

  transition: transform var(--t), box-shadow var(--t);

  display: flex;
  flex-direction: column;

}

.vehicle:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.vehicle-media { overflow: hidden; background: var(--mist); }

.vehicle-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s ease; }

.vehicle:hover .vehicle-media img { transform: scale(1.04); }

.vehicle-body { 
  padding: 22px 24px 26px; 
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vehicle h3 { font-size: 1.2rem; }

.vehicle .vehicle-examples { color: var(--muted); font-size: .88rem; margin: 2px 0 10px; }

.vehicle p { color: var(--muted); font-size: .94rem; }

.vehicle-specs { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
  margin-top: auto; 
  padding-top: 15px;
  list-style: none; 
}

.vehicle-specs li {

  font-size: .84rem; 
  font-weight: 600; 
  color: var(--ink-soft);

  background: var(--mist);

  padding: 6px 13px;

  border-radius: 100px;

}

/* ---------- Feature items ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 44px; }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 26px 28px; }
.why-item h3 { font-size: 1.08rem; margin-bottom: 7px; }
.why-item p { color: var(--muted); font-size: .94rem; }

/* ---------- Destinations ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 44px; }
.dest-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  transition: transform var(--t), box-shadow var(--t);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.dest-card p { color: var(--muted); font-size: .96rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 44px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 700; font-size: .92rem;
  margin-bottom: 15px;
}
.step h3 { font-size: 1.06rem; margin-bottom: 5px; }
.step p { color: var(--muted); font-size: .93rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 40px auto 0; display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: box-shadow var(--t); }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 19px 24px;
  font-weight: 600; font-size: 1.03rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 400; font-size: 1.5rem; color: var(--muted);
  transition: transform var(--t);
  flex: none; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 24px 21px; color: var(--muted); font-size: .97rem; }

/* ---------- CTA band (dark for contrast) ---------- */
.cta-band { text-align: center; background: var(--ink); border-radius: 0; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.72); max-width: 500px; margin: 0 auto 28px; font-size: 1.04rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cta-band .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.cta-band .btn-outline:hover { border-color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; margin-top: 44px; }
.contact-info-list { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.contact-info-list li {
  display: flex; gap: 15px; align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 17px 20px;
}
.contact-info-list .ci-icon { color: var(--ink); flex: none; margin-top: 3px; }
.contact-info-list strong { display: block; font-weight: 700; font-size: .94rem; }
.contact-info-list span, .contact-info-list a { color: var(--muted); font-size: .93rem; }
.contact-info-list a { text-decoration: underline; text-underline-offset: 2px; }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Page hero ---------- */
.page-hero { padding: 68px 0 52px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); font-weight: 700; margin-bottom: 10px; }
.page-hero p { color: var(--muted); max-width: 620px; font-size: 1.06rem; }
.page-hero a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.35rem; margin: 38px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { margin: 12px 0 12px 22px; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--mist); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand { margin-bottom: 12px; }
.footer-brand-col p { color: var(--muted); font-size: .93rem; max-width: 300px; }
.footer-col h3 { font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; color: var(--ink-soft); font-size: .94rem; }
.footer-col a { color: var(--ink-soft); }
.footer-col a:hover { color: var(--ink); opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px; padding-bottom: 24px;
  color: var(--muted); font-size: .86rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--ink); opacity: 1; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition: transform var(--t);
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.04); opacity: 1; color: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 15px; }
  .hero { padding: 52px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .header-email { display: none; }
}

@media (max-width: 860px) {
  section { padding: 64px 0; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(16,20,24,.08);
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: opacity var(--t), transform var(--t), visibility var(--t);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .main-nav.open { opacity: 1; transform: none; visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 2px; padding: 14px 20px 20px; }
  .main-nav a { display: block; padding: 13px 14px; font-size: 1rem; border-radius: 12px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .panel { padding: 26px 20px; }
  .widget-body { padding: 14px 12px 16px; }
  .header-actions .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .hero h1 { font-size: 2.25rem; }
  .photo-chip { left: 14px; bottom: 14px; font-size: .84rem; padding: 8px 14px; }
}



.mobile-nav-quote {
  display: none;
}

@media (max-width: 860px) {
  .mobile-nav-quote {
    display: block;
    margin-top: 10px;
  }

  .mobile-nav-quote .btn {
    display: flex;
    justify-content: center;
    width: 100%;
    color: white;
  }
}


@media (max-width: 860px) {
  .header-actions .btn {
    display: none;
  }
}



@media (max-width: 600px) {
    .brand {
        font-size: 1.64em;
        gap: 4px;
    }
}