/* ==========================================================================
   Luton 247 Airport Parking — Master Design System
   luton247.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colours */
  --navy:           #1B3A6B;
  --navy-dark:      #0F2544;
  --navy-mid:       #1E4A8C;
  --gold:           #F5C518;
  --gold-light:     #FFF9E6;
  --blue-light:     #EBF2FC;
  --white:          #FFFFFF;
  --grey-light:     #F5F5F5;

  /* Text */
  --text-primary:   #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted:     #888888;

  /* UI */
  --border:         #CCCCCC;
  --border-light:   #EEEEEE;
  --green:          #1BAF7A;
  --red:            #E34948;

  /* Radius */
  --radius-sm:      6px;
  --radius:         10px;
  --radius-lg:      16px;

  /* Shadow */
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.06);
  --shadow:         0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.12);

  /* Typography */
  --font:           'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Layout */
  --header-height:        64px;
  --header-height-mobile: 56px;
  --sticky-bar-height:    60px;
  --section-padding:      80px;
  --section-padding-mobile: 48px;
  --container-max:        1200px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; }
p  { line-height: 1.7; color: var(--text-secondary); }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* --------------------------------------------------------------------------
   3. Layout Utilities
   -------------------------------------------------------------------------- */
.l247-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .l247-container { padding: 0 16px; }
}

.l247-section {
  padding: var(--section-padding) 0;
}
@media (max-width: 768px) {
  .l247-section { padding: var(--section-padding-mobile) 0; }
}

.l247-section--dark  { background: var(--navy); }
.l247-section--grey  { background: var(--grey-light); }
.l247-section--gold  { background: var(--gold); }
.l247-section--navy-gradient {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.l247-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.l247-section-title {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.l247-section-title--white { color: var(--white); }

.l247-section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 48px;
}
.l247-section-subtitle--white { color: rgba(255,255,255,0.8); }

.l247-text-center { text-align: center; }
.l247-text-center .l247-section-subtitle { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.l247-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.l247-btn:active { transform: translateY(1px); }

.l247-btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.l247-btn--primary:hover {
  background: #e0b310;
  box-shadow: 0 4px 16px rgba(245,197,24,0.35);
}

.l247-btn--navy {
  background: var(--navy);
  color: var(--white);
}
.l247-btn--navy:hover {
  background: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(27,58,107,0.3);
}

.l247-btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.l247-btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.l247-btn--lg { height: 56px; padding: 0 36px; font-size: 1rem; }
.l247-btn--sm { height: 40px; padding: 0 20px; font-size: 0.875rem; }
.l247-btn--full { width: 100%; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.l247-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--navy);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s ease;
}
.l247-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.l247-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.l247-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.l247-header__logo img {
  height: 40px;
  width: auto;
}
.l247-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.l247-header__nav a {
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding: 0 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.l247-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.l247-header__nav a:hover { color: var(--white); }
.l247-header__nav a:hover::after,
.l247-header__nav a.active::after { transform: scaleX(1); }
.l247-header__nav a.active { color: var(--white); }

.l247-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.l247-header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}
.l247-header__phone svg { width: 16px; height: 16px; }

.l247-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.l247-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.l247-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l247-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.l247-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay nav */
.l247-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  padding: calc(var(--header-height-mobile) + 24px) 24px 120px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.l247-mobile-nav.is-open {
  transform: translateX(0);
}
.l247-mobile-nav a {
  display: flex;
  align-items: center;
  padding: 16px 0;
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.l247-mobile-nav a:hover { color: var(--gold); }
.l247-mobile-nav__cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .l247-header {
    height: var(--header-height-mobile);
  }
  .l247-header__logo img { height: 32px; }
  .l247-header__nav { display: none; }
  .l247-header__cta .l247-btn { display: none; }
  .l247-header__hamburger { display: flex; }
  .l247-mobile-nav { display: flex; }
}

/* Page body offset for fixed header */
body { padding-top: var(--header-height); }
@media (max-width: 900px) {
  body { padding-top: var(--header-height-mobile); }
}

/* --------------------------------------------------------------------------
   6. Footer
   -------------------------------------------------------------------------- */
.l247-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.l247-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.l247-footer__brand { }
.l247-footer__brand img { height: 36px; margin-bottom: 20px; }
.l247-footer__brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.l247-footer__brand-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l247-footer__brand-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.l247-footer__brand-contact a:hover { color: var(--gold); }
.l247-footer__brand-contact svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold); }

