/* ═══════════════════════════════════════════
   SHUBHAM CAR RENTALS — MASTER STYLESHEET
   Covers: index, about, services, fleet,
           tariff, gallery, contact
═══════════════════════════════════════════ */

/* ── CSS Custom Properties — Light & Dark ── */
:root,
[data-theme="light"] {
  --bg-body:        #ffffff;
  --bg-alt:         #f5f7fb;
  --bg-card:        #ffffff;
  --bg-nav:         rgba(255,255,255,0.96);
  --blue:           #1e3a8a;
  --blue-mid:       #2b4fad;
  --blue-light:     #dbeafe;
  --red:            #ff4d4f;
  --red-dark:       #e63c3e;
  --green:          #22c55e;
  --text-heading:   #1f2937;
  --text-body:      #374151;
  --text-muted:     #6b7280;
  --text-light:     #9ca3af;
  --border:         #e5e9f2;
  --shadow-sm:      0 2px 8px rgba(30,58,138,.07);
  --shadow-md:      0 6px 24px rgba(30,58,138,.10);
  --shadow-lg:      0 16px 48px rgba(30,58,138,.14);
  --gradient-blue:  linear-gradient(135deg, #1e3a8a 0%, #2b4fad 100%);
  --gradient-hero:  linear-gradient(140deg, #eff4ff 0%, #f5f7fb 60%, #e8eef9 100%);
  --footer-bg:      #0f1f4a;
  --overlay-bg:     rgba(255,255,255,0.95);
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --transition: all .28s cubic-bezier(.4,0,.2,1);
  --font-head:  'DM Serif Display', Georgia, serif;
  --font-body:  'Outfit', sans-serif;
}

[data-theme="dark"] {
  --bg-body:        #111827;
  --bg-alt:         #1a2538;
  --bg-card:        #1e2d45;
  --bg-nav:         rgba(255,255,255,0.96);
  --blue:           #60a5fa;
  --blue-mid:       #3b82f6;
  --blue-light:     rgba(59,130,246,0.15);
  --red:            #ff6b6b;
  --red-dark:       #ff4d4f;
  --green:          #4ade80;
  --text-heading:   #f1f5f9;
  --text-body:      #5d6166;
  --text-muted:     #94a3b8;
  --text-light:     #64748b;
  --border:         #2a3a52;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.25);
  --shadow-md:      0 6px 24px rgba(0,0,0,.35);
  --shadow-lg:      0 16px 48px rgba(0,0,0,.45);
  --gradient-blue:  linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --gradient-hero:  linear-gradient(140deg, #0f172a 0%, #111827 60%, #1a2538 100%);
  --footer-bg:      #0a1020;
  --overlay-bg:     rgba(17,24,39,0.97);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  transition: background .4s ease, color .4s ease;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; outline: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── Page Loader ── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-body, #fff);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity .4s ease, transform .4s ease;
}
#page-loader.done { opacity: 0; pointer-events: none; transform: scale(1.04); }
.loader-logo { max-width: 200px; height: auto; animation: logoPulse 1.5s ease-in-out infinite; }
@keyframes logoPulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.05);opacity:.8;} }
.loader-dots { display: flex; gap: .4rem; }
.loader-dots span { width: 7px; height: 7px; border-radius: 50%; background: #1e3a8a; opacity: .3; animation: dotPulse .8s ease-in-out infinite; }
.loader-dots span:nth-child(2) { animation-delay: .15s; }
.loader-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes dotPulse { 0%,100%{opacity:.3;transform:scale(.8);} 50%{opacity:1;transform:scale(1.2);} }

/* ── Click Ripple ── */
.click-ripple {
  position: fixed; pointer-events: none; z-index: 9998; border-radius: 50%;
  background: rgba(30,58,138,.15); transform: scale(0);
  animation: rippleOut .45s ease-out forwards;
}
@keyframes rippleOut { to { transform: scale(5); opacity: 0; } }

/* ── Scroll Reveal ── */
.sr { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.sr.sr-left  { transform: translateX(-40px); }
.sr.sr-right { transform: translateX( 40px); }
.sr.sr-scale { transform: scale(.93); }
.sr.visible  { opacity: 1; transform: none; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; inset-inline: 0; z-index: 1000;
  height: 64px; background: var(--bg-nav); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 16px; gap: .5rem;
  transition: box-shadow .3s ease, background .4s ease, border-color .4s ease;
  overflow: hidden;
}
@media (min-width: 901px) {
  .navbar { padding: 0 max(1rem, calc((100vw - 1240px)/2)); gap: .75rem; }
}
.navbar.stuck { box-shadow: var(--shadow-md); }

.nav-logo { display: flex; align-items: center; gap: .45rem; flex-shrink: 0; min-width: 0; }
.nav-logo-img { height: 60px; width: auto; max-width: 150px; object-fit: contain; flex-shrink: 0; }
.nav-logo-text { line-height: 1.2; min-width: 0; }
.nav-logo-name { font-size: .9rem; font-weight: 700; color: var(--blue); letter-spacing: -.2px; white-space: nowrap; }
.nav-logo-tag  { font-size: .58rem; font-weight: 500; color: var(--text-muted); letter-spacing: .8px; text-transform: uppercase; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: .1rem; margin-inline: auto; }
.nav-links a {
  padding: .38rem .75rem; font-size: .82rem; font-weight: 500;
  color: var(--text-body); border-radius: var(--radius-sm);
  transition: var(--transition); position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; border-radius: 99px; background: var(--red); transition: var(--transition);
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
.nav-links a:hover::after, .nav-links a.active::after { left: 12%; right: 12%; }
.nav-links a.active { color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: .35rem; flex-shrink: 0; margin-left: auto; }

.theme-switch {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: var(--bg-alt); border-radius: 50%;
  border: 1px solid var(--border); cursor: pointer; transition: var(--transition);
  font-size: .9rem; color: var(--text-muted); flex-shrink: 0;
}
.theme-switch:hover { border-color: var(--blue); color: var(--blue); }
.theme-switch .icon-sun  { display: none; }
.theme-switch .icon-moon { display: block; }
[data-theme="dark"] .theme-switch .icon-sun  { display: block; }
[data-theme="dark"] .theme-switch .icon-moon { display: none; }

.btn-booknow {
  background: var(--red); color: #fff; padding: .38rem .85rem; border-radius: 99px;
  font-size: .78rem; font-weight: 600; box-shadow: 0 3px 12px rgba(255,77,79,.3);
  transition: var(--transition); white-space: nowrap; flex-shrink: 0;
}
.btn-booknow:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,77,79,.38); }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px; min-width: 34px; border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border);
  padding: 6px; transition: var(--transition); flex-shrink: 0;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text-heading); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 64px; inset-inline: 0;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg); padding: 1rem 1.5rem 1.5rem;
  z-index: 999; transform: translateY(-110%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: flex; align-items: center; gap: .6rem; padding: .7rem 1rem;
  border-radius: var(--radius-sm); font-weight: 500; color: var(--text-body);
  transition: var(--transition); margin-bottom: .25rem;
}
.mobile-nav a i { font-size: .9rem; color: var(--blue); width: 18px; text-align: center; }
.mobile-nav a:hover { background: var(--bg-alt); color: var(--blue); }

/* ── Bottom Mobile Nav ── */
.bottom-nav {
  display: none; position: fixed; bottom: 0; inset-inline: 0;
  z-index: 995; height: 62px; background: var(--bg-nav);
  backdrop-filter: blur(16px); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(30,58,138,.10);
}
.bottom-nav-inner { display: flex; align-items: stretch; height: 100%; }
.bottom-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 6px 4px; color: var(--text-muted);
  font-size: .6rem; font-weight: 600; letter-spacing: .3px; text-transform: uppercase;
  border: none; background: none; cursor: pointer; transition: var(--transition);
  text-decoration: none; position: relative;
}
.bottom-nav-item i { font-size: 1.1rem; transition: var(--transition); }
.bottom-nav-item:hover, .bottom-nav-item.active { color: var(--blue); }
.bottom-nav-item.active i { color: var(--blue); }
.bottom-nav-item.active::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%;
  height: 2.5px; border-radius: 0 0 3px 3px; background: var(--blue);
}
.bottom-nav-item.book-btn { color: #fff !important; }
.bottom-nav-item.book-btn .bnav-pill {
  background: var(--red); border-radius: 99px; padding: 5px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  box-shadow: 0 3px 10px rgba(255,77,79,.35);
}
.bottom-nav-item.book-btn i, .bottom-nav-item.book-btn span { color: #fff; }

/* ════════════════════════════════════════
   UTILITIES
════════════════════════════════════════ */
.container { max-width: 1240px; margin-inline: auto; padding-inline: 1.5rem; }
.section-pad { padding-block: 5rem; }
.section-pad-sm { padding-block: 4rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--red); margin-bottom: .75rem;
}
.eyebrow::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--red); border-radius: 2px; }

