/* ============================================================
   components.css — Right of Way Driving School
   All shared component styles:
     A) Header
     B) Road Background
     C) Neon Footer
     D) Lesson Details Container
     E) Terms & Privacy Containers
     F) E-Transfer Section
     G) SimplyBook Widget Embed
   ============================================================ */


/* ============================================================
   A) HEADER
   ============================================================ */

* {
  -webkit-tap-highlight-color: transparent;
}

.site-header * {
  box-sizing: border-box;
}

.site-header,
.mobile-nav-menu {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  background: transparent;
  transition: background 0.35s cubic-bezier(0.22,0.61,0.36,1), padding 0.35s cubic-bezier(0.22,0.61,0.36,1), border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 11, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Horizontal lockup: cropped header asset /assets/ROW-header-cropped.png */
.logo-brand {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(165px, 52vw);
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  transition: height .3s ease, max-width .3s ease;
}

.site-header.scrolled .logo-brand {
  height: 42px;
  max-width: min(148px, 50vw);
}

.main-nav {
  flex-grow: 1;
}

.main-nav > ul {
  list-style: none !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 0;
  margin: 0;
}

.main-nav li {
  margin-left: 25px;
  position: relative;
  list-style: none;
}

/* Primary nav links: premium hover + persistent active (underline + glow, white text — not cyan) */
.site-header .main-nav > ul > li > a:not(.btn-book-now) {
  color: rgba(200, 211, 224, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0 2px 12px;
  position: relative;
  transition:
    color 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-header .main-nav > ul > li > a:not(.btn-book-now)::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 140%;
  max-width: calc(100% + 18px);
  height: 14px;
  pointer-events: none;
  background: radial-gradient(
    ellipse 65% 45% at 50% 100%,
    rgba(0, 212, 255, 0.55) 0%,
    rgba(0, 212, 255, 0.15) 45%,
    transparent 72%
  );
  filter: blur(5px);
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-header .main-nav > ul > li > a:not(.btn-book-now)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: calc(100% + 10px);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--r-accent, #00d4ff) 25%,
    var(--r-accent, #00d4ff) 75%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(0, 212, 255, 0.95),
    0 0 22px rgba(0, 212, 255, 0.35);
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-header .main-nav > ul > li > a:not(.btn-book-now):hover,
.site-header .main-nav > ul > li > a:not(.btn-book-now):focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
}

.site-header .main-nav > ul > li > a:not(.btn-book-now):hover::before,
.site-header .main-nav > ul > li > a:not(.btn-book-now):hover::after,
.site-header .main-nav > ul > li > a:not(.btn-book-now):focus-visible::before,
.site-header .main-nav > ul > li > a:not(.btn-book-now):focus-visible::after,
.site-header .main-nav > ul > li > a:not(.btn-book-now).nav-link-active::before,
.site-header .main-nav > ul > li > a:not(.btn-book-now).nav-link-active::after,
.site-header .main-nav > ul > li > a:not(.btn-book-now)[aria-current="page"]::before,
.site-header .main-nav > ul > li > a:not(.btn-book-now)[aria-current="page"]::after {
  opacity: 1;
}

.site-header .main-nav > ul > li > a:not(.btn-book-now).nav-link-active,
.site-header .main-nav > ul > li > a:not(.btn-book-now)[aria-current="page"],
.site-header .main-nav > ul > li > a:not(.btn-book-now).nav-link-active:hover,
.site-header .main-nav > ul > li > a:not(.btn-book-now)[aria-current="page"]:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.main-nav a:hover .dropdown-arrow {
  border-color: #00FFFF;
}

/* Desktop Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(12, 14, 45, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
  min-width: 300px;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dropdown-menu a {
  font-size: 15px;
  white-space: normal;
  padding: 8px 5px;
}

.dropdown-menu a:hover {
  color: #00FFFF;
  background: transparent;
}

.dropdown-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: .3s;
}

.dropdown:hover > a .dropdown-arrow {
  transform: rotate(-135deg);
  margin-top: 4px;
  border-color: #00FFFF;
}

/* Desktop Book Button */
.site-header .main-nav .btn-book-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22,0.61,0.36,1);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-text {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #000;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  text-shadow: none;
}

.site-header .main-nav .btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
  background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.site-header .main-nav .btn-book-now:hover .btn-text {
  color: #000;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  text-shadow: none;
}

/* Mobile Elements (hidden on desktop) */
.btn-book-now-mobile {
  display: none;
}

.burger-menu {
  display: none;
}

/* Mobile Nav Menu */
.mobile-nav-menu {
  position: fixed;
  right: 12px;
  top: var(--menu-top, 90px);
  width: 320px;
  max-width: calc(100vw - 24px);
  z-index: 9999;
  background: rgba(12, 14, 45, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: .25s ease;
  height: auto;
  max-height: var(--menu-maxh, 70vh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  pointer-events: none;
}

.mobile-nav-menu.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-menu ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu li:last-child {
  border-bottom: none;
}

.mobile-nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-menu > ul > li > a:not(.highlight-link).nav-link-active,
.mobile-nav-menu > ul > li > a:not(.highlight-link)[aria-current="page"] {
  color: #ffffff !important;
  border-left: 3px solid var(--r-accent, #00d4ff);
  padding-left: 12px;
  margin-left: -3px;
  background: rgba(0, 212, 255, 0.07);
}

.mobile-nav-menu .dropdown-arrow {
  width: 5px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 10px;
  transition: .25s;
}

.mobile-nav-menu .has-submenu.is-open > a {
  color: #00FFFF;
}

.mobile-nav-menu .has-submenu.is-open > a .dropdown-arrow {
  transform: rotate(-135deg);
  border-color: #00FFFF;
}

/* Mobile Submenu */
.mobile-submenu {
  list-style: none !important;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: rgba(0, 0, 0, 0.2);
}

.has-submenu.is-open .mobile-submenu {
  max-height: 520px;
  padding: 10px 0;
}

.mobile-submenu a {
  font-size: 14px;
  font-weight: 400;
  padding: 8px 10px 8px 25px;
}

/* Header Mobile Responsive */
@media (max-width: 768px) {
  .main-nav,
  .btn-book-now {
    display: none;
  }

  .btn-book-now-mobile,
  .burger-menu {
    display: flex;
  }

  .site-header {
    padding: 12px 16px;
  }

  .site-header.scrolled {
    padding: 8px 16px;
  }

  .site-header .container {
    justify-content: space-between;
    gap: 10px;
  }

  .logo-brand {
    height: 40px;
    max-width: min(138px, 48vw);
  }

  .site-header.scrolled .logo-brand {
    height: 36px;
    max-width: min(124px, 46vw);
  }

  .btn-book-now-mobile {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border: none;
    min-width: 0;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 8px;
    color: #000;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.25);
  }

  .btn-book-now-mobile .btn-text {
    color: #000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .btn-book-now-mobile:hover {
    box-shadow: 0 6px 24px rgba(0, 212, 255, 0.4);
  }

  .burger-menu {
    height: 44px;
    width: 44px;
    border-radius: 10px;
    z-index: 10001;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 5px 0;
    cursor: pointer;
    flex: 0 0 44px;
  }

  .burger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .burger-icon span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .25s;
  }

  .burger-text {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    transition: .25s;
  }

  .burger-menu.is-active .burger-text {
    opacity: 0;
    height: 0;
  }

  .burger-menu.is-active {
    gap: 0;
  }

  .burger-menu.is-active .burger-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger-menu.is-active .burger-icon span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.is-active .burger-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}


/* ============================================================
   B) ROAD BACKGROUND
   ============================================================ */

#road-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -999;
  background: linear-gradient(to bottom, #01050a 0%, #0a1829 100%);
  overflow: hidden;
  perspective: 1000px;
  transform: translateZ(0);
}

#horizon-glow {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

#road-surface {
  position: absolute;
  bottom: -30%;
  left: 50%;
  width: 60vw;
  min-width: 800px;
  height: 200%;
  transform: translateX(-50%) rotateX(82deg);
  transform-origin: bottom center;
  will-change: background-position;
  background-image:
    linear-gradient(90deg, #ffffff 0%, transparent 100%),
    linear-gradient(-90deg, #ffffff 0%, transparent 100%),
    linear-gradient(180deg, #00d4ff 0%, #00d4ff 30%, transparent 30%, transparent 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, transparent 25%),
    linear-gradient(-90deg, rgba(0, 0, 0, 0.9) 0%, transparent 25%);
  background-size:
    18px 100%,
    18px 100%,
    14px 400px,
    100% 100%,
    100% 100%;
  background-repeat: no-repeat, no-repeat, repeat-y, no-repeat, no-repeat;
  background-position: left top, right top, center top, left top, right top;
  animation: drive 3s linear infinite;
  -webkit-mask-image: linear-gradient(to top, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to top, black 40%, black 60%, transparent 100%);
}

@keyframes drive {
  0% {
    background-position: left top, right top, center 0px, left top, right top;
  }
  100% {
    background-position: left top, right top, center 400px, left top, right top;
  }
}

#vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 45%, #000000 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  #road-surface {
    width: 100vw;
    min-width: 0;
    bottom: -20%;
    transform: translateX(-50%) rotateX(78deg);
    background-size:
      12px 100%,
      12px 100%,
      10px 250px,
      100% 100%,
      100% 100%;
    animation: drive-mob 3s linear infinite;
  }

  @keyframes drive-mob {
    0% {
      background-position: left top, right top, center 0px, left top, right top;
    }
    100% {
      background-position: left top, right top, center 250px, left top, right top;
    }
  }
}


/* ============================================================
   C) NEON FOOTER
   ============================================================ */

.neon-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: #050a14;
  color: #e0e0e0;
  padding: 36px 24px 22px;
  font-family: 'Inter', 'Poppins', sans-serif;
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  box-shadow: 0 -1px 20px rgba(0, 212, 255, 0.06);
  position: relative;
  z-index: 10;
}

.neon-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
  pointer-events: none;
}

.footer-map-compact {
  margin-top: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 0;
}

.footer-map-compact iframe {
  width: 100%;
  height: 120px;
  display: block;
  border: none;
  filter: brightness(0.7) contrast(1.1) saturate(0.6);
  transition: filter 0.3s ease;
}

.footer-map-compact iframe:hover {
  filter: brightness(0.85) contrast(1.05) saturate(0.8);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  gap: 28px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h4 {
  font-size: 13px;
  margin-bottom: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00d4ff;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  border-bottom: none;
  padding-bottom: 0;
  display: block;
}

.footer-column p {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(136, 153, 170, 0.8);
  max-width: 360px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul a {
  color: rgba(178, 196, 214, 0.95);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-column ul a:hover {
  color: #fff;
}

/* Sits after .footer-container: bottom of footer on mobile; lower band on desktop */
.footer-copyright {
  box-sizing: border-box;
  max-width: 1300px;
  width: 100%;
  margin: 16px auto 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(148, 164, 182, 0.88);
  text-align: left;
}

/* Quick Links only: true 2-column grid inside the middle footer column (desktop). */
@media (min-width: 769px) {
  .footer-container > .footer-column:nth-child(2) .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 0;
    align-content: start;
  }

  .footer-container > .footer-column:nth-child(2) .footer-links li {
    margin-bottom: 8px;
  }
}

.highlight-link {
  color: #00d4ff !important;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.highlight-link:hover {
  color: #fff !important;
}

/* Footer Quick Links: match all links (no Book Online highlight in footer only) */
.footer-container > .footer-column:nth-child(2) .footer-links a.highlight-link {
  color: rgba(178, 196, 214, 0.95) !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
}

.footer-container > .footer-column:nth-child(2) .footer-links a.highlight-link:hover {
  color: #fff !important;
}

.contact-info li {
  display: flex;
  align-items: center;
}

.contact-info .icon-svg,
.contact-info i {
  color: #00e5ff;
  margin-right: 15px;
  font-size: 18px;
  width: 25px;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.4);
}

.social-links {
  margin-top: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: rgba(0, 180, 255, 0.2);
  border-color: #00e5ff;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
  transform: translateY(-3px);
}

.social-links .icon-svg {
  width: 20px;
  height: 20px;
  margin: 0;
  color: #00e5ff;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
    gap: 26px;
  }

  .footer-column {
    min-width: 0;
  }

  .footer-column p {
    max-width: 100%;
  }

  .footer-container > .footer-column:nth-child(2) h4 {
    text-align: center;
    width: 100%;
  }

  .footer-container > .footer-column:nth-child(2) .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 2px;
  }

  .footer-container > .footer-column:nth-child(2) .footer-links li {
    margin-bottom: 10px;
  }

  .contact-info li {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
  }

  .contact-info .icon-svg,
  .contact-info i {
    margin-right: 0;
    width: 20px;
    min-width: 20px;
    margin-top: 2px;
    text-align: center;
  }

  .footer-map-compact {
    margin-top: 18px;
  }

  .social-links {
    margin-top: 16px;
  }
}


/* ============================================================
   D) LESSON DETAILS CONTAINER (shared by all service pages)
   ============================================================ */

.lesson-details-container {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: #DADADA;
  background-color: rgba(6, 7, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 40px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.lesson-details-container h1 {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: #FFFFFF;
  font-size: 2.8em;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.2;
  background: linear-gradient(90deg, #6DE2FF, #8975C6, #6DE2FF);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-flow 5s linear infinite;
}

.lesson-details-container .intro-text {
  text-align: center;
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #c5c5c5;
}

.lesson-details-container details {
  border-bottom: 1px solid #FFFFFF2E;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.lesson-details-container summary {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: #6EC1E4;
  font-size: 2.0em;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.lesson-details-container summary::-webkit-details-marker {
  display: none;
}

.lesson-details-container summary::after {
  content: '+';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: 400;
  transition: transform 0.2s ease-in-out;
}

.lesson-details-container details[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.lesson-details-container .details-content {
  padding-top: 20px;
}

.lesson-details-container ul {
  list-style: none;
  padding: 0;
}

.lesson-details-container ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 25px;
  font-size: 1.05em;
  line-height: 1.6;
}

/* Default lesson list icon */
.lesson-details-container ul li::before {
  content: '🎯';
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 1.2em;
}

.lesson-details-container ul li strong {
  display: block;
  margin-bottom: 4px;
  color: #EAEAEA;
}

.lesson-details-container .you-decide-text {
  text-align: center;
  font-size: 1.1em;
  line-height: 1.6;
  margin-top: 25px;
  color: #c5c5c5;
  font-style: italic;
}

.lesson-details-container .final-pitch {
  font-size: 1.2em;
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: rgba(109, 226, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(109, 226, 255, 0.1);
}

/* Lesson Details — responsive */
@media (max-width: 767px) {
  .lesson-details-container {
    padding: 25px 20px;
  }

  .lesson-details-container h1 {
    font-size: 2.2em;
  }

  .lesson-details-container summary {
    font-size: 1.7em;
  }

  .lesson-details-container .intro-text,
  .lesson-details-container .you-decide-text,
  .lesson-details-container ul li,
  .lesson-details-container .final-pitch {
    font-size: 1em;
  }
}

/* Per-page lesson icon modifiers */
.lesson-icon-focus .lesson-details-container ul li::before {
  content: '🎯';
}

.lesson-icon-core .lesson-details-container ul li::before {
  content: '⭐';
}

.lesson-icon-mastery .lesson-details-container ul li::before {
  content: '🏆';
}

.lesson-icon-class7 .lesson-details-container ul li::before {
  content: '📝';
}

.lesson-icon-class5 .lesson-details-container ul li::before {
  content: '🎓';
}

.lesson-icon-combo .lesson-details-container ul li::before {
  content: '🔑';
}

.lesson-icon-defensive .lesson-details-container ul li::before {
  content: '🛡️';
}

.lesson-icon-winter .lesson-details-container ul li::before {
  content: '❄️';
}


/* ============================================================
   E) TERMS & PRIVACY CONTAINERS (shared styles)
   ============================================================ */

/* Shared wrapper styles */
.terms-dark-wrapper,
.privacy-dark-wrapper {
  padding: 40px 20px;
  font-family: 'Inter', 'Poppins', sans-serif;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Shared neon container (glass card) */
.terms-neon-container,
.privacy-neon-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 180, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 180, 255, 0.15), inset 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

.privacy-neon-container {
  max-width: 900px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(0, 180, 255, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.5);
}

/* H1 — orange gradient text */
.terms-neon-container h1,
.privacy-neon-container h1 {
  font-size: 3em;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #ffaa00, #ff6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.privacy-neon-container h1 {
  font-size: 2.8em;
  filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.6));
}

/* Sub-header (Terms) */
.sub-header {
  text-align: center;
  color: #00e5ff;
  font-size: 1.1em;
  margin-bottom: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Last-updated (Privacy) */
.last-updated {
  text-align: center;
  color: #aaa;
  font-size: 0.9em;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

/* H2 — Terms style (with left bar via ::before) */
.terms-neon-container h2 {
  font-size: 1.8em;
  color: #ff9900;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 153, 0, 0.3);
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.terms-neon-container h2::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 30px;
  background: #00e5ff;
  margin-right: 15px;
  box-shadow: 0 0 10px #00e5ff;
  border-radius: 2px;
}

/* H2 — Privacy style (left border accent) */
.privacy-neon-container h2 {
  font-size: 1.6em;
  color: #ff9900;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  border-left: 4px solid #ff9900;
  padding-left: 15px;
}

/* H3 — Privacy */
.privacy-neon-container h3 {
  font-size: 1.2em;
  color: #4fc3f7;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Body text */
.terms-neon-container p,
.terms-neon-container li {
  font-size: 16px;
  margin-bottom: 15px;
  color: #dcdcdc;
}

.privacy-neon-container p,
.privacy-neon-container li {
  font-size: 16px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

/* Lists — Terms */
.terms-neon-container ul {
  list-style: none;
  padding-left: 20px;
}

.terms-neon-container li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.terms-neon-container li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00e5ff;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.6);
}

/* Lists — Privacy */
.privacy-neon-container ul {
  list-style-type: none;
  padding-left: 20px;
}

.privacy-neon-container li {
  position: relative;
  padding-left: 25px;
}

.privacy-neon-container li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #ff9900;
  font-size: 0.8em;
  top: 3px;
}

/* Price Box (Terms) */
.price-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.price-box:hover {
  transform: translateY(-2px);
  border-color: #00e5ff;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.price-title {
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}

.price-value {
  color: #ffaa00;
  font-size: 1.4em;
  font-weight: 800;
}

.gst-note {
  font-size: 0.8em;
  color: #aaa;
}

/* Warning Box (Terms) */
.warning-box {
  background: rgba(255, 50, 50, 0.1);
  border-left: 4px solid #ff3333;
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 10px 10px 0;
}

.warning-title {
  color: #ff3333;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 0 8px rgba(255, 50, 50, 0.4);
}

/* Important Note (Privacy) */
.important-note {
  background: rgba(255, 165, 0, 0.15);
  padding: 20px;
  border: 1px solid #ff9900;
  border-radius: 10px;
  color: #ffcc80;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.1);
}

/* Links — Terms */
.terms-neon-container a {
  color: #00e5ff;
  text-decoration: none;
  border-bottom: 1px dashed #00e5ff;
}

.terms-neon-container a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

/* Links — Privacy */
.privacy-neon-container a {
  color: #00e5ff;
  text-decoration: none;
  border-bottom: 1px dashed #00e5ff;
  transition: all 0.3s ease;
}

.privacy-neon-container a:hover {
  color: #fff;
  text-shadow: 0 0 10px #00e5ff;
  border-bottom: 1px solid #fff;
}

/* Terms & Privacy — responsive */
@media (max-width: 768px) {
  .terms-neon-container {
    padding: 25px 20px;
  }

  .terms-neon-container h1 {
    font-size: 2.2em;
  }

  .terms-neon-container h2 {
    font-size: 1.4em;
  }

  .privacy-neon-container {
    padding: 20px 15px;
  }

  .privacy-neon-container h1 {
    font-size: 2em;
  }
}


/* ============================================================
   F) E-TRANSFER SECTION
   ============================================================ */

#row-etransfer-v2 {
  --et-bg: rgba(255, 255, 255, 0.04);
  --et-border: rgba(255, 255, 255, 0.12);
  --et-text: #f4f7fb;
  --et-muted: rgba(244, 247, 251, 0.78);
  --et-strong: #ffffff;
  --et-cyan: #00d4ff;
  --et-cyan-dim: rgba(0, 212, 255, 0.16);
  --et-amber: #f59e0b;
  --et-amber-dim: rgba(245, 158, 11, 0.16);
  --et-radius: 18px;
  --et-radius-sm: 14px;
  width: 100%;
  padding: 44px 18px 40px;
  color: var(--et-text);
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#row-etransfer-v2 *,
#row-etransfer-v2 *::before,
#row-etransfer-v2 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  #row-etransfer-v2 * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

#row-etransfer-v2 .et-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

#row-etransfer-v2 .et-header {
  text-align: center;
  margin-bottom: 22px;
}

#row-etransfer-v2 .et-title {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--et-strong);
}

#row-etransfer-v2 .et-sub {
  margin-top: 12px;
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  color: var(--et-muted);
}

#row-etransfer-v2 .et-sub em {
  font-style: normal;
  color: var(--et-cyan);
  font-weight: 850;
}

#row-etransfer-v2 .et-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

#row-etransfer-v2 .et-block {
  position: relative;
  border-radius: var(--et-radius);
  border: 1px solid var(--et-border);
  background: var(--et-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  padding: 18px 18px 16px;
  overflow: hidden;
}

#row-etransfer-v2 .et-block::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(900px 260px at 15% 0%, rgba(0, 212, 255, 0.12), transparent 55%),
    radial-gradient(900px 260px at 85% 0%, rgba(245, 158, 11, 0.08), transparent 60%);
  opacity: 0.95;
}

