/* ═══════════════════════════════════════
   TOTRIP — IVORY WHITE + CHAMPAGNE GOLD
   LUXURY DESIGN SYSTEM
═══════════════════════════════════════ */
:root {
  --ivory:      #FAF8F2;
  --white:      #FFFFFF;
  --gold:       #C9A64B;
  --gold-h:     #B8912F;
  --gold-a:     #D6B86A;
  --gold-dim:   rgba(201,166,75,0.12);
  --gold-b:     rgba(201,166,75,0.28);
  --navy:       #0F172A;
  --navy-2:     #1E293B;
  --body-txt:   #334155;
  --muted:      #64748B;
  --border:     #E7E0CF;
  --border-l:   #F0EBE0;
  --shadow-s:   0 2px 12px rgba(15,23,42,0.07);
  --shadow-m:   0 6px 28px rgba(15,23,42,0.10);
  --shadow-l:   0 16px 56px rgba(15,23,42,0.13);
  --shadow-g:   0 4px 20px rgba(201,166,75,0.25);
  --green:      #166534;
  --green-b:    #15803D;
  --fd:         'Playfair Display', Georgia, serif;
  --fb:         'Outfit', sans-serif;
  --r:          4px;
  --tr:         0.26s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--body-txt);
  font-family: var(--fb);
  line-height: 1.72;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--fb); }

/* SKIP NAV */
.skip-nav { position: absolute; top: -999px; left: -999px; background: var(--gold); color: var(--navy); padding: 8px 16px; font-size: 14px; font-weight: 600; z-index: 9999; }
.skip-nav:focus { top: 8px; left: 8px; }

/* STICKY MOBILE CTA */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000; display: none; background: var(--white); border-top: 1px solid var(--border); padding: 10px 16px; gap: 10px; box-shadow: 0 -4px 16px rgba(15,23,42,0.10); }
.sticky-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 13px 8px; font-size: 13px; font-weight: 600; border-radius: var(--r); text-align: center; }
.s-call { background: var(--green); color: var(--white); }
.s-wa   { background: #25D366; color: var(--navy); }
.s-book { background: var(--gold); color: var(--navy); }

/* WHATSAPP BUBBLE */
.wa-bubble { position: fixed; bottom: 32px; right: 28px; z-index: 1999; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.35); font-size: 28px; transition: transform var(--tr), box-shadow var(--tr); text-decoration: none; }
.wa-bubble:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