.section-title { font-family: var(--font-head); font-size: clamp(1.9rem, 3.2vw, 2.65rem); color: var(--text-heading); line-height: 1.2; margin-bottom: .75rem; }
.section-lead { font-size: 1rem; color: var(--text-muted); max-width: 520px; line-height: 1.75; }
.title-bar { width: 48px; height: 3px; background: var(--red); border-radius: 99px; margin-block: .9rem 1.5rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gradient-blue); color: #fff;
  padding: .7rem 1.75rem; border-radius: 99px;
  font-size: .9rem; font-weight: 600;
  box-shadow: 0 4px 16px rgba(30,58,138,.28);
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,138,.36); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid var(--blue); color: var(--blue);
  padding: .66rem 1.6rem; border-radius: 99px;
  font-size: .9rem; font-weight: 600; background: transparent;
  transition: var(--transition); cursor: pointer;
}
.btn-ghost:hover { background: var(--blue); color: #fff; }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  padding-top: 64px; background: var(--gradient-hero);
  position: relative; overflow: hidden; transition: background .4s ease;
}
.page-hero::before {
  content: ''; position: absolute; top: -200px; right: -180px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,138,.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,79,.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  padding-block: 4rem 3.5rem; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .75rem; font-weight: 600; color: var(--text-muted); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--blue); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: .55rem; color: var(--text-light); }
.page-hero-title { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--text-heading); line-height: 1.15; margin-bottom: 1rem; }
.page-hero-title em { font-style: normal; color: var(--blue); position: relative; }
.page-hero-title em::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; border-radius: 2px; background: var(--red); opacity: .55;
}
.page-hero-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.8; max-width: 480px; margin-bottom: 2rem; }
.page-hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.phstat { text-align: left; }
.phstat-num { font-family: var(--font-head); font-size: 2rem; color: var(--blue); line-height: 1; }
.phstat-lbl { font-size: .72rem; font-weight: 500; color: var(--text-muted); margin-top: .2rem; letter-spacing: .4px; }
.page-hero-img-wrap {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.page-hero-img-wrap img { width: 100%; height: 320px; object-fit: cover; transition: transform .6s ease; }
.page-hero-img-wrap:hover img { transform: scale(1.03); }
.page-hero-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gradient-blue); color: #fff;
  border-radius: var(--radius); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md); text-align: center; min-width: 100px;
}
.page-hero-badge-num { font-family: var(--font-head); font-size: 2rem; line-height: 1; }
.page-hero-badge-lbl { font-size: .7rem; opacity: .85; margin-top: .2rem; }

/* ════════════════════════════════════════
   HOME HERO
════════════════════════════════════════ */
.hero {
  padding-top: 64px; min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  transition: background .4s ease;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -180px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,138,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -120px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,79,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center; width: 100%;
  padding-block: 5rem 4rem; position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: .35rem .9rem; border-radius: var(--radius-sm);
  font-size: .75rem; font-weight: 600; color: var(--text-muted);
  letter-spacing: .5px; margin-bottom: 1.25rem; box-shadow: var(--shadow-sm);
}
.hero-tag i { color: var(--red); }
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--text-heading); line-height: 1.15; margin-bottom: 1.1rem;
}
.hero-heading em { font-style: normal; color: var(--blue); position: relative; }
.hero-heading em::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; border-radius: 2px; background: var(--red); opacity: .55;
}
.hero-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 460px; margin-bottom: 1.75rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.chip {
  display: flex; align-items: center; gap: .4rem;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: .3rem .85rem; border-radius: 99px;
  font-size: .78rem; font-weight: 500; color: var(--text-body); box-shadow: var(--shadow-sm);
}
.chip i { font-size: .7rem; color: var(--blue); }
.hero-cta { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hstat-num { font-family: var(--font-head); font-size: 2rem; color: var(--blue); line-height: 1; }
.hstat-lbl { font-size: .72rem; font-weight: 500; color: var(--text-muted); margin-top: .2rem; letter-spacing: .4px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-plate {
  position: relative; background: var(--bg-card);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.hero-img-plate img { width: 100%; height: 360px; object-fit: cover; transition: transform .6s ease; }
.hero-img-plate:hover img { transform: scale(1.03); }
.hbadge {
  position: absolute; z-index: 2;
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); border-radius: var(--radius);
  padding: .7rem 1rem;
  display: flex; align-items: center; gap: .65rem;
  font-size: .8rem; font-weight: 600; color: var(--text-heading);
  backdrop-filter: blur(8px);
  animation: floatBadge 4s ease-in-out infinite;
}
.hbadge:nth-child(2) { animation-delay: 2s; }
@keyframes floatBadge { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }
.hbadge-icon { width: 34px; height: 34px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.hbadge-icon.blue { background: var(--blue-light); color: var(--blue); }
.hbadge-icon.red  { background: rgba(255,77,79,.1); color: var(--red); }
.hbadge .sub { font-size: .68rem; font-weight: 400; color: var(--text-muted); }
.hbadge-tl { top: -18px; left: -20px; }
.hbadge-br { bottom: -18px; right: -20px; }
.hero-strip {
  position: absolute; top: 0; right: 0;
  width: 42%; height: 100%;
  background: var(--gradient-blue);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: .05; pointer-events: none; z-index: 0;
}

/* ════════════════════════════════════════
   SCROLLING FLEET BANNER (index)
════════════════════════════════════════ */
.carousel-section { background: var(--blue); padding-block: 0; overflow: hidden; }
.carousel-inner { display: flex; align-items: center; padding-block: 1rem; }
.carousel-track-wrap { overflow: hidden; flex: 1; }
.carousel-track {
  display: flex; gap: 0;
  animation: carouselScroll 28s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes carouselScroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.carousel-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 2rem; border-right: 1px solid rgba(255,255,255,.15); white-space: nowrap;
}
.carousel-item i { color: rgba(255,255,255,.7); font-size: .9rem; }
.carousel-item span { font-size: .82rem; font-weight: 600; color: #fff; letter-spacing: .3px; }
.carousel-label {
  padding: .6rem 1.5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  border-right: 1px solid rgba(255,255,255,.2); white-space: nowrap;
}

/* ════════════════════════════════════════
   ABOUT / STORY SECTION
════════════════════════════════════════ */
.about-bg, .story-bg { background: var(--bg-body); }
.about-grid, .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap, .story-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.about-img, .story-img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge, .story-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--gradient-blue); color: #fff;
  border-radius: var(--radius); padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md); text-align: center; min-width: 110px;
}
.about-badge-num, .story-badge-num { font-family: var(--font-head); font-size: 2.2rem; line-height: 1; }
.about-badge-lbl, .story-badge-lbl { font-size: .72rem; opacity: .85; margin-top: .2rem; }
.about-dots, .story-dots {
  position: absolute; top: -18px; left: -18px; width: 80px; height: 80px;
  background-image: radial-gradient(circle, var(--blue) 1.5px, transparent 1.5px);
  background-size: 12px 12px; opacity: .18; pointer-events: none;
}
.about-content p, .story-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.1rem; font-size: .95rem; }
.about-list, .story-list { margin-block: 1.5rem 2rem; display: flex; flex-direction: column; gap: .65rem; }
.about-list li, .story-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .9rem; color: var(--text-body); }
.about-list li i, .story-list li i {
  width: 20px; height: 20px; min-width: 20px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  font-size: .65rem; display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

/* ── Team ── */
.team-strip, .team-bg { background: var(--bg-alt); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.team-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-blue); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card:hover::after { transform: scaleX(1); }
.team-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gradient-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: .25rem; }
.team-card .team-title { font-size: .75rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .8px; margin-bottom: .3rem; }
.team-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════
   VALUES / WHY CHOOSE US
════════════════════════════════════════ */
.values-bg, .why-bg { background: var(--bg-alt); transition: background .4s ease; }
.values-header, .why-header { text-align: center; margin-bottom: 3rem; }
.values-header .section-lead, .why-header .section-lead { margin-inline: auto; }
.values-header .title-bar, .why-header .title-bar { margin-inline: auto; }
.values-grid, .why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.value-card, .why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.value-card::before, .why-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-blue); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.value-card:hover, .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card:hover::before, .why-card:hover::before { transform: scaleX(1); }
.value-icon, .why-icon {
  width: 54px; height: 54px; border-radius: var(--radius-sm);
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--blue); margin-bottom: 1.25rem; transition: var(--transition);
}
.value-card:hover .value-icon, .why-card:hover .why-icon { background: var(--blue); color: #fff; }
.value-card h3, .why-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: .5rem; }
.value-card p, .why-card p  { font-size: .84rem; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════════════════════
   TIMELINE (about page)
════════════════════════════════════════ */
.journey-bg { background: var(--bg-body); }
.journey-header { text-align: center; margin-bottom: 3.5rem; }
.journey-header .title-bar { margin-inline: auto; }
.timeline { position: relative; max-width: 820px; margin-inline: auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--border); transform: translateX(-50%);
}
.tl-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 1rem; align-items: start; margin-bottom: 2.5rem; position: relative; }
.tl-content {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.tl-content:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tl-content h4 { font-size: .95rem; font-weight: 700; color: var(--text-heading); margin-bottom: .3rem; }
.tl-content p  { font-size: .82rem; color: var(--text-muted); line-height: 1.65; }
.tl-center { display: flex; flex-direction: column; align-items: center; gap: .3rem; padding-top: .5rem; }
.tl-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; box-shadow: var(--shadow-sm);
  flex-shrink: 0; position: relative; z-index: 1;
}
.tl-line { flex: 1; width: 2px; background: var(--border); }
.tl-item:nth-child(odd) .tl-left  { grid-column: 1; text-align: right; }
.tl-item:nth-child(odd) .tl-right { grid-column: 3; visibility: hidden; }
.tl-item:nth-child(even) .tl-left  { grid-column: 3; order: 3; }
.tl-item:nth-child(even) .tl-mid   { order: 2; }
.tl-item:nth-child(even) .tl-right { grid-column: 1; visibility: hidden; order: 1; }

