/* ═══════════════════════════════════════════════════════════════════════
   SILVER SERVICE ONLINE — Premium Navigation CSS  v4.0
   WHITE header background — logo-native navy/silver palette
   ═══════════════════════════════════════════════════════════════════════ */

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

/* ── CSS VARIABLES ── */
:root {
  /* Site-native palette — WHITE header version */
  --pnav-navy:        #0F2A5C;
  --pnav-navy-mid:    #0F2A5C;
  --pnav-navy-light:  #1A3A6E;
  --pnav-navy-dark:   #071B3A;
  --pnav-silver:      #8A96A3;
  --pnav-silver-lt:   #A8B4C0;
  --pnav-white:       #ffffff;
  --pnav-black:       #050D1A;

  /* Header colours — WHITE background */
  --pnav-header-bg:   #ffffff;
  --pnav-header-text: #0F2A5C;
  --pnav-header-muted: rgba(15,42,92,.6);
  --pnav-header-border: rgba(15,42,92,.1);
  --pnav-header-hover-bg: rgba(15,42,92,.06);

  /* Topbar — dark navy strip at top */
  --pnav-topbar-bg:   #071B3A;

  /* Mega panel — dark navy */
  --pnav-panel-bg:    #06122A;
  --pnav-glass:       rgba(255,255,255,.98);

  /* Mobile panel — dark navy */
  --pnav-mob-bg:      #071B3A;

  /* Sizing */
  --pnav-h:           80px;
  --pnav-topbar-h:    38px;
  --pnav-ease:        cubic-bezier(.4,0,.2,1);
  --pnav-font:        'Plus Jakarta Sans','Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  --pnav-r:           10px;
  --pnav-shadow:      0 8px 40px rgba(15,42,92,.15), 0 2px 8px rgba(15,42,92,.08);
}

/* ── RESET ── */
.pnav-topbar *,
.pnav-header *,
.pnav-mega-wrap *,
.pnav-mobile-panel *,
.pnav-mobile-overlay,
.pnav-mega-backdrop,
.pnav-skip-link {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── SKIP LINK ── */
.pnav-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--pnav-navy-mid);
  color: var(--pnav-white);
  font-family: var(--pnav-font);
  font-size: .8rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: top .2s;
}
.pnav-skip-link:focus { top: 16px; }

/* ══════════════════════════════════════════════════════════════
   TOP ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════════════════ */
.pnav-topbar {
  width: 100%;
  height: var(--pnav-topbar-h);
  background: var(--pnav-topbar-bg);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}
.pnav-topbar-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pnav-topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pnav-topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--pnav-font);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255,255,255,.5);
}
.pnav-topbar-item svg {
  width: 11px;
  height: 11px;
  stroke: var(--pnav-silver);
  fill: none;
  flex-shrink: 0;
  stroke-width: 2;
}
.pnav-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pnav-topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--pnav-font);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.pnav-topbar-link:hover { color: var(--pnav-white); }
.pnav-topbar-link svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  stroke-width: 2;
}
.pnav-topbar-divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.1);
}

/* ══════════════════════════════════════════════════════════════
   MAIN HEADER — WHITE BACKGROUND, LOGO ALWAYS AT TOP
   ══════════════════════════════════════════════════════════════ */
.pnav-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--pnav-h);
  z-index: 1000;
  /* WHITE background — logo is dark so it shows perfectly */
  background: var(--pnav-header-bg);
  border-bottom: 1px solid var(--pnav-header-border);
  box-shadow: 0 2px 16px rgba(15,42,92,.1);
  transition: background .3s var(--pnav-ease),
              box-shadow .3s var(--pnav-ease);
  will-change: background, box-shadow;
}
.pnav-header.pnav-scrolled {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 4px 24px rgba(15,42,92,.12);
  border-bottom-color: rgba(15,42,92,.08);
}
/* Solid state (non-hero pages) */
.pnav-header.pnav-solid {
  background: var(--pnav-header-bg);
  box-shadow: 0 2px 16px rgba(15,42,92,.1);
}

