/* ============================================================
   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: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  background: none !important;
}

.site-header .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 205, 255, 0.27);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0, 205, 255, 0.41);
  border-radius: 9999px;
  padding: 0;
}

.logo {
  display: block;
}

.logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: block;
  transition: height .3s ease, width .3s ease;
  max-width: none;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
}

.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;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
}

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

.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: flex;
  align-items: center;
  height: 60px;
  background: #111;
  border: 1px solid #00FFFF;
  padding: 0 30px;
  border-radius: 9999px;
  text-decoration: none;
  transition: .3s;
}

.btn-text {
  font-weight: 800;
  background: linear-gradient(90deg, #ff8a00, #ffe600, #ff3cac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255, 138, 0, .25), 0 0 25px rgba(255, 230, 0, .18), 0 0 35px rgba(255, 60, 172, .12);
}

.site-header .main-nav .btn-book-now:hover {
  background: #00FFFF;
  box-shadow: 0 0 10px #fff, 0 0 20px #fff;
}

.site-header .main-nav .btn-book-now:hover .btn-text {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #111;
  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 .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 .container {
    justify-content: space-between;
  }

  .logo img {
    height: 50px;
    width: 50px;
  }

  .btn-book-now-mobile {
    background: #111;
    border: 1px solid #00FFFF;
    height: 50px;
    padding: 0 15px;
    border-radius: 9999px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    align-items: center;
    margin-left: auto;
    margin-right: 10px;
    color: #fff;
  }

  .btn-book-now-mobile:hover {
    background: #00FFFF;
    box-shadow: 0 0 10px #fff, 0 0 20px #fff;
  }

  .btn-book-now-mobile:hover .btn-text {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #111;
    text-shadow: none;
  }

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

  .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 {
  background-color: #050a14;
  color: #e0e0e0;
  padding: 60px 20px 20px 20px;
  font-family: 'Inter', 'Poppins', sans-serif;
  border-top: 1px solid rgba(0, 180, 255, 0.5);
  box-shadow: 0 -10px 25px rgba(0, 180, 255, 0.15);
  position: relative;
  z-index: 10;
}

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

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

.footer-column h4 {
  font-size: 1.4em;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(to right, #ffaa00, #ff6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid rgba(255, 102, 0, 0.3);
  padding-bottom: 10px;
  display: inline-block;
}

.footer-column p {
  margin: 0 0 15px;
  line-height: 1.7;
  color: #aaa;
}

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

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

.footer-column ul a {
  color: #c5c5c5;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column ul a:hover {
  color: #00e5ff;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
  transform: translateX(5px);
}

.highlight-link {
  color: #ffaa00 !important;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.highlight-link:hover {
  color: #fff !important;
  text-shadow: 0 0 10px #ffaa00 !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: 25px;
}

.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;
}

.map-container iframe {
  border-radius: 12px;
  border: 1px solid rgba(0, 180, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  filter: grayscale(20%) contrast(1.2);
  transition: all 0.3s ease;
}

.map-container iframe:hover {
  border-color: #00e5ff;
  filter: grayscale(0%);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #666;
  font-size: 0.9em;
}

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

  .contact-info li {
    justify-content: center;
  }

  .footer-column h4 {
    border-bottom: none;
  }
}


/* ============================================================
   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;
}
