/* ============================================================
   Amedeo's Limo Service — clean professional theme
   White + navy + gold · modern sans-serif
   ============================================================ */

:root {
  --bg:        #ffffff;
  --bg-soft:   #f4f6f9;   /* cool light gray section */
  --bg-soft-2: #eef1f6;
  --navy:      #0e2340;   /* deep professional navy */
  --navy-2:    #16335c;
  --navy-deep: #0a1b33;
  --ink:       #1b2533;   /* headings */
  --body:      #4d586a;   /* body text */
  --gold:      #c4a253;   /* refined gold accent */
  --gold-2:    #d8ba6e;
  --gold-soft: rgba(196, 162, 83, 0.12);
  --muted:     #7b8597;
  --line:      #e3e8ef;
  --line-2:    #d7dde6;

  --sans:    "Inter", system-ui, -apple-system, sans-serif;
  --display: "Sora", "Inter", sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 14px rgba(16, 35, 64, 0.06);
  --shadow:    0 16px 40px -20px rgba(16, 35, 64, 0.22);
  --shadow-lg: 0 30px 60px -28px rgba(16, 35, 64, 0.30);
  --radius: 10px;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.72rem; font-weight: 700; color: var(--gold); margin-bottom: 16px;
}
.eyebrow-light { color: var(--gold-2); }

.section-head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.section-intro { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }

section { padding: clamp(68px, 8vw, 110px) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.02em;
  padding: 15px 30px; border-radius: 6px; cursor: pointer; border: 1.5px solid transparent;
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); box-shadow: 0 8px 20px -10px rgba(196,162,83,0.7); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(196,162,83,0.6); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-2); border-color: var(--navy-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.45); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; padding: 17px; font-size: 0.92rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 18px 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,0.94); backdrop-filter: blur(14px); box-shadow: 0 4px 20px -12px rgba(16,35,64,0.3); padding: 12px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; transition: color 0.4s var(--ease); }
.brand-sub { font-family: var(--sans); font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--gold-2); margin-top: 4px; font-weight: 700; }
.scrolled .brand-name { color: var(--ink); }