#row-etransfer-v2 .et-block > * {
  position: relative;
  z-index: 1;
}

#row-etransfer-v2 .et-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.72);
  margin-bottom: 10px;
}

#row-etransfer-v2 .et-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--et-cyan);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.35);
}

#row-etransfer-v2 .et-h {
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--et-strong);
  line-height: 1.15;
}

#row-etransfer-v2 .et-p {
  margin-top: 10px;
  font-size: clamp(1.02rem, 2.2vw, 1.14rem);
  line-height: 1.6;
  color: var(--et-muted);
}

#row-etransfer-v2 .et-p strong {
  color: var(--et-strong);
  font-weight: 900;
}

#row-etransfer-v2 .et-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

@media (min-width: 760px) {
  #row-etransfer-v2 .et-actions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

#row-etransfer-v2 .et-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.34);
  background: rgba(0, 212, 255, 0.10);
  text-decoration: none;
  color: #fff;
  font-weight: 950;
  font-size: clamp(1.02rem, 2.2vw, 1.15rem);
  letter-spacing: 0.01em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  user-select: text;
}

#row-etransfer-v2 .et-chip small {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.76);
}

#row-etransfer-v2 .et-chip span {
  overflow-wrap: anywhere;
}

#row-etransfer-v2 .et-chip--amber {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.10);
}

