/* =============================================================
   Chauffeur Luxe v2 — Complete Stylesheet
   ============================================================= */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --gold:       #c9a96e;
  --gold-light: #e0c48a;
  --gold-dim:   rgba(201,169,110,0.15);
  --dark:       #0d0d0d;
  --dark-2:     #141414;
  --dark-3:     #1c1c1c;
  --dark-4:     #242424;
  --text:       #e8e4de;
  --text-muted: #9a9690;
  --text-dim:   #6a6660;
  --white:      #ffffff;
  --border:     rgba(201,169,110,0.18);
}

/* ── HARD RESET — override everything from parent theme ─────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

html body,
body,
#page, #content, #main, main,
.site, .site-content,
.wp-site-blocks,
.is-root-container,
.wp-block-post-content,
.entry-content,
.has-global-padding,
.has-base-background-color,
.wp-block-group,
.wp-block-template-part {
  background-color: var(--dark) !important;
  color: var(--text) !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ───────────────────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: #000000;
  border-bottom: 1px solid var(--border);
}
.nav-logo a { text-decoration: none; display: flex; align-items: center; }
.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300;
  color: var(--gold) !important; letter-spacing: 0.1em;
}
.nav-logo img { height: 48px; width: auto; }

.nav-links { display: flex; gap: 0; list-style: none; height: 72px; margin: 0 !important; padding: 0 !important; }
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  color: var(--text-muted) !important; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  padding: 0 16px; height: 72px; display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none !important;
}
.nav-links a:hover { color: var(--gold) !important; border-bottom-color: var(--gold); }

.nav-cta {
  background: transparent; border: 1px solid var(--gold); color: var(--gold) !important;
  padding: 8px 20px; border-radius: 2px; font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  transition: background 0.2s, color 0.2s; white-space: nowrap;
  text-decoration: none !important;
}
.nav-cta:hover { background: var(--gold); color: #000 !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--dark) !important;
  position: relative; overflow: hidden;
  padding: 140px 5% 100px;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}
#hero::after {
  content: ''; position: absolute; left: 5%; top: 50%; transform: translateY(-50%);
  width: 1px; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.35;
}
.hero-content { max-width: 660px; position: relative; z-index: 1; padding-left: 32px; }
.hero-tag {
  display: inline-block; font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold) !important; font-weight: 500; margin-bottom: 24px;
  border: 1px solid rgba(201,169,110,0.3); padding: 5px 14px; border-radius: 2px;
}
#hero h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300;
  line-height: 1.1; color: var(--white) !important; margin-bottom: 24px;
}
#hero h1 em { color: var(--gold) !important; font-style: italic; }
#hero > .hero-content > p {
  font-size: 0.95rem; color: var(--text-muted) !important;
  max-width: 480px; margin-bottom: 40px; font-weight: 300; line-height: 1.9;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold) !important; color: #000 !important;
  padding: 13px 32px; border-radius: 2px; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  transition: background 0.2s; display: inline-block; text-decoration: none !important;
}
.btn-primary:hover { background: var(--gold-light) !important; color: #000 !important; }
.btn-outline {
  border: 1px solid rgba(201,169,110,0.4); color: var(--gold) !important;
  padding: 13px 32px; border-radius: 2px; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  transition: border-color 0.2s, color 0.2s; display: inline-block;
  text-decoration: none !important; background: transparent !important;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light) !important; }
.hero-phone {
  margin-top: 52px; display: flex; align-items: center; gap: 16px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.hero-phone > span { color: var(--text-dim); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-phone a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; color: var(--white) !important; letter-spacing: 0.05em;
}
.hero-phone a:hover { color: var(--gold) !important; }

/* ── SECTION COMMON ────────────────────────────────────────── */
section { padding: 110px 5%; background: var(--dark); }
.section-label {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold) !important; font-weight: 500; margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300;
  color: var(--white) !important; line-height: 1.15; margin-bottom: 20px;
}
.section-text { color: var(--text-muted) !important; max-width: 560px; font-size: 0.93rem; font-weight: 300; }
.divider { width: 36px; height: 1px; background: var(--gold); margin: 18px 0 34px; opacity: 0.7; }

/* ── ABOUT ─────────────────────────────────────────────────── */
#about { background: var(--dark-2) !important; }

