/* ================================================================
   Boston Prestige Limo — Main CSS
   Design system, global styles, components, page sections.
   ================================================================ */

/* ── 1. Design Tokens (CSS Variables) ──────────────────────────── */
:root {
  /* Colors */
  --bpl-black:        #0a0a0a;
  --bpl-charcoal:     #111111;
  --bpl-dark:         #1a1a1a;
  --bpl-dark-alt:     #222222;
  --bpl-navy:         #0d1b2a;
  --bpl-white:        #f8f8f8;
  --bpl-white-pure:   #ffffff;
  --bpl-gold:         #c9a84c;
  --bpl-gold-light:   #e2c97e;
  --bpl-gold-dark:    #a88630;
  --bpl-text-muted:   #888888;
  --bpl-text-light:   #aaaaaa;
  --bpl-border:       rgba(255, 255, 255, 0.08);
  --bpl-border-dark:  rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-serif:       'Cormorant Garamond', Georgia, serif;
  --font-sans:        'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    1.5rem;
  --space-lg:    2.5rem;
  --space-xl:    4rem;
  --space-2xl:   6rem;
  --space-3xl:   8rem;

  /* Section padding */
  --section-pad:  6rem;

  /* Container */
  --container:    1280px;
  --container-sm: 860px;

  /* Transitions */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.25s;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.25);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.45);

  /* Border radius */
  --radius-sm:  3px;
  --radius-md:  6px;
  --radius-full: 999px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bpl-white);
  background-color: var(--bpl-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--bpl-gold); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--bpl-gold-light); }

ul, ol { list-style: none; }

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

input, textarea, select {
  font-family: var(--font-sans);
  font-size: 1rem;
  width: 100%;
}

/* ── 3. Typography Scale ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.125rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

p { max-width: 68ch; }

/* ── 4. Layout Utilities ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

/* ── 5. Sections ────────────────────────────────────────────────── */
.bpl-section {
  padding: var(--section-pad) 0;
}
.bpl-section--light {
  background-color: var(--bpl-white);
  color: var(--bpl-black);
}
.bpl-section--dark {
  background-color: var(--bpl-charcoal);
  color: var(--bpl-white);
}
.bpl-section--narrow {
  padding: 3rem 0;
}

/* ── 6. Section Header ──────────────────────────────────────────── */
.bpl-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}
.bpl-section-header__sub {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--bpl-text-muted);
}
.bpl-section--light .bpl-section-header__sub { color: #555; }
.bpl-section-footer {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ── 7. Eyebrow Labels ──────────────────────────────────────────── */
.bpl-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bpl-gold);
  margin-bottom: 0.75rem;
}
.bpl-eyebrow--dark { color: var(--bpl-gold-dark); }

/* ── 8. Buttons ─────────────────────────────────────────────────── */
.bpl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.bpl-btn:hover { transform: translateY(-1px); }
.bpl-btn:active { transform: translateY(0); }

.bpl-btn--primary {
  background-color: var(--bpl-gold);
  color: var(--bpl-black);
  border: 2px solid var(--bpl-gold);
}
.bpl-btn--primary:hover {
  background-color: var(--bpl-gold-light);
  border-color: var(--bpl-gold-light);
  color: var(--bpl-black);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}

.bpl-btn--secondary {
  background-color: transparent;
  color: var(--bpl-gold);
  border: 2px solid var(--bpl-gold);
}
.bpl-btn--secondary:hover {
  background-color: var(--bpl-gold);
  color: var(--bpl-black);
}

.bpl-btn--ghost {
  background-color: transparent;
  color: var(--bpl-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.bpl-btn--ghost:hover {
  border-color: var(--bpl-white);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--bpl-white);
}

.bpl-btn--outline {
  background-color: transparent;
  color: var(--bpl-dark);
  border: 2px solid var(--bpl-dark);
}
.bpl-btn--outline:hover {
  background-color: var(--bpl-dark);
  color: var(--bpl-white);
}
.bpl-btn--outline.bpl-btn--dark {
  color: var(--bpl-dark);
  border-color: var(--bpl-dark);
}

.bpl-btn--lg { padding: 1rem 2.25rem; font-size: 0.875rem; }
.bpl-btn--sm { padding: 0.625rem 1.25rem; font-size: 0.75rem; }
.bpl-btn--full { width: 100%; justify-content: center; }

/* ── 9. Gold Link ───────────────────────────────────────────────── */
.bpl-link-gold {
  color: var(--bpl-gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
}
.bpl-link-gold:hover { color: var(--bpl-gold-light); gap: 0.5rem; }

/* ── 10. Hero ───────────────────────────────────────────────────── */
.bpl-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.bpl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(10,10,10,0.65) 60%,
    rgba(13,27,42,0.72) 100%
  );
}
.bpl-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.bpl-hero__title {
  color: var(--bpl-white);
  margin-bottom: 1.25rem;
}
.bpl-hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(248,248,248,0.82);
  margin-bottom: 2rem;
  max-width: 56ch;
  line-height: 1.6;
}
.bpl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.bpl-hero__trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(248,248,248,0.65);
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
}
.bpl-hero__trust-bar span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.bpl-hero__trust-bar svg { color: var(--bpl-gold); flex-shrink: 0; }

