/* ═══════════════════════════════════════════
   AAS Tour and Travels — Global Stylesheet v2
   Font: DM Sans + Space Grotesk
   Theme: Sky Blue + Amber Yellow
═══════════════════════════════════════════ */

:root {
  --blue:        #0EA5E9;
  --blue-d:      #0284C7;
  --blue-dd:     #0369A1;
  --blue-l:      #38BDF8;
  --blue-pale:   #E0F2FE;
  --blue-mid:    #BAE6FD;

  --yellow:      #F59E0B;
  --yellow-l:    #FCD34D;
  --yellow-d:    #D97706;
  --yellow-pale: #FFFBEB;

  --wa:          #25D366;
  --wa-d:        #1DAE57;

  --dark:        #0B1929;
  --dark2:       #0F2035;
  --dark3:       #162840;
  --mid:         #3D5A7A;
  --light:       #7BA3C2;
  --pale:        #F0F8FF;
  --pale2:       #E8F4FD;
  --border:      #C8E1F5;
  --border2:     #A8CFEC;
  --white:       #FFFFFF;

  --r:    10px;
  --r-lg: 16px;
  --r-xl: 22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }

/* ── TOPBAR ── */
.topbar { background: var(--dark); padding: 9px 48px; display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: rgba(255,255,255,0.5); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar a { color: rgba(255,255,255,.55); transition: color .2s; }
.topbar a:hover { color: var(--blue-l); }
.topbar i { color: var(--blue-l); margin-right: 5px; font-size: 10px; }
.tb-div { width: 1px; height: 11px; background: rgba(255,255,255,.12); }

/* ── HEADER ── */
header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); border-bottom: 2px solid var(--blue-mid); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 72px; transition: box-shadow .3s; }
header.scrolled { box-shadow: 0 4px 24px rgba(14,165,233,.12); }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 44px; height: 44px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: white; letter-spacing: .04em; flex-shrink: 0; }
.logo-name { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.1; }
.logo-sub  { font-size: 10px; color: var(--light); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: var(--mid); font-size: 13px; font-weight: 600; transition: color .2s; position: relative; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); transition: width .25s; }
nav a:hover { color: var(--blue-d); }
nav a:hover::after, nav a.active::after { width: 100%; }
nav a.active { color: var(--blue-d); }
.nav-cta { background: var(--blue)!important; color: white!important; padding: 9px 18px; border-radius: var(--r); font-weight: 700!important; font-size: 12px!important; display: flex!important; align-items: center; gap: 7px; transition: background .2s, transform .15s!important; }
.nav-cta::after { display: none!important; }
.nav-cta:hover { background: var(--blue-d)!important; transform: translateY(-1px)!important; }
.mob-btn { display: none; background: none; border: none; color: var(--dark); font-size: 22px; cursor: pointer; padding: 6px; }
.mob-nav { display: none; position: fixed; top: 72px; left: 0; width: 100%; background: white; padding: 20px 24px; border-bottom: 2px solid var(--blue-mid); z-index: 999; flex-direction: column; gap: 4px; }
.mob-nav a { display: block; padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--dark); border-radius: var(--r); transition: background .2s; }
.mob-nav a:hover { background: var(--pale); }
.mob-nav .nav-cta { text-align: center; justify-content: center; margin-top: 8px; }
.mob-nav.open { display: flex; }

