:root {
  --navy-950: #04111f;
  --navy-900: #071a2f;
  --navy-800: #0c2946;
  --navy-700: #123b61;
  --orange-600: #ef6c00;
  --orange-500: #ff7a00;
  --orange-400: #ff9d2e;
  --orange-50: #fff5eb;
  --yellow-400: #ffba24;
  --blue-100: #eaf3fb;
  --blue-50: #f5f9fc;
  --slate-900: #17212b;
  --slate-700: #405061;
  --slate-500: #697889;
  --slate-300: #cbd5df;
  --slate-200: #dfe6ec;
  --slate-100: #edf2f6;
  --white: #fff;
  --success: #0b8f55;
  --error: #c73838;
  --shadow-sm: 0 8px 25px rgba(4, 17, 31, .08);
  --shadow-md: 0 18px 45px rgba(4, 17, 31, .12);
  --shadow-lg: 0 30px 80px rgba(4, 17, 31, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --transition: 180ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-900); line-height: 1.14; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.35rem); }
h3 { font-size: 1.25rem; }
p { color: var(--slate-700); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.is-hidden { display: none !important; }
.skip-link { position: fixed; top: -100px; left: 18px; z-index: 10000; background: var(--white); color: var(--navy-900); padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 18px; }

.topbar { background: var(--navy-950); color: rgba(255,255,255,.82); font-size: .78rem; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { color: inherit; margin: 0; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #45d48a; box-shadow: 0 0 0 4px rgba(69,212,138,.12); }

.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.93); border-bottom: 1px solid rgba(223,230,236,.8); backdrop-filter: blur(16px); }
.nav-container { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--navy-900); font-size: 1.2rem; font-weight: 800; letter-spacing: -.04em; }
.logo-image { display: block; width: 260px; height: auto; max-width: min(58vw, 260px); }
.logo-image-footer { width: 230px; max-width: min(52vw, 230px); }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-call { min-height: 44px; padding-inline: 18px; }
.nav-links a { color: var(--slate-700); font-size: .9rem; font-weight: 650; transition: color var(--transition); }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--orange-600); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: var(--blue-50); border: 0; border-radius: 10px; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy-900); transition: transform var(--transition), opacity var(--transition); }

.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border: 1px solid transparent; border-radius: 12px; font-size: .91rem; font-weight: 800; line-height: 1; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition); }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(255,157,46,.32); outline-offset: 3px; }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); box-shadow: 0 10px 22px rgba(239,108,0,.25); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(239,108,0,.34); }
.btn-secondary { color: var(--navy-900); background: var(--white); border-color: var(--slate-200); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--orange-400); }
.btn-light { color: var(--navy-900); background: var(--white); box-shadow: var(--shadow-sm); }
.btn-lg { min-height: 56px; padding: 15px 26px; border-radius: 14px; }

