/*
 * Silver Service Taxi — 7-Star Luxury Design System
 * ============================================================
 * Completely new visual identity for silverservicetaxi.com.
 * Overrides style.css and premium-nav.css variables and components.
 * Does NOT touch /book page booking logic.
 *
 * Palette: Midnight Navy + Charcoal + Cool Cyan + White/Light Grey
 * Typography: Plus Jakarta Sans (Google Fonts)
 * Philosophy: Harbour Authority — premium aviation wayfinding, decisive
 * contrast, useful journey pathways, and restrained executive hospitality.
 */

/* ── GOOGLE FONTS ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────────────────────── */
:root {
  /* Midnight Navy — primary brand colour */
  --sst-navy-950:   #050D1A;
  --sst-navy-900:   #0A1628;
  --sst-navy-800:   #0D1F3C;
  --sst-navy-700:   #122952;
  --sst-navy-600:   #1A3A6E;
  --sst-navy-500:   #1E4A8A;

  /* Charcoal — secondary / text */
  --sst-slate-900:  #0F172A;
  --sst-slate-800:  #1E293B;
  --sst-slate-700:  #334155;
  --sst-slate-500:  #64748B;
  --sst-slate-400:  #94A3B8;
  --sst-slate-200:  #E2E8F0;
  --sst-slate-100:  #F1F5F9;
  --sst-slate-50:   #F8FAFC;

  /* Cool Cyan — accent / CTA */
  --sst-cyan-500:   #06B6D4;
  --sst-cyan-400:   #22D3EE;
  --sst-cyan-300:   #67E8F9;
  --sst-cyan-600:   #0891B2;
  --sst-cyan-900:   #164E63;

  /* Sky Blue — secondary accent */
  --sst-sky-500:    #0EA5E9;
  --sst-sky-400:    #38BDF8;
  --sst-sky-600:    #0284C7;

  /* Semantic aliases — used throughout the stylesheet */
  --primary:        var(--sst-navy-800);
  --primary-dark:   var(--sst-navy-900);
  --primary-light:  var(--sst-navy-600);
  --accent:         var(--sst-cyan-500);
  --accent-dark:    var(--sst-cyan-600);
  --accent-light:   var(--sst-cyan-400);
  --accent-glow:    rgba(6,182,212,.15);
  --text-primary:   var(--sst-slate-900);
  --text-secondary: var(--sst-slate-700);
  --text-muted:     var(--sst-slate-500);
  --text-inverse:   #ffffff;
  --bg-base:        #ffffff;
  --bg-subtle:      var(--sst-slate-50);
  --bg-muted:       var(--sst-slate-100);
  --bg-dark:        var(--sst-navy-800);
  --bg-darker:      var(--sst-navy-900);
  --border-light:   var(--sst-slate-200);
  --border-medium:  var(--sst-slate-400);

  /* Override old palette aliases so inherited components pick up new colours */
  --primary-blue:        var(--sst-navy-600);
  --primary-blue-dark:   var(--sst-navy-800);
  --primary-blue-light:  var(--sst-navy-500);
  --secondary-blue:      var(--sst-sky-500);
  --navy:                var(--sst-navy-800);
  --blue:                var(--sst-navy-600);
  --blue-lt:             var(--sst-navy-500);
  --blue-bg:             var(--sst-slate-100);
  --silver:              var(--sst-slate-400);
  --silver-accent:       var(--sst-cyan-500);
  --silver-accent-dark:  var(--sst-cyan-600);
  --silver-accent-lt:    var(--accent-glow);
  --gold:                var(--sst-cyan-500);
  --gold-bright:         var(--sst-cyan-400);
  --gold-lt:             var(--accent-glow);
  --text-dark:           var(--sst-slate-900);
  --text-medium:         var(--sst-slate-700);
  --text-light:          var(--sst-slate-500);
  --bg-light:            var(--sst-slate-50);
  --dark:                var(--sst-navy-950);
  --border:              var(--sst-slate-200);
  --mid:                 var(--sst-slate-700);
  --slate:               var(--sst-slate-900);
  --white:               #ffffff;
  --off:                 var(--sst-slate-50);

  /* Gradients */
  --grad:      linear-gradient(135deg, var(--sst-navy-900) 0%, var(--sst-navy-800) 50%, var(--sst-navy-600) 100%);
  --grad-gold: linear-gradient(135deg, var(--sst-cyan-600) 0%, var(--sst-cyan-500) 100%);
  --grad-hero: linear-gradient(160deg, var(--sst-navy-950) 0%, var(--sst-navy-800) 60%, var(--sst-navy-700) 100%);
  --grad-card: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(241,245,249,.6) 100%);
  --grad-accent: linear-gradient(135deg, var(--sst-cyan-600) 0%, var(--sst-sky-500) 100%);

  /* Shadows — cool-tinted, no warm yellow */
  --shadow-xs: 0 1px 3px rgba(10,22,40,.06), 0 1px 2px rgba(10,22,40,.04);
  --shadow-sm: 0 2px 8px rgba(10,22,40,.08), 0 1px 3px rgba(10,22,40,.06);
  --shadow-md: 0 8px 24px rgba(10,22,40,.10), 0 2px 8px rgba(10,22,40,.06);
  --shadow-lg: 0 16px 40px rgba(10,22,40,.14), 0 4px 12px rgba(10,22,40,.08);
  --shadow-xl: 0 24px 64px rgba(10,22,40,.18), 0 8px 24px rgba(10,22,40,.10);
  --shadow-2xl:0 40px 80px rgba(10,22,40,.22), 0 16px 40px rgba(10,22,40,.12);
  --shadow-glow: 0 0 0 1px rgba(6,182,212,.2), 0 8px 32px rgba(6,182,212,.12);

  /* Border radius */
  --r:    8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl:32px;
  --r-full: 9999px;

  /* Typography */
  --ff-head: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --ff-body: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --ff-ui:   'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Nav */
  --nav-h: 80px;
}