.l247-footer__col h4 {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.l247-footer__col ul li {
  margin-bottom: 10px;
}
.l247-footer__col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.l247-footer__col ul li a:hover { color: var(--gold); }

.l247-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.l247-footer__bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.8125rem;
}
.l247-footer__bottom-links {
  display: flex;
  gap: 20px;
}
.l247-footer__bottom-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8125rem;
  transition: color 0.2s;
}
.l247-footer__bottom-links a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
  .l247-footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .l247-footer__col {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .l247-footer__col h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 18px 0;
    margin-bottom: 0;
  }
  .l247-footer__col h4::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    transition: transform 0.3s;
  }
  .l247-footer__col.is-open h4::after {
    transform: rotate(45deg);
  }
  .l247-footer__col ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
  }
  .l247-footer__col.is-open ul {
    max-height: 400px;
    padding-bottom: 16px;
  }
  .l247-footer__brand {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .l247-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* --------------------------------------------------------------------------
   7. Sticky Bottom Bar (mobile only)
   -------------------------------------------------------------------------- */
.l247-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--sticky-bar-height);
  background: var(--gold);
  z-index: 998;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
}
.l247-sticky-bar__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.l247-sticky-bar__code {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-dark);
  letter-spacing: 0.05em;
}
.l247-sticky-bar__label {
  font-size: 0.7rem;
  color: rgba(27,58,107,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.l247-sticky-bar__btn {
  background: var(--navy);
  color: var(--white);
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .l247-sticky-bar { display: flex; }
  /* Give footer/content breathing room above sticky bar */
  .l247-footer { padding-bottom: var(--sticky-bar-height); }
}

/* --------------------------------------------------------------------------
   8. WhatsApp Float Button
   -------------------------------------------------------------------------- */
.l247-wa-float {
  position: fixed;
  bottom: calc(var(--sticky-bar-height) + 16px);
  right: 20px;
  z-index: 997;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.l247-wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.55);
}
.l247-wa-float svg { width: 28px; height: 28px; fill: #fff; }

@media (min-width: 901px) {
  .l247-wa-float { bottom: 24px; }
}

/* --------------------------------------------------------------------------
   9. Hero Section
   -------------------------------------------------------------------------- */
.l247-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.l247-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.l247-hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.l247-hero__content {}
.l247-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 600;
}
.l247-hero__title {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.l247-hero__title .l247-hero__title-gold { color: var(--gold); }
.l247-hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}
.l247-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
.l247-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
}
.l247-hero__trust-item svg { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }

.l247-hero__widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .l247-hero__inner { grid-template-columns: 1fr 380px; gap: 40px; }
}
@media (max-width: 860px) {
  .l247-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .l247-hero { padding: 48px 0 56px; }
  .l247-hero__widget { order: -1; }
}

/* --------------------------------------------------------------------------
   10. Booking Widget
   -------------------------------------------------------------------------- */