@media (hover: hover) {
  #row-etransfer-v2 .et-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 212, 255, 0.55);
    background: rgba(0, 212, 255, 0.14);
  }

  #row-etransfer-v2 .et-chip--amber:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 158, 11, 0.55);
    background: rgba(245, 158, 11, 0.14);
  }
}

#row-etransfer-v2 .et-note {
  margin-top: 14px;
  border-radius: var(--et-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  padding: 14px 14px;
}

#row-etransfer-v2 .et-note .et-note-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

#row-etransfer-v2 .et-check {
  flex: 0 0 22px;
  height: 22px;
  border-radius: 999px;
  margin-top: 3px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

#row-etransfer-v2 .et-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--et-cyan);
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#row-etransfer-v2 .et-note p {
  font-size: clamp(1.03rem, 2.2vw, 1.16rem);
  line-height: 1.6;
  color: rgba(244, 247, 251, 0.86);
}

#row-etransfer-v2 .et-note strong {
  color: #fff;
  font-weight: 950;
}

#row-etransfer-v2 .et-deadline .et-dot {
  background: var(--et-amber);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.28);
}

#row-etransfer-v2 .et-deadline {
  border-color: rgba(245, 158, 11, 0.20);
}

#row-etransfer-v2 .et-deadline .et-badge {
  margin-top: 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.30);
  background: rgba(245, 158, 11, 0.10);
}

