/* =============================================
   Allstars Worldwide — Main Stylesheet
   ============================================= */

/* ===== CSS Variables ===== */
:root {
  --bg:         #FBF8F1;
  --bg-2:       #FFFFFF;
  --bg-3:       #F4EFE3;
  --bg-dark:    #0E1726;
  --ink:        #0E1726;
  --ink-2:      #1E2A3D;
  --ink-soft:   #4A5566;
  --ink-mute:   #7A8497;
  --line:       #E9E2D1;
  --line-strong:#D9CFB6;
  --gold:       #B6873A;
  --gold-2:     #D4A24C;
  --gold-soft:  #F2E6CB;
  --navy:       #0E1726;
  --green:      #2F8A4A;
  --red:        #C0392B;
  --shadow-sm:  0 2px 6px rgba(14,23,38,.06);
  --shadow:     0 8px 30px -8px rgba(14,23,38,.18), 0 2px 6px rgba(14,23,38,.06);
  --shadow-lg:  0 30px 60px -25px rgba(14,23,38,.25), 0 8px 20px -8px rgba(14,23,38,.10);
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  18px;
  --container:  90%;
  --font-display:'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --transition: 220ms cubic-bezier(0.4,0,0.2,1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; color: inherit; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy);
}
h1 { font-size: clamp(38px, 5vw, 66px); }
h2 { font-size: clamp(28px, 3.4vw, 48px); }
h3 { font-size: clamp(19px, 1.8vw, 26px); }
h4 { font-size: 17px; }
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.lede { font-size: 17px; color: var(--ink-soft); max-width: 58ch; line-height: 1.7; }
em.gold { font-style: italic; color: var(--gold); }
p { color: var(--ink-soft); line-height: 1.7; }

/* ===== Layout ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section.tight { padding: 60px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.section-head .head-left { max-width: 620px; }
.section-head .eyebrow { margin-bottom: 12px; }
.row { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 18px -8px rgba(182,135,58,.55);
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(182,135,58,.65); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #182239; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-call { background: var(--green); color: #fff; }
.btn-call:hover { background: #267539; transform: translateY(-2px); }
.btn-link { color: var(--gold); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; transition: color var(--transition); }
.btn-link:hover { color: var(--gold-2); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

/* ===== Stars ===== */
.stars { display: inline-flex; gap: 2px; color: var(--gold-2); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Utility Bar ===== */
.utility-bar {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  padding: 9px 0;
}
.utility-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.utility-left { display: flex; gap: 20px; }
.utility-left span { display: inline-flex; align-items: center; gap: 7px; }
.utility-left svg { color: var(--gold-2); }
.utility-right { display: flex; gap: 16px; align-items: center; }
.utility-right a { color: rgba(255,255,255,.82); display: inline-flex; align-items: center; gap: 7px; transition: color var(--transition); }
.utility-right a:hover { color: var(--gold-2); }
.utility-phone { color: #fff !important; font-weight: 600; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,248,241,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; width: 100px; height: 46px; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; gap: 26px; justify-content: center; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: var(--ink-2); padding: 5px 0; position: relative; transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }
.icon-btn { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; transition: all var(--transition); }
.call-btn { background: var(--green); color: #fff; }
.call-btn:hover { background: #267539; transform: translateY(-1px); }

/* ===== Mobile Menu Toggle ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition);
}
.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; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile Nav Drawer ===== */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 24px 0;
  animation: slideDown 220ms ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-nav.open { display: block; }
.mobile-nav nav { max-width: var(--container); margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { display: block; padding: 10px 12px; font-size: 16px; font-weight: 500; border-radius: var(--radius-sm); color: var(--ink-2); transition: all var(--transition); }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); background: var(--gold-soft); }
.mobile-nav-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }

/* ===== Mobile Sticky Bar ===== */
.mobile-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-sticky a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  transition: background var(--transition);
}
.mobile-sticky .ms-book { background: var(--gold); }
.mobile-sticky .ms-book:hover { background: var(--gold-2); }
.mobile-sticky .ms-call { background: var(--green); }
.mobile-sticky .ms-call:hover { background: #267539; }

/* ===== Hero Slider ===== */
.hero { position: relative; overflow: hidden; }
.hero-slider {
  position: relative;
  height: clamp(520px, 72vh, 740px);
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-text {
  padding: clamp(24px, 4vw, 72px);
  padding-right: 0;
  margin-left: auto;
}
.slide-text .eyebrow { margin-bottom: 16px; }
.slide-text h1 { margin-bottom: 18px; }
.slide-text h1 em { font-style: italic; color: var(--gold); }
.slide-text > p { color: var(--ink-soft); font-size: 17px; max-width: 50ch; margin-bottom: 28px; }
.slide-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.slide-image { position: relative; height: 100%; overflow: hidden; }
.slide-image img { height: 100%; width: 100%; object-fit: contain; object-position: center; }
.slide-image::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, var(--bg) 0%, rgba(251,248,241,.5) 30%, transparent 55%);
}
.slide-tag {
  position: absolute; top: 28px; right: 28px; z-index: 2;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
}
.slide-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* Slider controls */
.slider-controls {
  position: absolute; bottom: 28px; left: clamp(20px, 5vw, 72px);
  z-index: 2;
  display: flex; align-items: center; gap: 16px;
}
.dots { display: flex; gap: 8px; }
.dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-strong); transition: all var(--transition);
}
.dots button.active { background: var(--gold); width: 24px; border-radius: 4px; }
.arrow-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--navy); transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.arrow-btn:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.05); }
.slide-counter { font-size: 13px; font-weight: 600; color: var(--ink-mute); margin-left: 4px; }
.slide-counter strong { color: var(--navy); }