/* TOPBAR */
.topbar { background: #0F172A; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 9px 0; font-size: 12.5px; color: rgba(255,255,255,0.75); }
.topbar-inner { max-width: 1300px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item a { color: var(--gold-a); transition: color var(--tr); }
.topbar-item a:hover { color: var(--white); }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right a { font-size: 11px; color: rgba(255,255,255,0.5); transition: color var(--tr); }
.topbar-right a:hover { color: var(--gold-a); }

/* HEADER */
header { position: sticky; top: 0; z-index: 1500; background: rgba(255,255,255,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-s); }
.nav-inner { max-width: 1300px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--fd); font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: 2px; }
.logo-tag { font-size: 9.5px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--muted); }
nav { display: flex; align-items: center; gap: 32px; }
nav > a { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--body-txt); transition: color var(--tr); position: relative; font-weight: 500; }
nav > a::after { content: ""; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
nav > a:hover { color: var(--gold); }
nav > a:hover::after { width: 100%; }
.nav-phone { display: flex; align-items: center; gap: 20px; }
.nav-phone-num { font-size: 14px; font-weight: 600; color: var(--navy); }
.nav-phone-num span { color: var(--gold); font-size: 11px; display: block; letter-spacing: 0.5px; }
.btn-nv { background: var(--gold); color: var(--navy) !important; padding: 10px 24px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: var(--r); transition: background var(--tr), transform var(--tr), box-shadow var(--tr); border: none; }
.btn-nv:hover { background: var(--gold-h); transform: translateY(-1px); box-shadow: var(--shadow-g); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); }
.mob-nav { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 20px 28px; flex-direction: column; gap: 4px; box-shadow: var(--shadow-m); }
.mob-nav.open { display: flex; }
.mob-nav a { font-size: 14px; letter-spacing: 1px; color: var(--body-txt); text-transform: uppercase; padding: 12px 0; border-bottom: 1px solid var(--border-l); transition: color var(--tr); font-weight: 500; }
.mob-nav a:hover { color: var(--gold); }
.mob-ctas { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

/* BUTTON SYSTEM */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; border-radius: var(--r); border: none; transition: all var(--tr); cursor: pointer; white-space: nowrap; font-family: var(--fb); text-decoration: none; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-h); box-shadow: var(--shadow-g); }
.btn-grn  { background: var(--green); color: var(--white); }
.btn-grn:hover  { background: var(--green-b); }
.btn-wa   { background: #25D366; color: var(--navy); }
.btn-wa:hover   { background: #1ebe5d; }
.btn-out  { background: var(--white); color: var(--gold); border: 1.5px solid var(--gold); }
.btn-out:hover  { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-g); }
.btn-outg { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outg:hover { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); }
.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-lg { padding: 18px 44px; font-size: 14px; }

/* LAYOUT */
.sec { padding: 96px 0; }
.bg-ivory  { background: var(--ivory); }
.bg-white  { background: var(--white); }
.bg-navy   { background: var(--navy); }
.bg-gold-s { background: linear-gradient(135deg, #FAF3E0 0%, #FDF8EC 100%); }
.ctr { max-width: 1300px; margin: 0 auto; padding: 0 28px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
.eyebrow::before { content: ""; display: block; width: 32px; height: 2px; background: var(--gold); }
.stitle { font-family: var(--fd); font-size: clamp(28px, 3.5vw, 50px); font-weight: 700; line-height: 1.1; color: var(--navy); margin-bottom: 16px; }
.stitle em { font-style: italic; color: var(--gold); }
.sdesc { font-size: 15.5px; color: var(--body-txt); max-width: 680px; line-height: 1.85; margin-bottom: 48px; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 24px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.mid-cta  { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 48px; }

/* HERO — dark overlay on photo, gold + navy text */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; background-size: cover; background-position: center; transform: scale(1.04); transition: opacity 1.4s ease, transform 8s ease; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.45) 48%, rgba(15,23,42,0.25) 100%), linear-gradient(0deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.55) 35%, rgba(15,23,42,0) 65%); }
.sl1 { background-image: url("images/hero-rolls-royce.jpg"); }
.hero-bar { position: absolute; top: 0; left: 0; width: 5px; height: 100%; z-index: 2; background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent); }
.hero-con { position: relative; z-index: 3; width: 100%; max-width: 1300px; margin: 0 auto; padding: 130px 28px 60px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-a); margin-bottom: 22px; animation: fadeUp .7s ease both; }
.hero-badge::before { content: ""; width: 40px; height: 1px; background: var(--gold-a); }
.hero h1 { font-family: var(--fd); font-size: clamp(46px, 8vw, 100px); font-weight: 800; line-height: 1.01; color: var(--white); max-width: 860px; margin-bottom: 12px; animation: fadeUp .7s .1s ease both; }
.hero h1 em { font-style: italic; color: var(--gold-a); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 660px; line-height: 1.85; margin-bottom: 38px; animation: fadeUp .7s .2s ease both; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; animation: fadeUp .7s .3s ease both; }
.hero-contact { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 52px; animation: fadeUp .7s .35s ease both; }
.hero-contact a { color: var(--gold-a); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.15); animation: fadeUp .7s .45s ease both; }
.ht-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.85); }
.chk { width: 22px; height: 22px; background: rgba(201,166,75,0.2); border: 1px solid var(--gold-a); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--gold-a); flex-shrink: 0; }
.dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: all .3s; border: none; }
.dot.active { background: var(--gold); width: 28px; border-radius: 4px; }
.arrows { position: absolute; bottom: 28px; right: 28px; z-index: 3; display: flex; gap: 10px; }
.arw { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 17px; cursor: pointer; transition: all var(--tr); }
.arw:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* GOLD STRIP */
.strip { background: var(--gold); padding: 16px 0; border-top: 3px solid var(--gold-h); border-bottom: 3px solid var(--gold-h); }
.strip-in { max-width: 1300px; margin: 0 auto; padding: 0 28px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.strip-item { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--navy); white-space: nowrap; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-img-w { position: relative; }
.about-img-w img { width: 100%; height: 580px; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-l); }
.about-badge { position: absolute; bottom: -22px; right: -22px; background: var(--gold); color: var(--navy); padding: 26px 22px; text-align: center; border-radius: var(--r); box-shadow: var(--shadow-g); }
.about-badge strong { font-size: 42px; font-family: var(--fd); font-weight: 800; display: block; line-height: 1; }
.about-badge span { font-size: 11px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 32px; }
.af { display: flex; align-items: flex-start; gap: 11px; padding: 16px; background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--r); box-shadow: var(--shadow-s); transition: box-shadow var(--tr); }
.af:hover { box-shadow: var(--shadow-m); }
.af-icon { color: var(--gold); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.af h4 { font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.af p { font-size: 12px; color: var(--muted); }

/* SERVICE CARDS */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc { background: var(--white); padding: 36px 28px; border: 1px solid var(--border); border-top: 3px solid transparent; border-radius: var(--r); box-shadow: var(--shadow-s); transition: all var(--tr); }
.svc:hover { border-top-color: var(--gold); box-shadow: var(--shadow-m); transform: translateY(-3px); }
.svc-icon { font-size: 32px; margin-bottom: 16px; }
.svc h3 { font-family: var(--fd); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 11px; }
.svc p { font-size: 14px; color: var(--body-txt); line-height: 1.75; margin-bottom: 18px; }
.svc-ctas { display: flex; gap: 9px; flex-wrap: wrap; }

/* AI ANSWER CARDS */
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ai-card { background: var(--white); border-radius: var(--r); padding: 36px; border: 1px solid var(--border); border-top: 3px solid var(--gold); box-shadow: var(--shadow-s); transition: box-shadow var(--tr); }
.ai-card:hover { box-shadow: var(--shadow-m); }
.ai-card h3 { font-family: var(--fd); font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.ai-card p { font-size: 14px; color: var(--body-txt); line-height: 1.85; margin-bottom: 12px; }
.ai-card p:last-of-type { margin-bottom: 0; }

/* FLEET */
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fc { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-s); transition: all var(--tr); }
.fc:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); border-color: var(--gold-b); }
.fc-img { overflow: hidden; position: relative; }
.fc img { width: 100%; height: 240px; object-fit: cover; transition: transform .45s ease; }
.fc:hover img { transform: scale(1.05); }
.fc-tag { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 11px; border-radius: var(--r); }
.fc-body { padding: 22px 18px; }
.fc-body h3 { font-family: var(--fd); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.fc-cat { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 600; }
.fc-desc { font-size: 13px; color: var(--body-txt); line-height: 1.65; margin-bottom: 12px; }
.fc-uses { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.fc-use { background: var(--ivory); border: 1px solid var(--border); padding: 3px 9px; border-radius: 20px; font-size: 11px; color: var(--muted); }
.fc-ctas { display: flex; gap: 8px; }
.fb { flex: 1; padding: 9px 6px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-align: center; border-radius: var(--r); transition: all var(--tr); text-decoration: none; display: block; }
.fb-g { background: var(--gold); color: var(--navy); }
.fb-g:hover { background: var(--gold-h); }
.fb-w { background: #25D366; color: var(--navy); }
.fb-w:hover { background: #1ebe5d; }

/* VEHICLE AUTHORITY SECTIONS */
.veh-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: start; }
.veh-grid.rev { grid-template-columns: 1fr 1.2fr; }
.veh-img img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-l); }
.veh-content h2 { font-family: var(--fd); font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.veh-content h2 em { font-style: italic; color: var(--gold); }
.veh-content p { font-size: 14.5px; color: var(--body-txt); line-height: 1.85; margin-bottom: 14px; }
.veh-bullets { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 24px; }
.vb { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--body-txt); padding: 10px 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); }
.vb::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* AIRPORT TRANSFER */
.ap-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.ap-img img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-l); }
.ap-pts { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.apt { display: flex; align-items: flex-start; gap: 14px; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); border-left: 3px solid var(--gold); box-shadow: var(--shadow-s); transition: all var(--tr); }
.apt:hover { box-shadow: var(--shadow-m); transform: translateX(3px); }
.apt-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--gold-dim); border: 1px solid var(--gold-b); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.apt h3 { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.apt p { font-size: 13px; color: var(--body-txt); line-height: 1.65; }

/* WHY CHOOSE */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-pts { display: flex; flex-direction: column; gap: 18px; }
.wp { display: flex; align-items: flex-start; gap: 16px; padding: 22px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); border-left: 3px solid transparent; box-shadow: var(--shadow-s); transition: all var(--tr); }
.wp:hover { border-left-color: var(--gold); box-shadow: var(--shadow-m); transform: translateX(3px); }
.wp-num { font-family: var(--fd); font-size: 34px; font-weight: 800; color: var(--gold-b); line-height: 1; flex-shrink: 0; min-width: 44px; }
.wp h3 { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.wp p { font-size: 13px; color: var(--body-txt); line-height: 1.7; }
.why-img img { width: 100%; height: 580px; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-l); }