/* ── BUTTONS ── */
.btn-primary { background: var(--blue); color: white; padding: 14px 26px; border-radius: var(--r); font-size: 13.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .15s, box-shadow .2s; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(14,165,233,.35); }
.btn-yellow { background: var(--yellow); color: var(--dark); padding: 14px 26px; border-radius: var(--r); font-size: 13.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .15s; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-yellow:hover { background: var(--yellow-l); transform: translateY(-2px); }
.btn-ghost  { border: 2px solid rgba(255,255,255,.3); color: white; padding: 12px 22px; border-radius: var(--r); font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; background: transparent; }
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn-wa     { background: var(--wa); color: white; padding: 13px 22px; border-radius: var(--r); font-size: 13.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .15s; font-family: 'DM Sans', sans-serif; }
.btn-wa:hover { background: var(--wa-d); transform: translateY(-2px); }

/* ── EYEBROW ── */
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.eyebrow-bar { width: 22px; height: 3px; background: var(--blue); border-radius: 2px; }
.eyebrow-txt { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); }
.eyebrow.light .eyebrow-bar { background: var(--yellow); }
.eyebrow.light .eyebrow-txt { color: var(--yellow-l); }

/* ── SECTION HELPERS ── */
.sec-h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px,3.8vw,48px); font-weight: 700; letter-spacing: -.02em; color: var(--dark); line-height: 1.06; }
.sec-h2 .accent { color: var(--blue); }
.sec-h2.white { color: white; }
.sec-h2.white .accent { color: var(--yellow-l); }
.sec-sub { font-size: 15px; color: var(--mid); line-height: 1.75; max-width: 520px; margin-top: 10px; }
.sec-sub.white { color: rgba(255,255,255,.5); }
.section { padding: 84px 48px; max-width: 1160px; margin: 0 auto; }

/* section bg helpers */
.bg-white  { background: var(--white); }
.bg-pale   { background: var(--pale); }
.bg-blue   { background: var(--blue-pale); }
.bg-navy   { background: var(--dark); }
.bg-navy2  { background: var(--dark2); }
.bg-yellow { background: var(--yellow-pale); }

/* ── PAGE HERO ── */
.page-hero { background: var(--dark); padding: 80px 48px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(14,165,233,.18) 0%, transparent 60%); pointer-events: none; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(14,165,233,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(14,165,233,.07) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; }
.page-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(36px,5vw,64px); font-weight: 700; letter-spacing: -.02em; color: white; line-height: 1.05; }
.page-hero h1 .accent { color: var(--yellow-l); }
.page-hero p { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 500px; margin-top: 14px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.35); margin-top: 24px; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue-l); }
.breadcrumb i { font-size: 9px; }

/* ── ROUTES GRID ── */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 10px; margin-top: 40px; }
.route-card  { background: white; border: 2px solid var(--border); border-radius: var(--r-lg); padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; transition: all .22s; text-decoration: none; }
.route-card:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(14,165,233,.2); }
.route-left  { flex: 1; }
.route-name  { font-size: 14px; font-weight: 700; color: var(--dark); font-family: 'Space Grotesk', sans-serif; transition: color .22s; }
.route-sub   { font-size: 11.5px; color: var(--light); margin-top: 3px; transition: color .22s; }
.route-price { font-size: 12px; font-weight: 700; color: var(--blue-d); background: var(--blue-pale); padding: 3px 9px; border-radius: 6px; white-space: nowrap; transition: all .22s; }
.route-arrow { color: var(--border2); font-size: 13px; transition: color .22s; flex-shrink: 0; }
.route-card:hover .route-name  { color: white; }
.route-card:hover .route-sub   { color: rgba(255,255,255,.55); }
.route-card:hover .route-arrow { color: var(--yellow-l); }
.route-card:hover .route-price { background: rgba(255,255,255,.18); color: white; }