.hero { position: relative; min-height: 690px; overflow: hidden; background: linear-gradient(145deg, #f7fbff 0%, #fff 48%, #fff7ed 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: var(--slate-100); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; padding-top: 85px; padding-bottom: 95px; }
.hero-copy h1 { max-width: 690px; margin-bottom: 22px; }
.hero-copy h1 span { color: var(--orange-600); }
.hero-lead { max-width: 650px; margin-bottom: 30px; font-size: clamp(1.02rem, 1.8vw, 1.2rem); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--orange-600); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--yellow-400); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; padding: 0; margin: 0; list-style: none; color: var(--slate-700); font-size: .86rem; font-weight: 650; }
.hero-points span { color: var(--success); font-weight: 900; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-shape-one { width: 480px; height: 480px; right: -120px; top: -170px; background: rgba(255,157,46,.12); }
.hero-shape-two { width: 330px; height: 330px; left: -210px; bottom: -140px; background: rgba(71,140,196,.1); }

.hero-visual { position: relative; min-width: 0; }
.visual-card { position: relative; min-height: 480px; padding: 28px; overflow: hidden; background: rgba(255,255,255,.95); border: 1px solid rgba(223,230,236,.85); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.visual-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 150px; background: linear-gradient(135deg, rgba(234,243,251,.8), rgba(255,247,237,.7)); }
.route-head, .route-stop, .route-line { position: relative; z-index: 2; }
.route-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.route-label { font-size: .8rem; font-weight: 800; color: var(--navy-900); }
.availability { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; color: var(--success); background: rgba(11,143,85,.08); border-radius: 99px; font-size: .7rem; font-weight: 800; }
.availability i { width: 7px; height: 7px; background: var(--success); border-radius: 50%; }
.route-stop { display: flex; gap: 14px; align-items: center; }
.route-stop small { display: block; margin-bottom: 2px; color: var(--slate-500); font-size: .67rem; text-transform: uppercase; letter-spacing: .08em; }
.route-stop strong { display: block; color: var(--navy-900); font-size: .87rem; }
.route-dot { flex: 0 0 auto; width: 14px; height: 14px; border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 2px currentColor; }
.route-dot-start { color: var(--orange-500); background: var(--orange-500); }
.route-dot-end { color: var(--navy-700); background: var(--navy-700); }
.route-line { width: 2px; height: 26px; margin: 5px 0 5px 6px; border-left: 2px dashed var(--slate-300); }
.vehicle-illustration { position: absolute; inset: auto -35px 5px 0; }
.floating-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; min-width: 200px; padding: 14px 16px; background: var(--white); border: 1px solid var(--slate-100); border-radius: 14px; box-shadow: var(--shadow-md); }
.floating-note-one { left: -42px; bottom: 70px; }
.floating-note-two { right: -30px; top: 110px; }
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { color: var(--navy-900); font-size: .75rem; }
.floating-note small { color: var(--slate-500); font-size: .62rem; }
.note-icon { display: grid; flex: 0 0 auto; place-items: center; width: 36px; height: 36px; color: var(--success); background: rgba(11,143,85,.1); border-radius: 10px; font-weight: 900; }
.note-icon-blue { color: var(--navy-700); background: var(--blue-100); font-size: .65rem; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--slate-100); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 24px 30px; border-right: 1px solid var(--slate-100); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--navy-900); font-size: 1.1rem; }
.trust-grid span { color: var(--slate-500); font-size: .74rem; }

.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 17px; }
.section-heading p { max-width: 670px; margin-bottom: 0; }
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { display: flex; flex-direction: column; min-height: 315px; padding: 28px 25px; background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-md); box-shadow: 0 7px 25px rgba(4,17,31,.035); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card:hover { transform: translateY(-7px); border-color: rgba(255,122,0,.5); box-shadow: var(--shadow-md); }
.service-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 26px; color: var(--orange-600); background: #fff5e9; border-radius: 15px; }
.service-icon svg { width: 26px; height: 26px; fill: currentColor; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin-bottom: 24px; font-size: .9rem; }
.service-card a { margin-top: auto; color: var(--navy-900); font-size: .82rem; font-weight: 800; }
.service-card a span { color: var(--orange-600); transition: margin var(--transition); }
.service-card a:hover span { margin-left: 5px; }

.process-section { position: relative; overflow: hidden; background: var(--navy-900); }
.process-section::before { content: ""; position: absolute; width: 450px; height: 450px; right: -180px; top: -250px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.015); }
.process-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.process-copy h2, .process-copy p { color: var(--white); }
.process-copy p { color: rgba(255,255,255,.68); }
.text-link { display: inline-flex; gap: 8px; color: var(--yellow-400); font-size: .88rem; font-weight: 800; }
.process-list { display: grid; gap: 16px; padding: 0; margin: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 68px 1fr; gap: 20px; padding: 25px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 17px; }
.process-list .step-number { display: grid; place-items: center; width: 54px; height: 54px; color: var(--yellow-400); background: rgba(255,186,36,.09); border-radius: 14px; font-size: .8rem; font-weight: 800; }
.process-list h3 { margin: 2px 0 8px; color: var(--white); }
.process-list p { margin: 0; color: rgba(255,255,255,.63); font-size: .86rem; }