/* STATS BAR */
.stats { background: linear-gradient(135deg, #FAF3DC 0%, #FDF8ED 100%); padding: 60px 0; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.stats-g { max-width: 1300px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.sn { font-family: var(--fd); font-size: 58px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.sl { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }

/* COVERAGE */
.cov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.loc-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lt { background: var(--white); border: 1px solid var(--border); padding: 20px 14px; border-radius: var(--r); text-align: center; box-shadow: var(--shadow-s); transition: all var(--tr); }
.lt:hover { border-color: var(--gold-b); box-shadow: var(--shadow-m); transform: translateY(-2px); }
.lt-icon { font-size: 22px; margin-bottom: 8px; }
.lt h4 { font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.lt p { font-size: 11.5px; color: var(--muted); }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tc { background: var(--white); padding: 32px; border-radius: var(--r); border: 1px solid var(--border); box-shadow: var(--shadow-s); transition: all var(--tr); }
.tc:hover { box-shadow: var(--shadow-m); border-color: var(--gold-b); }
.tc-stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; margin-bottom: 12px; }
.tc-text { font-family: var(--fd); font-size: 16px; font-style: italic; color: var(--body-txt); line-height: 1.7; margin-bottom: 18px; }
.tc-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av { width: 44px; height: 44px; background: var(--gold-dim); border: 2px solid var(--gold-b); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 18px; color: var(--gold); font-weight: 700; }
.tc-ai strong { display: block; font-size: 13.5px; color: var(--navy); font-weight: 600; }
.tc-ai span { font-size: 12px; color: var(--muted); }

/* TRUST BADGES */
.badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 48px; }
.badge { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1.5px solid var(--gold-b); padding: 10px 18px; border-radius: 30px; font-size: 12px; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-s); }
.badge span { color: var(--gold); font-size: 14px; }