.l247-widget {}
.l247-widget__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.l247-widget__subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.l247-widget__field {
  margin-bottom: 14px;
}
.l247-widget__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.l247-widget__input,
.l247-widget select,
.l247-widget input[type="date"],
.l247-widget input[type="text"] {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.l247-widget__input:focus,
.l247-widget select:focus,
.l247-widget input[type="date"]:focus,
.l247-widget input[type="text"]:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.12);
}
.l247-widget__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.l247-widget__select-wrap {
  position: relative;
}
.l247-widget__select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
}
.l247-widget__promo-toggle {
  background: none;
  border: none;
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.l247-widget__promo-wrap { display: none; }
.l247-widget__promo-wrap.is-open { display: flex; gap: 8px; }
.l247-widget__promo-wrap input {
  flex: 1;
  height: 44px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.875rem;
}
.l247-widget__promo-wrap button {
  height: 44px;
  padding: 0 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
}
.l247-widget__submit {
  width: 100%;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.l247-widget__submit:hover { background: var(--navy-dark); }
.l247-widget__submit:active { transform: translateY(1px); }
.l247-widget__promo-badge {
  display: none;
  align-items: center;
  gap: 6px;
  background: #e6f9f2;
  border: 1px solid #1BAF7A;
  border-radius: 6px;
  padding: 6px 12px;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0d7a56;
}
.l247-widget__promo-badge.promo-active { display: flex; }

/* Results containers */
#prices, #errorContainer { margin-top: 12px; }
#errorContainer { color: var(--red); font-size: 0.875rem; }

/* --------------------------------------------------------------------------
   11. Trust Bar
   -------------------------------------------------------------------------- */
.l247-trust-bar {
  background: var(--navy);
  padding: 18px 0;
}
.l247-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.l247-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
.l247-trust-bar__item svg {
  color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .l247-trust-bar__inner {
    justify-content: center;
    gap: 16px;
  }
  .l247-trust-bar__item { font-size: 0.8rem; }
}

/* --------------------------------------------------------------------------
   12. How It Works Section
   -------------------------------------------------------------------------- */
.l247-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.l247-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 24px);
  right: calc(10% + 24px);
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}
.l247-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.l247-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}
.l247-step__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.l247-step__desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .l247-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .l247-steps::before { display: none; }
}
@media (max-width: 600px) {
  .l247-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .l247-steps { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   13. Why Choose Us — Feature Cards
   -------------------------------------------------------------------------- */
.l247-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.l247-feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.l247-feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.l247-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.l247-feature-card__icon svg { width: 26px; height: 26px; color: var(--navy); }
.l247-feature-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.l247-feature-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .l247-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .l247-features { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   14. Price Comparison
   -------------------------------------------------------------------------- */
.l247-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.l247-price-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.25s;
}
.l247-price-card--featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.l247-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.l247-price-card__name {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--text-muted);
}
.l247-price-card--featured .l247-price-card__name { color: rgba(255,255,255,0.7); }
.l247-price-card__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.l247-price-card--featured .l247-price-card__price { color: var(--gold); }
.l247-price-card__period {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.l247-price-card--featured .l247-price-card__period { color: rgba(255,255,255,0.6); }
.l247-price-card__features {
  text-align: left;
  margin-bottom: 24px;
}
.l247-price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.l247-price-card--featured .l247-price-card__features li { color: rgba(255,255,255,0.8); }
.l247-price-card__features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.l247-price-card--featured .l247-price-card__features li::before { color: var(--gold); }
.l247-price-card__promo {
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .l247-price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .l247-price-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   15. Reviews Section
   -------------------------------------------------------------------------- */
.l247-reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}
.l247-stars {
  display: flex;
  gap: 3px;
}
.l247-star { color: var(--gold); font-size: 1.125rem; }
.l247-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.l247-review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.l247-review-card:hover { box-shadow: var(--shadow); }
.l247-review-card__stars { display: flex; gap: 3px; }
.l247-review-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.l247-review-card__author {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
}
.l247-review-card__source { font-size: 0.75rem; color: var(--text-muted); }
@media (max-width: 900px) {
  .l247-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .l247-reviews-header { flex-direction: column; }
}
@media (max-width: 540px) {
  .l247-reviews-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   16. Meet & Greet vs Park & Ride
   -------------------------------------------------------------------------- */
.l247-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.l247-comp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.l247-comp-card__head {
  padding: 24px 28px;
  background: var(--grey-light);
  border-bottom: 1px solid var(--border-light);
}
.l247-comp-card--featured .l247-comp-card__head {
  background: var(--navy);
}
.l247-comp-card__head-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.l247-comp-card--featured .l247-comp-card__head-title { color: var(--gold); }
.l247-comp-card__head-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.l247-comp-card--featured .l247-comp-card__head-sub { color: rgba(255,255,255,0.65); }
.l247-comp-card__body { padding: 28px; }
.l247-comp-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.l247-comp-card__list li:last-child { border-bottom: none; }
.l247-comp-card__list li .l247-check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.l247-comp-card__list li .l247-cross { color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 700px) {
  .l247-comparison { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.l247-faq { }
.l247-faq__item {
  border-bottom: 1px solid var(--border-light);
}
.l247-faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1.4;
}
.l247-faq__question:hover { color: var(--navy); }
.l247-faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.l247-faq__item.is-open .l247-faq__icon {
  background: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}
.l247-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.l247-faq__answer-inner {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.l247-faq__item.is-open .l247-faq__answer { max-height: 500px; }

/* --------------------------------------------------------------------------
   18. CTA Section
   -------------------------------------------------------------------------- */
.l247-cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
}
.l247-cta-section h2 { color: var(--white); margin-bottom: 16px; }
.l247-cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.l247-cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   19. Inner Page Hero
   -------------------------------------------------------------------------- */
.l247-page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 56px 0 52px;
  text-align: center;
}
.l247-page-hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 14px;
}
.l247-page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}
.l247-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}
.l247-breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.l247-breadcrumb a:hover { color: var(--gold); }
.l247-breadcrumb__sep { color: rgba(255,255,255,0.3); }