#row-etransfer-v2 .et-deadline .et-badge b {
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 980;
  color: #fff;
  letter-spacing: -0.02em;
}

#row-etransfer-v2 .et-deadline .et-badge span {
  font-size: 1.02rem;
  color: rgba(244, 247, 251, 0.88);
  font-weight: 750;
}

#row-etransfer-v2 .et-warning {
  margin-top: 12px;
  font-size: clamp(1.02rem, 2.2vw, 1.14rem);
  line-height: 1.6;
  color: rgba(244, 247, 251, 0.82);
}

#row-etransfer-v2 .et-warning em {
  font-style: normal;
  color: rgba(245, 158, 11, 0.98);
  font-weight: 950;
}

#row-etransfer-v2 .et-help .et-dot {
  background: var(--et-cyan);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.35);
}

#row-etransfer-v2 .et-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 212, 255, 0.42);
  background: rgba(0, 212, 255, 0.12);
  color: #fff;
  font-weight: 980;
  font-size: clamp(1.05rem, 2.3vw, 1.2rem);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

#row-etransfer-v2 .et-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--et-cyan);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (hover: hover) {
  #row-etransfer-v2 .et-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 212, 255, 0.62);
    background: rgba(0, 212, 255, 0.16);
  }
}

#row-etransfer-v2 a:focus-visible {
  outline: 2px solid rgba(0, 212, 255, 0.8);
  outline-offset: 4px;
}