/* ════════════════════════════════════════
   MISSION / OBJECTIVES
════════════════════════════════════════ */
.mission-bg, .obj-bg { background: var(--bg-body); }
.mission-grid, .obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.mission-img-wrap, .obj-img-wrap { position: relative; border-radius: var(--radius-lg); }
.mission-img, .obj-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.mission-overlay, .obj-overlay {
  position: absolute; bottom: 0; inset-inline: 0;
  background: var(--gradient-blue); color: #fff; padding: 1.25rem 1.5rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.mission-overlay h4, .obj-overlay h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.mission-overlay p, .obj-overlay p  { font-size: .78rem; opacity: .82; }
.obj-list { display: flex; flex-direction: column; gap: 1rem; margin-block: 1.5rem 2.25rem; }
.obj-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem;
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition);
}
.obj-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.obj-icon {
  width: 36px; height: 36px; min-width: 36px; border-radius: var(--radius-sm);
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: .85rem; margin-top: 1px; transition: var(--transition);
}
.obj-item:hover .obj-icon { background: var(--blue); color: #fff; }
.obj-item h4 { font-size: .9rem; font-weight: 700; color: var(--text-heading); margin-bottom: .2rem; }
.obj-item p  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════════════════
   COVERAGE / GARAGES / CITIES
════════════════════════════════════════ */
.coverage-bg, .coverage-strip { background: var(--bg-alt); }
.coverage-inner, .coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.garage-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.garage-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.4rem; display: flex; align-items: flex-start; gap: 1rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.garage-card:hover { border-color: var(--blue); transform: translateX(4px); }
.garage-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--gradient-blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0;
}
.garage-card h4 { font-size: .9rem; font-weight: 700; color: var(--text-heading); margin-bottom: .2rem; }
.garage-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
.cities-wrap { margin-top: 1.5rem; }
.cities-grid { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.city-chip {
  display: flex; align-items: center; gap: .35rem;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: .3rem .8rem; border-radius: 99px;
  font-size: .78rem; font-weight: 500; color: var(--text-body); transition: var(--transition);
}
.city-chip i { color: var(--red); font-size: .65rem; }
.city-chip:hover { border-color: var(--blue); color: var(--blue); }
.cities-more { font-size: .82rem; color: var(--text-muted); font-style: italic; }

/* ════════════════════════════════════════
   FLEET (home page carousel)
════════════════════════════════════════ */
/* ── Hero Badge Float (fleet page) ── */
.hero-badge-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gradient-blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 100px;
}

.hero-badge-float .num {
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1;
}

.hero-badge-float .lbl {
  font-size: .7rem;
  opacity: .85;
  margin-top: .2rem;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-badge-float {
    bottom: -12px;
    right: -8px;
  }
}

@media (max-width: 640px) {
  .hero-badge-float {
    display: none;
  }
}
.fleet-bg { background: var(--bg-body); }
.fleet-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.25rem; flex-wrap: wrap; gap: 1rem; }
.fleet-nav-btns { display: flex; gap: .6rem; }
.fleet-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-body); font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.fleet-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.fleet-track-outer { overflow: hidden; margin-inline: -1.5rem; }
.fleet-track {
  display: flex; gap: 1.4rem; padding: .5rem 1.5rem 1.5rem;
  overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none;
  cursor: grab; -webkit-overflow-scrolling: touch;
}
.fleet-track::-webkit-scrollbar { display: none; }
.fleet-track.dragging { cursor: grabbing; scroll-behavior: auto; }
.fleet-card {
  min-width: 300px; flex-shrink: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fleet-thumb { position: relative; height: 190px; overflow: hidden; background: var(--bg-alt); }
.fleet-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fleet-card:hover .fleet-thumb img { transform: scale(1.07); }
.fleet-pill {
  position: absolute; top: 10px; left: 10px;
  background: var(--gradient-blue); color: #fff;
  font-size: .66rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: .28rem .75rem; border-radius: 99px;
}
.fleet-body { padding: 1.25rem 1.4rem; }
.fleet-name  { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: .15rem; }
.fleet-type  { font-size: .78rem; color: var(--text-muted); margin-bottom: 1rem; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--border); }
.fspec { display: flex; align-items: center; gap: .3rem; font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.fspec i { font-size: .72rem; color: var(--blue); }
.fleet-footer { display: flex; align-items: center; justify-content: space-between; }
.fleet-price { font-size: 1.15rem; font-weight: 800; color: var(--blue); }
.fleet-price sup { font-size: .65rem; font-weight: 600; vertical-align: super; }
.fleet-price sub { font-size: .7rem; font-weight: 500; color: var(--text-muted); }
.btn-mini {
  background: var(--red); color: #fff; font-size: .75rem; font-weight: 600;
  padding: .38rem 1rem; border-radius: 99px; transition: var(--transition); border: none; cursor: pointer;
}
.btn-mini:hover { background: var(--red-dark); transform: scale(1.05); }

/* ════════════════════════════════════════
   AUTO PHOTO CAROUSEL (home showcase)
════════════════════════════════════════ */
.showcase-bg { background: var(--bg-alt); padding-block: 5rem; }
.showcase-header { text-align: center; margin-bottom: 3rem; }
.showcase-header .section-lead, .showcase-header .title-bar { margin-inline: auto; }
.auto-carousel-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.auto-slides { display: flex; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.auto-slide { min-width: 100%; position: relative; }
.auto-slide img { width: 100%; height: 420px; object-fit: cover; }
.auto-slide-overlay {
  position: absolute; bottom: 0; inset-inline: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  padding: 2rem;
}
.auto-slide-overlay h3 { font-family: var(--font-head); font-size: 1.6rem; color: #fff; margin-bottom: .3rem; }
.auto-slide-overlay p { font-size: .88rem; color: rgba(255,255,255,.8); margin-bottom: .75rem; }
.auto-slide-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: .28rem .85rem; border-radius: 99px;
}
.carousel-controls {
  position: absolute; top: 50%; transform: translateY(-50%);
  inset-inline: 1rem; display: flex; justify-content: space-between; pointer-events: none;
}
.carousel-ctrl-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.85); backdrop-filter: blur(6px);
  border: none; cursor: pointer; pointer-events: auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--blue); transition: var(--transition); box-shadow: var(--shadow-sm);
}
.carousel-ctrl-btn:hover { background: #fff; transform: scale(1.08); }
.carousel-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: .4rem; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: rgba(255,255,255,.5); border: none; cursor: pointer;
  transition: all .3s ease; padding: 0;
}
.carousel-dot.active { background: #fff; width: 22px; }

/* ════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════ */
.services-bg { background: var(--bg-body); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-lead, .services-header .title-bar { margin-inline: auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; display: flex; flex-direction: column;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-blue); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-img { position: relative; height: 200px; overflow: hidden; background: var(--bg-alt); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,31,74,.6) 0%, transparent 55%); }
.service-pill {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff;
  font-size: .65rem; font-weight: 700; letter-spacing: .9px; text-transform: uppercase;
  padding: .28rem .8rem; border-radius: 99px;
}
.service-body { padding: 1.6rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--blue); margin-bottom: 1rem; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--blue); color: #fff; }
.service-name { font-size: 1.05rem; font-weight: 700; color: var(--text-heading); margin-bottom: .4rem; }
.service-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; flex: 1; }
.service-features { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.4rem; }
.service-features li { display: flex; align-items: center; gap: .55rem; font-size: .8rem; color: var(--text-body); }
.service-features li i {
  width: 17px; height: 17px; min-width: 17px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  font-size: .58rem; display: flex; align-items: center; justify-content: center;
}
.service-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--gradient-blue); color: #fff;
  padding: .55rem 1.25rem; border-radius: 99px; font-size: .8rem; font-weight: 600;
  box-shadow: 0 3px 12px rgba(30,58,138,.25); transition: var(--transition); align-self: flex-start;
}
.service-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(30,58,138,.35); }

/* ── How It Works ── */
.how-bg { background: var(--bg-alt); }
.how-header { text-align: center; margin-bottom: 3.5rem; }
.how-header .title-bar { margin-inline: auto; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 30px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: var(--border); z-index: 0;
}
.how-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2rem 1rem 1.75rem; position: relative; z-index: 1;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: var(--transition);
}
.how-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.how-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(30,58,138,.3); margin-bottom: 1.2rem; flex-shrink: 0;
}
.how-step h3 { font-size: .95rem; font-weight: 700; color: var(--text-heading); margin-bottom: .4rem; }
.how-step p  { font-size: .82rem; color: var(--text-muted); line-height: 1.7; }