/* PEOPLE ALSO ASK */
.paa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.paa-item { background: var(--white); border: 1px solid var(--border); transition: border-color var(--tr); }
.paa-item.open { border-color: var(--gold-b); }
.paa-q { display: flex; align-items: center; justify-content: space-between; gap: 11px; padding: 18px 20px; cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--navy); line-height: 1.4; user-select: none; }
.paa-q:hover { color: var(--gold); }
.paa-tog { width: 24px; height: 24px; flex-shrink: 0; background: var(--gold-dim); border: 1px solid var(--gold-b); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gold); transition: transform .3s; }
.paa-item.open .paa-tog { transform: rotate(45deg); }
.paa-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; font-size: 13.5px; color: var(--body-txt); line-height: 1.8; background: var(--ivory); }
.paa-a.open { max-height: 400px; padding: 0 20px 18px; }

/* BOOKING FORM */
.bk-wrap { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--gold); padding: 52px; border-radius: var(--r); max-width: 960px; margin: 0 auto; box-shadow: var(--shadow-m); }
.bk-wrap h2 { font-family: var(--fd); font-size: 32px; color: var(--navy); margin-bottom: 6px; }
.bk-wrap > p { font-size: 14px; color: var(--body-txt); margin-bottom: 32px; }
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.fgrp { display: flex; flex-direction: column; gap: 7px; }
.fgrp label { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.fgrp input, .fgrp select, .fgrp textarea { background: var(--ivory); border: 1.5px solid var(--border); color: var(--navy); padding: 12px 16px; font-size: 14px; font-family: var(--fb); border-radius: var(--r); outline: none; transition: border-color var(--tr), box-shadow var(--tr); }
.fgrp input:focus, .fgrp select:focus, .fgrp textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.fgrp select option { background: var(--white); }
.ff { grid-column: 1 / -1; }
.fctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* FAQ */
.faq-lay { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.fi { background: var(--white); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; transition: border-color var(--tr), box-shadow var(--tr); }
.fi.open { border-color: var(--gold-b); box-shadow: var(--shadow-s); }
.fq { display: flex; align-items: center; justify-content: space-between; gap: 11px; padding: 17px 18px; cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--navy); line-height: 1.4; user-select: none; }
.fq:hover { color: var(--gold); }
.ftog { width: 24px; height: 24px; flex-shrink: 0; background: var(--gold-dim); border: 1px solid var(--gold-b); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gold); transition: transform .3s; }
.fi.open .ftog { transform: rotate(45deg); }
.fa { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; font-size: 13.5px; color: var(--body-txt); line-height: 1.8; background: var(--ivory); }
.fa.open { max-height: 300px; padding: 0 18px 16px; }