/* ============================================================
   G) SIMPLYBOOK WIDGET EMBED
   ============================================================ */

.simplybook-widget-container {
  min-height: 800px;
  width: 100%;
  margin-top: 30px;
  overflow: visible;
}

.simplybook-widget-container iframe {
  min-height: 800px;
  width: 100% !important;
  border: none !important;
}

@media (max-width: 768px) {
  .simplybook-widget-container {
    min-height: 1200px;
  }
  .simplybook-widget-container iframe {
    min-height: 1200px;
  }
}

.simplybook-widget-container--tall {
  min-height: 1400px;
  overflow: visible;
}

.simplybook-widget-container--tall iframe {
  min-height: 1400px;
}

.booking-fallback {
  text-align: center;
  margin: 20px 0;
  font-size: 15px;
  color: var(--r-text-muted, #94a3b8);
}

.booking-fallback a {
  color: var(--r-accent, #00d4ff);
  text-decoration: underline;
}


/* --- G2) Zone badge (service pages, zone-aware) --- */

.zone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(0, 212, 255, 0.06);
  color: var(--r-accent, #00d4ff);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.zone-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--r-accent, #00d4ff);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.zone-unavailable {
  text-align: center;
  padding: 60px 24px;
}

.zone-unavailable-title {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.zone-unavailable-link {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--r-accent, #00d4ff);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.zone-unavailable-link:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.5);
}


/* --- H) Package lazy-load iframe container --- */

.pkg-iframe-wrap {
  position: relative;
  width: 100%;
  min-height: 1050px;
  border-radius: 16px;
  overflow: hidden;
  background: #1b1f25;
  border: 1px solid rgba(0, 212, 255, 0.12);
}

.pkg-iframe-wrap iframe {
  width: 100%;
  height: 1100px;
  border: none;
  border-radius: 16px;
}

.pkg-iframe-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  z-index: 1;
  pointer-events: none;
}


/* ============================================================
   H) FIXED-HEADER CONTENT OFFSET
   Prevents .site-header from overlapping page content.
   Uses sibling selector for higher specificity than layout.css.
   ============================================================ */

.site-header ~ main {
  padding-top: 90px;
}

.site-header ~ main.has-hero {
  padding-top: 0;
}

[id] {
  scroll-margin-top: 92px;
}

@media (max-width: 768px) {
  .site-header ~ main {
    padding-top: 80px;
  }

  .site-header ~ main.has-hero {
    padding-top: 0;
  }

  [id] {
    scroll-margin-top: 82px;
  }
}


/* ============================================================
   I) RELATED SERVICES BLOCK (service page cross-linking)
   ============================================================ */

.related-services {
  box-sizing: border-box;
  width: 100%;
  max-width: 1300px;
  margin: 36px auto 0;
  padding: 24px 28px;
  background: rgba(6, 7, 29, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.related-services-heading {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(109, 226, 255, 0.65);
  margin: 0 0 14px;
  text-align: center;
}

.related-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}

.related-service-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  background: rgba(0, 212, 255, 0.04);
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 0;
  flex: 1 1 140px;
  max-width: 220px;
}

.related-service-link:hover {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.15);
}

.related-service-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.related-service-desc {
  font-size: 12px;
  color: rgba(136, 153, 170, 0.8);
  margin-top: 2px;
}

.choosing-guide {
  font-size: 1em;
  line-height: 1.7;
  color: #b0b8c2;
  margin-top: 24px;
  padding: 16px 20px;
  border-left: 3px solid rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.03);
  border-radius: 0 10px 10px 0;
}