/* ── Service Highlights ── */
.highlights-bg { background: var(--bg-body); }
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.highlights-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.highlights-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.highlights-dots {
  position: absolute; top: -18px; left: -18px; width: 80px; height: 80px;
  background-image: radial-gradient(circle, var(--blue) 1.5px, transparent 1.5px);
  background-size: 12px 12px; opacity: .18; pointer-events: none;
}
.highlights-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--gradient-blue); color: #fff;
  border-radius: var(--radius); padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md); text-align: center; min-width: 110px;
}
.highlights-badge-num { font-family: var(--font-head); font-size: 2.2rem; line-height: 1; }
.highlights-badge-lbl { font-size: .72rem; opacity: .85; margin-top: .2rem; }
.highlights-list { display: flex; flex-direction: column; gap: .9rem; margin-block: 1.5rem 2rem; }
.highlight-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem;
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition);
}
.highlight-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.highlight-icon {
  width: 38px; height: 38px; min-width: 38px; border-radius: var(--radius-sm);
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: .88rem; margin-top: 1px; transition: var(--transition);
}
.highlight-item:hover .highlight-icon { background: var(--blue); color: #fff; }
.highlight-item h4 { font-size: .9rem; font-weight: 700; color: var(--text-heading); margin-bottom: .2rem; }
.highlight-item p  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ── Fleet Types Strip (services page) ── */
.fleet-strip { background: var(--bg-alt); }
.fleet-strip-header { text-align: center; margin-bottom: 3rem; }
.fleet-strip-header .title-bar { margin-inline: auto; }
.fleet-types-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.fleet-type-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 1rem;
  text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.fleet-type-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.fleet-type-icon { font-size: 2rem; color: var(--blue); margin-bottom: .75rem; transition: var(--transition); }
.fleet-type-card:hover .fleet-type-icon { color: var(--red); }
.fleet-type-name { font-size: .88rem; font-weight: 700; color: var(--text-heading); margin-bottom: .25rem; }
.fleet-type-ex   { font-size: .75rem; color: var(--text-muted); line-height: 1.5; }

/* ── Corporate Plans (services page) ── */
.corporate-bg { background: var(--bg-body); }
.corporate-header { text-align: center; margin-bottom: 3rem; }
.corporate-header .title-bar { margin-inline: auto; }
.corporate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.plan-card {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.plan-card.popular { border-color: var(--blue); box-shadow: var(--shadow-md); }
.plan-popular-badge {
  position: absolute; top: 0; right: 0;
  background: var(--gradient-blue); color: #fff;
  font-size: .65rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 0 var(--radius-lg) 0 var(--radius-sm);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--blue); margin-bottom: 1.1rem;
}
.plan-card.popular .plan-icon { background: var(--blue); color: #fff; }
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--text-heading); margin-bottom: .25rem; }
.plan-tagline { font-size: .8rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.plan-features { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.75rem; }
.plan-features li { display: flex; align-items: center; gap: .6rem; font-size: .84rem; color: var(--text-body); }
.plan-features li i { color: var(--blue); font-size: .75rem; flex-shrink: 0; }
.plan-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .65rem 1.25rem; border-radius: 99px; font-size: .85rem; font-weight: 600;
  transition: var(--transition); border: 2px solid var(--blue); color: var(--blue);
  background: transparent; width: 100%;
}
.plan-cta:hover { background: var(--blue); color: #fff; }
.plan-card.popular .plan-cta { background: var(--gradient-blue); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(30,58,138,.28); }
.plan-card.popular .plan-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(30,58,138,.36); }

/* ── FAQ ── */
.faq-bg { background: var(--bg-alt); }
.faq-section { background: var(--bg-body); }
.faq-header { text-align: center; margin-bottom: 2.5rem; }
.faq-header .title-bar { margin-inline: auto; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 900px; margin-inline: auto; }
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--blue); }
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
/* Services FAQ */
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: 1.1rem 1.4rem; cursor: pointer; user-select: none;
  font-size: .9rem; font-weight: 600; color: var(--text-heading);
}
.faq-q .faq-arrow {
  width: 26px; height: 26px; min-width: 26px; border-radius: 50%;
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--blue); transition: var(--transition);
}
.faq-item.open .faq-arrow { background: var(--blue); color: #fff; transform: rotate(180deg); }
/* Tariff FAQ */
.faq-q-text { font-size: .9rem; font-weight: 700; color: var(--text-heading); }
.faq-q-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--bg-alt);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: .72rem; flex-shrink: 0; transition: var(--transition);
}
.faq-item.open .faq-q-icon { background: var(--blue); color: #fff; border-color: var(--blue); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-a-inner { padding: 0 1.4rem 1.1rem; font-size: .87rem; color: var(--text-muted); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 200px; }
/* Backward compat for services page */
.faq-item.open .faq-a { padding-bottom: 1.2rem; }

/* ════════════════════════════════════════
   FLEET PAGE
════════════════════════════════════════ */
.filter-bar {
  background: var(--bg-body); border-bottom: 1px solid var(--border);
  position: sticky; top: 64px; z-index: 100;
  transition: background .4s ease, border-color .4s ease;
}
.filter-inner { display: flex; align-items: center; gap: .5rem; padding-block: .85rem; overflow-x: auto; scrollbar-width: none; }
.filter-inner::-webkit-scrollbar { display: none; }
.filter-tab {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1.1rem; border-radius: 99px; font-size: .82rem; font-weight: 600;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  color: var(--text-muted); cursor: pointer; transition: var(--transition); white-space: nowrap; flex-shrink: 0;
}
.filter-tab i { font-size: .78rem; }
.filter-tab:hover { border-color: var(--blue); color: var(--blue); }
.filter-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 4px 14px rgba(30,58,138,.28); }

.fleet-section { background: var(--bg-body); }
.fleet-category { margin-bottom: 4rem; }
.fleet-category-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.fleet-category-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.fleet-category-title { font-family: var(--font-head); font-size: 1.6rem; color: var(--text-heading); }
.fleet-category-count { margin-left: auto; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 99px; padding: .2rem .75rem; font-size: .78rem; font-weight: 600; color: var(--text-muted); }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fleet-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column;
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(30,58,138,.2); }
.fleet-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,74,.4) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.fleet-card:hover .fleet-thumb-overlay { opacity: 1; }
.fleet-pill-alt {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  color: var(--blue); font-size: .65rem; font-weight: 700;
  padding: .28rem .75rem; border-radius: 99px; border: 1px solid var(--border);
}
.fleet-body { padding: 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.fleet-sub { font-size: .78rem; color: var(--text-muted); margin-bottom: 1rem; }
.fleet-specs { border-bottom: 1px solid var(--border); }

/* Fleet card tariff mini-table */
.card-tariff { margin-bottom: 1.25rem; }
.card-tariff-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem .75rem; border-radius: var(--radius-sm);
  background: var(--bg-alt); margin-bottom: .4rem; font-size: .8rem;
}
.card-tariff-row:last-child { margin-bottom: 0; }
.card-tariff-label { color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: .4rem; }
.card-tariff-label i { color: var(--blue); font-size: .72rem; }
.card-tariff-price { font-weight: 700; color: var(--text-heading); }
.card-tariff-price sup { font-size: .65rem; font-weight: 600; }
.card-tariff-extra { display: flex; gap: .75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.extra-chip {
  display: flex; align-items: center; gap: .3rem;
  background: var(--blue-light); border-radius: 99px;
  padding: .28rem .7rem; font-size: .72rem; font-weight: 600; color: var(--blue);
}
.extra-chip i { font-size: .65rem; }
.fleet-footer { display: flex; gap: .6rem; margin-top: auto; }
.btn-book {
  flex: 1; background: var(--red); color: #fff;
  border-radius: 99px; font-size: .82rem; font-weight: 700;
  padding: .6rem 1rem; transition: var(--transition); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.btn-book:hover { background: var(--red-dark); transform: scale(1.03); }
.btn-enquire {
  background: var(--bg-alt); border: 1.5px solid var(--border);
  color: var(--text-body); border-radius: 99px; font-size: .82rem; font-weight: 600;
  padding: .6rem 1rem; transition: var(--transition); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.btn-enquire:hover { border-color: var(--blue); color: var(--blue); }

/* ── Booking Modal ── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.5); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  padding: 2rem; width: 100%; max-width: 500px;
  transform: scale(.95) translateY(20px); transition: transform .3s ease;
}
.modal-backdrop.open .modal { transform: scale(1) translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal-title { font-family: var(--font-head); font-size: 1.4rem; color: var(--text-heading); }
.modal-close {
  width: 32px; height: 32px; border-radius: 50%; background: var(--bg-alt);
  border: 1px solid var(--border); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition);
}
.modal-close:hover { background: var(--red); color: #fff; border-color: var(--red); }
.modal-vehicle-tag {
  background: var(--blue-light); border: 1px solid rgba(30,58,138,.15);
  border-radius: var(--radius-sm); padding: .6rem 1rem; margin-bottom: 1.5rem;
  font-size: .85rem; color: var(--blue); font-weight: 600;
  display: flex; align-items: center; gap: .5rem;
}
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-heading); margin-bottom: .4rem; }
.form-input {
  width: 100%; padding: .65rem .9rem;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: .88rem; color: var(--text-body);
  font-family: var(--font-body); transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--blue); background: var(--bg-body); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.btn-submit {
  width: 100%; background: var(--red); color: #fff; border-radius: 99px;
  font-size: .9rem; font-weight: 700; padding: .75rem 1.5rem;
  transition: var(--transition); margin-top: .5rem; border: none; cursor: pointer;
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ════════════════════════════════════════
   TARIFF PAGE
════════════════════════════════════════ */
.compare-section { background: var(--bg-body); }
.compare-header { text-align: center; margin-bottom: 2.5rem; }
.compare-header .title-bar, .compare-header .section-lead { margin-inline: auto; }
.compare-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.compare-grid-lg { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.compare-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem 1.4rem;
  text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden; cursor: pointer;
}
.compare-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-blue); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.compare-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(30,58,138,.25); }
.compare-card:hover::before { transform: scaleX(1); }
.compare-card.featured { border-color: var(--blue); border-width: 2px; }
.compare-card.featured::before { transform: scaleX(1); }
.featured-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--red); color: #fff;
  font-size: .6rem; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  padding: .22rem .6rem; border-radius: 99px;
}
.compare-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto .9rem; }
.compare-name { font-size: .95rem; font-weight: 800; color: var(--text-heading); margin-bottom: .15rem; }
.compare-examples { font-size: .72rem; color: var(--text-muted); margin-bottom: 1.1rem; }
.compare-price-row { margin-bottom: .5rem; }
.compare-price-row .label { font-size: .68rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; margin-bottom: .2rem; }
.compare-price { font-family: var(--font-head); font-size: 1.8rem; color: var(--blue); line-height: 1; }
.compare-price sup { font-size: .9rem; vertical-align: super; }
.compare-price-sub { font-size: .7rem; color: var(--text-muted); font-weight: 500; }
.compare-divider { height: 1px; background: var(--border); margin-block: .9rem; }
.compare-extras { display: flex; gap: .4rem; justify-content: center; flex-wrap: wrap; }
.cex { font-size: .68rem; font-weight: 600; color: var(--blue); background: var(--blue-light); border-radius: 99px; padding: .18rem .55rem; }