/* ── 11. Page Hero ──────────────────────────────────────────────── */
.bpl-page-hero {
  position: relative;
  min-height: 55vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}
.bpl-page-hero--short { min-height: 36vh; align-items: center; padding-bottom: 0; }
.bpl-page-hero--simple {
  background-color: var(--bpl-charcoal);
  background-image: none !important;
  min-height: 28vh;
  align-items: center;
  padding-bottom: 0;
}
.bpl-page-hero--overlay::after,
.bpl-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.45) 100%);
  content: '';
}
.bpl-page-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 3rem;
}
.bpl-page-hero--simple .bpl-page-hero__content {
  padding-top: 5.5rem;
}
.bpl-page-hero h1 { color: var(--bpl-white); margin-bottom: 1rem; }
.bpl-page-hero p {
  color: rgba(248,248,248,0.8);
  max-width: 56ch;
  font-size: 1.0625rem;
}

/* ── 12. Booking Bar ────────────────────────────────────────────── */
.bpl-booking-bar {
  background-color: var(--bpl-dark);
  border-bottom: 1px solid var(--bpl-border);
  padding: 1.5rem 0;
}
.bpl-booking-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.bpl-booking-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 180px;
}
.bpl-booking-bar__item svg { color: var(--bpl-gold); flex-shrink: 0; }
.bpl-booking-bar__item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bpl-text-muted);
  margin-bottom: 0.15rem;
}
.bpl-booking-bar__item span,
.bpl-booking-bar__item a {
  font-size: 0.9375rem;
  color: var(--bpl-white);
}
.bpl-booking-bar__item a:hover { color: var(--bpl-gold); }
.bpl-booking-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--bpl-border);
  flex-shrink: 0;
}
.bpl-booking-bar__cta { margin-left: auto; }

@media (max-width: 767px) {
  .bpl-booking-bar__divider { display: none; }
  .bpl-booking-bar__cta { width: 100%; }
  .bpl-booking-bar__cta .bpl-btn { width: 100%; justify-content: center; }
}

/* ── 13. Services Grid ──────────────────────────────────────────── */
.bpl-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.bpl-service-card {
  background: var(--bpl-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.bpl-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bpl-service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--bpl-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bpl-black);
  margin-bottom: 1.25rem;
}
.bpl-service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--bpl-black);
  margin-bottom: 0.6rem;
}
.bpl-service-card p { font-size: 0.9375rem; color: #444; max-width: none; }

/* ── 14. Trust / Why Us ─────────────────────────────────────────── */
.bpl-trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bpl-trust-image img {
  border-radius: var(--radius-md);
  object-fit: cover;
  width: 100%;
  height: 560px;
}
.bpl-trust-content h2 { margin-bottom: 1rem; }
.bpl-trust-intro { color: var(--bpl-text-light); margin-bottom: 2rem; }
.bpl-trust-points { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.bpl-trust-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.bpl-trust-point__num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--bpl-gold);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}
.bpl-trust-point strong { display: block; margin-bottom: 0.25rem; font-size: 1rem; }
.bpl-trust-point p { font-size: 0.9375rem; color: var(--bpl-text-muted); max-width: none; }

@media (max-width: 900px) {
  .bpl-trust-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .bpl-trust-image img { height: 360px; }
}