.choosing-guide a {
  color: #6EC1E4;
  text-decoration: none;
  border-bottom: 1px dashed rgba(110, 193, 228, 0.4);
  transition: color 0.2s, border-color 0.2s;
}

.choosing-guide a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

@media (min-width: 900px) {
  .related-service-link {
    flex: 0 1 auto;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .related-services {
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 28px;
    padding: 20px 18px;
    width: auto;
  }

  .related-services-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .related-service-link {
    max-width: none;
    flex: none;
    align-items: flex-start;
    text-align: left;
    padding: 12px 16px;
  }

  .related-service-name,
  .related-service-desc {
    align-self: flex-start;
    text-align: left;
  }
}

/* ============================================================
   J) FAQ PAGE — service prep callout (shared with /faqs/)
   ============================================================ */

.faq-services-callout {
  box-sizing: border-box;
  width: 100%;
  max-width: 800px;
  margin: 36px auto 0;
  padding: 24px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(6, 7, 29, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-services-callout p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(136, 153, 170, 0.8);
  margin: 0 0 14px;
  line-height: 1.55;
}

.faq-service-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}

.faq-service-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6EC1E4;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  background: rgba(0, 212, 255, 0.04);
  transition: all 0.25s ease;
}

.faq-service-links a:hover {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.1);
  color: #fff;
}