.pnav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ══════════════════════════════════════════════════════════════
   LOGO — ALWAYS VISIBLE, NEVER PUSHED DOWN
   ══════════════════════════════════════════════════════════════ */
.pnav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  /* Ensure logo is always at the same vertical position */
  align-self: center;
  position: relative;
  z-index: 2;
}
.pnav-logo img {
  height: 62px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  /* Logo is dark navy on white — no filter needed */
  filter: none;
  transition: height .3s var(--pnav-ease);
}
.pnav-header.pnav-scrolled .pnav-logo img {
  height: 52px;
}

/* ══════════════════════════════════════════════════════════════
   DESKTOP NAV MENU
   ══════════════════════════════════════════════════════════════ */
.pnav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.pnav-menu-item {
  position: static;
}
.pnav-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--pnav-font);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  /* Dark navy text on white header */
  color: var(--pnav-header-text);
  text-decoration: none;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}
.pnav-menu-link:hover,
.pnav-menu-link.pnav-open,
.pnav-menu-link.pnav-active {
  color: var(--pnav-navy);
  background: var(--pnav-header-hover-bg);
}
.pnav-menu-link.pnav-active {
  color: var(--pnav-navy);
}
.pnav-chevron {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform .25s var(--pnav-ease), stroke .2s;
  flex-shrink: 0;
  opacity: .6;
}
.pnav-menu-link.pnav-open .pnav-chevron {
  transform: rotate(180deg);
}

/* ── BOOK NOW CTA BUTTON — navy on white header ── */
.pnav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--pnav-navy);
  color: #ffffff;
  font-family: var(--pnav-font);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15,42,92,.25);
  transition: background .2s, box-shadow .2s, transform .15s;
}
.pnav-cta-btn:hover {
  background: var(--pnav-navy-light);
  box-shadow: 0 4px 16px rgba(15,42,92,.35);
  transform: translateY(-1px);
}
.pnav-cta-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   HAMBURGER / CLOSE TOGGLE — PREMIUM WITH LOGO EFFECT
   ══════════════════════════════════════════════════════════════ */
.pnav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  /* White header: navy background for toggle button */
  background: var(--pnav-navy);
  border: none;
  box-shadow: 0 2px 8px rgba(15,42,92,.2);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
  transition: background .25s, box-shadow .25s, transform .15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.pnav-toggle:hover {
  background: var(--pnav-navy-light);
  box-shadow: 0 4px 14px rgba(15,42,92,.3);
  transform: scale(1.04);
}
.pnav-toggle:active { transform: scale(.97); }

/* The 3-line icon container */
.pnav-toggle-icon {
  width: 22px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Each hamburger line — white lines on navy button */
.pnav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  transform-origin: center;
  transition: transform .3s var(--pnav-ease),
              opacity .25s var(--pnav-ease),
              width .3s var(--pnav-ease),
              background .25s;
}

/* ── OPEN STATE: lines animate into premium X ── */
.pnav-toggle.pnav-toggle-open {
  background: var(--pnav-navy-dark);
  box-shadow: 0 4px 16px rgba(15,42,92,.3);
}
/* Top line → rotates to form / of X */
.pnav-toggle.pnav-toggle-open .pnav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 100%;
  background: #ffffff;
}
/* Middle line → fades out */
.pnav-toggle.pnav-toggle-open .pnav-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
/* Bottom line → rotates to form \ of X */
.pnav-toggle.pnav-toggle-open .pnav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 100%;
  background: #ffffff;
}

/* ══════════════════════════════════════════════════════════════
   MEGA MENU BACKDROP
   ══════════════════════════════════════════════════════════════ */
.pnav-mega-backdrop {
  position: fixed;
  inset: 0;
  top: calc(var(--pnav-topbar-h) + var(--pnav-h));
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--pnav-ease), visibility .3s;
  pointer-events: none;
}
.pnav-mega-backdrop.pnav-mega-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ══════════════════════════════════════════════════════════════
   MEGA MENU WRAP
   ══════════════════════════════════════════════════════════════ */