.zones-section { background: var(--blue-50); }
.zones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.map-card { position: relative; min-height: 440px; overflow: hidden; background: radial-gradient(circle at center, #fdfefe 0 17%, #edf5fb 18% 37%, #e2eef8 38% 58%, #d6e6f3 59%); border: 1px solid #d5e3ee; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.map-card::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(7,26,47,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7,26,47,.035) 1px, transparent 1px); background-size: 32px 32px; }
.map-ring { position: absolute; z-index: 1; left: 50%; top: 50%; border: 1px dashed rgba(12,41,70,.2); border-radius: 50%; transform: translate(-50%, -50%); }
.ring-one { width: 145px; height: 145px; }
.ring-two { width: 260px; height: 260px; }
.ring-three { width: 390px; height: 390px; }
.map-pin { position: absolute; z-index: 3; left: 50%; top: 46%; width: 28px; height: 28px; background: var(--orange-500); border: 7px solid var(--white); border-radius: 50% 50% 50% 0; box-shadow: 0 8px 22px rgba(4,17,31,.24); transform: translate(-50%,-50%) rotate(-45deg); }
.pin-small { width: 17px; height: 17px; border-width: 4px; background: var(--navy-700); }
.pin-one { left: 28%; top: 31%; }
.pin-two { left: 72%; top: 66%; }
.pin-three { left: 70%; top: 27%; }
.map-label { position: absolute; z-index: 4; left: 50%; top: 56%; padding: 8px 13px; color: var(--navy-900); background: var(--white); border-radius: 9px; box-shadow: var(--shadow-sm); transform: translateX(-50%); font-size: .75rem; font-weight: 800; }
.zones-copy h2 { margin-bottom: 20px; }
.zones-copy > p { margin-bottom: 30px; }
.feature-list { display: grid; gap: 14px; }
.feature-list > div { display: flex; gap: 13px; align-items: flex-start; }
.feature-list > div > span { display: grid; flex: 0 0 auto; place-items: center; width: 26px; height: 26px; margin-top: 3px; color: var(--success); background: rgba(11,143,85,.1); border-radius: 8px; font-size: .75rem; font-weight: 900; }
.feature-list p { margin: 0; }
.feature-list strong, .feature-list small { display: block; }
.feature-list strong { color: var(--navy-900); font-size: .9rem; }
.feature-list small { color: var(--slate-500); font-size: .75rem; }

.reservation-section { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.reservation-section:first-child { padding-top: 72px; }
.reservation-section::before { content: ""; position: absolute; width: 650px; height: 650px; left: -350px; top: -330px; background: rgba(255,122,0,.09); border-radius: 50%; }
.reservation-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.reservation-copy { position: sticky; top: 125px; padding-top: 28px; }
.reservation-copy h2 { color: var(--white); }
.reservation-copy > p { color: rgba(255,255,255,.7); }
.contact-panel { display: flex; align-items: center; gap: 14px; padding: 16px; margin: 28px 0; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 15px; }
.contact-icon { display: grid; place-items: center; width: 45px; height: 45px; color: var(--yellow-400); background: rgba(255,186,36,.1); border-radius: 12px; }
.contact-panel small, .contact-panel a { display: block; }
.contact-panel small { color: rgba(255,255,255,.58); font-size: .7rem; }
.contact-panel a { color: var(--white); font-weight: 800; }
.reservation-benefits { display: grid; gap: 13px; padding: 0; margin: 0; list-style: none; color: rgba(255,255,255,.74); font-size: .82rem; }
.reservation-benefits span { color: var(--yellow-400); margin-right: 7px; }
.form-card { padding: 34px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.form-header { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 22px; margin-bottom: 24px; border-bottom: 1px solid var(--slate-100); }
.form-header span { color: var(--orange-600); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-header h3 { margin: 3px 0 0; font-size: 1.45rem; }
.form-header .secure-note { padding: 7px 10px; color: var(--success); background: rgba(11,143,85,.08); border-radius: 99px; font-size: .62rem; letter-spacing: 0; text-transform: none; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-group { position: relative; margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 7px; color: var(--navy-900); font-size: .76rem; font-weight: 750; }
.form-group label span, .consent-row b { color: var(--orange-600); }
.form-group label small { color: var(--slate-500); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; min-height: 49px; padding: 12px 14px; color: var(--slate-900); background: var(--white); border: 1px solid var(--slate-300); border-radius: 10px; outline: none; transition: border-color var(--transition), box-shadow var(--transition), background var(--transition); }
.form-group textarea { min-height: 105px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a1ae; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange-500); box-shadow: 0 0 0 4px rgba(255,122,0,.1); }
.form-group input:user-invalid, .form-group select:user-invalid { border-color: var(--error); }
.address-group input { padding-left: 40px; }
.address-dot { position: absolute; z-index: 2; left: 17px; bottom: 17px; width: 8px; height: 8px; border-radius: 50%; }
.start-dot { background: var(--orange-500); box-shadow: 0 0 0 4px rgba(255,122,0,.12); }
.end-dot { background: var(--navy-700); box-shadow: 0 0 0 4px rgba(18,59,97,.11); }
.field-hint { margin-top: 4px; color: var(--slate-500); font-size: .65rem; text-align: right; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 20px; color: var(--slate-700); font-size: .72rem; cursor: pointer; }
.consent-row input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--orange-500); }
.btn-submit { width: 100%; min-height: 55px; border: 0; }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.spinner { display: none; width: 19px; height: 19px; border: 3px solid rgba(255,255,255,.35); border-top-color: var(--white); border-radius: 50%; animation: spin .8s linear infinite; }
.form-message { display: none; padding: 12px 14px; margin-top: 14px; border-radius: 10px; font-size: .78rem; font-weight: 700; }
.form-message.success { display: block; color: var(--success); background: rgba(11,143,85,.08); border: 1px solid rgba(11,143,85,.25); }
.form-message.error { display: block; color: var(--error); background: rgba(199,56,56,.07); border: 1px solid rgba(199,56,56,.22); }
@keyframes spin { to { transform: rotate(360deg); } }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 125px; margin: 0; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--blue-50); border: 1px solid var(--slate-100); border-radius: 14px; }
.faq-list summary { display: flex; justify-content: space-between; gap: 15px; padding: 20px 22px; color: var(--navy-900); font-size: .9rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange-600); font-size: 1.2rem; transition: transform var(--transition); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding: 0 22px 20px; margin: 0; font-size: .83rem; }