/* ===== Trust Strip ===== */
.trust-strip { background: var(--navy); padding: 22px 0; }
.trust-row { display: flex; gap: 0; flex-wrap: wrap; }
.trust-item {
  flex: 1; min-width: 180px;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border-right: none; }
.trust-ic { width: 40px; height: 40px; border-radius: 50%; background: rgba(212,162,76,.15); display: grid; place-items: center; color: var(--gold-2); flex-shrink: 0; }
.trust-tx strong { display: block; color: #fff; font-size: 14px; font-weight: 600; }
.trust-tx span { color: rgba(255,255,255,.55); font-size: 12.5px; }

/* ===== Service Cards ===== */
.service-slider-wrap { overflow: hidden; }
.service-slider {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.service-slider::-webkit-scrollbar { display: none; }
.svc-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.svc-card .img { position: relative; height: 200px; overflow: hidden; }
.svc-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.svc-card:hover .img img { transform: scale(1.05); }
.svc-card .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  padding: 4px 10px; border-radius: 999px;
}
.svc-card .body { padding: 20px; }
.svc-card h3 { font-size: 18px; margin-bottom: 8px; }
.svc-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.6; }
.svc-card .foot { display: flex; justify-content: space-between; align-items: center; }
.svc-card .price small { display: block; font-size: 11px; color: var(--ink-mute); font-weight: 500; }
.svc-card .price { font-size: 22px; font-weight: 700; color: var(--navy); font-family: var(--font-display); }