/* ── FLEET ─────────────────────────────────────────────────── */
#fleet { background: var(--dark) !important; }
.fleet-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; margin-top: 64px; border: 1px solid var(--border);
  background: var(--border);
}
.fleet-card {
  background: var(--dark-2) !important; overflow: hidden;
  transition: background 0.3s; position: relative;
}
.fleet-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.4s;
}
.fleet-card:hover { background: var(--dark-3) !important; }
.fleet-card:hover::before { width: 100%; }
.fleet-img { width: 100%; height: 200px; object-fit: cover; filter: brightness(0.75) saturate(0.9); }
.fleet-body { padding: 28px 32px 36px; }
.fleet-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; color: var(--white) !important; margin-bottom: 14px;
}
.fleet-spec { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 5px; }
.fleet-spec strong { color: var(--gold-light); font-weight: 500; }
.fleet-desc { margin-top: 18px; color: var(--text-muted) !important; font-size: 0.87rem; font-weight: 300; line-height: 1.75; }
.fleet-desc p { margin: 0; color: var(--text-muted) !important; }

/* ── SERVICES ──────────────────────────────────────────────── */
#services { background: var(--dark-2) !important; }
.services-intro { max-width: 680px; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px; margin-top: 60px; background: var(--border); border: 1px solid var(--border);
}
.service-item {
  background: var(--dark-2) !important; cursor: pointer; position: relative;
}
.service-item-header {
  padding: 28px 26px; display: flex; align-items: flex-start; gap: 10px;
}
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: var(--gold-dim); line-height: 1; margin-bottom: 0; flex-shrink: 0;
}
.service-name {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted) !important; font-weight: 500; flex: 1; padding-top: 8px;
}
.service-arrow {
  color: var(--gold); font-size: 1.3rem; flex-shrink: 0; padding-top: 6px;
  transition: transform 0.25s; display: inline-block; line-height: 1;
}
.service-item.open .service-arrow { transform: rotate(90deg); }
.service-item:hover { background: var(--dark-3) !important; }

.service-dropdown {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--dark-4) !important;
  border-top: 1px solid var(--border);
}
.service-item.open .service-dropdown { max-height: 400px; }
.service-dropdown-inner { padding: 10px 0 14px; }
.service-dropdown-label {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); padding: 4px 26px 8px; font-weight: 500;
}
.service-dropdown-link {
  display: block; padding: 7px 26px;
  font-size: 0.78rem; color: var(--text-muted) !important;
  transition: color 0.15s, background 0.15s;
  border-left: 2px solid transparent;
  text-decoration: none !important;
}
.service-dropdown-link:hover {
  color: var(--gold) !important; background: rgba(201,169,110,0.05);
  border-left-color: var(--gold);
}

/* ── FEATURE SECTIONS ──────────────────────────────────────── */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch; padding: 0; min-height: 560px;
}
.feature:nth-child(odd)  { background: #ffffff !important; }
.feature:nth-child(even) { background: #f8f8f8 !important; }
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature-content {
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  background: inherit;
}
/* Override dark theme text for feature sections */
.feature .section-label { color: var(--gold) !important; }
.feature .section-title { color: #1a1a1a !important; }
.feature .section-text { color: #444 !important; max-width: 100%; }
.feature .section-text strong { color: #1a1a1a; }
.feature .divider { background: var(--gold); }
.feature .btn-outline {
  border-color: #1a1a1a !important;
  color: #1a1a1a !important;
  background: transparent !important;
  align-self: flex-start;
}
.feature .btn-outline:hover {
  background: #1a1a1a !important;
  color: #fff !important;
}
.feature-img-wrap {
  overflow: hidden;
  position: relative;
}
.feature-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; min-height: 400px;
  filter: none;
}

/* ── REVIEWS ───────────────────────────────────────────────── */
#reviews { background: var(--dark-2) !important; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px; margin-top: 60px; background: var(--border); border: 1px solid var(--border);
}
.review-card { background: var(--dark-2) !important; padding: 36px 32px; transition: background 0.25s; }
.review-card:hover { background: var(--dark-3) !important; }
.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  color: var(--text-muted) !important; font-size: 0.88rem;
  margin-bottom: 22px; font-style: italic; font-weight: 300; line-height: 1.8;
}
.review-text p { margin: 0; color: var(--text-muted) !important; }
.review-author { font-size: 0.8rem; color: var(--text) !important; font-weight: 500; }
.review-date { font-size: 0.68rem; color: var(--text-dim); margin-top: 4px; }

/* ── FAQ ───────────────────────────────────────────────────── */
#faq { background: var(--dark) !important; }
.faq-list { margin-top: 56px; max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 26px 0; }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--white) !important; font-weight: 300;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 20px; user-select: none;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.4rem; flex-shrink: 0; font-family: sans-serif; font-weight: 300; line-height: 1.2; }
.faq-q.open::after { content: '\2212'; }
.faq-a {
  color: var(--text-muted) !important; font-size: 0.88rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-weight: 300; line-height: 1.85;
}
.faq-a.open { max-height: 400px; padding-top: 16px; }