/* ── BASE RESET & TYPOGRAPHY ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

/* ── TOP BAR ──────────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--sst-navy-950) !important;
  border-bottom: 1px solid rgba(6,182,212,.15) !important;
  padding: 10px 0 !important;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar a,
.top-bar span {
  color: var(--sst-slate-400) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.top-bar a:hover { color: var(--sst-cyan-400) !important; }

/* ── NAVIGATION ───────────────────────────────────────────────────────────── */
.pnav-wrap,
.premium-nav,
nav.navbar,
header.site-header {
  background: rgba(5,13,26,.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(6,182,212,.12) !important;
  box-shadow: 0 4px 24px rgba(5,13,26,.4) !important;
}

.pnav-logo-text,
.nav-logo-text {
  font-family: var(--ff-head) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.pnav-logo-text .brand-main,
.nav-logo-text span:first-child {
  color: #ffffff !important;
  font-size: 1.1rem !important;
}

.pnav-logo-text .brand-sub,
.nav-logo-text span:last-child {
  color: var(--sst-cyan-500) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.2em !important;
  font-weight: 500 !important;
}

/* Nav links */
.pnav-link,
.nav-link,
.navbar a {
  color: rgba(255,255,255,.75) !important;
  font-family: var(--ff-ui) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  transition: color 0.2s !important;
}

.pnav-link:hover,
.nav-link:hover,
.navbar a:hover {
  color: var(--sst-cyan-400) !important;
}

/* Book Now nav button */
.pnav-cta,
.nav-book-btn,
#sst-nav-btn,
.pnav-book-btn {
  background: var(--grad-accent) !important;
  color: #ffffff !important;
  font-family: var(--ff-ui) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  padding: 10px 22px !important;
  border-radius: var(--r-full) !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(6,182,212,.3) !important;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1) !important;
  text-transform: uppercase !important;
}

.pnav-cta:hover,
.nav-book-btn:hover,
#sst-nav-btn:hover,
.pnav-book-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(6,182,212,.45) !important;
  background: linear-gradient(135deg, var(--sst-sky-600) 0%, var(--sst-cyan-500) 100%) !important;
}

/* ── HERO SECTION ─────────────────────────────────────────────────────────── */
.hero,
.hero-section,
section.hero {
  background: var(--grad-hero) !important;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px !important;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Subtle geometric texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(6,182,212,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(14,165,233,.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid line texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}

.hero-content,
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge,
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,182,212,.12) !important;
  border: 1px solid rgba(6,182,212,.3) !important;
  color: var(--sst-cyan-400) !important;
  font-family: var(--ff-ui) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 6px 16px !important;
  border-radius: var(--r-full) !important;
  margin-bottom: 1.5rem !important;
}