/* Hero stat pills (tariff page) */
.hero-stat-pills { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 2.5rem; }
.stat-pill { display: flex; align-items: center; gap: .55rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: .65rem 1.2rem; box-shadow: var(--shadow-sm); }
.stat-pill-num { font-family: var(--font-head); font-size: 1.5rem; color: var(--blue); line-height: 1; }
.stat-pill-lbl { font-size: .72rem; font-weight: 500; color: var(--text-muted); line-height: 1.3; }
.stat-pill-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.jump-bar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.jump-link {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: 99px; padding: .38rem .95rem; font-size: .8rem; font-weight: 600; color: var(--text-muted); transition: var(--transition);
}
.jump-link i { font-size: .72rem; color: var(--blue); }
.jump-link:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* Tariff Tables */
.tariff-tables-section, .tariff-section { background: var(--bg-alt); }
.tariff-tables-header { text-align: center; margin-bottom: 3rem; }
.tariff-tables-header .title-bar { margin-inline: auto; }
.tariff-section-header { text-align: center; margin-bottom: 3rem; }
.tariff-section-header .section-lead, .tariff-section-header .title-bar { margin-inline: auto; }
.table-group { margin-bottom: 3.5rem; }
.table-group-title { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 2px solid var(--border); }
.table-group-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--gradient-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.table-group-title h3 { font-family: var(--font-head); font-size: 1.35rem; color: var(--text-heading); }
.table-group-title p { font-size: .8rem; color: var(--text-muted); margin-top: .1rem; }
.tariff-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); margin-bottom: 2rem; }
.tariff-table { width: 100%; border-collapse: collapse; background: var(--bg-card); min-width: 640px; font-size: .82rem; }
.tariff-table thead tr { background: var(--gradient-blue); color: #fff; }
.tariff-table thead th { padding: 1rem 1.1rem; text-align: left; font-size: .72rem; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; white-space: nowrap; }
.tariff-table thead th:first-child { padding-left: 1.5rem; min-width: 180px; }
.tariff-table thead th:last-child { padding-right: 1.5rem; }
.th-sub, .th-vehicle { display: block; font-size: .68rem; font-weight: 400; opacity: .72; letter-spacing: 0; text-transform: none; margin-top: 2px; }
.tariff-table tbody tr { border-bottom: 1px solid var(--border); transition: var(--transition); }
.tariff-table tbody tr:last-child { border-bottom: none; }
.tariff-table tbody tr:hover { background: var(--blue-light); }
.tariff-table td { padding: .85rem 1.1rem; color: var(--text-body); vertical-align: middle; }
.tariff-table td:first-child { padding-left: 1.5rem; }
.tariff-table td:last-child { padding-right: 1.5rem; }
.row-label { font-weight: 600; color: var(--text-heading); display: flex; align-items: center; gap: .5rem; }
.row-label i { color: var(--blue); font-size: .78rem; width: 14px; text-align: center; }
.row-label small { font-size: .68rem; font-weight: 400; color: var(--text-muted); display: block; margin-top: 1px; }
.price-cell { font-weight: 700; color: var(--blue); }
.price-cell sup { font-size: .65rem; }
.na-cell { color: var(--text-light); font-size: .75rem; }
.section-row td { background: var(--bg-alt) !important; font-size: .7rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); padding-block: .55rem; padding-left: 1.5rem !important; }
.tariff-table tbody tr.section-row:hover { background: var(--bg-alt); }
.beta-row { background: rgba(255,77,79,.025); }
.beta-row td:first-child .row-label { color: var(--red); }
.beta-row .price-cell { color: var(--red); }

/* Outstation calc card */
.os-section { background: var(--bg-body); }
.os-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.os-steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.os-step { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.3rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.os-step:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.os-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient-blue); color: #fff; font-size: .8rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.os-step h4 { font-size: .9rem; font-weight: 700; color: var(--text-heading); margin-bottom: .15rem; }
.os-step p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
.calc-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.calc-card-head { background: var(--gradient-blue); color: #fff; padding: 1.2rem 1.5rem; }
.calc-card-head h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: .15rem; }
.calc-card-head p { font-size: .8rem; opacity: .8; }
.calc-rows { padding: 1.25rem 1.5rem; }
.calc-row { display: flex; align-items: center; justify-content: space-between; padding: .65rem 0; border-bottom: 1px solid var(--border); }
.calc-row:last-child { border-bottom: none; }
.calc-row-label { font-size: .82rem; color: var(--text-muted); display: flex; align-items: center; gap: .5rem; }
.calc-row-label i { color: var(--blue); font-size: .75rem; width: 14px; }
.calc-row-val { font-size: .88rem; font-weight: 700; color: var(--text-heading); }
.calc-row-val.accent { color: var(--blue); }
.calc-total-row { background: var(--blue-light); border-radius: var(--radius-sm); padding: .9rem 1.5rem; display: flex; align-items: center; justify-content: space-between; margin: 1rem 0 0; }
.calc-total-label { font-size: .88rem; font-weight: 700; color: var(--blue); }
.calc-total-price { font-family: var(--font-head); font-size: 1.8rem; color: var(--blue); line-height: 1; }
.calc-total-price sup { font-size: .9rem; vertical-align: super; }
.calc-note { font-size: .72rem; color: var(--text-muted); padding: 0 1.5rem .9rem; font-style: italic; }

/* Notes section */
.notes-section { background: var(--bg-alt); }
.notes-header { text-align: center; margin-bottom: 2.5rem; }
.notes-header .title-bar { margin-inline: auto; }
.notes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.note-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem 1.4rem;
  display: flex; align-items: flex-start; gap: .85rem; transition: var(--transition);
}
.note-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.note-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; transition: var(--transition); }
.note-card:hover .note-icon { background: var(--blue); color: #fff; }
.note-card h4 { font-size: .875rem; font-weight: 700; color: var(--text-heading); margin-bottom: .2rem; }
.note-card p { font-size: .8rem; color: var(--text-muted); line-height: 1.65; }

/* Tariff teaser (home page) */
.tariff-bg { background: var(--bg-body); }
.tariff-intro { text-align: center; margin-bottom: 2.5rem; }
.tariff-intro .section-lead, .tariff-intro .title-bar { margin-inline: auto; }
.tariff-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.tariff-teaser-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
  text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.tariff-teaser-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-blue); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.tariff-teaser-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tariff-teaser-card:hover::after { transform: scaleX(1); }
.tariff-teaser-icon { font-size: 2rem; color: var(--blue); margin-bottom: .75rem; }
.tariff-teaser-name { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: .2rem; }
.tariff-teaser-examples { font-size: .75rem; color: var(--text-muted); margin-bottom: 1.1rem; }
.tariff-teaser-price { font-family: var(--font-head); font-size: 1.9rem; color: var(--blue); line-height: 1; margin-bottom: .25rem; }
.tariff-teaser-price sup { font-size: 1rem; vertical-align: super; }
.tariff-teaser-from { font-size: .72rem; color: var(--text-muted); font-weight: 500; letter-spacing: .4px; text-transform: uppercase; }
.tariff-large { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.tariff-large-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem 1.5rem; display: flex; align-items: center; gap: 1.2rem; transition: var(--transition); }
.tariff-large-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.tariff-large-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.tariff-large-name { font-size: .9rem; font-weight: 700; color: var(--text-heading); margin-bottom: .1rem; }
.tariff-large-sub  { font-size: .75rem; color: var(--text-muted); margin-bottom: .4rem; }
.tariff-large-price { font-size: 1.1rem; font-weight: 800; color: var(--blue); }
.tariff-large-price sup { font-size: .7rem; }
.tariff-large-price span { font-size: .72rem; font-weight: 500; color: var(--text-muted); }
.tariff-cta-banner { background: var(--blue-light); border: 1px solid rgba(30,58,138,.15); border-radius: var(--radius); padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.tariff-cta-banner-left i { color: var(--blue); font-size: 1.1rem; margin-right: .5rem; }
.tariff-cta-banner-left p { font-size: .88rem; color: var(--text-body); line-height: 1.7; }
.tariff-cta-banner-left p strong { color: var(--blue); }
.btn-tariff-full { display: inline-flex; align-items: center; gap: .5rem; background: var(--gradient-blue); color: #fff; padding: .65rem 1.5rem; border-radius: 99px; font-size: .88rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; box-shadow: 0 4px 14px rgba(30,58,138,.28); transition: var(--transition); }
.btn-tariff-full:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(30,58,138,.36); }

/* ════════════════════════════════════════
   GALLERY PAGE
════════════════════════════════════════ */
.gallery-filters-section {
  background: var(--bg-nav); backdrop-filter: blur(14px);
  padding-block: 0; position: sticky; top: 64px; z-index: 100;
  border-bottom: 1px solid var(--border); transition: background .4s ease;
}
.filters-inner { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; padding-block: .85rem; }
.filter-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem 1.1rem; border-radius: 99px; font-size: .8rem; font-weight: 600; letter-spacing: .2px;
  border: 1.5px solid var(--border); background: var(--bg-card); color: var(--text-body);
  cursor: pointer; transition: var(--transition);
}
.filter-btn i { font-size: .72rem; }
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--gradient-blue); color: #fff; border-color: transparent; box-shadow: 0 3px 12px rgba(30,58,138,.28); }
.filter-count { background: rgba(255,255,255,.25); border-radius: 99px; font-size: .65rem; padding: .1rem .45rem; font-weight: 700; }
.filter-btn:not(.active) .filter-count { background: var(--bg-alt); color: var(--text-muted); }