/* --------------------------------------------------------------------------
   20. Contact Page
   -------------------------------------------------------------------------- */
.l247-contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.l247-contact-info { display: flex; flex-direction: column; gap: 20px; }
.l247-contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--grey-light);
  border-radius: var(--radius);
}
.l247-contact-info-item svg { color: var(--navy); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.l247-contact-info-item h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.l247-contact-info-item p { font-size: 0.875rem; color: var(--text-secondary); }
.l247-contact-info-item a { color: var(--navy); font-weight: 600; }

.l247-contact-form { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.l247-contact-form h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 24px; }
.l247-form-field { margin-bottom: 18px; }
.l247-form-field label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 7px; }
.l247-form-field input,
.l247-form-field textarea,
.l247-form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.l247-form-field input:focus,
.l247-form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}
.l247-form-field textarea { height: 120px; resize: vertical; line-height: 1.6; }
.l247-form-field .error-msg { color: var(--red); font-size: 0.8125rem; margin-top: 5px; display: none; }
.l247-form-field.has-error input,
.l247-form-field.has-error textarea { border-color: var(--red); }
.l247-form-field.has-error .error-msg { display: block; }

@media (max-width: 860px) {
  .l247-contact-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   21. Review Page
   -------------------------------------------------------------------------- */
.l247-reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.l247-review-card--full .l247-review-card__text { -webkit-line-clamp: unset; }
@media (max-width: 900px) { .l247-reviews-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .l247-reviews-page-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   22. Pagination
   -------------------------------------------------------------------------- */
.pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 32px 0; }
.pagination .easy-li a,
.pagination .easy-li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; color: var(--navy);
  background: var(--grey-light); transition: background 0.2s, color 0.2s;
}
.pagination .easy-li a:hover { background: var(--navy); color: var(--white); }
.pagination .easy-li a.current { background: var(--navy); color: var(--white); }

/* --------------------------------------------------------------------------
   23. Utilities
   -------------------------------------------------------------------------- */
.l247-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.l247-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0;
}
.l247-mt-8  { margin-top: 8px; }
.l247-mt-16 { margin-top: 16px; }
.l247-mt-24 { margin-top: 24px; }
.l247-mt-32 { margin-top: 32px; }
.l247-mb-24 { margin-bottom: 24px; }
.l247-mb-32 { margin-bottom: 32px; }
.l247-mb-48 { margin-bottom: 48px; }

/* Alert box */
.l247-alert {
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.l247-alert--info { background: var(--blue-light); color: var(--navy); }
.l247-alert--gold { background: var(--gold-light); color: #7a5e00; border: 1px solid rgba(245,197,24,0.4); }
.l247-alert--success { background: #e6f9f2; color: #0d7a56; }
.l247-alert--error { background: #fef0f0; color: var(--red); }

/* --------------------------------------------------------------------------
   24. Responsive: Body padding for sticky bar
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  body {
    /* sticky bar at bottom takes 60px */
    padding-bottom: var(--sticky-bar-height);
  }
}