/* ── CONTACT ───────────────────────────────────────────────── */
#contact { background: var(--dark-2) !important; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info p { color: var(--text-muted) !important; margin-bottom: 36px; font-size: 0.9rem; font-weight: 300; line-height: 1.9; }
.contact-detail { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.contact-detail a { color: var(--gold) !important; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; }
.contact-detail a:hover { color: var(--gold-light) !important; }
.contact-detail .label { color: var(--text-dim); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.contact-detail .area-text { color: var(--text-muted) !important; font-size: 0.85rem; line-height: 1.7; font-weight: 300; }
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; font-weight: 500; }
input, select, textarea {
  width: 100%; background: var(--dark-3) !important; border: 1px solid rgba(201,169,110,0.2) !important;
  color: var(--text) !important; padding: 11px 14px;
  font-family: 'Montserrat', sans-serif; font-size: 0.87rem;
  border-radius: 2px; outline: none; transition: border-color 0.2s;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, select:focus, textarea:focus { border-color: rgba(201,169,110,0.55) !important; }
select option { background: var(--dark-3); color: var(--text); }
textarea { resize: vertical; min-height: 90px; }
.form-submit {
  background: var(--gold) !important; color: #000 !important; border: none; padding: 13px 40px;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700; cursor: pointer; border-radius: 2px;
  transition: background 0.2s; margin-top: 6px;
}
.form-submit:hover { background: var(--gold-light) !important; }
.form-response { margin-top: 12px; font-size: 0.82rem; min-height: 1.5em; }
.form-response.success { color: var(--gold); }
.form-response.error { color: #e05555; }

/* ── FOOTER ────────────────────────────────────────────────── */
#site-footer {
  background: #000000 !important; padding: 32px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; border-top: 1px solid var(--border);
}
#site-footer p { color: var(--text-dim) !important; font-size: 0.75rem; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: var(--text-dim) !important; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold) !important; }

/* ── PAGE HERO (service/location pages) ────────────────────── */
.page-hero {
  min-height: 60vh; display: flex; align-items: center;
  background: var(--dark) !important; position: relative; overflow: hidden;
  padding: 130px 5% 80px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { max-width: 700px; position: relative; z-index: 1; }
.page-hero .hero-tag { display: inline-block; margin-bottom: 20px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300;
  color: var(--white) !important; line-height: 1.1; margin-bottom: 20px;
}
.page-hero p { font-size: 0.95rem; color: var(--text-muted) !important; margin-bottom: 36px; font-weight: 300; line-height: 1.9; max-width: 520px; }

/* ── SERVICE/LOCATION SECTIONS ─────────────────────────────── */
.sl-intro { background: var(--dark-2) !important; padding: 100px 5%; }
.sl-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sl-intro-text .section-text { color: var(--text-muted) !important; }
.sl-intro-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.7) saturate(0.9); border-radius: 2px; }

.sl-fleet { background: var(--dark) !important; padding: 100px 5%; }

.sl-locations { background: var(--dark-2) !important; padding: 80px 5%; }
.location-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.location-pill {
  padding: 10px 20px; border: 1px solid var(--border); border-radius: 2px;
  color: var(--text-muted) !important; font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; transition: border-color 0.2s, color 0.2s;
  text-decoration: none !important;
}
.location-pill:hover { border-color: var(--gold); color: var(--gold) !important; }

.sl-cta { background: var(--dark-2) !important; padding: 100px 5%; text-align: center; }
.sl-cta-inner { max-width: 600px; margin: 0 auto; }
.sl-cta p { color: var(--text-muted) !important; margin-top: 16px; font-size: 0.93rem; font-weight: 300; }
.sl-cta .divider { margin: 18px auto 32px; }
.sl-cta .hero-btns { justify-content: center; }

/* ── GENERIC PAGE CONTENT ──────────────────────────────────── */
.page-content { padding: 120px 5% 80px; background: var(--dark) !important; }
.page-content .entry-content p { color: var(--text-muted) !important; margin-bottom: 1em; font-weight: 300; }
.page-content .entry-content h2,
.page-content .entry-content h3 { font-family: 'Cormorant Garamond', serif; color: var(--white) !important; margin: 1.5em 0 0.5em; font-weight: 300; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .feature { grid-template-columns: 1fr; min-height: auto; }
  .feature.reverse { direction: ltr; }
  .feature-img { min-height: 280px; }
  .feature-content { padding: 60px 5%; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .sl-intro-inner { grid-template-columns: 1fr; gap: 36px; }
  .sl-intro-img { order: -1; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: #000; flex-direction: column; height: auto;
    border-bottom: 1px solid var(--border); z-index: 9998;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); height: auto; width: 100%; }
  .nav-links a { height: auto; padding: 14px 5%; border-bottom: none; width: 100%; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 72px 5%; }
  .hero-content { padding-left: 0; }
  #hero::after { display: none; }
  .page-hero { min-height: 50vh; }
  .sl-cta { padding: 72px 5%; }
}

/* ══════════════════════════════════════════
   PARALLAX SECTIONS
══════════════════════════════════════════ */

/* Hero parallax background */
#hero {
  background-attachment: fixed !important;
  background-image:
    radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #111108 100%);
  background-size: cover;
  background-position: center;
}