.pnav-mega-wrap {
  position: fixed;
  top: calc(var(--pnav-topbar-h) + var(--pnav-h));
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  pointer-events: none;
  /* Clip overflow so panel slides from top */
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--pnav-ease);
}
.pnav-mega-wrap.pnav-mega-active {
  max-height: 80vh;
  pointer-events: auto;
}
/* When scrolled, adjust top offset */
.pnav-mega-wrap.pnav-mega-scrolled {
  top: var(--pnav-h);
}

/* ── INDIVIDUAL MEGA PANELS ── */
.pnav-mega-panel {
  display: none;
  background: var(--pnav-panel-bg);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 16px 48px rgba(0,0,0,.45), 0 4px 16px rgba(0,0,0,.25);
  /* Top accent line in site navy */
  border-top: 3px solid var(--pnav-navy);
}
.pnav-mega-panel.pnav-panel-active {
  display: block;
  animation: pnavPanelIn .28s var(--pnav-ease) both;
}
@keyframes pnavPanelIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pnav-mega-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 28px;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES MEGA PANEL
   ══════════════════════════════════════════════════════════════ */
.pnav-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 280px;
  gap: 0;
}
.pnav-services-col {
  padding: 0 24px;
  border-right: 1px solid rgba(168,180,192,.07);
}
.pnav-services-col:first-child { padding-left: 0; }
.pnav-services-col:last-child  { border-right: none; }

.pnav-col-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pnav-font);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pnav-silver);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(168,180,192,.1);
}
.pnav-col-label svg {
  width: 13px;
  height: 13px;
  stroke: var(--pnav-silver);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.pnav-service-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .18s;
  margin-bottom: 2px;
}
.pnav-service-link:hover {
  background: rgba(168,180,192,.08);
}
.pnav-service-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(15,42,92,.6);
  border: 1px solid rgba(168,180,192,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
.pnav-service-link:hover .pnav-service-icon {
  background: rgba(26,58,110,.7);
}
.pnav-service-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--pnav-silver-lt);
  fill: none;
  stroke-width: 2;
}
.pnav-service-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pnav-service-title {
  font-family: var(--pnav-font);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  line-height: 1.2;
}
.pnav-service-desc {
  font-family: var(--pnav-font);
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,.42);
  line-height: 1.3;
}

/* Featured column */
.pnav-services-featured {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pnav-featured-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.pnav-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pnav-featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: var(--pnav-navy-mid);
  color: var(--pnav-silver-lt);
  font-family: var(--pnav-font);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid rgba(168,180,192,.2);
}
.pnav-featured-title {
  font-family: var(--pnav-font);
  font-size: .88rem;
  font-weight: 700;
  color: var(--pnav-white);
}
.pnav-featured-desc {
  font-family: var(--pnav-font);
  font-size: .72rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.pnav-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--pnav-navy-mid);
  color: var(--pnav-white);
  font-family: var(--pnav-font);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(168,180,192,.2);
  transition: background .2s, transform .15s;
  align-self: flex-start;
}
.pnav-featured-cta:hover {
  background: var(--pnav-navy-light);
  transform: translateX(2px);
}
.pnav-featured-cta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ══════════════════════════════════════════════════════════════
   LOCATIONS MEGA PANEL
   ══════════════════════════════════════════════════════════════ */
.pnav-locations-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