.hero-title,
h1.hero-title {
  font-family: var(--ff-head) !important;
  font-size: clamp(2.8rem, 6vw, 5.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
  color: #ffffff !important;
  margin-bottom: 1.5rem !important;
}

.hero-title span,
.hero-title em {
  color: var(--sst-cyan-400) !important;
  font-style: normal !important;
}

.hero-subtitle,
.hero-desc,
p.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem) !important;
  color: rgba(255,255,255,.7) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  max-width: 560px !important;
  margin-bottom: 2.5rem !important;
}

/* Hero trust strip */
.hero-trust,
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-trust-item svg,
.hero-trust-item .icon {
  color: var(--sst-cyan-500);
  width: 18px;
  height: 18px;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn,
button.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-ui) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  border-radius: var(--r-full) !important;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1) !important;
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  white-space: nowrap;
}

/* Primary CTA — Cyan gradient */
.btn-primary,
.btn-gold,
.btn-cta,
a.btn-primary,
a.btn-gold {
  background: var(--grad-accent) !important;
  color: #ffffff !important;
  padding: 16px 36px !important;
  font-size: 0.95rem !important;
  box-shadow: 0 8px 24px rgba(6,182,212,.3) !important;
}

.btn-primary:hover,
.btn-gold:hover,
.btn-cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 40px rgba(6,182,212,.45) !important;
  background: linear-gradient(135deg, var(--sst-sky-600) 0%, var(--sst-cyan-400) 100%) !important;
  color: #ffffff !important;
}

/* Secondary — Navy outline */
.btn-secondary,
.btn-navy,
.btn-outline,
a.btn-secondary,
a.btn-navy {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255,255,255,.3) !important;
  padding: 14px 32px !important;
  font-size: 0.95rem !important;
  backdrop-filter: blur(8px) !important;
}

.btn-secondary:hover,
.btn-navy:hover,
.btn-outline:hover {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.6) !important;
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

/* Dark background secondary */
.btn-light,
a.btn-light {
  background: rgba(255,255,255,.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  padding: 14px 32px !important;
  font-size: 0.95rem !important;
  backdrop-filter: blur(8px) !important;
}

.btn-light:hover {
  background: rgba(255,255,255,.18) !important;
  transform: translateY(-2px) !important;
}

/* ── SECTION LAYOUT ───────────────────────────────────────────────────────── */
section,
.section {
  padding: 96px 0 !important;
}

.section-sm { padding: 64px 0 !important; }
.section-lg { padding: 128px 0 !important; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sst-cyan-500) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sst-cyan-500);
  border-radius: 2px;
}

.section-title,
h2.section-title {
  font-family: var(--ff-head) !important;
  font-size: clamp(2rem, 4vw, 3.25rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.1 !important;
  color: var(--sst-slate-900) !important;
  margin-bottom: 1.25rem !important;
}

.section-title span {
  color: var(--sst-cyan-600) !important;
}

.section-sub,
p.section-sub {
  font-size: 1.05rem !important;
  color: var(--sst-slate-500) !important;
  line-height: 1.7 !important;
  max-width: 600px !important;
}

/* Dark section */
.section-dark,
.dark-section,
section.dark {
  background: var(--sst-navy-900) !important;
  color: #ffffff !important;
}

.section-dark .section-title,
.dark-section .section-title {
  color: #ffffff !important;
}

.section-dark .section-sub,
.dark-section .section-sub {
  color: rgba(255,255,255,.65) !important;
}

/* ── PREMIUM CARDS ────────────────────────────────────────────────────────── */
.card,
.service-card,
.fleet-card,
.feature-card,
.why-card {
  background: #ffffff !important;
  border: 1px solid var(--sst-slate-200) !important;
  border-radius: var(--r-xl) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
  position: relative;
}

.card:hover,
.service-card:hover,
.fleet-card:hover,
.feature-card:hover,
.why-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-xl) !important;
  border-color: var(--sst-cyan-500) !important;
}

/* Accent top border on hover */
.card::before,
.service-card::before,
.fleet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover::before,
.service-card:hover::before,
.fleet-card:hover::before {
  opacity: 1;
}

/* Card inner padding */
.card-body,
.card-content,
.service-card-body {
  padding: 32px !important;
}

/* Card icon */
.card-icon,
.service-icon {
  width: 56px !important;
  height: 56px !important;
  background: var(--sst-slate-100) !important;
  border-radius: var(--r-lg) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1.5rem !important;
  color: var(--sst-cyan-600) !important;
  transition: all 0.3s !important;
}