.gallery-section { background: var(--bg-body); padding-block: 3rem 5rem; }
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-header .title-bar { margin-inline: auto; }
.gallery-grid { columns: 4; column-gap: 14px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 14px;
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  cursor: pointer; background: var(--bg-alt); transition: var(--transition); display: block;
}
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gallery-item img { width: 100%; display: block; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,74,.8) 0%, rgba(15,31,74,.2) 45%, transparent 100%);
  opacity: 0; transition: opacity .35s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title { font-size: .85rem; font-weight: 700; color: #fff; line-height: 1.3; }
.gallery-item-tag {
  display: inline-flex; align-items: center; gap: .3rem; margin-top: .35rem;
  background: var(--red); color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: .18rem .6rem; border-radius: 99px; align-self: flex-start;
}
.gallery-item-zoom {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--blue);
  opacity: 0; transform: scale(.8); transition: var(--transition); border: 1px solid var(--border);
}
.gallery-item:hover .gallery-item-zoom { opacity: 1; transform: scale(1); }
.gallery-item[data-hidden="true"] { display: none; }

/* Hero Mosaic (gallery page) */
.hero-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; gap: 10px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.hero-mosaic-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.hero-mosaic-img:hover { transform: scale(1.05); }
.hero-mosaic-img:first-child { grid-row: 1 / 3; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,16,32,.96); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 1rem;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; animation: lbIn .3s cubic-bezier(.4,0,.2,1); }
@keyframes lbIn { from { transform: scale(.94) translateY(16px); } to { transform: none; } }
.lightbox-img { width: 100%; max-height: 75vh; object-fit: contain; border-radius: var(--radius-lg); box-shadow: 0 32px 80px rgba(0,0,0,.6); }
.lightbox-caption { margin-top: 1rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.lightbox-caption h3 { font-size: 1.05rem; font-weight: 700; color: #fff; }
.lightbox-caption span { display: inline-flex; align-items: center; gap: .35rem; background: var(--red); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: .22rem .75rem; border-radius: 99px; }
.lightbox-close {
  position: absolute; top: -16px; right: -16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); border: 1px solid rgba(255,255,255,.2);
}
.lightbox-close:hover { background: var(--red); border-color: var(--red); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); display: flex; justify-content: space-between; pointer-events: none; left: -56px; right: -56px; }
.lb-nav-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .95rem; cursor: pointer; pointer-events: auto; transition: var(--transition); border: 1px solid rgba(255,255,255,.15); }
.lb-nav-btn:hover { background: rgba(255,255,255,.28); }
.lb-counter { position: absolute; bottom: -44px; left: 50%; transform: translateX(-50%); font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 500; white-space: nowrap; }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.hero-quick-contacts { display: flex; flex-direction: column; gap: .75rem; }
.hqc-item {
  display: inline-flex; align-items: center; gap: .9rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .8rem 1.2rem;
  box-shadow: var(--shadow-sm); transition: var(--transition); text-decoration: none; width: fit-content;
}
.hqc-item:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateX(4px); }
.hqc-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hqc-icon.wa   { background: #dcfce7; color: #16a34a; }
.hqc-icon.call { background: var(--blue-light); color: var(--blue); }
.hqc-icon.mail { background: rgba(255,77,79,.1); color: var(--red); }
.hqc-label { font-size: .7rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; }
.hqc-value { font-size: .9rem; font-weight: 700; color: var(--text-heading); }

.availability-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-lg); }
.availability-card h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--text-heading); margin-bottom: .4rem; }
.availability-card p { font-size: .84rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.avail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-bottom: 1.5rem;
}
.avail-item { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .75rem 1rem; }
.avail-item-label { font-size: .68rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; margin-bottom: .2rem; }
.avail-item-val { font-size: .88rem; font-weight: 700; color: var(--text-heading); }
.avail-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); margin-right: .35rem; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.btn-wa-large {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; background: #16a34a; color: #fff;
  padding: .85rem 1.5rem; border-radius: 99px; font-size: .95rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(22,163,74,.3); transition: var(--transition); margin-bottom: .7rem;
}
.btn-wa-large:hover { background: #15803d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,.4); }
.btn-call-large {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; background: var(--gradient-blue); color: #fff;
  padding: .85rem 1.5rem; border-radius: 99px; font-size: .95rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(30,58,138,.28); transition: var(--transition);
}
.btn-call-large:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,138,.36); }

/* Garages section (contact) */
.garages-bg { background: var(--bg-alt); transition: background .4s ease; }
.garages-header { text-align: center; margin-bottom: 3rem; }
.garages-header .title-bar { margin-inline: auto; }
.garages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.garage-card-top { padding: 1.6rem 1.5rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 1rem; }
.garage-badge { width: 46px; height: 46px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 800; flex-shrink: 0; font-family: var(--font-head); }
.garage-badge.regd { background: var(--gradient-blue); color: #fff; }
.garage-badge.g2   { background: var(--blue-light); color: var(--blue); }
.garage-badge.g3   { background: rgba(255,77,79,.1); color: var(--red); }
.garage-card-top h3 { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: .2rem; white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;}
.garage-tag { display: inline-flex; align-items: center; gap: .3rem; font-size: .65rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: .18rem .65rem; border-radius: 99px; margin-top: .3rem; }
.garage-tag.primary { background: var(--gradient-blue); color: #fff; }
.garage-tag.secondary { background: var(--bg-alt); color: var(--text-muted); border: 1px solid var(--border); }
.garage-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.garage-info-row { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .85rem; }
.garage-info-row:last-child { margin-bottom: 0; }
.garage-info-icon { width: 32px; height: 32px; min-width: 32px; border-radius: var(--radius-sm); background: var(--bg-alt); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: .75rem; margin-top: 1px; border: 1px solid var(--border); }
.garage-info-label { font-size: .68rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.garage-info-val { font-size: .86rem; color: var(--text-body); line-height: 1.5; font-weight: 500; }
.garage-map-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: 1.25rem; width: 100%; padding: .6rem 1rem;
  border: 1.5px solid var(--border); border-radius: 99px; font-size: .8rem; font-weight: 600;
  color: var(--blue); background: transparent; transition: var(--transition); cursor: pointer;
}
.garage-map-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.garage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.garage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,58,138,.2);
}
.garage-card-top > div:last-child {
  min-width: 0;
  flex: 1;
}

/* Enquiry Form */
.contact-main-bg { background: var(--bg-body); }
.contact-main-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: start; }
.enquiry-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-md); }
.enquiry-form-wrap h2 { font-family: var(--font-head); font-size: 1.7rem; color: var(--text-heading); margin-bottom: .35rem; }
.enquiry-form-wrap > p { font-size: .88rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--text-body); margin-bottom: .4rem; letter-spacing: .2px; }
.form-group label span { color: var(--red); margin-left: 2px; }
.form-control {
  width: 100%; padding: .72rem 1rem;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: .88rem; color: var(--text-body);
  transition: var(--transition); outline: none; font-family: var(--font-body);
}
.form-control:focus { border-color: var(--blue); background: var(--bg-card); box-shadow: 0 0 0 3px rgba(30,58,138,.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }
.form-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-bottom: 1.1rem; }
.service-check {
  display: flex; align-items: center; gap: .5rem;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: .55rem .75rem;
  cursor: pointer; transition: var(--transition);
  font-size: .78rem; font-weight: 500; color: var(--text-body); user-select: none;
}
.service-check input { display: none; }
.service-check:has(input:checked) { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }
.service-check i { font-size: .72rem; color: var(--blue); }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; background: var(--gradient-blue); color: #fff;
  padding: .9rem 1.5rem; border-radius: 99px; font-size: .95rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(30,58,138,.28); transition: var(--transition); border: none; cursor: pointer; margin-top: .5rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,138,.36); }
.form-note { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: .75rem; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success i { font-size: 3rem; color: var(--green); margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--text-heading); margin-bottom: .5rem; }
.form-success p { font-size: .88rem; color: var(--text-muted); }

/* ── Contact Info Panel ── */
.contact-info-panel { display: flex; flex-direction: column; gap: 1.25rem; }

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }

.info-card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition);
  border-radius: 10px !important;
  overflow: hidden;
}
.info-card:hover .info-card-icon { transform: scale(1.06); }