/* ── 15. Fleet Grid ─────────────────────────────────────────────── */
.bpl-fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.bpl-fleet-grid--full { grid-template-columns: 1fr; gap: 3rem; }
.bpl-fleet-card {
  background: var(--bpl-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.bpl-fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bpl-fleet-card--full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.bpl-fleet-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.bpl-fleet-card__img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.bpl-fleet-card--full .bpl-fleet-card__img-wrap img { height: 100%; min-height: 320px; }
.bpl-fleet-card:hover .bpl-fleet-card__img-wrap img { transform: scale(1.04); }
.bpl-fleet-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bpl-gold);
  color: var(--bpl-black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
}
.bpl-fleet-card__body {
  padding: 1.5rem;
  color: var(--bpl-black);
}
.bpl-fleet-card__body h3,
.bpl-fleet-card__body h2 {
  color: var(--bpl-black);
  margin-bottom: 0.6rem;
}
.bpl-fleet-card__body p { font-size: 0.9375rem; color: #444; margin-bottom: 1rem; max-width: none; }
.bpl-fleet-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  color: #555;
  margin-bottom: 1.25rem;
}
.bpl-fleet-card__specs span { display: flex; align-items: center; gap: 0.25rem; }
.bpl-fleet-spec { text-align: center; }
.bpl-fleet-spec strong { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #888; }
.bpl-fleet-spec span { font-size: 0.9rem; color: var(--bpl-black); }
.bpl-fleet-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.bpl-fleet-card__amenities span {
  background: #f0ede6;
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

/* Fleet full — responsive */
@media (max-width: 768px) {
  .bpl-fleet-card--full { grid-template-columns: 1fr; }
  .bpl-fleet-card--full .bpl-fleet-card__img-wrap img { min-height: 220px; height: 220px; }
}

/* Interior gallery */
.bpl-fleet-interior {
  background: #f0ede6;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.bpl-fleet-interior__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 1rem;
}
.bpl-fleet-interior__gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ── 16. Feature Sections (airport / corporate bg panels) ───────── */
.bpl-feature-section {
  position: relative;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.bpl-feature-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.25) 100%
  );
}
.bpl-feature-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.bpl-feature-section__inner--right { justify-content: flex-end; }
.bpl-feature-section__inner--left  { justify-content: flex-start; }
.bpl-feature-section__content {
  max-width: 520px;
  color: var(--bpl-white);
}
.bpl-feature-section__content--center {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}
.bpl-feature-section__content h2 { color: var(--bpl-white); margin-bottom: 1rem; }
.bpl-feature-section__content p {
  color: rgba(248,248,248,0.82);
  margin-bottom: 1.5rem;
}
.bpl-feature-list {
  list-style: none;
  margin-bottom: 2rem;
}
.bpl-feature-list li {
  font-size: 0.9375rem;
  color: rgba(248,248,248,0.82);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.bpl-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bpl-gold);
}

@media (max-width: 768px) {
  .bpl-feature-section { min-height: auto; }
  .bpl-feature-section__overlay {
    background: rgba(0,0,0,0.75);
  }
  .bpl-feature-section__inner--right,
  .bpl-feature-section__inner--left { justify-content: flex-start; }
  .bpl-feature-section__content { max-width: 100%; }
}

/* ── 17. Testimonials ───────────────────────────────────────────── */
.bpl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.bpl-testimonial-card {
  background: var(--bpl-dark);
  border: 1px solid var(--bpl-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.bpl-testimonial-card__stars { color: var(--bpl-gold); font-size: 1rem; letter-spacing: 0.1em; }
.bpl-testimonial-card__text {
  font-size: 0.9375rem;
  color: rgba(248,248,248,0.8);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  max-width: none;
}
.bpl-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--bpl-border);
  padding-top: 1rem;
}
.bpl-testimonial-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.bpl-testimonial-card__author strong { display: block; font-size: 0.9375rem; }
.bpl-testimonial-card__author span { font-size: 0.8125rem; color: var(--bpl-text-muted); }

/* ── 18. CTA Strip ──────────────────────────────────────────────── */
.bpl-cta-strip {
  background: linear-gradient(135deg, var(--bpl-navy) 0%, var(--bpl-charcoal) 100%);
  border-top: 1px solid var(--bpl-border);
  padding: 4rem 0;
}
.bpl-cta-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.bpl-cta-strip__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--bpl-white);
  margin-bottom: 0.5rem;
  max-width: 100%;
}
.bpl-cta-strip__sub { color: var(--bpl-text-muted); font-size: 1rem; max-width: none; }
.bpl-cta-strip__actions { display: flex; flex-wrap: wrap; gap: 1rem; flex-shrink: 0; }