.card:hover .card-icon,
.service-card:hover .service-icon {
  background: rgba(6,182,212,.12) !important;
  color: var(--sst-cyan-500) !important;
}

/* Card heading */
.card h3,
.service-card h3,
.fleet-card h3 {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: var(--sst-slate-900) !important;
  margin-bottom: 0.75rem !important;
}

/* Card body text */
.card p,
.service-card p,
.fleet-card p {
  font-size: 0.9rem !important;
  color: var(--sst-slate-500) !important;
  line-height: 1.65 !important;
}

/* ── FLEET / VEHICLE CARDS ────────────────────────────────────────────────── */
.fleet-card {
  border-radius: var(--r-xl) !important;
  overflow: hidden !important;
}

.fleet-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--sst-slate-100);
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.04);
}

.fleet-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(5,13,26,.85);
  backdrop-filter: blur(8px);
  color: var(--sst-cyan-400);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(6,182,212,.3);
}

.fleet-price {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: var(--sst-slate-900) !important;
  letter-spacing: -0.03em !important;
}

.fleet-price span {
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--sst-slate-500) !important;
}

/* ── WHY CHOOSE US ────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 28px !important;
  background: var(--sst-slate-50) !important;
  border-radius: var(--r-lg) !important;
  border: 1px solid var(--sst-slate-200) !important;
  transition: all 0.3s !important;
}

.why-item:hover {
  background: #ffffff !important;
  box-shadow: var(--shadow-md) !important;
  border-color: var(--sst-cyan-500) !important;
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(6,182,212,.1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sst-cyan-600);
}

.why-item h3 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--sst-slate-900) !important;
  margin-bottom: 0.4rem !important;
}

.why-item p {
  font-size: 0.875rem !important;
  color: var(--sst-slate-500) !important;
  line-height: 1.6 !important;
}

/* ── STATS / TRUST NUMBERS ────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: var(--sst-slate-200);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.stat-item {
  background: #ffffff;
  padding: 40px 32px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  color: var(--sst-navy-800) !important;
  line-height: 1 !important;
  margin-bottom: 0.5rem !important;
}

.stat-number span {
  color: var(--sst-cyan-500) !important;
}

.stat-label {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--sst-slate-500) !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* ── QUICK BOOKING WIDGET ─────────────────────────────────────────────────── */
.quick-book,
.fare-calculator,
.qb-widget {
  background: #ffffff !important;
  border-radius: var(--r-xl) !important;
  box-shadow: var(--shadow-2xl) !important;
  border: 1px solid var(--sst-slate-200) !important;
  padding: 40px !important;
  position: relative;
  overflow: hidden;
}

.quick-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-accent);
}

.quick-book h3,
.qb-widget h3 {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: var(--sst-slate-900) !important;
  margin-bottom: 0.5rem !important;
}

.quick-book input,
.qb-widget input,
#qb-pickup,
#qb-dropoff {
  background: var(--sst-slate-50) !important;
  border: 1.5px solid var(--sst-slate-200) !important;
  border-radius: var(--r-lg) !important;
  padding: 16px 20px !important;
  font-family: var(--ff-body) !important;
  font-size: 0.95rem !important;
  color: var(--sst-slate-900) !important;
  transition: all 0.2s !important;
  width: 100%;
}

.quick-book input:focus,
.qb-widget input:focus,
#qb-pickup:focus,
#qb-dropoff:focus {
  outline: none !important;
  border-color: var(--sst-cyan-500) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(6,182,212,.1) !important;
}

#qb-btn {
  background: var(--grad-accent) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: var(--r-full) !important;
  padding: 18px 36px !important;
  font-family: var(--ff-ui) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1) !important;
  box-shadow: 0 8px 24px rgba(6,182,212,.3) !important;
  width: 100%;
  margin-top: 8px;
}

#qb-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 40px rgba(6,182,212,.45) !important;
}

/* ── FAQ ACCORDION ────────────────────────────────────────────────────────── */
details,
.faq-item {
  background: #ffffff !important;
  border: 1px solid var(--sst-slate-200) !important;
  border-radius: var(--r-lg) !important;
  margin-bottom: 12px !important;
  overflow: hidden !important;
  transition: box-shadow 0.2s !important;
}

details[open],
.faq-item.open {
  box-shadow: var(--shadow-md) !important;
  border-color: var(--sst-cyan-500) !important;
}