/* Map column */
.pnav-locations-map {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pnav-map-title {
  font-family: var(--pnav-font);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pnav-silver);
}
.pnav-map-graphic {
  background: rgba(7,27,58,.6);
  border: 1px solid rgba(168,180,192,.1);
  border-radius: 12px;
  padding: 12px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pnav-map-svg {
  width: 100%;
  max-height: 180px;
}
.pnav-map-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pnav-map-stat {
  background: rgba(15,42,92,.4);
  border: 1px solid rgba(168,180,192,.1);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
}
.pnav-map-stat-num {
  font-family: var(--pnav-font);
  font-size: .88rem;
  font-weight: 800;
  color: var(--pnav-silver-lt);
  line-height: 1;
}
.pnav-map-stat-lbl {
  font-family: var(--pnav-font);
  font-size: .6rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  margin-top: 3px;
  letter-spacing: .05em;
}

/* Regions */
.pnav-locations-regions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pnav-regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pnav-region-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pnav-region-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--pnav-font);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pnav-silver);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(168,180,192,.1);
}
.pnav-region-label svg {
  width: 12px;
  height: 12px;
  stroke: var(--pnav-silver);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.pnav-region-link {
  display: block;
  padding: 5px 8px;
  font-family: var(--pnav-font);
  font-size: .76rem;
  font-weight: 500;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  border-radius: 6px;
  transition: color .18s, background .18s, padding-left .18s;
}
.pnav-region-link:hover {
  color: var(--pnav-white);
  background: rgba(168,180,192,.08);
  padding-left: 12px;
}

/* Locations footer */
.pnav-locations-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(168,180,192,.08);
}
.pnav-viewall-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--pnav-navy-mid);
  color: var(--pnav-white);
  font-family: var(--pnav-font);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(168,180,192,.2);
  white-space: nowrap;
  transition: background .2s;
}
.pnav-viewall-btn:hover { background: var(--pnav-navy-light); }
.pnav-viewall-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}
.pnav-locations-tagline {
  font-family: var(--pnav-font);
  font-size: .72rem;
  color: rgba(255,255,255,.38);
}

/* ══════════════════════════════════════════════════════════════
   FLEET MEGA PANEL
   ══════════════════════════════════════════════════════════════ */
.pnav-fleet-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pnav-fleet-kicker {
  font-family: var(--pnav-font);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pnav-silver);
  margin-bottom: 4px;
}
.pnav-fleet-heading {
  font-family: var(--pnav-font);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pnav-white);
  letter-spacing: -.01em;
}
.pnav-fleet-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.pnav-fleet-card {
  background: rgba(15,42,92,.35);
  border: 1px solid rgba(168,180,192,.1);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.pnav-fleet-card:hover {
  background: rgba(26,58,110,.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  border-color: rgba(168,180,192,.2);
}
.pnav-fleet-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pnav-fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.pnav-fleet-card:hover .pnav-fleet-card-img img {
  transform: scale(1.04);
}
.pnav-fleet-card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pnav-fleet-card-name {
  font-family: var(--pnav-font);
  font-size: .74rem;
  font-weight: 700;
  color: var(--pnav-white);
  line-height: 1.2;
}
.pnav-fleet-card-specs {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pnav-fleet-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--pnav-font);
  font-size: .62rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
}
.pnav-fleet-spec svg {
  width: 10px;
  height: 10px;
  stroke: var(--pnav-silver);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.pnav-fleet-card-book {
  margin-top: auto;
  padding: 6px 10px;
  background: var(--pnav-navy-mid);
  color: var(--pnav-white);
  font-family: var(--pnav-font);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 6px;
  border: 1px solid rgba(168,180,192,.15);
  transition: background .18s;
}
.pnav-fleet-card:hover .pnav-fleet-card-book {
  background: var(--pnav-navy-light);
}

/* ══════════════════════════════════════════════════════════════
   MOBILE OVERLAY
   ══════════════════════════════════════════════════════════════ */
.pnav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--pnav-ease), visibility .3s;
}
.pnav-mobile-overlay.pnav-mob-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE PANEL — FULL SCREEN SLIDE-IN (dark navy panel)
   ══════════════════════════════════════════════════════════════ */
.pnav-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(92vw, 400px);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-left: 1px solid rgba(15,42,92,.12);
  box-shadow: -20px 0 60px rgba(0,0,0,.2);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform .3s var(--pnav-ease), visibility .3s;
  overflow: hidden;
}
.pnav-mobile-panel.pnav-mob-open {
  transform: translateX(0);
  visibility: visible;
}

/* Panel header */
.pnav-mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(16px + env(safe-area-inset-top, 0px)) 18px 14px;
  border-bottom: 1px solid rgba(15,42,92,.1);
  background: #ffffff;
  flex-shrink: 0;
}
.pnav-mob-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Logo is dark navy — shows perfectly on white panel */
  filter: none;
}
/* Close button — same premium style as hamburger */
.pnav-mob-close {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--pnav-navy);
  border: 1.5px solid rgba(15,42,92,.2);
  box-shadow: 0 2px 10px rgba(7,27,58,.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.pnav-mob-close:hover {
  background: var(--pnav-navy-mid);
  transform: scale(1.05);
}
.pnav-mob-close:active { transform: scale(.95); }
.pnav-mob-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* Panel body */
.pnav-mob-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #ffffff;
}