@media (max-width: 767px) {
  .bpl-cta-strip__inner { flex-direction: column; text-align: center; }
  .bpl-cta-strip__actions { justify-content: center; }
}

/* ── 19. FAQ ────────────────────────────────────────────────────── */
.bpl-faq-preview-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.bpl-faq-preview-header h2 { margin-bottom: 1rem; }
.bpl-faq-preview-header p { color: #555; margin-bottom: 1.5rem; }

.bpl-faq-page-layout { max-width: var(--container-sm); margin: 0 auto; }
.bpl-faq-group { margin-bottom: 3rem; }
.bpl-faq-group__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bpl-gold-dark);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}
.bpl-faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.bpl-section--dark .bpl-faq-item { border-bottom-color: var(--bpl-border); }
.bpl-faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--bpl-black);
  text-align: left;
  transition: color var(--duration) var(--ease);
}
.bpl-section--dark .bpl-faq-item__q { color: var(--bpl-white); }
.bpl-faq-item__q:hover { color: var(--bpl-gold-dark); }
.bpl-section--dark .bpl-faq-item__q:hover { color: var(--bpl-gold); }
.bpl-faq-item__icon {
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
  color: var(--bpl-gold);
}
.bpl-faq-item__q[aria-expanded="true"] .bpl-faq-item__icon { transform: rotate(180deg); }
.bpl-faq-item__a {
  display: none;
  padding-bottom: 1.25rem;
}
.bpl-faq-item__a.is-open { display: block; }
.bpl-faq-item__a p {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.7;
  max-width: none;
}
.bpl-section--dark .bpl-faq-item__a p { color: var(--bpl-text-muted); }
.bpl-faq-item__a a { color: var(--bpl-gold-dark); }