.info-card-icon.wa   { background: #dcfce7; color: #16a34a; }
.info-card-icon.call { background: #dbeafe; color: #1e3a8a; }
.info-card-icon.mail { background: rgba(255,77,79,.12); color: var(--red); }
.info-card-icon.hrs  { background: rgba(245,158,11,.12); color: #d97706; }

.info-card-icon i {
  font-size: 1.1rem;
  line-height: 1;
  display: block;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.info-card h4 { font-size: .85rem; font-weight: 700; color: var(--text-heading); margin-bottom: .2rem; }
.info-card p  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; transition: var(--transition); }
.info-card a  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; transition: var(--transition); }
.info-card a:hover { color: var(--blue); }
.info-card .val { font-size: .95rem; font-weight: 700; color: var(--text-heading); }

/* ── Hours Table ── */
.hours-table { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours-table td { font-size: .82rem; padding: .25rem 0; color: var(--text-muted); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--text-body); }
.hours-open { color: var(--green) !important; }

/* ── Social Links inside info-card ── */
.info-card .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  width: 100%;
}
.info-card .social-links a {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
}
.info-card .social-links a i {
  font-size: .95rem;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  border: none !important;
}
.info-card .social-links a:hover { color: var(--blue); }
/* Social card fix */
.info-card.social-card {
  flex-wrap: wrap;
  gap: .85rem;
}

.social-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  width: 100%;
}