/* ── FLEET ── */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 12px; margin-top: 40px; }
.fleet-card { background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 26px 18px; text-align: center; transition: all .25s; }
.fleet-card:hover { background: var(--yellow); border-color: var(--yellow); transform: translateY(-5px); box-shadow: 0 20px 48px rgba(245,158,11,.3); }
.fleet-card img  { width: 100%; height: 100px; object-fit: cover; border-radius: 10px; margin: 0 auto 14px; transition: transform .25s; }
.fleet-card:hover img { transform: scale(1.04); }
.fc-emoji    { font-size: 40px; margin-bottom: 12px; display: block; }
.fleet-card h4   { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: white; margin-bottom: 5px; transition: color .25s; }
.fleet-card p    { font-size: 12px; color: rgba(255,255,255,.45); transition: color .25s; line-height: 1.5; }
.fc-badge    { display: inline-block; margin-top: 10px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: .08em; text-transform: uppercase; transition: all .25s; }
.fc-seats    { font-size: 11px; color: rgba(255,255,255,.28); margin-top: 6px; transition: color .25s; }
.fleet-card:hover h4     { color: var(--dark); }
.fleet-card:hover p      { color: rgba(0,0,0,.55); }
.fleet-card:hover .fc-badge { background: rgba(0,0,0,.12); color: var(--dark2); }
.fleet-card:hover .fc-seats { color: rgba(0,0,0,.45); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 14px; margin-top: 40px; }
.why-card { background: white; border: 2px solid var(--border); border-radius: var(--r-lg); padding: 26px 22px; transition: all .22s; }
.why-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 16px 44px rgba(14,165,233,.12); }
.why-icon { width: 48px; height: 48px; background: var(--blue-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--blue); margin-bottom: 16px; transition: all .22s; }
.why-card:hover .why-icon { background: var(--blue); color: white; }
.why-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-card p  { color: var(--mid); font-size: 13px; line-height: 1.75; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 16px; margin-top: 40px; }
.review-card  { background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 26px 24px; position: relative; transition: all .25s; }
.review-card:hover { background: rgba(255,255,255,.1); border-color: rgba(245,158,11,.35); transform: translateY(-3px); }
.review-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text  { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-text::before { content: '\201C'; font-family: 'Space Grotesk', sans-serif; font-size: 52px; color: rgba(14,165,233,.25); display: block; line-height: .6; margin-bottom: 10px; }
.reviewer     { display: flex; align-items: center; gap: 12px; }
.avatar       { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; flex-shrink: 0; }
.av1 { background: rgba(14,165,233,.25); color: #7DD3FC; }
.av2 { background: rgba(16,185,129,.2); color: #6EE7B7; }
.av3 { background: rgba(245,158,11,.2); color: #FCD34D; }
.av4 { background: rgba(139,92,246,.2); color: #C4B5FD; }
.av5 { background: rgba(99,102,241,.2); color: #A5B4FC; }
.av6 { background: rgba(236,72,153,.2); color: #F9A8D4; }
.reviewer-info strong { font-size: 13px; font-weight: 700; color: white; display: block; }
.reviewer-info span   { font-size: 11.5px; color: rgba(255,255,255,.38); }
.review-route-tag { position: absolute; top: 18px; right: 18px; background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.3); color: var(--blue-l); font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 6px; letter-spacing: .06em; }
.reviews-summary { display: flex; align-items: center; gap: 28px; margin-bottom: 40px; flex-wrap: wrap; }
.review-big-num   { font-family: 'Space Grotesk', sans-serif; font-size: 64px; font-weight: 700; color: var(--yellow-l); line-height: 1; }
.review-big-stars { color: var(--yellow); font-size: 20px; letter-spacing: 3px; margin-bottom: 4px; }
.review-big-label { font-size: 13px; color: rgba(255,255,255,.4); }

/* ── FAQ ── */
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.faq-sidebar h3 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px,3vw,36px); font-weight: 700; color: var(--dark); line-height: 1.1; letter-spacing: -.01em; margin-bottom: 14px; }
.faq-sidebar p  { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 28px; }
.faq-contact-box { background: var(--blue-pale); border: 2px solid var(--blue-mid); border-radius: var(--r-lg); padding: 22px 20px; }
.faq-contact-box p { font-size: 13px; color: var(--mid); margin-bottom: 14px; line-height: 1.6; }
.faq-contact-box a { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 700; color: var(--dark); margin-bottom: 10px; transition: color .2s; }
.faq-contact-box a:last-child { margin-bottom: 0; }
.faq-contact-box a i { color: var(--blue); width: 16px; }
.faq-contact-box a:hover { color: var(--blue-d); }
.faq-list  { display: flex; flex-direction: column; }
.faq-item  { border-bottom: 1.5px solid var(--border); }
.faq-item:first-child { border-top: 1.5px solid var(--border); }
.faq-btn   { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 14.5px; font-weight: 600; color: var(--dark); gap: 16px; transition: color .2s; }
.faq-btn:hover { color: var(--blue-d); }
.faq-icon  { width: 24px; height: 24px; border-radius: 50%; background: var(--pale2); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .32s ease, background .25s, border-color .25s; }
.faq-icon svg { width: 10px; height: 10px; }
.faq-body  { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-body p { font-size: 13.5px; color: var(--mid); line-height: 1.78; padding-bottom: 20px; }
.faq-item.open .faq-icon { background: var(--blue); border-color: var(--blue); transform: rotate(180deg); }
.faq-item.open .faq-icon svg path { stroke: white; }
.faq-item.open .faq-body { max-height: 240px; }

/* ── WA BANNER ── */
.wa-banner { background: linear-gradient(135deg, #064E3B 0%, #065F46 100%); padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.wa-banner-left { display: flex; align-items: center; gap: 20px; }
.wa-big-icon { width: 64px; height: 64px; background: rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; flex-shrink: 0; }
.wa-banner-left h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(20px,3vw,32px); font-weight: 700; color: white; line-height: 1.1; }
.wa-banner-left p  { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 4px; }
.btn-wa-large { background: white; color: #065F46; padding: 14px 28px; border-radius: var(--r); font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: opacity .2s, transform .15s; white-space: nowrap; }
.btn-wa-large:hover { opacity: .9; transform: translateY(-2px); }

/* ── CTA STRIP ── */
.cta-strip { background: var(--blue-d); padding: 60px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; border-top: 4px solid var(--yellow); }
.cta-text h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(24px,3.5vw,42px); font-weight: 700; letter-spacing: -.02em; color: white; line-height: 1.05; }
.cta-text p  { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 7px; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-call  { background: var(--yellow); color: var(--dark); padding: 13px 24px; border-radius: var(--r); font-family: 'Space Grotesk', sans-serif; font-size: 13.5px; font-weight: 700; display: flex; align-items: center; gap: 9px; transition: all .2s; }
.cta-call:hover { background: var(--yellow-l); transform: translateY(-2px); }
.cta-call2 { background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.25); color: white; padding: 13px 24px; border-radius: var(--r); font-family: 'Space Grotesk', sans-serif; font-size: 13.5px; font-weight: 700; display: flex; align-items: center; gap: 9px; transition: all .2s; }
.cta-call2:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.cta-wa { background: var(--wa); color: white; padding: 13px 22px; border-radius: var(--r); font-family: 'Space Grotesk', sans-serif; font-size: 13.5px; font-weight: 700; display: flex; align-items: center; gap: 9px; transition: all .2s; }
.cta-wa:hover { background: var(--wa-d); transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,.4); padding: 68px 48px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; margin-bottom: 48px; }
.footer-logo-row  { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-mark { width: 38px; height: 38px; background: var(--blue); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; color: white; flex-shrink: 0; }
.footer-logo-name { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; color: white; }
.footer-brand p   { font-size: 13px; line-height: 1.82; max-width: 290px; }
.footer-contacts  { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.footer-contacts a { font-size: 13px; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 9px; transition: color .2s; }
.footer-contacts a:hover { color: var(--blue-l); }
.footer-contacts i { color: var(--blue); font-size: 11px; width: 14px; }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: white; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.38); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.footer-col ul li a::before { content: '→'; font-size: 10px; opacity: .35; }
.footer-col ul li a:hover { color: var(--blue-l); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-bottom a { color: var(--blue-l); }

/* ── FLOATING BUTTONS ── */
.floating-btns { position: fixed; bottom: 24px; right: 22px; display: flex; flex-direction: column; gap: 10px; z-index: 9999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 19px; color: white; cursor: pointer; box-shadow: 0 4px 18px rgba(0,0,0,.25); transition: transform .2s; text-decoration: none; position: relative; }
.float-btn:hover { transform: scale(1.12); }
.float-call { background: var(--blue); }
.float-wa   { background: var(--wa); }
.float-label { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); background: var(--dark); color: white; font-size: 11px; font-weight: 600; white-space: nowrap; padding: 5px 10px; border-radius: 6px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.float-btn:hover .float-label { opacity: 1; }
@keyframes wapulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.55)} 70%{box-shadow:0 0 0 14px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }
.float-wa { animation: wapulse 2.5s infinite; }

/* ── TICKER ── */
.ticker { background: var(--yellow); color: var(--dark); padding: 10px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-block; animation: tick 40s linear infinite; font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; }
@keyframes tick { from{transform:translateX(100vw);}to{transform:translateX(-100%);} }

/* ── SLIDER ── */
.slider-section { position: relative; overflow: hidden; background: var(--dark2); }
.slider-track   { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.slide { min-width: 100%; position: relative; height: 220px; display: flex; align-items: center; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.15); }
.slide-content  { position: relative; z-index: 2; padding: 0 56px; display: flex; align-items: center; justify-content: space-between; width: 100%; }
.slide-route { font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px,4vw,52px); font-weight: 700; color: white; letter-spacing: -.01em; line-height: 1.05; }
.slide-route span { color: var(--blue-l); }
.slide-detail   { text-align: right; }
.slide-km { font-family: 'Space Grotesk', sans-serif; font-size: 42px; font-weight: 700; color: var(--yellow-l); line-height: 1; }
.slide-km-label { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
.slide-tag { display: inline-block; margin-top: 10px; background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.35); color: var(--blue-l); font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 100px; letter-spacing: .1em; text-transform: uppercase; }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: white; font-size: 13px; cursor: pointer; z-index: 10; transition: all .2s; }
.slider-nav:hover { background: var(--blue); border-color: var(--blue); }
.slider-prev { left: 14px; } .slider-next { right: 14px; }
.slider-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.22); cursor: pointer; transition: all .22s; }
.dot.active { background: var(--blue-l); width: 20px; border-radius: 4px; }

/* ── BOOKING FORM ── */
.hero-card  { background: white; border-radius: var(--r-xl); padding: 30px 26px; position: relative; z-index: 2; box-shadow: 0 32px 80px rgba(11,25,41,.45), 0 4px 16px rgba(11,25,41,.2); }
.card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.card-icon   { width: 40px; height: 40px; background: var(--blue-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 16px; }
.card-title  { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--dark); }
.card-sub    { font-size: 11.5px; color: var(--light); font-weight: 500; margin-top: 1px; }
.fg          { margin-bottom: 11px; }
.fg label    { display: block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--light); margin-bottom: 5px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: var(--r); font-family: 'DM Sans', sans-serif; font-size: 13.5px; color: var(--dark); background: var(--pale); transition: border-color .2s, background .2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--blue); background: white; }
.fg input::placeholder, .fg textarea::placeholder { color: #A0B8CC; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-submit { width: 100%; background: var(--wa); color: white; border: none; padding: 13px; border-radius: var(--r); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .03em; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; transition: background .2s, transform .15s; margin-top: 4px; }
.form-submit:hover { background: var(--wa-d); transform: translateY(-2px); }
#form-msg, #contact-msg { color: #059669; font-size: 12.5px; font-weight: 700; text-align: center; margin-top: 12px; display: none; background: #ECFDF5; border-radius: var(--r); padding: 9px 12px; border: 1.5px solid #A7F3D0; }
.form-note { font-size: 10.5px; color: var(--light); text-align: center; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ── ABOUT ── */
.milestone-row  { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 12px; margin-top: 40px; }
.milestone-card { background: var(--blue); border-radius: var(--r-lg); padding: 28px 20px; text-align: center; }
.milestone-num  { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; color: white; line-height: 1; }
.milestone-label{ font-size: 11px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .12em; margin-top: 6px; font-weight: 600; }
.about-story    { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-img{ background: var(--blue-pale); border: 2px solid var(--blue-mid); border-radius: var(--r-xl); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.about-story-text h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px,3.5vw,42px); font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 16px; }
.about-story-text h2 span { color: var(--blue); }
.about-story-text p  { font-size: 14px; color: var(--mid); line-height: 1.82; margin-bottom: 14px; }

/* ── CONTACT ── */
.contact-layout   { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start; }
.contact-form-box { background: white; border: 2px solid var(--border); border-radius: var(--r-xl); padding: 36px 32px; }
.contact-form-box h3 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.contact-form-box > p { font-size: 13px; color: var(--light); margin-bottom: 24px; }
.contact-info-box  { display: flex; flex-direction: column; gap: 14px; }
.info-card  { background: white; border: 2px solid var(--border); border-radius: var(--r-lg); padding: 20px; display: flex; align-items: flex-start; gap: 14px; transition: all .22s; }
.info-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,165,233,.1); }
.info-icon  { width: 44px; height: 44px; background: var(--blue-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 16px; flex-shrink: 0; }
.info-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.info-card p  { font-size: 13px; color: var(--mid); line-height: 1.6; }
.info-card a  { font-size: 13px; color: var(--blue-d); font-weight: 700; display: block; transition: color .2s; }
.info-card a:hover { color: var(--blue-dd); }
.map-embed  { background: var(--pale); border-radius: var(--r-lg); margin-top: 14px; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--light); border: 2px solid var(--border); }
.contact-submit { width: 100%; background: var(--blue); color: white; border: none; padding: 14px; border-radius: var(--r); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s, transform .15s; margin-top: 6px; }
.contact-submit:hover { background: var(--blue-d); transform: translateY(-2px); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; margin-top: 40px; }
.service-card  { background: white; border: 2px solid var(--border); border-radius: var(--r-xl); overflow: hidden; transition: all .25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(14,165,233,.15); border-color: var(--blue); }
.service-card-top { background: var(--blue-d); padding: 32px 28px; }
.service-icon  { width: 54px; height: 54px; background: rgba(255,255,255,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: white; margin-bottom: 16px; }
.service-card-top h3 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: white; margin-bottom: 6px; }
.service-card-top p  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }
.service-card-body { padding: 22px 28px; }
.service-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--mid); margin-bottom: 10px; }
.service-feature i { color: var(--blue); font-size: 11px; width: 12px; }
.service-cta { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--blue-d); margin-top: 16px; border-top: 1.5px solid var(--border); padding-top: 16px; transition: gap .2s; }
.service-card:hover .service-cta { gap: 12px; color: var(--blue-dd); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);} }
.fade-up   { animation: fadeUp .7s ease both; }
.fade-up-2 { animation: fadeUp .7s .15s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout  { grid-template-columns: 1fr; gap: 40px; }
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .section { padding: 68px 32px; }
  .cta-strip, .wa-banner { padding: 44px 32px; }
  .page-hero { padding: 60px 32px; }
  footer { padding: 56px 32px 28px; }
}
@media (max-width: 768px) {
  .topbar  { display: none; }
  header   { padding: 0 20px; height: 64px; }
  nav      { display: none; }
  .mob-btn { display: block; }
  .section { padding: 52px 20px; }
  .page-hero { padding: 48px 20px; }
  .frow    { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .slide-content { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .slide-detail { text-align: left; }
  .slider-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 40px 20px 24px; }
  .cta-strip { padding: 40px 20px; flex-direction: column; }
  .wa-banner { padding: 36px 20px; flex-direction: column; }
  .review-big-num { font-size: 48px; }
  .milestone-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns a { justify-content: center; }
  .fleet-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
}