/* Nav items */
.pnav-mob-nav-item {
  border-radius: 10px;
  overflow: hidden;
}

/* Nav link / accordion button */
.pnav-mob-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 14px;
  background: #f4f7fc;
  border: 1px solid rgba(15,42,92,.1);
  border-radius: 10px;
  color: #0F2A5C;
  text-decoration: none;
  font-family: var(--pnav-font);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  -webkit-tap-highlight-color: transparent;
}
.pnav-mob-link:hover,
.pnav-mob-link.pnav-mob-open {
  background: #e8eef8;
  border-color: rgba(15,42,92,.2);
  color: #071B3A;
}

/* Link icon */
.pnav-mob-link-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #0F2A5C;
  border: 1px solid rgba(15,42,92,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pnav-mob-link-icon svg {
  width: 15px;
  height: 15px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
}
.pnav-mob-link-label {
  flex: 1;
  text-align: left;
}

/* Accordion chevron */
.pnav-mob-chevron {
  width: 14px;
  height: 14px;
  stroke: rgba(15,42,92,.4);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  transition: transform .25s var(--pnav-ease);
}
.pnav-mob-link.pnav-mob-open .pnav-mob-chevron {
  transform: rotate(180deg);
  stroke: #0F2A5C;
}

/* Accordion panel */
.pnav-mob-accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--pnav-ease);
  background: #eef2f9;
  border-radius: 0 0 10px 10px;
  margin-top: -4px;
}
.pnav-mob-accordion.pnav-mob-acc-open {
  max-height: 600px;
}
.pnav-mob-acc-inner {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Section labels inside accordion */
.pnav-mob-section-label {
  font-family: var(--pnav-font);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pnav-silver);
  padding: 10px 8px 4px;
  opacity: .7;
}
.pnav-mob-section-label:first-child { padding-top: 4px; }

/* Sub-links */
.pnav-mob-sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-family: var(--pnav-font);
  font-size: .76rem;
  font-weight: 500;
  color: rgba(15,42,92,.7);
  text-decoration: none;
  border-radius: 7px;
  transition: color .18s, background .18s;
}
.pnav-mob-sub-link:hover {
  color: #0F2A5C;
  background: rgba(15,42,92,.08);
}
.pnav-mob-sub-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(15,42,92,.3);
  flex-shrink: 0;
}

/* Book now CTA in mobile panel */
.pnav-mob-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  margin-top: 8px;
  background: var(--pnav-navy-mid);
  color: var(--pnav-white);
  font-family: var(--pnav-font);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(168,180,192,.2);
  box-shadow: 0 4px 16px rgba(7,27,58,.4);
  transition: background .2s, transform .15s;
}
.pnav-mob-book-btn:hover {
  background: var(--pnav-navy-light);
  transform: translateY(-1px);
}
.pnav-mob-book-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Panel footer */
.pnav-mob-footer {
  padding: 12px 14px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(15,42,92,.1);
  background: #f4f7fc;
  flex-shrink: 0;
}
.pnav-mob-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pnav-mob-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  background: #ffffff;
  border: 1px solid rgba(15,42,92,.12);
  border-radius: 10px;
  color: rgba(15,42,92,.75);
  font-family: var(--pnav-font);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.pnav-mob-contact-link:hover {
  background: #e8eef8;
  color: #0F2A5C;
}
.pnav-mob-contact-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--pnav-silver-lt);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   STICKY BOTTOM CTA BAR — DISABLED (display:none always)
   ══════════════════════════════════════════════════════════════ */
.pnav-sticky-cta {
  display: none !important;
}

/* ══════════════════════════════════════════════════════════════
   BODY SCROLL LOCK
   ══════════════════════════════════════════════════════════════ */
body.pnav-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ══════════════════════════════════════════════════════════════
   ACTIVE LINK STATE
   ══════════════════════════════════════════════════════════════ */