.social-link-item {
  display: flex !important;
  align-items: center !important;
  gap: .4rem !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  color: var(--text-muted) !important;
  transition: var(--transition) !important;
  /* Override footer-socials leak */
  width: auto !important;
  height: auto !important;
  min-width: unset !important;
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.social-link-item:hover {
  opacity: .8;
}

.social-link-item i {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  font-size: .9rem !important;
  display: inline !important;
}
/* Team contact cards */
.team-contact-section { background: var(--bg-alt); }
.team-contact-header { text-align: center; margin-bottom: 2.5rem; }
.team-contact-header .title-bar { margin-inline: auto; }
.team-contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; max-width: 760px; margin-inline: auto; }
.person-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition); }
.person-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.person-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--gradient-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 1rem; }
.person-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: .2rem; }
.person-role { font-size: .75rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .8px; margin-bottom: .75rem; }
.person-contact-links { display: flex; gap: .6rem; justify-content: center; }
.person-link { display: flex; align-items: center; gap: .4rem; padding: .42rem .9rem; border-radius: 99px; font-size: .78rem; font-weight: 600; border: 1.5px solid var(--border); color: var(--text-body); transition: var(--transition); text-decoration: none; }
.person-link.wa-link { border-color: #bbf7d0; color: #16a34a; background: #f0fdf4; }
.person-link.wa-link:hover { background: #16a34a; color: #fff; border-color: #16a34a; }
.person-link.call-link { border-color: var(--blue-light); color: var(--blue); background: var(--blue-light); }
.person-link.call-link:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Map section */
.map-section { background: var(--bg-body); padding-block: 0 5rem; }
.map-section h2 { font-family: var(--font-head); font-size: 1.6rem; color: var(--text-heading); margin-bottom: .5rem; }
.map-section p  { font-size: .88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.map-frame-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); height: 420px; background: var(--bg-alt); }
.map-links-strip { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.map-link-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.3rem; border-radius: 99px; font-size: .82rem; font-weight: 600; border: 1.5px solid var(--border); color: var(--text-body); background: var(--bg-card); transition: var(--transition); text-decoration: none; }
.map-link-btn i { font-size: .8rem; color: var(--blue); }
.map-link-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════ */
.stats-strip { background: var(--gradient-blue); padding-block: 2.5rem; }
.stats-strip-inner { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 2.2rem; color: #fff; line-height: 1; }
.stat-lbl { font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.7); margin-top: .3rem; letter-spacing: .4px; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testi-bg { background: var(--bg-alt); }
.testi-header { text-align: center; margin-bottom: 3rem; }
.testi-header .section-lead, .testi-header .title-bar { margin-inline: auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-card::after { content: '\201C'; position: absolute; top: 1rem; right: 1.25rem; font-family: Georgia, serif; font-size: 4.5rem; line-height: 1; color: var(--blue); opacity: .08; pointer-events: none; }
.testi-stars { color: #f59e0b; font-size: .8rem; letter-spacing: 1px; margin-bottom: .9rem; }
.testi-text  { font-size: .875rem; color: var(--text-muted); line-height: 1.8; font-style: italic; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.testi-name { font-size: .875rem; font-weight: 700; color: var(--text-heading); }
.testi-role { font-size: .72rem; color: var(--text-muted); }

/* ════════════════════════════════════════
   NEWSLETTER / CTA SECTIONS
════════════════════════════════════════ */
.newsletter-section, .cta-section {
  padding-block: 5rem; background: var(--gradient-blue);
  position: relative; overflow: hidden;
}
.newsletter-section::before, .cta-section::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.05); pointer-events: none;
}
.newsletter-section::after, .cta-section::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.04); pointer-events: none;
}
.newsletter-inner, .cta-inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin-inline: auto; }
.newsletter-inner .eyebrow, .cta-inner .eyebrow { color: rgba(255,255,255,.7); }
.newsletter-inner .eyebrow::before, .cta-inner .eyebrow::before { background: rgba(255,255,255,.5); }
.newsletter-inner h2, .cta-inner h2 { font-family: var(--font-head); font-size: clamp(1.7rem, 2.8vw, 2.3rem); color: #fff; line-height: 1.25; margin-bottom: .75rem; }
.newsletter-inner p, .cta-inner p { color: rgba(255,255,255,.72); font-size: .95rem; margin-bottom: 2rem; }
.nl-form {
  display: flex; gap: .6rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px; padding: .35rem .35rem .35rem 1.25rem;
  backdrop-filter: blur(8px); max-width: 480px; margin-inline: auto;
}
.nl-form input { flex: 1; background: transparent; border: none; font-size: .9rem; color: #fff; outline: none; min-width: 0; }
.nl-form input::placeholder { color: rgba(255,255,255,.5); }
.nl-form button { background: #fff; color: var(--blue); font-size: .85rem; font-weight: 700; padding: .6rem 1.4rem; border-radius: 99px; border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; flex-shrink: 0; }
.nl-form button:hover { background: var(--red); color: #fff; }
.cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; gap: .5rem; background: #fff; color: var(--blue); padding: .7rem 1.75rem; border-radius: 99px; font-size: .9rem; font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,.1); transition: var(--transition); border: none; cursor: pointer; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); background: var(--red); color: #fff; }
.btn-outline-white { display: inline-flex; align-items: center; gap: .5rem; border: 2px solid rgba(255,255,255,.6); color: #fff; padding: .66rem 1.6rem; border-radius: 99px; font-size: .9rem; font-weight: 600; background: transparent; transition: var(--transition); cursor: pointer; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer { background: var(--footer-bg); color: #94a3b8; padding-top: 4rem; transition: background .4s ease; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand .footer-logo { display: flex; align-items: center; gap: .55rem; margin-bottom: .9rem; }
.footer-logo-icon { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--red); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .95rem; }
.footer-logo-name { font-size: 1rem; font-weight: 700; color: #fff; }
.footer-brand > p { font-size: .84rem; line-height: 1.8; max-width: 280px; }
.footer-socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: .85rem; transition: var(--transition); }
.footer-socials a:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }
.footer-col h4 { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 1.1rem; }
.footer-col ul li + li { margin-top: .55rem; }
.footer-col ul li a { font-size: .83rem; color: #94a3b8; transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: .7rem; font-size: .83rem; line-height: 1.6; margin-bottom: .7rem; }
.footer-contact li i { color: var(--red); font-size: .85rem; margin-top: 2px; min-width: 14px; }
.footer-bottom { padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .78rem; }
.footer-bottom a { color: #94a3b8; transition: var(--transition); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom span.accent { color: var(--red); }

/* ════════════════════════════════════════
   FLOATING ACTION BUTTONS
════════════════════════════════════════ */
.fabs { position: fixed; bottom: 28px; right: 22px; display: flex; flex-direction: column; gap: .6rem; z-index: 990; align-items: center; }
@media (max-width: 900px) { .fabs { bottom: 72px; } }
.fab { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.18); transition: var(--transition); position: relative; }
.fab:hover { transform: scale(1.1) translateY(-2px); }
.fab-wa   { background: #25d366; }
.fab-call { background: var(--blue); }
.fab-tip { position: absolute; right: 58px; top: 50%; transform: translateY(-50%); background: var(--bg-card); color: var(--text-body); padding: .28rem .7rem; border-radius: var(--radius-sm); font-size: .72rem; font-weight: 600; white-space: nowrap; box-shadow: var(--shadow-md); border: 1px solid var(--border); opacity: 0; pointer-events: none; transition: opacity .2s; }
.fab:hover .fab-tip { opacity: 1; }
#go-top { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); color: var(--blue); font-size: .9rem; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: var(--transition); }
#go-top.show { opacity: 1; pointer-events: auto; }
#go-top:hover { background: var(--blue); color: #fff; }

/* ════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid, .values-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid, .compare-grid-lg { grid-template-columns: repeat(2,1fr); }
  .fleet-types-grid { grid-template-columns: repeat(3,1fr); }
  .garages-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 3; }
  .lightbox-nav { left: -44px; right: -44px; }
  .fleet-grid { grid-template-columns: repeat(2,1fr); }
  .notes-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3,1fr); }
}

/* ═══════════════════════════════════════
   TIMELINE — Mobile
═══════════════════════════════════════ */
@media (max-width: 900px) {

  /* Vertical line hugs the left */
  .timeline::before {
    left: 20px;
    transform: none;
  }

  /* Collapse the 3-column grid to dot + content */
  .tl-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: .75rem;
    align-items: start;
  }

  /* Dot column — first */
  .tl-center {
    grid-column: 1;
    grid-row: 1;
    order: unset;
  }

  /* Content always in column 2 — both odd and even */
  .tl-item:nth-child(odd)  .tl-left,
  .tl-item:nth-child(even) .tl-left {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    order: unset;
  }

  /* Hide the empty right placeholder column entirely */
  .tl-item:nth-child(odd)  .tl-right,
  .tl-item:nth-child(even) .tl-right {
    display: none;
  }

  /* Even items — reset the order that was swapping columns */
  .tl-item:nth-child(even) .tl-mid {
    order: unset;
  }
}

@media (max-width: 900px) {

  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }

  .how-steps::before {
    display: none;
  }

  .how-step {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: .9rem .85rem;
  }

  .how-step .how-num {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--blue-light);
    color: var(--blue);
    font-size: .95rem;
    margin-bottom: .6rem;
    box-shadow: none;
  }

  .how-step h3 {
    font-size: .85rem;
    margin-bottom: 0;
    line-height: 1.3;
  }

  /* HIDE paragraph — icon + title is enough at this width */
  .how-step p {
    display: none;
  }

  .notes-grid {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
}

@media (max-width: 640px) {
  .mission-bg .btn-primary,
  .mission-bg .btn-ghost {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-right: 0 !important;
  }

  .mission-bg [style*="text-align:center"] {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    align-items: stretch;
  }
}

/* ═══════════════════════════════════════
   LEADERSHIP CARDS — Mobile
═══════════════════════════════════════ */
@media (max-width: 900px) {

  /* Stack the 2-col leader cards to single column */
  .section-pad.team-bg > .container > div[style*="grid-template-columns:1fr 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}

/* Tighter selector if you add a class — recommended */
@media (max-width: 900px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .btn-booknow { display: none; }
  .navbar      { overflow: visible; }
  .bottom-nav  { display: block; }
  body         { padding-bottom: 62px; }
  .hero-inner  { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-sub, .section-lead { margin-inline: auto; }
  .hero-chips, .hero-cta, .hero-stats { justify-content: center; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .hbadge-tl   { top: -14px; left: -10px; }
  .hbadge-br   { bottom: -14px; right: -10px; }
  .page-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .page-hero-stats { justify-content: center; }
  .page-hero-badge { bottom: -12px; right: -8px; }
  .about-grid, .story-grid { grid-template-columns: 1fr; }
  .mission-grid, .obj-grid { grid-template-columns: 1fr; }
  .mission-img-wrap, .obj-img-wrap { display: none; }
  .coverage-grid, .coverage-inner { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr 1fr; }
  .how-steps   { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .highlights-grid { grid-template-columns: 1fr; }
  .corporate-grid  { grid-template-columns: 1fr; }
  .faq-grid        { grid-template-columns: 1fr; }
  .gallery-grid    { columns: 2; }
  .gallery-filters-section { top: 64px; }
  .lightbox-nav    { left: -4px; right: -4px; }
  .lb-nav-btn      { background: rgba(0,0,0,.5); }
  .stats-strip-inner { gap: 2.5rem; }
  .hero-quick-contacts { align-items: center; }
  .hqc-item    { width: 100%; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .team-contact-grid { grid-template-columns: 1fr; max-width: 420px; }
  .garages-grid { grid-template-columns: 1fr; }
  .os-grid     { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 40px 1fr; gap: .75rem; }
  .tl-item:nth-child(odd) .tl-left  { order: unset; grid-column: 2; text-align: left; }
  .tl-item:nth-child(odd) .tl-right { display: none; }
  .tl-item:nth-child(even) .tl-left  { order: unset; grid-column: 2; }
  .tl-item:nth-child(even) .tl-right { display: none; }
  .tl-item:nth-child(even) .tl-mid   { order: unset; }
  .tl-center { grid-column: 1; }
  .hero-mosaic { grid-template-rows: 130px 130px; }
  .avail-grid  { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════
   CONTACT PAGE — MOBILE RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 900px) {

  /* ── Page Hero ── */
  .page-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding-block: 2.5rem 2rem;
  }

  .page-hero-title {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
  }

  .page-hero-sub {
    font-size: .9rem;
    margin-inline: auto;
  }

  .hero-quick-contacts {
    align-items: center;
  }

  .hqc-item {
    width: 100%;
    max-width: 360px;
  }

  /* ── Availability Card ── */
  .availability-card {
    max-width: 480px;
    margin-inline: auto;
  }

  .avail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* ── Garages Grid ── */
  .garages-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .garage-card-top h3 {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: .95rem;
  }

  /* ── Contact Main Grid ── */
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .enquiry-form-wrap {
    padding: 1.75rem 1.25rem;
  }

  /* ── Form Rows stack on mobile ── */
  .form-row {
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .form-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ── Info Cards ── */
  .info-card {
    padding: 1.1rem 1.25rem;
    gap: .85rem;
  }

  .info-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .info-card h4 {
    font-size: .82rem;
  }

  .info-card .val {
    font-size: .88rem;
  }

  /* ── Hours Table ── */
  .hours-table td {
    font-size: .78rem;
  }

  /* ── Social Links ── */
  .social-links-row {
    gap: .6rem;
  }

  .social-link-item {
    font-size: .75rem !important;
  }

  /* ── Team Contact Grid ── */
  .team-contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .person-card {
    padding: 1.4rem 1.25rem;
  }

  .person-contact-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* ── Map Section ── */
  .map-frame-wrap {
    height: 280px;
  }

  .map-links-strip {
    flex-direction: column;
    gap: .6rem;
  }

  .map-link-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Small Mobile ── */
@media (max-width: 640px) {

  /* ── Hero ── */
  .page-hero-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .page-hero-sub {
    font-size: .85rem;
  }

  .hqc-item {
    padding: .65rem 1rem;
  }

  .hqc-icon {
    width: 34px;
    height: 34px;
    font-size: .95rem;
  }

  .hqc-value {
    font-size: .82rem;
  }

  /* ── Availability Card ── */
  .availability-card {
    padding: 1.4rem 1.25rem;
  }

  .availability-card h3 {
    font-size: 1.2rem;
  }

  .avail-grid {
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
  }

  .avail-item {
    padding: .6rem .75rem;
  }

  .avail-item-label {
    font-size: .62rem;
  }

  .avail-item-val {
    font-size: .8rem;
  }

  .btn-wa-large,
  .btn-call-large {
    font-size: .85rem;
    padding: .75rem 1rem;
  }

  /* ── Garages ── */
  .garages-header .section-title {
    font-size: 1.6rem;
  }

  .garage-card-top {
    padding: 1.2rem 1.1rem 1rem;
    gap: .75rem;
  }

  .garage-badge {
    width: 38px;
    height: 38px;
    font-size: .78rem;
  }

  .garage-card-body {
    padding: 1rem 1.1rem 1.25rem;
  }

  .garage-info-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: .7rem;
  }

  .garage-info-val {
    font-size: .8rem;
  }

  .garage-map-btn {
    font-size: .75rem;
    padding: .5rem .85rem;
  }

  /* ── Enquiry Form ── */
  .enquiry-form-wrap {
    padding: 1.4rem 1rem;
    border-radius: var(--radius);
  }

  .enquiry-form-wrap h2 {
    font-size: 1.4rem;
  }

  .form-control {
    font-size: .84rem;
    padding: .62rem .85rem;
  }

  .form-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: .4rem;
  }

  .service-check {
    font-size: .72rem;
    padding: .45rem .6rem;
  }

  .btn-submit {
    font-size: .88rem;
    padding: .8rem 1.25rem;
  }

  /* ── Info Panel ── */
  .contact-info-panel {
    gap: .85rem;
  }

  .info-card {
    padding: 1rem 1.1rem;
  }

  /* ── Person Cards ── */
  .person-avatar {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }

  .person-card h3 {
    font-size: .92rem;
  }

  .person-role {
    font-size: .68rem;
  }

  .person-link {
    font-size: .72rem;
    padding: .38rem .75rem;
  }

  /* ── Map ── */
  .map-frame-wrap {
    height: 220px;
  }

  .map-section h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 640px) {
  .section-pad { padding-block: 3.25rem; }
  .section-pad-sm { padding-block: 2.75rem; }
  .why-grid, .values-grid { grid-template-columns: 1fr; }
  .testi-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nl-form     { flex-direction: column; border-radius: var(--radius); padding: .75rem 1rem; }
  .nl-form button { border-radius: var(--radius-sm); }
  .fleet-card  { min-width: 270px; }
  .gallery-grid { columns: 1; }
  .compare-grid, .compare-grid-lg { grid-template-columns: 1fr; }
  .notes-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-types-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid  { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .form-services-grid { grid-template-columns: 1fr 1fr; }
  .map-links-strip { flex-direction: column; }
  .tariff-teaser { grid-template-columns: 1fr; }
  .tariff-large  { grid-template-columns: 1fr; }
  .tariff-cta-banner { flex-direction: column; text-align: center; }
  .team-grid   { grid-template-columns: 1fr; }
  .auto-slide img { height: 260px; }
  .nav-logo-img  { height: 58px; max-width: 120px; }
  .nav-logo-name { font-size: .78rem; max-width: 120px; }
  .page-hero-img-wrap img { height: 240px; }
  .hbadge      { display: none; }
  .filters-inner { gap: .4rem; }
  .filter-btn  { font-size: .73rem; padding: .38rem .85rem; }
}