summary,
.faq-question {
  padding: 22px 28px !important;
  font-family: var(--ff-head) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--sst-slate-900) !important;
  cursor: pointer !important;
  list-style: none !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sst-cyan-500);
  flex-shrink: 0;
  transition: transform 0.3s;
}

details[open] summary::after {
  content: '−';
}

details > *:not(summary),
.faq-answer {
  padding: 0 28px 24px !important;
  color: var(--sst-slate-500) !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
footer,
.site-footer {
  background: var(--sst-navy-950) !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.65) !important;
  padding: 80px 0 40px !important;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--sst-cyan-500) !important;
  margin-bottom: 1.25rem !important;
}

.footer-link,
footer a {
  color: rgba(255,255,255,.55) !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  display: block !important;
  margin-bottom: 0.6rem !important;
}

.footer-link:hover,
footer a:hover {
  color: var(--sst-cyan-400) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08) !important;
  padding-top: 32px !important;
  margin-top: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}

.footer-copy {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,.35) !important;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────────────────────── */
.page-hero,
.inner-hero,
.hero-inner {
  background: var(--grad-hero) !important;
  padding: 100px 0 80px !important;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  color: #ffffff !important;
  margin-bottom: 1rem !important;
}

.page-hero p {
  color: rgba(255,255,255,.7) !important;
  font-size: 1.05rem !important;
  max-width: 560px !important;
}

/* ── BREADCRUMB ───────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255,255,255,.5) !important;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--sst-cyan-400) !important; }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: rgba(255,255,255,.8); }

/* ── TRUST BADGES ─────────────────────────────────────────────────────────── */
.trust-strip,
.trust-badges {
  background: var(--sst-slate-50) !important;
  border-top: 1px solid var(--sst-slate-200) !important;
  border-bottom: 1px solid var(--sst-slate-200) !important;
  padding: 20px 0 !important;
}

.trust-badge,
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sst-slate-700) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
}

.trust-badge svg,
.trust-item svg {
  color: var(--sst-cyan-600) !important;
  width: 20px;
  height: 20px;
}

/* ── CONSENT BANNER ───────────────────────────────────────────────────────── */
.sst-cc {
  background: var(--sst-navy-900) !important;
  border-top: 1px solid rgba(6,182,212,.2) !important;
  box-shadow: 0 -8px 32px rgba(5,13,26,.4) !important;
}

.sst-cc-title {
  color: #ffffff !important;
  font-family: var(--ff-head) !important;
  font-weight: 700 !important;
}

.sst-cc-text {
  color: rgba(255,255,255,.65) !important;
  font-size: 0.875rem !important;
}

.sst-cc-accept {
  background: var(--grad-accent) !important;
  border-radius: var(--r-full) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(6,182,212,.3) !important;
}

.sst-cc-reject {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: var(--r-full) !important;
  color: rgba(255,255,255,.8) !important;
}

.sst-cc-manage {
  color: var(--sst-cyan-400) !important;
  font-size: 0.85rem !important;
}

/* ── TOAST NOTIFICATIONS ──────────────────────────────────────────────────── */
.sst-toast {
  border-radius: var(--r-lg) !important;
  font-family: var(--ff-ui) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  box-shadow: var(--shadow-xl) !important;
}

.sst-toast-success {
  background: var(--sst-navy-800) !important;
  border-left: 4px solid var(--sst-cyan-500) !important;
  color: #ffffff !important;
}

.sst-toast-error {
  background: #1a0a0a !important;
  border-left: 4px solid #ef4444 !important;
  color: #ffffff !important;
}

.sst-toast-info {
  background: var(--sst-navy-700) !important;
  border-left: 4px solid var(--sst-sky-500) !important;
  color: #ffffff !important;
}

/* ── FORM ELEMENTS (contact, manage — NOT /book) ──────────────────────────── */
.form-input,
.form-select,
.form-textarea {
  background: var(--sst-slate-50) !important;
  border: 1.5px solid var(--sst-slate-200) !important;
  border-radius: var(--r-lg) !important;
  padding: 14px 18px !important;
  font-family: var(--ff-body) !important;
  font-size: 0.95rem !important;
  color: var(--sst-slate-900) !important;
  transition: all 0.2s !important;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none !important;
  border-color: var(--sst-cyan-500) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(6,182,212,.1) !important;
}

.form-label {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--sst-slate-700) !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* ── POLICY PAGES ─────────────────────────────────────────────────────────── */
.policy-hero {
  background: var(--grad-hero) !important;
}