.main-nav { display: flex; gap: 36px; }
.main-nav a { font-size: 0.86rem; font-weight: 500; color: rgba(255,255,255,0.85); position: relative; padding: 4px 0; transition: color 0.3s var(--ease); }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--gold); transition: width 0.3s var(--ease); border-radius: 2px; }
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }
.scrolled .main-nav a { color: var(--body); }
.scrolled .main-nav a:hover { color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: #fff; transition: color 0.3s var(--ease); }
.header-phone svg { color: var(--gold-2); }
.scrolled .header-phone { color: var(--ink); }
.header-reserve { padding: 11px 24px; font-size: 0.78rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; width: 38px; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: #fff; border-radius: 2px; transition: all 0.35s var(--ease); }
.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 99; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu a { font-family: var(--display); font-size: 1.6rem; font-weight: 600; color: var(--ink); }
.mobile-menu a.btn { font-family: var(--sans); font-size: 0.9rem; margin-top: 10px; color: #fff; }
.mobile-menu .mobile-phone { font-size: 1.1rem; color: var(--gold); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--navy-deep); transform: scale(1.06); animation: heroZoom 16s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,20,38,0.92) 0%, rgba(8,20,38,0.72) 48%, rgba(8,20,38,0.42) 100%), linear-gradient(0deg, rgba(8,20,38,0.7) 0%, rgba(8,20,38,0) 55%); }
.hero-content { position: relative; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero-sub { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: rgba(255,255,255,0.82); max-width: 580px; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-rating { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.hero-rating .stars { color: var(--gold-2); letter-spacing: 2px; font-size: 1rem; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--navy); padding: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { text-align: center; padding: 34px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.trust-item:last-child { border-right: none; }
.trust-item strong { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.trust-item span { color: rgba(255,255,255,0.6); font-size: 0.86rem; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--bg); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; text-align: center; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.feature-icon { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%; background: var(--gold-soft); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.94rem; }

/* ============================================================
   RESERVE
   ============================================================ */
.reserve { background: var(--bg-soft); }
.reserve-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.reserve-intro { position: sticky; top: 110px; }
.reserve-intro h2 { margin-bottom: 18px; }
.reserve-intro p { color: var(--body); font-size: 1.05rem; }
.reserve-call { margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--line-2); }
.reserve-call span { display: block; color: var(--muted); font-size: 0.92rem; margin-bottom: 4px; }
.reserve-call a { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.reserve-call a:hover { color: var(--gold); }

.reserve-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 22px; margin-bottom: 26px; }
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.optional { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  background: var(--bg-soft); border: 1.5px solid var(--line-2); border-radius: 7px; padding: 13px 14px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease); width: 100%;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px var(--gold-soft); }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c4a253' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d4564b; }
.error { color: #c2483d; font-size: 0.76rem; margin-top: 5px; display: none; }
.field.invalid .error { display: block; }

.form-success { text-align: center; padding: 24px 6px; }
.form-success h3 { font-size: 1.7rem; margin: 20px 0 10px; color: var(--ink); }
.form-success p { color: var(--muted); max-width: 420px; margin: 0 auto 26px; }
.form-success a { color: var(--gold); text-decoration: underline; font-weight: 600; }
.success-mark { width: 76px; height: 76px; margin: 0 auto; }
.success-mark svg { width: 100%; height: 100%; }
.success-mark circle { stroke: var(--gold); stroke-width: 2; stroke-dasharray: 151; stroke-dashoffset: 151; animation: drawCircle 0.7s var(--ease) forwards; }
.success-mark path { stroke: var(--gold); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: drawCheck 0.4s var(--ease) 0.6s forwards; }
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-num { font-family: var(--display); font-size: 0.85rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }
.service-card--cta { background: var(--navy); border-color: var(--navy); }
.service-card--cta h3 { color: #fff; }
.service-card--cta p { color: rgba(255,255,255,0.7); }
.link-arrow { display: inline-block; margin-top: 16px; color: var(--gold-2); font-weight: 600; font-size: 0.92rem; transition: gap 0.3s var(--ease); }
.link-arrow:hover { color: #fff; }

/* ============================================================
   FLEET
   ============================================================ */
.fleet { background: var(--bg-soft); }
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.fleet-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.fleet-img { aspect-ratio: 16 / 10; background-size: cover; background-position: center; background-color: var(--navy-deep); }
.fleet-body { padding: 30px 32px 34px; }
.fleet-kicker { display: inline-block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; color: var(--gold); background: var(--gold-soft); padding: 5px 12px; border-radius: 40px; margin-bottom: 14px; }
.fleet-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.fleet-body p { color: var(--muted); font-size: 0.97rem; margin-bottom: 22px; }
.fleet-specs { display: flex; gap: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.fleet-specs span { display: inline-flex; align-items: center; gap: 9px; font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.fleet-specs svg { width: 20px; height: 20px; color: var(--gold); }

/* ============================================================
   AIRPORTS
   ============================================================ */
.airports { background: var(--bg); }
.airport-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.airport-card { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.airport-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.airport-tag { position: absolute; top: 20px; right: 20px; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; color: var(--gold); background: var(--gold-soft); padding: 5px 11px; border-radius: 40px; }
.airport-code { font-family: var(--display); font-size: 2.6rem; font-weight: 800; color: var(--navy); display: block; line-height: 1; margin-bottom: 14px; letter-spacing: -0.01em; }
.airport-card--muted .airport-code { color: var(--muted); }
.airport-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.airport-card p { color: var(--muted); font-size: 0.94rem; }
.airport-note { text-align: center; margin-top: 32px; color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-soft); }
.about-inner { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: center; }
.about-photo { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-photo-tag { position: absolute; left: 0; bottom: 0; right: 0; padding: 24px 26px; background: linear-gradient(0deg, rgba(10,27,51,0.9), transparent); display: flex; flex-direction: column; }
.about-photo-tag strong { font-family: var(--display); font-size: 1.3rem; font-weight: 700; color: #fff; }
.about-photo-tag span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-2); margin-top: 5px; font-weight: 600; }
.about-copy h2 { margin-bottom: 22px; }
.about-copy p { color: var(--body); margin-bottom: 16px; font-size: 1.04rem; }
.about-copy .btn { margin-top: 16px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.95rem; }
.testimonial-card blockquote { font-size: 1.1rem; line-height: 1.6; color: var(--ink); margin-bottom: 18px; font-weight: 500; }
.testimonial-card figcaption { color: var(--muted); font-size: 0.86rem; font-weight: 600; }

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage { background: var(--navy); }
.coverage-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.coverage-inner .eyebrow { color: var(--gold-2); }
.coverage-inner h2 { color: #fff; margin-bottom: 20px; }
.coverage-inner p { color: rgba(255,255,255,0.78); font-size: 1.08rem; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.coverage-tags span { font-size: 0.78rem; letter-spacing: 0.04em; color: #fff; border: 1px solid rgba(255,255,255,0.25); border-radius: 40px; padding: 9px 20px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; padding: 0 26px; transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 0; font-family: var(--display); font-size: 1.08rem; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-icon { position: relative; flex-shrink: 0; width: 16px; height: 16px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold); transition: transform 0.3s var(--ease); }
.faq-icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-item[open] .faq-body { max-height: 320px; }
.faq-body p { color: var(--muted); padding-bottom: 24px; font-size: 0.98rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: linear-gradient(120deg, var(--navy-deep), var(--navy-2)); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -40%; right: -10%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(196,162,83,0.16), transparent 70%); }
.cta-content { position: relative; max-width: 700px; margin: 0 auto; }
.cta-content h2 { color: #fff; margin: 6px 0 16px; }
.cta-content > p { color: rgba(255,255,255,0.78); font-size: 1.12rem; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: stretch; }
.btn-call-big { flex-direction: column; gap: 2px; padding: 12px 32px; }
.btn-call-big .call-label { font-size: 0.64rem; letter-spacing: 0.18em; color: var(--gold-2); text-transform: uppercase; }
.btn-call-big .call-number { font-size: 1.1rem; font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.66); padding: 70px 0 0; }
.site-footer .brand-name { color: #fff; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-tagline { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--gold-2); margin-bottom: 8px; }
.footer-note { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-2); margin-bottom: 20px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.62); font-size: 0.92rem; margin-bottom: 11px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-2); }
.footer-phone { font-family: var(--display); font-size: 1.4rem !important; font-weight: 700; color: #fff !important; margin-bottom: 14px !important; }
.footer-cards { color: rgba(255,255,255,0.4) !important; font-size: 0.82rem !important; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 26px 28px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ============================================================
   STICKY MOBILE CALL
   ============================================================ */
.sticky-call { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; align-items: center; justify-content: center; gap: 10px; background: var(--gold); color: #fff; font-weight: 600; font-size: 0.95rem; padding: 16px; box-shadow: 0 -6px 20px -10px rgba(16,35,64,0.4); }
.sticky-call svg { color: #fff; }

/* ---------- Fade in ---------- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-in.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .reserve-layout { grid-template-columns: 1fr; gap: 36px; }
  .reserve-intro { position: static; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .main-nav, .header-reserve, .header-phone span { display: none; }
  .nav-toggle { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .fleet-grid { grid-template-columns: 1fr; }
  .airport-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .sticky-call { display: flex; }
  body { padding-bottom: 58px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .feature-grid, .service-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero { min-height: 0; padding: 130px 0 70px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
}