/* Parallax divider banners — appear between sections */
.parallax-banner {
  position: relative;
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.parallax-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 1;
}
.parallax-banner-content {
  position: relative; z-index: 2;
  text-align: center; padding: 60px 5%; max-width: 800px;
}
.parallax-banner-content .section-label { color: var(--gold) !important; margin-bottom: 16px; }
.parallax-banner-content h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300;
  color: var(--white) !important; line-height: 1.2; margin-bottom: 20px;
}
.parallax-banner-content p {
  color: rgba(232,228,222,0.75) !important;
  font-size: 0.95rem; font-weight: 300;
  max-width: 560px; margin: 0 auto 32px; line-height: 1.9;
}

/* Banner 1 — between Fleet and Services (Rolls-Royce) */
.parallax-banner-1 {
  background-image: url('assets/images/rolls-royce-ghost-color-208564-500w.jpg');
}
/* Banner 2 — between Features and Reviews (limo) */
.parallax-banner-2 {
  background-image: url('assets/images/638732235435206040-800h.jpg');
}
/* Banner 3 — before Contact (airport/car) */
.parallax-banner-3 {
  background-image: url('assets/images/limo03-500w.png');
}

/* Feature sections — parallax image side */
.feature-img-wrap {
  position: relative; overflow: hidden;
}
.feature-img {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Scroll-reveal fade-in for sections */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: disable fixed attachment (it doesn't work on iOS) */
@media (max-width: 768px) {
  .parallax-banner {
    background-attachment: scroll !important;
    min-height: 260px;
  }
  #hero {
    background-attachment: scroll !important;
  }
}

/* ══════════════════════════════════════════
   HERO SLIDESHOW
══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 0 5%;
  text-align: center;
  background: #000 !important;
  background-attachment: scroll !important;
  background-image: none !important;
}

/* Slide layers */
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity;
}
.hero-slide.active {
  opacity: 1;
}

/* Dark overlay */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.45);
}

/* Content sits above overlay */
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
#hero .hero-tag {
  display: none;
}
#hero h1 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(2.2rem, 5.5vw, 6.5rem);
  font-weight: 800 !important;
  line-height: 1.05;
  color: #ffffff !important;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 30px rgba(0,0,0,0.7);
  max-width: 100%;
}
#hero h1 em {
  color: #ffffff !important;
  font-style: normal;
}
#hero > .hero-overlay ~ .hero-content > p,
#hero .hero-content > p {
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.85) !important;
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 400 !important;
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
/* Override the old rule that was scoping p */
#hero > .hero-content > p { all: unset; }
#hero .hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.92) !important;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  display: block;
}
.hero-btns {
  justify-content: center;
  gap: 16px;
}
/* Get Started button — dark solid pill matching screenshot */
#hero .btn-primary {
  background: rgba(10,10,10,0.75) !important;
  border: 2px solid rgba(255,255,255,0.5) !important;
  color: #fff !important;
  padding: 16px 52px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s;
}
#hero .btn-primary:hover {
  background: rgba(10,10,10,0.92) !important;
  border-color: #fff !important;
}
#hero .btn-outline {
  display: none !important;
}