.policy-hero-title {
  font-family: var(--ff-head) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  color: #ffffff !important;
}

.policy-hero-sub {
  color: rgba(255,255,255,.7) !important;
}

.policy-section {
  background: #ffffff !important;
  border: 1px solid var(--sst-slate-200) !important;
  border-radius: var(--r-xl) !important;
  padding: 40px !important;
  margin-bottom: 24px !important;
  box-shadow: var(--shadow-sm) !important;
}

.policy-section h2 {
  color: var(--sst-navy-800) !important;
  font-weight: 700 !important;
  border-bottom: 2px solid var(--sst-slate-100) !important;
  padding-bottom: 16px !important;
  margin-bottom: 20px !important;
}

.policy-contact-box {
  background: var(--sst-navy-800) !important;
  border-radius: var(--r-xl) !important;
  border: 1px solid rgba(6,182,212,.2) !important;
}

.policy-contact-box h3,
.policy-contact-box p,
.policy-contact-box a {
  color: rgba(255,255,255,.8) !important;
}

.policy-contact-box a:hover {
  color: var(--sst-cyan-400) !important;
}

/* ── LOCATION / SEO PAGES ─────────────────────────────────────────────────── */
.location-hero,
.suburb-hero {
  background: var(--grad-hero) !important;
}

.location-card,
.suburb-card {
  background: #ffffff !important;
  border: 1px solid var(--sst-slate-200) !important;
  border-radius: var(--r-xl) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.3s !important;
}

.location-card:hover,
.suburb-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--sst-cyan-500) !important;
}

/* ── SCROLLBAR ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sst-slate-100); }
::-webkit-scrollbar-thumb {
  background: var(--sst-slate-400);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--sst-navy-600); }

/* ── SELECTION ────────────────────────────────────────────────────────────── */
::selection {
  background: rgba(6,182,212,.2);
  color: var(--sst-navy-900);
}

/* ── ANIMATIONS ───────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

.animate-fade-up {
  animation: fadeInUp 0.6s cubic-bezier(0.4,0,0.2,1) both;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  section, .section { padding: 64px 0 !important; }
  .hero { padding: 100px 0 80px !important; min-height: auto; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem) !important; }
  .quick-book { padding: 28px 20px !important; }
  .card-body, .card-content { padding: 24px !important; }
  .policy-section { padding: 28px 20px !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem !important; }
  .section-title { font-size: 1.75rem !important; }
  .btn-primary, .btn-gold { padding: 14px 28px !important; }
}

/* ── UTILITY OVERRIDES ────────────────────────────────────────────────────── */
/* Ensure no warm gold/yellow leaks through */
[style*="d4a63c"],
[style*="C9A96A"],
[style*="gold"],
[style*="#FFD700"] {
  color: var(--sst-cyan-500) !important;
}

/* Remove any remaining warm accent from inherited components */
.gold-divider,
.gold-line,
.accent-gold {
  background: var(--grad-accent) !important;
}

/* Section badge on dark backgrounds */
.dark-section .section-badge,
.section-dark .section-badge {
  background: rgba(6,182,212,.15) !important;
  border-color: rgba(6,182,212,.35) !important;
  color: var(--sst-cyan-400) !important;
}

/* Ensure links use new accent */
a:not(.btn):not(.nav-link):not(.pnav-link):not(.footer-link) {
  color: var(--sst-cyan-600);
  transition: color 0.2s;
}

a:not(.btn):not(.nav-link):not(.pnav-link):not(.footer-link):hover {
  color: var(--sst-cyan-500);
}

/* ── DARK SECTION TEXT VISIBILITY FIXES ──────────────────────────────────── */
/* Ensure accent spans are bright cyan (not dark navy) on dark backgrounds.   */
/* Applies to all dark section variants used across the site.                 */

.lux-section-dark .lux-gold-text,
.lux-section-dark .lux-title-white span,
.lux-section-dark .lux-section-title span,
.lux-section-dark .section-title span,
.lux-section-dark h2 span,
.lux-section-dark h3 span,
.section-dark .section-title span,
.section-dark h2 span,
.section-dark h3 span,
.dark-section .section-title span,
.dark-section h2 span,
.dark-section h3 span,
.cta-section .section-title span,
.cta-section h2 span,
[class*="dark"] .section-title span,
[class*="dark"] .lux-section-title span {
  color: var(--sst-cyan-400) !important;
  background: transparent !important;
  -webkit-text-fill-color: var(--sst-cyan-400) !important;
}