/* ===== Fleet Grid ===== */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.fleet-card .img { position: relative; height: 280px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fleet-card .img img { height: auto; width: 100%; object-fit: cover; object-position: center; transition: transform 500ms ease;  }
.fleet-card:hover .img img { transform: scale(1.06); }
.fleet-card .pax {
  position: absolute; top: 12px; right: 12px;
  background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 999px;
}
.fleet-card .body { padding: 22px; }
.fleet-card .tier { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.fleet-card h3 { font-size: 19px; margin-bottom: 14px; }
.fleet-card .specs { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.fleet-card .specs li { font-size: 13.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.fleet-card .specs li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.fleet-card .foot { display: flex; justify-content: space-between; align-items: center; }
.fleet-card .price em { font-style: normal; font-size: 14px; color: var(--ink-mute); }
.fleet-card .price { font-size: 26px; font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.fleet-card .price small { font-size: 13px; color: var(--ink-mute); font-weight: 400; }

/* ===== How It Works ===== */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.how-step {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  transition: all var(--transition);
}
.how-step:hover { border-color: var(--gold-soft); box-shadow: var(--shadow); }
.how-step .num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.how-step h3 { font-size: 20px; margin-bottom: 12px; }

/* ===== Reviews ===== */
.review-strip {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.review-agg .score em { font-style: normal; font-size: 52px; font-weight: 700; font-family: var(--font-display); color: var(--navy); }
.review-agg .score { line-height: 1; display: flex; align-items: baseline; gap: 4px; }
.review-agg .score span { font-size: 22px; color: var(--ink-mute); }
.review-platforms { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.platform { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition);
}
.review:hover { border-color: var(--gold-soft); box-shadow: var(--shadow); }
.review blockquote {
  font-size: 15px; line-height: 1.7; color: var(--ink);
  font-family: var(--font-display); font-style: italic;
  margin: 12px 0 20px;
}
.review .author { display: flex; align-items: center; gap: 12px; }
.review .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  font-weight: 700; font-size: 15px;
  display: grid; place-items: center; flex-shrink: 0;
}
.review .nm { font-weight: 600; font-size: 14px; }
.review .mt { font-size: 12.5px; color: var(--ink-mute); margin-top: 2px; }

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--navy);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(182,135,58,.12) 0%, transparent 65%);
}
.cta-inner { display: flex; gap: 60px; align-items: flex-start; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-text { flex: 1; min-width: 280px; }
.cta-text h2 { color: #fff; margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,.65); max-width: 56ch; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  min-width: 260px;
}
.cta-card-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 8px; }
.cta-card-phone { font-size: 28px; font-weight: 700; color: #fff; font-family: var(--font-display); margin-bottom: 16px; }
.cta-card-list { display: flex; flex-direction: column; gap: 8px; }
.cta-card-list li { font-size: 13.5px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 8px; }
.cta-card-list li::before { content: "✓"; color: var(--gold-2); font-weight: 700; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.75; margin-top: 16px; max-width: 28ch; }
.footer-brand .brand img { filter: brightness(0) invert(1); opacity: .9; }
.footer-socials { display: flex; gap: 14px; margin-top: 22px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); display: grid; place-items: center; transition: all var(--transition); }
.footer-socials a:hover { background: var(--gold); color: #fff; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 18px; font-family: var(--font-sans); text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; color: rgba(255,255,255,.5); }
.footer-col a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 12px; padding: 20px 0;
  font-size: 12.5px; color: rgba(255,255,255,.35);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(182,135,58,.1) 0%, transparent 60%);
}
.page-hero .eyebrow { color: var(--gold-2); margin-bottom: 14px; }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 18px; max-width: 56ch; }
.page-hero .hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ===== Fleet Page ===== */
.fleet-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--line-strong);
  color: var(--ink-2); background: transparent;
  transition: all var(--transition); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.fleet-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }

/* ===== Services Page ===== */
.services-list { display: grid; gap: 80px; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.service-row-img img { width: 100%; height: 380px; object-fit: cover; }
.service-row-img .price-pill {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 20px;
  box-shadow: var(--shadow);
}
.service-row-img .price-pill .from { font-size: 11px; color: var(--ink-mute); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.service-row-img .price-pill .price { font-size: 28px; font-weight: 700; font-family: var(--font-display); color: var(--navy); line-height: 1; }
.service-row-img .price-pill .unit { font-size: 13px; color: var(--ink-mute); }
.service-row-content .eyebrow { margin-bottom: 10px; }
.service-row-content h2 { font-size: clamp(24px, 2.5vw, 36px); margin-bottom: 16px; }
.service-row-content > p { margin-bottom: 24px; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.service-features li { font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ===== Reviews Page ===== */
.reviews-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 60px; }
.stat-box {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
}
.stat-box .stat-num { font-size: 42px; font-weight: 700; color: var(--navy); font-family: var(--font-display); line-height: 1; }
.stat-box .stat-label { font-size: 13px; color: var(--ink-mute); margin-top: 6px; }
.reviews-all-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ===== About Page ===== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; height: 460px; object-fit: cover; }
.about-values { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 44px; }
.value-card { background: var(--bg-3); border-radius: var(--radius); padding: 22px; }
.value-card .ic { width: 42px; height: 42px; border-radius: 10px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; margin-bottom: 12px; }
.value-card h4 { font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 14px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { text-align: center; }
.team-card .avatar-lg { width: 80px; height: 80px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); font-size: 28px; font-weight: 700; font-family: var(--font-display); display: grid; place-items: center; margin: 0 auto 14px; }
.team-card h4 { font-size: 16px; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--ink-mute); }
.timeline { display: flex; flex-direction: column; gap: 28px; padding-left: 28px; border-left: 2px solid var(--gold-soft); }
.timeline-item { position: relative; }
.timeline-item::before { content: ""; position: absolute; left: -35px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 2px solid var(--bg); }
.timeline-item .year { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.timeline-item h4 { font-size: 16px; margin-bottom: 6px; }

/* ===== Contact / Booking Page ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: flex-start; }
.contact-info { position: sticky; top: 100px; }
.contact-info h2 { font-size: 32px; margin-bottom: 20px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.ci-text strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.ci-text span, .ci-text a { font-size: 14.5px; color: var(--ink-soft); }
.ci-text a:hover { color: var(--gold); }

/* Booking Form */
.booking-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--navy);
  font-size: 14.5px;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-2);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237A8497' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-note { font-size: 12.5px; color: var(--ink-mute); }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 15px 24px; font-size: 15px; }