.hero-phone {
  margin-top: 40px;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
}
.hero-phone > span { color: rgba(255,255,255,0.5); }
.hero-phone a { color: rgba(255,255,255,0.9) !important; font-size: 1.4rem; }
.hero-phone a:hover { color: var(--gold) !important; }

/* Slide dots */
.hero-dots {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Remove the old decorative line */
#hero::after { display: none !important; }
#hero::before { display: none !important; }

@media (max-width: 768px) {
  #hero h1 { font-size: clamp(2rem, 10vw, 4rem); letter-spacing: 0.03em; }
  #hero .hero-content p { font-size: 0.72rem; letter-spacing: 0.12em; }
  .hero-btns { flex-direction: column; align-items: center; }
  #hero { height: 100svh; }
}

/* ── FLOATING BOOK NOW BUTTON ── */
#float-book {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: #000;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
#float-book:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  #float-book { bottom: 20px; right: 20px; padding: 12px 22px; font-size: 0.72rem; }
}

/* ══════════════════════════════════════════
   SITE-WIDE PARALLAX DARK SECTIONS
   All dark/black background sections get
   a subtle parallax car image behind them
══════════════════════════════════════════ */

/* About section */
#about {
  position: relative;
  background-image: url('assets/images/2-a711432c-500w.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}
#about::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 0;
}
#about > * { position: relative; z-index: 1; }

/* Fleet section */
#fleet {
  position: relative;
  background-image: url('assets/images/1-0dcc1445-800h.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}
#fleet::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 0;
}
#fleet > * { position: relative; z-index: 1; }

/* Services section */
#services {
  position: relative;
  background-image: url('assets/images/3-3e85f594-1920w.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}
#services::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 0;
}
#services > * { position: relative; z-index: 1; }
/* Services image grid needs to be above overlay */
.services-img-grid { position: relative; z-index: 2; }

/* Dark feature sections */
.feature[style*="dark"] {
  position: relative;
  background-attachment: fixed !important;
}

/* Airport Car Service dark section */
#services ~ .feature:nth-of-type(1),
.feature[style*="dark-2"] {
  background-image: url('assets/images/4-9a782604-800h.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}

/* FAQ section */
#faq {
  position: relative;
  background-image: url('assets/images/9-6cdf1cc6-800h.png') !important;
  background-size: cover !important;
  background-position: center top !important;
  background-attachment: fixed !important;
}
#faq::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.94);
  z-index: 0;
}
#faq > * { position: relative; z-index: 1; }

/* Contact section */
#contact {
  position: relative;
  background-image: url('assets/images/7-f5b31d90-800h.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 0;
}
#contact > * { position: relative; z-index: 1; }
#contact .contact-wrap { position: relative; z-index: 2; }

/* Reviews section already has parallax via inline styles */

/* Mobile: disable fixed attachment (iOS limitation) */
@media (max-width: 768px) {
  #about, #fleet, #services, #faq, #contact {
    background-attachment: scroll !important;
  }
}

/* ══════════════════════════════════════════
   TABLET & MOBILE RESPONSIVE
   Tablet: max-width 1024px
   Mobile: max-width 768px
   Small:  max-width 480px
══════════════════════════════════════════ */