/* Ensure all text inside dark sections is white/light by default */
.lux-section-dark,
.lux-section-dark * {
  --section-title-color: #ffffff;
}

.lux-section-dark .lux-section-title,
.lux-section-dark .lux-title-white,
.lux-section-dark .section-title,
.section-dark .section-title,
.dark-section .section-title {
  color: #ffffff !important;
}

.lux-section-dark p,
.lux-section-dark .section-sub,
.lux-section-dark .lux-section-sub,
.section-dark p,
.section-dark .section-sub {
  color: rgba(255,255,255,.7) !important;
}

/* Fix section badges on dark backgrounds */
.lux-section-dark .lux-section-badge,
.lux-section-dark .section-badge,
.section-dark .section-badge {
  background: rgba(6,182,212,.15) !important;
  border-color: rgba(6,182,212,.35) !important;
  color: var(--sst-cyan-400) !important;
}

/* Fix why-choose / feature cards inside dark sections */
.lux-section-dark .lux-why-item,
.lux-section-dark .why-item,
.lux-section-dark .feature-card {
  background: rgba(255,255,255,.05) !important;
  border-color: rgba(255,255,255,.1) !important;
}

.lux-section-dark .lux-why-item:hover,
.lux-section-dark .why-item:hover {
  background: rgba(6,182,212,.1) !important;
  border-color: rgba(6,182,212,.3) !important;
}

.lux-section-dark .lux-why-title,
.lux-section-dark .why-item h3,
.lux-section-dark .lux-why-item h3 {
  color: #ffffff !important;
}

.lux-section-dark .lux-why-desc,
.lux-section-dark .why-item p,
.lux-section-dark .lux-why-item p {
  color: rgba(255,255,255,.65) !important;
}

.lux-section-dark .lux-why-icon,
.lux-section-dark .why-icon {
  background: rgba(6,182,212,.15) !important;
  color: var(--sst-cyan-400) !important;
}

/* Fix CTA sections */
.lux-cta-section,
.cta-section {
  background: var(--sst-navy-900) !important;
}

.lux-cta-section h2,
.lux-cta-section p,
.cta-section h2,
.cta-section p {
  color: #ffffff !important;
}

/* Fix any inline style highlight boxes on dark backgrounds */
.lux-section-dark span[style*="background"],
.section-dark span[style*="background"] {
  background: rgba(6,182,212,.2) !important;
  color: var(--sst-cyan-300) !important;
}

/* ── HARBOUR AUTHORITY ACCESSIBILITY LAYER ──────────────────────────────────
   Every visual treatment below must guarantee readable text against its actual
   rendered background. This is the source of truth for shared CTA, image,
   icon, and footer behaviour across the public website. */

body .pnav-header .pnav-menu-link,
body .pnav-header .pnav-menu-link svg {
  color: var(--sst-navy-700) !important;
}

body .pnav-header .pnav-menu-link:hover,
body .pnav-header .pnav-menu-link:hover svg {
  color: var(--sst-cyan-600) !important;
}

body .pnav-header .pnav-cta-btn,
body .pnav-header #sst-nav-btn,
body .pnav-cta-btn,
body #sst-nav-btn,
body .loc-hero-btn-primary,
body .loc-fare-cta,
body .lux-btn-primary,
body .lux-fare-btn {
  background: linear-gradient(135deg, #087fa3 0%, #16b5d6 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important;
}

body .pnav-header .pnav-cta-btn:hover,
body .pnav-header #sst-nav-btn:hover,
body .pnav-cta-btn:hover,
body #sst-nav-btn:hover,
body .loc-hero-btn-primary:hover,
body .loc-fare-cta:hover,
body .lux-btn-primary:hover,
body .lux-fare-btn:hover {
  background: #065f78 !important;
  color: #ffffff !important;
}

body .btn-outline,
body .loc-hero-btn-ghost,
body .lux-btn-ghost {
  color: #ffffff !important;
  border-color: rgba(255,255,255,.72) !important;
  background: rgba(5,13,26,.32) !important;
  -webkit-text-fill-color: #ffffff !important;
}

body .btn-outline:hover,
body .loc-hero-btn-ghost:hover,
body .lux-btn-ghost:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,.14) !important;
  border-color: #ffffff !important;
}