@media (max-width: 767px) {
  .faq-services-callout {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
    padding: 20px 18px;
  }

  .faq-service-links {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-service-links a {
    text-align: center;
  }
}

/* ============================================================
   Mobile Header v2 — compact app-like global navigation
   Applies site-wide. Blog page overrides its left button via blog-hub.css.
   ============================================================ */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 14px 8px;
  }

  .site-header.scrolled {
    padding: 8px 14px 7px;
  }

  .site-header .container {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    grid-template-rows: auto auto;
    align-items: center;
    justify-content: stretch;
    gap: 7px 8px;
    width: 100%;
  }

  .site-header .logo-link {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: min(146px, 44vw);
  }

  .site-header .logo-brand,
  .site-header.scrolled .logo-brand {
    height: clamp(34px, 9vw, 42px);
    max-width: min(146px, 44vw);
    object-position: center center;
  }

  .site-header .burger-menu {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(8, 12, 22, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .site-header .burger-menu:hover,
  .site-header .burger-menu:focus-visible {
    border-color: rgba(0, 212, 255, 0.46);
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.16);
    outline: none;
  }

  .site-header .burger-text {
    display: none;
  }

  .site-header .btn-book-now-mobile.mobile-bookings-icon {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    margin: 0;
    border-radius: 12px;
    background: rgba(8, 12, 22, 0.72);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .site-header .btn-book-now-mobile.mobile-bookings-icon:hover,
  .site-header .btn-book-now-mobile.mobile-bookings-icon:focus-visible {
    color: #fff;
    border-color: rgba(0, 212, 255, 0.46);
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.16);
    outline: none;
  }

  /* Visible compact global nav row on mobile. The left button is a fallback full menu. */
  .site-header .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: block !important;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .site-header .main-nav > ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(4px, 1.8vw, 12px);
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0 2px 3px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-header .main-nav > ul::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .site-header .main-nav li {
    flex: 0 0 auto;
    margin: 0;
    list-style: none;
  }

  /* My Bookings and Book Online remain in the top-right account icon / desktop CTA. */
  .site-header .main-nav li:nth-child(7),
  .site-header .main-nav li:nth-child(8) {
    display: none !important;
  }

  .site-header .main-nav > ul > li > a:not(.btn-book-now) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px clamp(2px, 1.25vw, 6px) 11px;
    font-size: clamp(10px, 2.45vw, 12px);
    font-weight: 750;
    line-height: 1.05;
    letter-spacing: 0;
    color: rgba(210, 220, 232, 0.86);
    white-space: nowrap;
    transform: none;
  }

  .site-header .main-nav > ul > li > a:not(.btn-book-now)::before {
    bottom: 0px;
    height: 12px;
    width: 140%;
    filter: blur(5px);
  }

  .site-header .main-nav > ul > li > a:not(.btn-book-now)::after {
    bottom: 5px;
    height: 2px;
    width: calc(100% + 4px);
  }

  .site-header .main-nav > ul > li > a:not(.btn-book-now):hover,
  .site-header .main-nav > ul > li > a:not(.btn-book-now):focus-visible,
  .site-header .main-nav > ul > li > a:not(.btn-book-now).nav-link-active,
  .site-header .main-nav > ul > li > a:not(.btn-book-now)[aria-current="page"] {
    color: #fff;
    transform: translateY(-1px);
  }

  .site-header .mobile-nav-menu {
    left: 12px;
    right: auto;
    top: var(--menu-top, 104px);
    width: min(320px, calc(100vw - 24px));
  }
}

@media (max-width: 380px) {
  .site-header .container {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px 6px;
  }

  .site-header .burger-menu,
  .site-header .btn-book-now-mobile.mobile-bookings-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .site-header .logo-brand,
  .site-header.scrolled .logo-brand {
    height: 34px;
    max-width: min(126px, 39vw);
  }

  .site-header .main-nav > ul {
    gap: 4px;
    justify-content: flex-start;
  }

  .site-header .main-nav > ul > li > a:not(.btn-book-now) {
    font-size: 10px;
    padding-left: 3px;
    padding-right: 3px;
  }
}