/* CTA BANNER */
.cta-ban { background: linear-gradient(135deg, #FAF3DC 0%, #FFFDF5 60%, #FAF3DC 100%); padding: 96px 0; text-align: center; position: relative; overflow: hidden; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.cta-ban::before { content: ""; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 700px; height: 300px; background: radial-gradient(ellipse, rgba(201,166,75,.18) 0%, transparent 70%); }
.cta-ban .ctr { position: relative; }
.cta-ban h2 { font-family: var(--fd); font-size: clamp(30px, 4vw, 54px); font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.cta-ban h2 em { color: var(--gold); font-style: italic; }
.cta-ban p { font-size: 16px; color: var(--body-txt); max-width: 580px; margin: 0 auto 40px; line-height: 1.85; }
.cta-row-c { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* CONTACT */
.con-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cc { background: var(--white); padding: 32px 24px; border-radius: var(--r); border: 1px solid var(--border); border-top: 3px solid var(--gold); box-shadow: var(--shadow-s); text-align: center; transition: all var(--tr); }
.cc:hover { box-shadow: var(--shadow-m); transform: translateY(-2px); }
.cc-icon { font-size: 32px; margin-bottom: 12px; }
.cc h4 { font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 700; }
.cc p { font-size: 14px; color: var(--body-txt); line-height: 1.7; }
.cc a { color: var(--gold); display: block; transition: color var(--tr); }
.cc a:hover { color: var(--gold-h); }

/* FOOTER */
footer { background: #0F172A; border-top: 3px solid var(--gold); }
.ft-top { max-width: 1300px; margin: 0 auto; padding: 68px 28px 52px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr; gap: 48px; }
.ft-brand .logo-name { font-size: 30px; margin-bottom: 4px; color: var(--gold-a); }
.ft-brand .logo-tag { display: block; margin-bottom: 16px; color: rgba(255,255,255,0.5); }
.ft-brand p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 22px; }
.ft-soc { display: flex; gap: 9px; flex-wrap: wrap; }
.fts { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; transition: all var(--tr); text-decoration: none; color: rgba(255,255,255,0.7); }
.fts:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.fcol h3 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 700; }
.fcol ul { display: flex; flex-direction: column; gap: 10px; }
.fcol ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--tr); display: flex; align-items: center; gap: 6px; }
.fcol ul li a::before { content: "A"; color: var(--gold); }
.fcol ul li a:hover { color: var(--gold-a); }
.ft-ci-list { display: flex; flex-direction: column; gap: 13px; }
.ft-ci { display: flex; align-items: flex-start; gap: 9px; }
.ft-ci .ico { color: var(--gold); font-size: 13px; margin-top: 2px; }
.ft-ci p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.ft-ci a { color: var(--gold-a); transition: color var(--tr); }
.ft-ci a:hover { color: var(--white); }
.ft-bot { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 28px; max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 11px; }
.ft-bot p { font-size: 11.5px; color: rgba(255,255,255,0.4); }
.ft-bot a { color: rgba(255,255,255,0.5); transition: color var(--tr); }
.ft-bot a:hover { color: var(--gold-a); }

/* BREADCRUMB */
.bb { background: var(--white); padding: 10px 0; border-bottom: 1px solid var(--border); }
.bl { display: flex; align-items: center; gap: 7px; list-style: none; font-size: 12px; color: var(--muted); }
.bl a { color: var(--gold); }
.bl a:hover { color: var(--gold-h); }

/* SECTION BACKGROUNDS */
.bg2  { background: var(--white); }
.bg3  { background: var(--ivory); }
.bgd  { background: var(--ivory); }
.bg-gold-s { background: linear-gradient(135deg, #FAF3E0 0%, #FDF8EC 100%); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.rv { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .ft-brand { grid-column: 1 / -1; }
  .veh-grid, .veh-grid.rev { grid-template-columns: 1fr; gap: 36px; }
  .veh-img img { height: 320px; }
}
@media (max-width: 1024px) {
  .about-grid, .why-grid, .ap-grid, .cov-grid, .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-w img, .why-img img, .ap-img img { height: 340px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .stats-g { grid-template-columns: repeat(2, 1fr); }
  .con-grid { grid-template-columns: 1fr 1fr; }
  .faq-lay { grid-template-columns: 1fr; gap: 32px; }
  .paa-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .fleet-grid, .testi-grid, .svc-grid { grid-template-columns: 1fr; }
  .fg, .about-feats { grid-template-columns: 1fr; }
  .bk-wrap { padding: 28px 18px; }
  .ft-top { grid-template-columns: 1fr; gap: 28px; }
  .stats-g { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .loc-tiles { grid-template-columns: repeat(2, 1fr); }
  .strip-in { gap: 18px; }
  .wa-bubble { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .topbar-right { display: none; }
  .about-badge { right: 0; bottom: -10px; }
  .sec { padding: 64px 0; }
}
@media (max-width: 480px) {
  .con-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .hero-ctas .btn { padding: 12px 18px; font-size: 12px; }
  .sn { font-size: 44px; }
}

/* ═══ TRAVEL GUIDE / BLOG ═══ */

/* Category filter pills */
.cat-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.cat-pill { display: inline-flex; align-items: center; gap: 7px; padding: 9px 20px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: 30px; border: 1.5px solid var(--border); background: var(--white); color: var(--body-txt); transition: all var(--tr); }
.cat-pill:hover { border-color: var(--gold-b); color: var(--gold-h); }
.cat-pill.active { background: var(--navy); border-color: var(--navy); color: var(--gold-a); }

/* Featured post - large card */
.feat-post { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; background: var(--navy); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-l); }
.feat-img { position: relative; min-height: 420px; background-size: cover; background-position: center; overflow: hidden; }
.feat-img-tag { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.feat-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,.55) 100%); }
.feat-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.feat-tag { display: inline-flex; width: fit-content; align-items: center; gap: 8px; font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--navy); background: var(--gold-a); padding: 6px 14px; border-radius: 20px; font-weight: 700; margin-bottom: 20px; }
.feat-body h3 { font-family: var(--fd); font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.feat-body p { font-size: 14.5px; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 24px; }
.feat-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 26px; }
.feat-meta span { display: flex; align-items: center; gap: 6px; }
.mile-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--gold-a); border: 1px solid rgba(214,184,106,0.35); padding: 4px 10px; border-radius: 20px; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bpost { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-s); transition: all var(--tr); display: flex; flex-direction: column; }
/* Cards beyond the first page: still real, crawlable links in the DOM — just hidden from view until "Load More" is clicked. */
.hub-more-card { display: none; }
.bpost:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); border-color: var(--gold-b); }
.bpost-img { height: 200px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.bpost-img-tag { width: 100%; height: 100%; object-fit: cover; display: block; }
.bpost-cat { position: absolute; top: 14px; left: 14px; background: rgba(15,23,42,0.82); color: var(--gold-a); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 6px 12px; border-radius: 20px; }
.bpost-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.bpost-meta { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--muted); margin-bottom: 12px; letter-spacing: .5px; }
.bpost h3 { font-family: var(--fd); font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.bpost p { font-size: 13.5px; color: var(--body-txt); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.bpost-link { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-h); transition: gap var(--tr); }
.bpost:hover .bpost-link { gap: 11px; }

/* Route mile-marker signature strip on cards */
.bpost-route { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--gold-h); border-top: 1px dashed var(--border); padding-top: 12px; margin-top: auto; }
.bpost-route .dotline { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--gold-b) 0, var(--gold-b) 4px, transparent 4px, transparent 8px); }