@media (max-width: 768px) {
  .bpl-faq-preview-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── 20. Check List ─────────────────────────────────────────────── */
.bpl-check-list { margin-bottom: 1.5rem; }
.bpl-check-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(248,248,248,0.82);
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.bpl-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bpl-gold);
}
.bpl-check-list--dark li { color: var(--bpl-black); }
.bpl-check-list--dark li::before { background: var(--bpl-gold-dark); }
.bpl-check-list--gold li::before { background: var(--bpl-gold); }
.bpl-check-box {
  background: var(--bpl-dark);
  border: 1px solid var(--bpl-border);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.bpl-check-box h3 { margin-bottom: 1.25rem; font-size: 1.375rem; }

/* ── 21. About Layout ───────────────────────────────────────────── */
.bpl-about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bpl-about-content h2 { margin-bottom: 1.25rem; }
.bpl-about-content p { color: #444; font-size: 0.9375rem; margin-bottom: 1rem; max-width: none; }
.bpl-about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
@media (max-width: 900px) {
  .bpl-about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .bpl-about-image img { height: 320px; }
}

/* ── 22. Values Grid ────────────────────────────────────────────── */
.bpl-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.bpl-value-card {
  background: var(--bpl-dark);
  border: 1px solid var(--bpl-border);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.bpl-value-card__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--bpl-gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.bpl-value-card__icon { font-size: 1.75rem; margin-bottom: 1rem; }
.bpl-value-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.bpl-value-card p { font-size: 0.9rem; color: var(--bpl-text-muted); max-width: none; }

/* ── 23. Service Detail (services page) ─────────────────────────── */
.bpl-service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.bpl-service-detail:last-child { border-bottom: none; }
.bpl-service-detail--reverse { direction: rtl; }
.bpl-service-detail--reverse > * { direction: ltr; }
.bpl-service-detail__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.bpl-service-detail__body { color: var(--bpl-black); }
.bpl-service-detail__body h2 { margin-bottom: 1rem; }
.bpl-service-detail__body p { color: #444; font-size: 0.9375rem; margin-bottom: 1.25rem; max-width: none; }
.bpl-service-tag {
  display: inline-block;
  background: var(--bpl-gold);
  color: var(--bpl-black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}
@media (max-width: 900px) {
  .bpl-service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .bpl-service-detail--reverse { direction: ltr; }
  .bpl-service-detail__img img { height: 260px; }
}

/* ── 24. Steps (airport how it works) ───────────────────────────── */
.bpl-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.bpl-step {
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  background: var(--bpl-white);
}
.bpl-step__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--bpl-gold-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}
.bpl-step h3 { color: var(--bpl-black); margin-bottom: 0.5rem; font-size: 1.25rem; }
.bpl-step p { color: #555; font-size: 0.9rem; max-width: none; }

/* ── 25. Airport Layout ─────────────────────────────────────────── */
.bpl-airport-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.bpl-airport-info h2 { margin-bottom: 1rem; }
.bpl-airport-info p { color: var(--bpl-text-muted); margin-bottom: 1.5rem; max-width: none; }
.bpl-airport-list { display: flex; flex-direction: column; gap: 0.75rem; }
.bpl-airport-item { border-left: 3px solid var(--bpl-gold); padding-left: 1rem; }
.bpl-airport-item strong { display: block; font-size: 0.9375rem; }
.bpl-airport-item span { font-size: 0.8125rem; color: var(--bpl-text-muted); }
@media (max-width: 900px) {
  .bpl-airport-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── 26. Contact Layout ─────────────────────────────────────────── */
.bpl-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.bpl-contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.bpl-contact-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bpl-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: box-shadow var(--duration) var(--ease);
}
.bpl-contact-card:hover { box-shadow: var(--shadow-sm); }
.bpl-contact-card__icon {
  width: 48px;
  height: 48px;
  background: var(--bpl-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bpl-black);
  flex-shrink: 0;
}
.bpl-contact-card__icon--whatsapp { background: #25D366; }
.bpl-contact-card h3 { font-size: 1rem; color: var(--bpl-black); margin-bottom: 0.25rem; }
.bpl-contact-card p { font-size: 0.8125rem; color: #666; margin-bottom: 0.4rem; max-width: none; }
.bpl-contact-card__link { font-size: 0.9375rem; color: var(--bpl-gold-dark); font-weight: 500; }
.bpl-contact-card__link:hover { color: var(--bpl-gold); }
@media (max-width: 900px) {
  .bpl-contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── 27. Forms ──────────────────────────────────────────────────── */
.bpl-form-placeholder h3 { color: var(--bpl-black); margin-bottom: 0.5rem; }
.bpl-form-placeholder p { color: #555; margin-bottom: 1.5rem; font-size: 0.9375rem; max-width: none; }
.bpl-form-placeholder__note { font-size: 0.8rem; color: #aaa; background: #f9f6f0; border-left: 3px solid var(--bpl-gold); padding: 0.6rem 1rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1rem 0; }

.bpl-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.bpl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .bpl-form-row { grid-template-columns: 1fr; } }

.bpl-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.bpl-form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #333;
}
.bpl-form-group input,
.bpl-form-group select,
.bpl-form-group textarea {
  background: var(--bpl-white);
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--bpl-black);
  transition: border-color var(--duration) var(--ease);
  -webkit-appearance: none;
}
.bpl-form-group input:focus,
.bpl-form-group select:focus,
.bpl-form-group textarea:focus {
  outline: none;
  border-color: var(--bpl-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.bpl-form-group textarea { resize: vertical; min-height: 120px; }
.bpl-form-note { font-size: 0.8125rem; color: #666; text-align: center; margin-top: 0.5rem; max-width: none; }
.bpl-form-note a { color: var(--bpl-gold-dark); }
.bpl-form-success { background: #f0faf4; border: 1px solid #4caf50; border-radius: 8px; padding: 2rem; text-align: center; font-size: 1rem; line-height: 1.6; color: #1a1a1a; }
.bpl-form-success a { color: var(--bpl-gold-dark); font-weight: 600; }

/* ── 28. Booking Layout ─────────────────────────────────────────── */
.bpl-booking-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}
.bpl-booking-form-zone h2 { color: var(--bpl-black); margin-bottom: 0.5rem; }
.bpl-booking-intro { color: #555; font-size: 0.9375rem; margin-bottom: 1.5rem; max-width: none; }
.bpl-booking-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.bpl-booking-info-card {
  background: var(--bpl-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.bpl-booking-info-card h3 { color: var(--bpl-black); margin-bottom: 1rem; font-size: 1.125rem; }
.bpl-booking-phone-cta {
  background: var(--bpl-charcoal);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bpl-booking-phone-cta h3 { color: var(--bpl-white); font-size: 1.125rem; }
.bpl-booking-phone-cta p { color: var(--bpl-text-muted); font-size: 0.9rem; margin-bottom: 0.25rem; max-width: none; }
@media (max-width: 900px) {
  .bpl-booking-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── 29. Payment Zone ───────────────────────────────────────────── */
.bpl-payment-zone {
  background: var(--bpl-white);
  border: 2px dashed rgba(201,168,76,0.4);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.bpl-payment-zone h3 { color: var(--bpl-black); margin-bottom: 0.5rem; font-size: 1.125rem; }
.bpl-payment-zone p { color: #555; font-size: 0.9rem; margin-bottom: 1rem; max-width: none; }
.bpl-payment-placeholder {
  border: 1px dashed rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.bpl-plugin-placeholder {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #aaa;
  font-size: 0.8125rem;
}
.bpl-plugin-placeholder svg { color: #ccc; flex-shrink: 0; }
.bpl-payment-note { font-size: 0.75rem; color: #aaa; max-width: none; }

/* ── 30. Map ────────────────────────────────────────────────────── */
.bpl-map-zone { text-align: center; }
.bpl-map-placeholder {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.bpl-map-caption p { color: var(--bpl-text-muted); font-size: 0.9rem; text-align: center; max-width: none; }

/* ── 31. 404 Page ───────────────────────────────────────────────── */
.bpl-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bpl-charcoal);
}
.bpl-404__inner { text-align: center; padding: 4rem 1.5rem; }
.bpl-404__code {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--bpl-gold);
  line-height: 1;
  opacity: 0.4;
}
.bpl-404__title { margin-bottom: 1rem; }
.bpl-404__text { color: var(--bpl-text-muted); margin: 0 auto 2rem; max-width: 40ch; }
.bpl-404__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── 32. Generic page / post ────────────────────────────────────── */
.bpl-generic-page .bpl-page-hero--simple { padding-bottom: 0; }
.bpl-page-body {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  color: var(--bpl-black);
}
.bpl-page-body h1, .bpl-page-body h2, .bpl-page-body h3 { color: var(--bpl-black); margin-bottom: 0.75rem; margin-top: 2rem; }
.bpl-page-body h1:first-child, .bpl-page-body h2:first-child { margin-top: 0; }
.bpl-page-body p { color: #333; margin-bottom: 1rem; }
.bpl-page-body ul, .bpl-page-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.bpl-page-body ul { list-style: disc; }
.bpl-page-body ol { list-style: decimal; }
.bpl-page-body li { color: #333; margin-bottom: 0.4rem; }
.bpl-post-meta { font-size: 0.875rem; color: var(--bpl-text-muted); margin-top: 0.5rem; }

/* ── 33. Archive ────────────────────────────────────────────────── */
.bpl-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}
.bpl-archive-card { background: var(--bpl-white); border-radius: var(--radius-md); overflow: hidden; }
.bpl-archive-card__img img { width: 100%; height: 220px; object-fit: cover; }
.bpl-archive-card__body { padding: 1.5rem; color: var(--bpl-black); }
.bpl-archive-card__title a { color: var(--bpl-black); font-size: 1.25rem; }
.bpl-archive-card__title a:hover { color: var(--bpl-gold-dark); }

/* ── 34. WhatsApp Float (JS injects the button, CSS styles it) ─── */
.bpl-whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}
.bpl-whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  color: #fff;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.bpl-whatsapp-float a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}

/* ── 35. Utility ────────────────────────────────────────────────── */
.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; }
.bpl-no-content, .bpl-no-results { padding: 3rem; text-align: center; color: var(--bpl-text-muted); }

/* ── 36. Elementor overrides — ensure Elementor sections fill width */
.elementor-section-boxed > .elementor-container { max-width: var(--container); }
body.elementor-page .site-content { padding: 0; }

/* ── 37. Responsive ─────────────────────────────────────────────── */
@media (max-width: 1023px) {
  :root { --section-pad: 4.5rem; }
}
@media (max-width: 767px) {
  :root { --section-pad: 3.5rem; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  .bpl-hero { background-attachment: scroll; }
  .bpl-hero__content { padding-top: 7rem; }
  .bpl-hero__trust-bar { gap: 0.75rem; }
  .bpl-services-grid { grid-template-columns: 1fr; }
  .bpl-fleet-grid { grid-template-columns: 1fr; }
  .bpl-testimonials-grid { grid-template-columns: 1fr; }
  .bpl-steps-grid { grid-template-columns: 1fr; }
  .bpl-values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .bpl-values-grid { grid-template-columns: 1fr; }
  .bpl-hero__actions { flex-direction: column; }
  .bpl-hero__actions .bpl-btn { justify-content: center; }
}