/* ============================================================
   Mobile Header v3 — visible nav row site-wide, no global burger
   ============================================================ */
@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 8px 10px 6px;
  }

  .site-header.scrolled {
    padding: 7px 10px 6px;
  }

  .site-header .container {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 3px 4px;
    max-width: 100%;
    width: 100%;
  }

  /* No global burger on mobile. Keep its grid slot as an invisible spacer so the logo stays centered. */
  .site-header .burger-menu {
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .site-header .mobile-nav-menu {
    display: none !important;
  }

  .site-header .logo-link {
    max-width: min(142px, 42vw);
  }

  .site-header .logo-brand,
  .site-header.scrolled .logo-brand {
    height: clamp(34px, 8.4vw, 40px);
    max-width: min(142px, 42vw);
  }

  .site-header .btn-book-now-mobile.mobile-bookings-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .site-header .main-nav {
    overflow: hidden;
  }

  .site-header .main-nav > ul {
    justify-content: space-between;
    gap: 0;
    padding: 0 0 2px;
    overflow-x: auto;
    overflow-y: visible;
  }

  .site-header .main-nav > ul > li > a:not(.btn-book-now) {
    min-height: 30px;
    padding: 4px clamp(1px, 0.75vw, 4px) 10px;
    font-size: clamp(10.8px, 2.85vw, 12.4px);
    font-weight: 750;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 380px) {
  .site-header .main-nav > ul > li > a:not(.btn-book-now) {
    font-size: clamp(10.2px, 2.78vw, 11.4px);
    padding-left: 1px;
    padding-right: 1px;
  }
}


/* ============================================================
   Temporary global floating UI kill-switch
   Requested for current mobile/Blog Hub polishing pass.
   Keeps booking pages intact while removing visual floating clutter.
   ============================================================ */
/* ============================================================
   Mobile Header v6 — consistent left CTA + site-wide scrolled glass
   ============================================================ */
.mobile-left-cta {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease, padding 0.22s ease;
  }

  .site-header.scrolled {
    background:
      linear-gradient(180deg, rgba(3, 6, 13, 0.96), rgba(3, 6, 13, 0.88));
    border-bottom: 1px solid rgba(0, 212, 255, 0.14);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38), 0 1px 0 rgba(255, 255, 255, 0.035) inset;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  /* Equal-width left/right controls keep the centered logo visually balanced site-wide. */
  .site-header .container {
    grid-template-columns: clamp(88px, 27vw, 106px) minmax(0, 1fr) clamp(88px, 27vw, 106px);
    gap: 4px 6px;
  }

  .mobile-left-cta {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(88px, 27vw, 106px);
    height: 40px;
    min-width: 0;
    padding: 0 10px;
    border-radius: 13px;
    border: 1px solid rgba(0, 212, 255, 0.28);
    background: rgba(7, 11, 20, 0.68);
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(9px, 2.45vw, 10.5px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 18px rgba(0, 212, 255, 0.08);
  }

  .mobile-left-cta:hover,
  .mobile-left-cta:focus-visible {
    color: #fff;
    border-color: rgba(0, 212, 255, 0.48);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    outline: none;
  }

  .site-header .btn-book-now-mobile.mobile-bookings-icon {
    justify-self: end;
    width: clamp(88px, 27vw, 106px);
    height: 40px;
    min-width: 0;
    padding: 0 8px;
    gap: 5px;
    border-radius: 13px;
  }

  .site-header .btn-book-now-mobile.mobile-bookings-icon::after {
    content: "My Bookings";
    display: inline-block;
    max-width: 68px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(8.6px, 2.25vw, 10px);
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .site-header .btn-book-now-mobile.mobile-bookings-icon svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
  }

  .site-header .logo-link {
    max-width: min(128px, 34vw);
  }

  .site-header .logo-brand,
  .site-header.scrolled .logo-brand {
    height: clamp(31px, 7.8vw, 38px);
    max-width: min(128px, 34vw);
  }
}

@media (max-width: 370px) {
  .site-header .container {
    grid-template-columns: clamp(78px, 25vw, 92px) minmax(0, 1fr) clamp(78px, 25vw, 92px);
  }

  .mobile-left-cta,
  .site-header .btn-book-now-mobile.mobile-bookings-icon {
    width: clamp(78px, 25vw, 92px);
    height: 38px;
  }

  .mobile-left-cta {
    font-size: 8.5px;
    padding: 0 7px;
  }

  .site-header .btn-book-now-mobile.mobile-bookings-icon::after {
    max-width: 58px;
    font-size: 8.3px;
  }
}

/* Driving Hub nav label — full on desktop, compact on very small screens */
.nav-label-short {
  display: none;
}

@media (max-width: 520px) {
  .nav-driving-hub-link .nav-label-full,
  .bh-hub-toggle-label .nav-label-full {
    display: none;
  }

  .nav-driving-hub-link .nav-label-short,
  .bh-hub-toggle-label .nav-label-short {
    display: inline;
  }
}