.pnav-menu-link.pnav-active,
.pnav-mob-sub-link.pnav-active,
.pnav-mob-link.pnav-active {
  color: var(--pnav-silver-lt);
}

/* ══════════════════════════════════════════════════════════════
   ACCESSIBILITY — FOCUS STYLES
   ══════════════════════════════════════════════════════════════ */
.pnav-menu-link:focus-visible,
.pnav-cta-btn:focus-visible,
.pnav-mob-link:focus-visible,
.pnav-mob-close:focus-visible,
.pnav-toggle:focus-visible,
.pnav-mob-book-btn:focus-visible {
  outline: 2px solid var(--pnav-silver-lt);
  outline-offset: 2px;
}

/* ══════════════════════════════════════════════════════════════
   PREVENT PREMIUM-NAV CSS FROM BREAKING OTHER PAGE ELEMENTS
   Scope all SVG fixes strictly to pnav elements
   ══════════════════════════════════════════════════════════════ */
/* Only constrain SVGs inside our nav components */
.pnav-topbar svg,
.pnav-header svg,
.pnav-mega-wrap svg,
.pnav-mobile-panel svg {
  max-width: none;
  max-height: none;
  overflow: visible;
}

/* Ensure footer SVGs on the page are NOT affected by our nav styles */
/* (We do NOT set any global svg rules) */

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .pnav-fleet-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .pnav-regions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pnav-services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .pnav-services-featured {
    display: none;
  }
}