/* Form validation states */
.form-group input.error, .form-group select.error { border-color: var(--red); }
.form-group .err-msg { font-size: 12px; color: var(--red); display: none; }
.form-group.has-error .err-msg { display: block; }
.form-success {
  background: #e8f5e9; border: 1px solid #c8e6c9; border-radius: var(--radius);
  padding: 16px 20px; font-size: 14.5px; color: #2e7d32; display: none; margin-top: 16px;
}
.form-success.show { display: block; }

/* ===== Blog Page ===== */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: flex-start; }
.blog-grid { display: grid; gap: 32px; }
.blog-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 28px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); border-color: var(--gold-soft); }
.blog-card-img { height: 100%; min-height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-content { padding: 28px 28px 28px 0; display: flex; flex-direction: column; justify-content: center; }
.blog-card-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.blog-card h3 { font-size: 20px; margin-bottom: 10px; line-height: 1.3; }
.blog-card h3 a { transition: color var(--transition); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.65; }
.blog-card-meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--ink-mute); }
.blog-featured {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px;
}
.blog-featured-img { height: 380px; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.blog-featured:hover .blog-featured-img img { transform: scale(1.03); }
.blog-featured-content { padding: 32px; }
.blog-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.sidebar-widget h4 { font-size: 15px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.recent-post { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.recent-post-text h5 { font-size: 13.5px; margin-bottom: 4px; font-family: var(--font-sans); font-weight: 600; line-height: 1.4; }
.recent-post-text h5 a:hover { color: var(--gold); }
.recent-post-text span { font-size: 12px; color: var(--ink-mute); }
.cat-list { display: flex; flex-direction: column; gap: 8px; }
.cat-list li a { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--ink-soft); padding: 8px 12px; border-radius: var(--radius-sm); transition: all var(--transition); }
.cat-list li a:hover { color: var(--gold); background: var(--gold-soft); }
.cat-list .count { font-size: 12px; background: var(--bg-3); padding: 2px 8px; border-radius: 999px; }

/* Blog Single Post */
.blog-single { display: grid; grid-template-columns: 1fr 300px; gap: 52px; }
.post-hero-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 36px; }
.post-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-mute); margin-bottom: 32px; }
.post-content { max-width: 720px; }
.post-content h2 { font-size: 28px; margin-top: 40px; margin-bottom: 16px; }
.post-content h3 { font-size: 22px; margin-top: 32px; margin-bottom: 12px; }
.post-content p { font-size: 16px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 6px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item button {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  font-size: 15px; font-weight: 600; color: var(--navy);
  transition: color var(--transition);
}
.faq-item button:hover { color: var(--gold); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; flex-shrink: 0; transition: all var(--transition); color: var(--ink-mute); }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: #fff; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 350ms ease; }
.faq-body p { padding: 0 22px 20px; font-size: 15px; color: var(--ink-soft); line-height: 1.75; }
.faq-item.open .faq-body { max-height: 400px; }

/* ===== Locations Grid ===== */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; }
.location-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  transition: all var(--transition);
}
.location-card:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.location-card h4 { font-size: 15px; font-family: var(--font-sans); font-weight: 600; margin-bottom: 4px; }
.location-card p { font-size: 13px; color: var(--ink-mute); }