.final-cta { padding: 70px 0; background: linear-gradient(120deg, var(--orange-600), var(--orange-400)); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-cta span { color: rgba(255,255,255,.8); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.final-cta h2 { max-width: 750px; margin: 5px 0 0; color: var(--white); font-size: clamp(1.8rem, 3vw, 2.7rem); }

.footer { padding: 70px 0 28px; color: rgba(255,255,255,.7); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 45px; padding-bottom: 48px; }
.logo-footer { color: var(--white); }
.footer-brand p { max-width: 320px; margin: 18px 0 0; color: rgba(255,255,255,.57); font-size: .82rem; }
.footer h3 { margin-bottom: 17px; color: var(--white); font-size: .86rem; letter-spacing: 0; }
.footer ul { padding: 0; margin: 0; list-style: none; }
.footer li { margin-bottom: 9px; color: rgba(255,255,255,.58); font-size: .78rem; }
.footer a:hover { color: var(--yellow-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.45); font-size: .67rem; }
.mobile-actions { display: none; }

.reveal,
.js .reveal,
.js .reveal.is-visible { opacity: 1; transform: none; transition: none; }
.delay-one { transition-delay: .1s; }
.delay-two { transition-delay: .2s; }
.delay-three { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

@media (max-width: 1050px) {
  .hero-grid { gap: 35px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 280px; }
  .floating-note-one { left: -18px; }
  .floating-note-two { right: -12px; }
  .process-grid, .zones-grid, .reservation-grid, .faq-grid { gap: 50px; }
}

@media (max-width: 860px) {
  .section { padding: 85px 0; }
  .topbar-area, .nav-actions { display: none; }
  .topbar-inner { justify-content: center; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 112px 20px auto; display: grid; gap: 0; padding: 10px; visibility: hidden; opacity: 0; background: var(--white); border: 1px solid var(--slate-200); border-radius: 16px; box-shadow: var(--shadow-lg); transform: translateY(-10px); transition: opacity var(--transition), transform var(--transition), visibility var(--transition); }
  .nav-links.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .nav-links a { padding: 14px 13px; border-bottom: 1px solid var(--slate-100); }
  .nav-links a:last-child { border-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 68px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { max-width: 650px; width: 100%; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div { padding-left: 20px; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--slate-100); }
  .process-grid, .zones-grid, .reservation-grid, .faq-grid { grid-template-columns: 1fr; }
  .process-copy, .zones-copy, .reservation-copy, .faq-heading { position: static; }
  .process-copy { max-width: 650px; }
  .zones-visual { order: 2; }
  .zones-copy { order: 1; }
  .map-card { min-height: 390px; }
  .reservation-copy { padding-top: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 590px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  body { padding-bottom: 64px; }
  .section { padding: 70px 0; }
  .topbar { font-size: .7rem; }
  .navbar .nav-container { min-height: 70px; }
  .nav-links { inset: 104px 14px auto; }
  .hero { min-height: 0; }
  .hero-grid { padding-top: 52px; padding-bottom: 70px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; gap: 8px; }
  .visual-card { min-height: 400px; padding: 21px; }
  .vehicle-illustration { right: -20px; bottom: 8px; }
  .floating-note { min-width: 170px; padding: 10px 12px; }
  .floating-note-one { left: -5px; bottom: 42px; }
  .floating-note-two { right: -5px; top: 118px; }
  .floating-note strong { font-size: .67rem; }
  .floating-note small { font-size: .56rem; }
  .note-icon { width: 31px; height: 31px; }
  .trust-grid > div { padding: 18px 12px; }
  .trust-grid > div:first-child { padding-left: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .process-list li { grid-template-columns: 50px 1fr; padding: 20px 17px; gap: 14px; }
  .process-list .step-number { width: 45px; height: 45px; }
  .map-card { min-height: 330px; }
  .ring-three { width: 310px; height: 310px; }
  .form-card { padding: 24px 18px; border-radius: 20px; }
  .form-header { align-items: flex-start; }
  .form-header .secure-note { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .final-cta-inner { display: grid; }
  .final-cta .btn { width: 100%; }
  .footer { padding-top: 55px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { display: grid; gap: 10px; }
  .mobile-actions { position: fixed; z-index: 900; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: .8fr 1.2fr; min-height: 64px; padding: 8px; background: rgba(255,255,255,.96); border-top: 1px solid var(--slate-200); backdrop-filter: blur(12px); }
  .mobile-actions a { display: grid; place-items: center; border-radius: 10px; font-size: .78rem; font-weight: 800; }
  .mobile-call { color: var(--navy-900); }
  .mobile-quote { color: var(--white); background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); }
}

/* French address autocomplete and automatic route distance */
.address-group .address-dot {
  top: 43px;
  bottom: auto;
}

.address-suggestions {
  position: absolute;
  z-index: 80;
  top: 76px;
  right: 0;
  left: 0;
  max-height: 280px;
  padding: 7px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(7, 26, 47, .18);
}

.address-suggestion {
  display: grid;
  width: 100%;
  gap: 3px;
  padding: 11px 12px;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  border-radius: 9px;
  text-align: left;
  cursor: pointer;
}

.address-suggestion:hover,
.address-suggestion.is-active {
  background: var(--orange-50);
}

.address-suggestion strong {
  font-size: .75rem;
  line-height: 1.35;
}

.address-suggestion small {
  color: var(--slate-500);
  font-size: .64rem;
}

.address-empty {
  padding: 12px;
  color: var(--slate-500);
  font-size: .7rem;
  text-align: center;
}

.field-help {
  margin-top: 5px;
  color: var(--slate-500);
  font-size: .64rem;
}

.distance-preview {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 49px;
  padding: 9px 12px;
  background: var(--blue-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.distance-preview-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--navy-700);
  background: var(--white);
  border-radius: 9px;
  font-weight: 900;
}

.distance-preview-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.distance-preview-copy small {
  color: var(--slate-500);
  font-size: .59rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.distance-preview-copy strong {
  color: var(--navy-900);
  font-size: .72rem;
  line-height: 1.35;
}

.distance-preview[data-state="loading"] {
  background: #fff8ed;
  border-color: rgba(255, 122, 0, .35);
}

.distance-preview[data-state="loading"] .distance-preview-icon {
  color: var(--orange-600);
  animation: routePulse 1s ease-in-out infinite;
}

.distance-preview[data-state="success"] {
  background: rgba(11, 143, 85, .07);
  border-color: rgba(11, 143, 85, .28);
}

.distance-preview[data-state="success"] .distance-preview-icon,
.distance-preview[data-state="success"] .distance-preview-copy strong {
  color: var(--success);
}

.distance-preview[data-state="error"] {
  background: rgba(199, 56, 56, .06);
  border-color: rgba(199, 56, 56, .28);
}

.distance-preview[data-state="error"] .distance-preview-icon,
.distance-preview[data-state="error"] .distance-preview-copy strong {
  color: var(--error);
}

@keyframes routePulse {
  50% { transform: scale(1.08); opacity: .65; }
}

/* Floating call button */
.floating-call {
  position: fixed;
  z-index: 1800;
  right: 24px;
  bottom: 94px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 18px 12px 13px;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid rgba(18,59,97,.14);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(4,17,31,.16);
  font-size: .84rem;
  font-weight: 850;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.floating-call svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--orange-600); }
.floating-call:hover {
  color: var(--navy-900);
  border-color: rgba(239,108,0,.28);
  box-shadow: 0 18px 40px rgba(4,17,31,.2);
  transform: translateY(-3px);
}
.floating-call:focus-visible { outline: 3px solid rgba(255,157,46,.32); outline-offset: 4px; }
/* Floating WhatsApp contact button */
.floating-whatsapp {
  position: fixed;
  z-index: 1800;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 18px 12px 13px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #16a34a);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(16, 120, 67, .32);
  font-size: .84rem;
  font-weight: 850;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.floating-whatsapp svg { width: 31px; height: 31px; flex: 0 0 auto; }
.floating-whatsapp:hover {
  color: #fff;
  background: linear-gradient(135deg, #2bdd70, #128c3f);
  box-shadow: 0 18px 40px rgba(16, 120, 67, .4);
  transform: translateY(-3px);
}
.floating-whatsapp:focus-visible { outline: 3px solid rgba(37,211,102,.35); outline-offset: 4px; }
.floating-whatsapp.is-hidden { display: none; }

@media (max-width: 760px) {
  .floating-call {
    right: 14px;
    bottom: 142px;
    width: 54px;
    min-height: 54px;
    padding: 10px;
    justify-content: center;
  }
  .floating-call span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .quote-page .floating-call { bottom: 78px; }
  .floating-whatsapp {
    right: 14px;
    bottom: 78px;
    width: 54px;
    min-height: 54px;
    padding: 10px;
    justify-content: center;
  }
  .floating-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .quote-page .floating-whatsapp { bottom: 16px; }
}

@media (max-width: 640px) {
  .logo-image { width: 205px; max-width: 62vw; }
  .logo-image-footer { width: 185px; max-width: 58vw; }
}