/* ── TABLET (up to 1024px) ── */
@media (max-width: 1024px) {

  /* Nav */
  .nav-links a { padding: 0 10px; font-size: 0.68rem; }
  .nav-cta { padding: 8px 14px; font-size: 0.68rem; }

  /* Hero */
  #hero h1 { font-size: 2.8rem !important; }
  .hero-content { padding-left: 0 !important; }

  /* Feature sections */
  .feature { min-height: 400px; }
  .feature-content { padding: 60px 40px; }

  /* Fleet grid */
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services image grid */
  .services-img-grid { grid-template-columns: repeat(4, 1fr); }
  .service-tile img { height: 220px; }

  /* Reviews */
  .review-card-fb { min-width: 200px; max-width: 240px; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  #site-footer { grid-template-columns: 1fr 1fr; }
  #site-footer > div:last-child { grid-column: 1 / -1; }
}

/* ── MOBILE (up to 768px) ── */
@media (max-width: 768px) {

  /* Nav — hamburger menu */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #000;
    flex-direction: column;
    height: auto;
    border-bottom: 1px solid var(--border);
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .nav-links a {
    height: auto; padding: 16px 5%;
    font-size: 0.85rem; border-bottom: none;
    width: 100%; display: block;
  }
  .nav-toggle { display: flex; }
  .nav-cta { font-size: 0.68rem; padding: 8px 14px; }

  /* Hero */
  #hero { padding: 100px 5% 60px; height: 100svh !important; text-align: center; }
  #hero::after { display: none; }
  #hero h1 { font-size: 2.2rem !important; letter-spacing: 0.02em !important; }
  #hero .hero-content p { font-size: 0.75rem !important; letter-spacing: 0.1em !important; }
  .hero-btns { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; }
  .hero-phone { justify-content: center; }
  .hero-dots { bottom: 20px; }

  /* Sections */
  section { padding: 60px 5% !important; }

  /* Feature sections — stack vertically */
  .feature {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    direction: ltr !important;
  }
  .feature.reverse { direction: ltr !important; }
  .feature-content { padding: 48px 5% !important; order: 2; }
  .feature-img-wrap { order: 1; }
  .feature-img { min-height: 240px !important; height: 240px; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Services image grid */
  .services-img-grid { grid-template-columns: repeat(2, 1fr); }
  .service-tile img { height: 160px; }
  .service-tile-label { font-size: 0.6rem; padding: 10px 8px; }

  /* Reviews Facebook bar */
  .fb-rating-bar { flex-direction: column; align-items: flex-start; padding: 16px; }
  .fb-review-us { width: 100%; text-align: center; }
  .review-card-fb {
    min-width: 260px;
    max-width: 90vw;
    flex: 0 0 80vw;
  }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr !important; gap: 32px; }
  .form-row { grid-template-columns: 1fr !important; }

  /* Footer */
  #site-footer {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 32px;
    padding: 40px 5%;
  }
  #site-footer > div:last-child { grid-column: auto; }

  /* Page hero (sub-pages) */
  .page-hero { padding: 100px 5% 60px; min-height: 50vh; }
  .page-hero h1 { font-size: 2rem !important; }

  /* Service/location sections */
  .sl-intro-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .sl-intro-img { order: -1; }
  .sl-cta { padding: 60px 5%; }
  .location-grid { justify-content: center; }

  /* FAQ */
  #faq .faq-q { font-size: 0.72rem; padding: 18px 56px 18px 20px; }

  /* Float button */
  #float-book { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 0.7rem; }

  /* Parallax — disable fixed on mobile (iOS bug) */
  #about, #fleet, #services, #faq, #contact,
  .parallax-banner, #reviews, .clr-reviews-section {
    background-attachment: scroll !important;
  }
}

/* ── SMALL MOBILE (up to 480px) ── */
@media (max-width: 480px) {

  /* Hero */
  #hero h1 { font-size: 1.8rem !important; }
  #hero .hero-content p { font-size: 0.68rem !important; }

  /* Nav logo */
  .nav-logo img { height: 36px; }
  .nav-logo span { font-size: 1.1rem; }

  /* Services grid — 2 cols on small mobile */
  .services-img-grid { grid-template-columns: repeat(2, 1fr); }
  .service-tile img { height: 130px; }
  .service-tile-label { font-size: 0.55rem; letter-spacing: 0.1em; padding: 8px 4px; }

  /* Fleet single column */
  .fleet-grid { grid-template-columns: 1fr; }

  /* Section titles */
  .section-title { font-size: 1.6rem !important; }

  /* Feature content */
  .feature-content { padding: 36px 5% !important; }
  .feature-img { height: 200px !important; min-height: 200px !important; }

  /* FAQ */
  #faq .faq-title { font-size: 1.2rem; }
  #faq .faq-q { font-size: 0.65rem; letter-spacing: 0.1em; }

  /* Footer map */
  #site-footer iframe { height: 140px; }

  /* Contact form */
  input, select, textarea { font-size: 16px; } /* Prevents iOS zoom on focus */
}

/* ── EXTRA: Tablet portrait (768-1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Feature sections — keep 2 col but smaller padding */
  .feature { grid-template-columns: 1fr 1fr; min-height: 440px; }
  .feature-content { padding: 48px 36px; }

  /* Services grid 3 cols on tablet */
  .services-img-grid { grid-template-columns: repeat(3, 1fr); }
  .service-tile img { height: 200px; }

  /* Fleet 2 cols */
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reviews */
  .review-card-fb { min-width: 180px; max-width: 220px; }

  /* Hero */
  #hero h1 { font-size: 3rem !important; }
}