/* Newsletter */
.nl-wrap { background: linear-gradient(135deg, #FAF3DC 0%, #FFFDF5 60%, #FAF3DC 100%); border: 1px solid var(--gold-b); border-radius: var(--r); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.nl-txt h3 { font-family: var(--fd); font-size: 24px; color: var(--navy); margin-bottom: 6px; }
.nl-txt p { font-size: 13.5px; color: var(--body-txt); max-width: 420px; }
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-form input { background: var(--white); border: 1.5px solid var(--border); padding: 13px 18px; font-size: 14px; font-family: var(--fb); border-radius: var(--r); outline: none; min-width: 240px; transition: border-color var(--tr); }
.nl-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .feat-post { grid-template-columns: 1fr; }
  .feat-img { min-height: 260px; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .feat-body { padding: 36px 26px; }
  .nl-wrap { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .nl-form { width: 100%; }
  .nl-form input { flex: 1; min-width: 0; }
}

/* AI OVERVIEW ANSWER BOX */
.ai-answer { background: rgba(212,175,55,0.08); border-left: 4px solid #d4af37; border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 0 0 32px; font-size: 14px; color: #444; line-height: 1.8; }
.ai-answer strong { color: #0d2847; }
.ai-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #d4af37; font-weight: 700; display: block; margin-bottom: 8px; }