@media (max-width: 1024px) {
  /* Hide desktop menu, show mobile toggle */
  .pnav-menu { display: none; }
  .pnav-toggle { display: flex; }
  .pnav-mega-wrap { display: none; }
  .pnav-cta-btn { display: none; }

  :root {
    --pnav-h: 70px;
  }
  .pnav-inner { padding: 0 18px; }
  .pnav-topbar-left .pnav-topbar-item:not(:first-child) {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Hide topbar on mobile — saves vertical space */
  .pnav-topbar { display: none; }
  :root {
    --pnav-topbar-h: 0px;
    --pnav-h: 64px;
  }
  .pnav-logo img {
    height: 50px;
  }
  .pnav-inner { padding: 0 16px; }
}

@media (max-width: 480px) {
  .pnav-mobile-panel {
    width: 100vw;
    border-left: none;
  }
  :root { --pnav-h: 60px; }
  .pnav-logo img { height: 44px; }
  .pnav-toggle {
    width: 42px;
    height: 42px;
  }
}

/* ══════════════════════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════════════════════ */
@media print {
  .pnav-header,
  .pnav-topbar,
  .pnav-mobile-overlay,
  .pnav-mobile-panel { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   HIDE OLD MOBILE MENU (#mob-panel / .sso-mobile-shop)
   The old mobile menu HTML is still in the DOM but its CSS
   (mobile-menu.css) is no longer loaded. Without CSS it renders
   as a huge block with giant SVG icons. Force-hide it here.
   ══════════════════════════════════════════════════════════════ */
#mob-panel,
.sso-mobile-shop,
.mob-overlay,
.mob-backdrop {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* ══════════════════════════════════════════════════════════════
   OVERRIDE OLD NAVBAR BODY PADDING-TOP (style.css v10/v11)
   The old .navbar was position:fixed so style.css added
   body { padding-top: var(--mobile-nav-h) } on mobile.
   Our new .pnav-header is position:sticky — NO body padding needed.
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body {
    padding-top: 0 !important;
  }
}
@media (max-width: 480px) {
  body {
    padding-top: 0 !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER PREMIUM — Complete CSS for footer-premium classes
   Dark navy footer (contrast with white header)
   These classes are in the site footer HTML but the CSS was
   only in mega-menu.css (not loaded). Defined here with site
   navy/silver colours — no gold.
   ══════════════════════════════════════════════════════════════ */
.footer-premium {
  background: linear-gradient(180deg, #071B3A 0%, #050F1E 100%);
  border-top: 2px solid rgba(168,180,192,.15);
  padding: 64px 0 0;
  font-family: var(--pnav-font);
  color: rgba(255,255,255,.65);
}
.footer-premium .footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}
.footer-premium .footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(168,180,192,.1);
  align-items: start;
}
.footer-premium .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-premium .footer-brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-premium .footer-brand-emblem {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(168,180,192,.1);
  border: 1px solid rgba(168,180,192,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-premium .footer-brand-emblem svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  stroke: var(--pnav-silver-lt);
  fill: none;
  stroke-width: 1.5;
}
.footer-premium .footer-brand-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-premium .footer-brand-name-top {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  text-transform: uppercase;
}
.footer-premium .footer-brand-name-sub {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pnav-silver);
}
.footer-premium .footer-brand-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 380px;
}
.footer-premium .footer-social-premium {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-premium .footer-social-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(168,180,192,.08);
  border: 1px solid rgba(168,180,192,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}
.footer-premium .footer-social-btn:hover {
  background: var(--pnav-navy-mid);
  border-color: var(--pnav-silver);
  color: #fff;
}
.footer-premium .footer-social-btn svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  flex-shrink: 0;
}
.footer-premium .footer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(168,180,192,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  align-self: start;
}
.footer-premium .footer-cta-text {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pnav-silver);
}
.footer-premium .footer-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(168,180,192,.08);
  border: 1px solid rgba(168,180,192,.2);
  color: #fff;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  transition: background .2s;
}
.footer-premium .footer-cta-phone:hover {
  background: rgba(168,180,192,.16);
}
.footer-premium .footer-cta-phone svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  stroke: var(--pnav-silver-lt);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.footer-premium .footer-cta-phone-number {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.footer-premium .footer-cta-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--pnav-navy-mid);
  border: 1px solid rgba(168,180,192,.25);
  color: #fff;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s;
}
.footer-premium .footer-cta-book:hover {
  background: var(--pnav-navy-light);
}
.footer-premium .footer-cta-book svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.footer-premium .footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 40px 0;
}
.footer-premium .footer-col-title-premium {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(168,180,192,.12);
}
.footer-premium .footer-col-title-premium svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  stroke: var(--pnav-silver);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.footer-premium .footer-links-premium {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.footer-premium .footer-links-premium li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-premium .footer-links-premium a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.48);
  text-decoration: none;
  padding: 3px 0;
  transition: color .2s, transform .2s;
}
.footer-premium .footer-links-premium a:hover {
  color: rgba(255,255,255,.9);
  transform: translateX(4px);
}
.footer-premium .footer-links-premium a svg {
  width: 11px !important;
  height: 11px !important;
  max-width: 11px !important;
  max-height: 11px !important;
  stroke: rgba(255,255,255,.28);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: stroke .2s;
}
.footer-premium .footer-links-premium a:hover svg {
  stroke: rgba(255,255,255,.7);
}
/* Override gold colour on "View All" link */
.footer-premium .footer-links-premium a[style*="gold"],
.footer-premium .footer-links-premium a[style*="--gold"] {
  color: var(--pnav-silver-lt) !important;
}
.footer-premium .footer-contact-premium {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-premium .footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-premium .footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(168,180,192,.08);
  border: 1px solid rgba(168,180,192,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-premium .footer-contact-icon svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  stroke: var(--pnav-silver);
  fill: none;
  stroke-width: 1.5;
}
.footer-premium .footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-premium .footer-contact-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
}
.footer-premium .footer-contact-value {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .2s;
  word-break: break-word;
}
.footer-premium .footer-contact-value:hover { color: #fff; }
.footer-premium .footer-bottom-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(168,180,192,.1);
  flex-wrap: wrap;
}
.footer-premium .footer-bottom-left {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-premium .footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-premium .footer-bottom-right a {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}
.footer-premium .footer-bottom-right a:hover { color: rgba(255,255,255,.7); }

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-premium .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-premium .footer-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .footer-premium { padding: 48px 0 0; }
  .footer-premium .footer-inner { padding: 0 16px; }
  .footer-premium .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0;
  }
  .footer-premium .footer-bottom-premium {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0 24px;
  }
}