body .lux-hero,
body .loc-hero,
body .page-hero,
body .seo-hero {
  isolation: isolate;
}

body .lux-hero::after,
body .loc-hero-overlay,
body .page-hero::before,
body .seo-hero::before {
  background-color: rgba(3,11,24,.28) !important;
}

body .lux-hero-title,
body .loc-hero-title,
body .page-hero-title,
body .page-hero h1,
body [class*="hero"] h1 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.42) !important;
}

body .lux-hero-title span,
body .loc-hero-title span,
body .page-hero-title span,
body [class*="hero"] h1 span {
  color: var(--sst-cyan-300) !important;
  -webkit-text-fill-color: var(--sst-cyan-300) !important;
}

body .lux-hero-desc,
body .lux-hero-subtitle,
body .loc-hero-sub,
body .page-hero-sub,
body [class*="hero"] .hero-subtitle,
body [class*="hero"] .hero-desc {
  color: rgba(255,255,255,.88) !important;
  text-shadow: 0 1px 12px rgba(0,0,0,.35) !important;
}

/* Utility icons get clear circular fields instead of accidental square boxes. */
body .service-icon,
body .why-icon,
body .footer-social-btn,
body .footer-social-premium .footer-social-btn,
body .footer-contact-icon {
  border-radius: 999px !important;
}

body .service-icon,
body .why-icon {
  background: rgba(22,181,214,.10) !important;
  border: 1px solid rgba(22,181,214,.24) !important;
  color: #087fa3 !important;
}

body .footer-social-btn,
body .footer-social-premium .footer-social-btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 8px 0 0 !important;
  padding: 0 !important;
  background: rgba(255,255,255,.10) !important;
  color: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
}

body .footer-social-btn:hover,
body .footer-social-premium .footer-social-btn:hover {
  background: var(--sst-cyan-500) !important;
  color: var(--sst-navy-950) !important;
  border-color: var(--sst-cyan-400) !important;
}

body .footer-brand-desc,
body .footer-tagline,
body .footer-contact-value,
body .footer-bottom-text,
body .footer-bottom-disclaimer,
body .footer-copy {
  color: rgba(255,255,255,.76) !important;
}

body .footer-col-title,
body .footer-col-title-premium,
body .footer-contact-label {
  color: var(--sst-cyan-300) !important;
}

body .footer-links-premium a,
body .footer-links a,
body .footer-bottom a {
  color: rgba(255,255,255,.78) !important;
}

body .footer-links-premium a:hover,
body .footer-links a:hover,
body .footer-bottom a:hover {
  color: var(--sst-cyan-300) !important;
}

/* Contextual internal-link modules used on the Services and Locations hubs. */
.sst-route-finder {
  background: linear-gradient(135deg, #07182e 0%, #0d2d55 58%, #0a7898 150%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.sst-route-finder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  pointer-events: none;
}

.sst-route-finder .container { position: relative; z-index: 1; }
.sst-route-kicker { color: var(--sst-cyan-300); font-size: .72rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.sst-route-heading { color: #ffffff !important; max-width: 720px; margin: .45rem 0 .85rem; font-size: clamp(2rem, 4vw, 3rem); }
.sst-route-copy { color: rgba(255,255,255,.82) !important; max-width: 720px; margin-bottom: 2rem; }
.sst-route-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.sst-route-card { display: flex; flex-direction: column; min-height: 190px; padding: 22px; border: 1px solid rgba(255,255,255,.17); border-radius: 16px; background: rgba(255,255,255,.08); color: #ffffff !important; text-decoration: none !important; transition: transform .2s cubic-bezier(.23,1,.32,1), background .2s, border-color .2s; }
.sst-route-card:hover { transform: translateY(-4px); background: rgba(22,181,214,.18); border-color: var(--sst-cyan-300); color: #ffffff !important; }
.sst-route-card svg { width: 25px; height: 25px; color: var(--sst-cyan-300); margin-bottom: auto; }
.sst-route-card strong { color: #ffffff; font-size: 1.02rem; }
.sst-route-card span { color: rgba(255,255,255,.76); font-size: .84rem; line-height: 1.55; margin-top: .35rem; }
.sst-route-card em { color: var(--sst-cyan-300); font-style: normal; font-size: .78rem; font-weight: 700; margin-top: 1rem; }

@media (max-width: 900px) { .sst-route-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .sst-route-grid { grid-template-columns: 1fr; } .sst-route-card { min-height: 160px; } }