/* ===== Alert / Notice ===== */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14.5px; margin-bottom: 20px; }
.alert-success { background: #e8f5e9; border: 1px solid #c8e6c9; color: #2e7d32; }
.alert-error   { background: #fdecea; border: 1px solid #f5c6c6; color: var(--red); }
.alert-info    { background: var(--gold-soft); border: 1px solid #e5d0a0; color: var(--navy); }


/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2,1fr); }
  .review-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .reviews-stats { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .service-row { grid-template-columns: 1fr; gap: 36px; }
  .service-row.reverse { direction: ltr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-single { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  /* Mobile only (≤768px) */
.slide-image { order: 1; }   /* renders FIRST  → image on top */
.slide-text  { order: 2; }   /* renders SECOND → text + buttons below */
  .nav-links { display: none; }
  .icon-btn.call-btn { display: none; }
  .menu-toggle { display: flex; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 60px; }
  .header-inner { display: flex; justify-content: space-between; }

  /* ── Hero: stack image above text ── */
  .hero { background: var(--bg); }
  .hero-slider {
    height: auto;
    min-height: unset;
  }
  /* Each slide: hidden by default on mobile; active one shows as flex column */
  .slide        { display: none !important; }
  .slide.active { display: flex !important; flex-direction: column; position: relative; }

  /* Image area: show it, give it a fixed height */
  .slide-image {
    display: block;
    width: 100%;
    height: 260px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--bg-3);
  }
  .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 16px;
  }
  /* Remove the left-to-right gradient overlay — it covers the image on mobile */
  .slide-image::before { display: none; }

  /* Text area below the image */
  .slide-text {
    padding: 28px 20px 72px;  /* bottom pad leaves room for slider controls */
    max-width: 100%;
    margin: 0;
  }
  .slide-text h1 { font-size: clamp(26px, 7vw, 40px); }
  .slide-text > p { font-size: 15px; }

  /* Slide tag — reposition inside image */
  .slide-tag { top: 12px; right: 12px; font-size: 11px; padding: 5px 10px; }

  /* Controls sit at bottom of text area */
  .slider-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
  }

  /* ── Trust strip ── */
  .trust-row { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-item:last-child { border-bottom: none; }

  /* ── Grids ── */
  .fleet-grid         { grid-template-columns: 1fr; }
  .how-grid           { grid-template-columns: 1fr; }
  .review-grid        { grid-template-columns: 1fr; }
  .fleet-page-grid    { grid-template-columns: 1fr; }
  .reviews-all-grid   { grid-template-columns: 1fr; }
  .reviews-stats      { grid-template-columns: 1fr 1fr; }
  .about-values       { grid-template-columns: 1fr; }
  .team-grid          { grid-template-columns: 1fr 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .service-features   { grid-template-columns: 1fr; }
  .blog-card          { grid-template-columns: 1fr; }
  .blog-card-content  { padding: 20px; }
  .cta-inner          { flex-direction: column; gap: 32px; }
  .form-row           { grid-template-columns: 1fr; }

  /* ── Utility bar ── */
  .utility-hide-sm { display: none; }
  .utility-right a:first-child { display: none; }
}

@media (max-width: 480px) {


   .utility-left span:nth-child(2),
  .utility-left span:nth-child(3) {
    display: none;
  }
  /* Hero image slightly shorter on very small screens */
  .slide-image { height: 210px; }
  .slide-text { padding: 22px 16px 72px; }

  .slide-actions { flex-direction: column; }
  .slide-actions .btn { justify-content: center; width: 100%; }
  .booking-form { padding: 24px 20px; }
  .reviews-stats { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .review-strip { flex-direction: column; gap: 20px; }
  .blog-featured-img { height: 220px; }
}

/* ===== Stats Row (homepage) ===== */
@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr !important; }
}

