/* =========================================================
   QTS Black Car & Limo — Full Standalone Stylesheet
   Works with the provided index.html (no legacy CSS required)
   ========================================================= */

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  background: #0b1220;
  color: rgba(255,255,255,0.92);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }
ul { margin: 0; padding: 0; }
p { margin: 0 0 1rem; }
h1,h2,h3,h4 { margin: 0 0 0.6rem; line-height: 1.15; }

h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

h3 { font-weight: 700; font-size: 1.15rem; }
h4 { font-weight: 700; font-size: 1.05rem; }

:root{
  --bg: #0b1220;
  --bg-elev: #0f1a2d;
  --bg-elev2: #101f38;
  --border: rgba(255,255,255,0.10);
  --border2: rgba(255,255,255,0.14);
  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.58);
  --accent: #f4c84a;
  --accent2: #ffd773;
  --shadow: 0 18px 55px rgba(0,0,0,0.45);
  --shadow2: 0 10px 32px rgba(0,0,0,0.35);
  --radius: 18px;
  --radius2: 14px;

  --header-bg: rgba(10, 16, 30, 0.78);
  --header-bg-solid: rgba(10, 16, 30, 0.96);
}

/* Skip link */
.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
}
.skip-link:focus { left: 12px; }

/* Container */
.container{
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* Ensure anchors don’t tuck behind sticky header */
section[id]{ scroll-margin-top: 92px; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
  user-select: none;
  cursor: pointer;
}

.btn:active{ transform: scale(0.98); }

.btn-primary{
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color: #141414;
  border-color: rgba(0,0,0,0.10);
}

.btn-primary:hover{
  filter: brightness(1.02);
}

.btn-secondary{
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.16);
}

.btn-secondary:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.20);
}

.btn-tertiary{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.14);
}

.btn-tertiary:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}

.btn-block{ width: 100%; }

/* ---------- Header / Navigation ---------- */
.main-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand-logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text{
  font-weight: 800;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.98);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile toggle */
.mobile-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.95);
}

/* Desktop nav */
.desktop-nav{ display: none; }

.main-nav{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav > li > a,
.main-nav > li > button,
.main-nav > li > span{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.main-nav > li > a:hover,
.main-nav > li > button:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.nav-cta .btn{ padding: 0.62rem 0.95rem; }

.nav-disabled{
  color: rgba(255,255,255,0.45) !important;
  border-color: rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.03) !important;
  cursor: not-allowed !important;
}

/* Dropdown */
.dropdown{ position: relative; }
.dropdown-toggle{ border: 1px solid transparent; }

.dropdown-menu{
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(360px, 92vw);
  background: var(--header-bg-solid);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.55rem;
  list-style: none;
  opacity: 0;
  transform: translateY(-7px);
  pointer-events: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a{
  display: flex;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
}

.dropdown-menu a:hover{
  background: rgba(255,255,255,0.06);
}

.dropdown-label{
  padding: 0.35rem 0.7rem 0.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.56);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dropdown-sep{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 0.45rem 0.25rem;
  border-radius: 999px;
}

/* ---------- Mobile Nav Panel ---------- */
.mobile-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-overlay.open{
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav{
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(360px, 88vw);
  background: var(--header-bg-solid);
  z-index: 1000;
  transform: translateX(110%);
  transition: transform 220ms ease;
  border-left: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
}

.mobile-nav.open{ transform: translateX(0); }

.mobile-nav-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.mobile-brand{
  font-weight: 800;
  color: rgba(255,255,255,0.96);
}

.mobile-close{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.95);
  cursor: pointer;
}

.mobile-nav-links{
  list-style: none;
  margin: 0;
  padding: 0.6rem 0.75rem;
  overflow: auto;
  flex: 1 1 auto;
}

.mobile-nav-links a,
.mobile-nav-links span,
.mobile-dropdown-toggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.85rem 0.85rem;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255,255,255,0.93);
  font-weight: 800;
  border: 1px solid transparent;
  background: transparent;
}

.mobile-nav-links a:hover,
.mobile-dropdown-toggle:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.mobile-dropdown-toggle{
  cursor: pointer;
  border: 1px solid transparent;
}

.mobile-dropdown-menu{
  list-style: none;
  margin: 0.35rem 0 0.6rem 0;
  padding: 0 0.25rem;
  display: none;
}

.mobile-dropdown-menu.open{ display: block; }

.mobile-dropdown-menu a{
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

.mobile-cta{
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ---------- Sections ---------- */
.section{
  padding: clamp(2.6rem, 6vw, 4.2rem) 0;
  background: var(--bg);
}

.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
}

.section-head{
  margin-bottom: 1.45rem;
}

.lead{
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 78ch;
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 0;
}

.hero-slider{
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  overflow: hidden;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero-slide.active{ opacity: 1; }

.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 560px at 18% 26%, rgba(0,0,0,0.25), rgba(0,0,0,0.62)),
    linear-gradient(180deg, rgba(0,0,0,0.40), rgba(0,0,0,0.70));
}

.hero-content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0 clamp(2.2rem, 6vw, 4.4rem);
  max-width: 78ch;
}


.hero-subtitle{
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  margin-top: 0.9rem;
  margin-bottom: 1.25rem;
}

.hero-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

/* Slider controls */
.slider-prev,
.slider-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  z-index: 3;
}

.slider-prev{ left: 12px; }
.slider-next{ right: 12px; }

.slider-prev:hover,
.slider-next:hover{
  background: rgba(0,0,0,0.34);
  border-color: rgba(255,255,255,0.22);
}

.slider-indicators{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.indicator{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.18);
  cursor: pointer;
}

.indicator.active{
  background: var(--accent);
  border-color: rgba(0,0,0,0.22);
}

/* Fort Worth Moms badge */
.hero-trust{ margin-top: 0.55rem; }

.fwmoms-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.94);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
}

.fwmoms-badge img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* ---------- Layout blocks ---------- */
.two-col{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.content p{ color: rgba(255,255,255,0.86); }

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}
.cta-row.center{ justify-content: center; }
.top-gap{ margin-top: 1.25rem; }

.clean-list{
  list-style: none;
  padding: 0;
  margin: 0.9rem 0;
  display: grid;
  gap: 0.55rem;
}

.clean-list li{
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255,255,255,0.88);
}

.clean-list i{
  margin-top: 0.2rem;
  color: var(--accent);
}

/* ---------- Feature cards ---------- */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
}

.feature-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.05rem;
  box-shadow: var(--shadow2);
}

.feature-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,200,74,0.14);
  border: 1px solid rgba(244,200,74,0.20);
  margin-bottom: 0.75rem;
}

.feature-icon i{ color: var(--accent); }

/* ---------- Card grids (images stay attached on mobile) ---------- */
.card-grid,
.venue-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}

.image-card,
.venue-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.image-card img,
.venue-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-card-body,
.venue-body{
  padding: 0.95rem 1rem 1.05rem;
}

.image-card-body p,
.venue-body p{
  color: var(--muted);
  margin: 0;
}

/* Note box */
.note-box{
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.86);
}

/* CTA panel */
.cta-panel{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 1.1rem;
}

.cta-panel-actions{
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

/* Counties */
.counties p{ color: var(--muted); }

.county-links{
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.county-disabled{
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--muted2);
}

/* ---------- Footer ---------- */
.site-footer{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  padding: 2.3rem 0 1.2rem;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  gap: 1.2rem;
}

.footer-col h4{
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0.8rem;
}

.footer-col ul{ list-style: none; padding: 0; display: grid; gap: 0.55rem; }

.footer-col a{
  text-decoration: none;
  color: rgba(255,255,255,0.84);
}

.footer-col a:hover{
  text-decoration: underline;
  color: rgba(255,255,255,0.95);
}

.footer-brand{
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-title{
  font-weight: 900;
  color: rgba(255,255,255,0.96);
}

.footer-sub{
  color: rgba(255,255,255,0.68);
  font-weight: 650;
  font-size: 0.95rem;
}

.footer-trust{ margin-top: 1rem; }

.fwmoms-footer{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  color: rgba(255,255,255,0.90);
  font-weight: 800;
}

.fwmoms-footer img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-bottom{
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: rgba(255,255,255,0.62);
  font-weight: 650;
  font-size: 0.95rem;
}

/* ---------- Responsive ---------- */
@media (min-width: 980px){
  .desktop-nav{ display: block; }
  .mobile-toggle{ display: none; }
  .mobile-nav{ display: none; }
  .mobile-overlay{ display: none; }
}

@media (max-width: 1100px){
  .feature-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 979px){
  .two-col{ grid-template-columns: 1fr; }
  .card-grid,
  .venue-grid{ grid-template-columns: 1fr; }
  .cta-panel{ grid-template-columns: 1fr; }
  .brand-text{ max-width: 62vw; }
  .slider-prev{ left: 8px; }
  .slider-next{ right: 8px; }
}

@media (max-width: 520px){
  .container{ width: calc(100% - 1.25rem); }
  .hero-content{ padding: 2.2rem 0; }
  .btn{ width: 100%; }
  .hero-cta .btn{ width: 100%; }
}
/* =========================
   MOBILE FIXES: HEADER/FOOTER LOGOS + EMAIL WRAP
   Add at the END of style.css
   ========================= */

/* ---- Header logo sizing (prevents oversized logo on mobile) ---- */
.site-logo,
.header-logo,
.nav-logo,
.brand img,
.site-branding img,
header img[alt*="QTS"],
header .logo img {
  max-width: 120px;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .site-logo,
  .header-logo,
  .nav-logo,
  .brand img,
  .site-branding img,
  header img[alt*="QTS"],
  header .logo img {
    max-width: 96px;
  }
}

/* Header brand should NOT be capped; it causes the name to truncate */
header .brand,
header .logo,
header .site-branding {
  flex: 0 1 auto;
  max-width: none;
}

/* ---- Footer logo sizing (keeps it from dominating the column) ---- */
.footer-logo,
footer .logo img,
footer img[alt*="QTS"],
footer .brand img {
  max-width: 140px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .footer-logo,
  footer .logo img,
  footer img[alt*="QTS"],
  footer .brand img {
    max-width: 110px;
    margin: 0 auto; /* centers it on mobile */
  }
}

/* ---- Email wrap fix (prevents spilling off page) ---- */
footer a,
.footer a,
.footer-contact a,
.contact a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* If the email is inside a flex row, this stops overflow */
.footer-contact,
.footer-col,
footer .col,
footer .column {
  min-width: 0;
}
/* =========================================================
   MOBILE FIX PACK (APPEND ONLY)
   - Hamburger/off-canvas mobile menu
   - Brand text not cut off
   - Prevent right-side overflow
   - Footer alignment + email wrapping
   ========================================================= */

/* Prevent random horizontal scrolling / right-side whitespace */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header brand (logo + "QTS Black Car & Limo") should not truncate */
.header-inner,
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  min-width: 0; /* allows text to wrap instead of forcing overflow */
  text-decoration: none;
}

.brand img,
.brand-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: block;
  font-weight: 700;
  line-height: 1.1;
  color: rgba(255,255,255,0.95);
  white-space: normal;     /* allow wrap */
  overflow: visible;       /* do not clip */
  text-overflow: unset;    /* no ellipsis */
}

/* Mobile header spacing */
@media (max-width: 900px) {
  .brand img,
  .brand-logo { height: 34px; max-width: 120px; }

  .brand-text { font-size: 0.98rem; }

  /* Ensure the desktop nav disappears on mobile */
  .desktop-nav { display: none !important; }

  /* Hamburger button styling (no weird circle / click issues) */
  .mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(15,23,42,0.85); /* solid enough */
    color: rgba(255,255,255,0.95);
    cursor: pointer;
    z-index: 1002;
  }

  .mobile-toggle i { pointer-events: none; }

  /* Overlay should NOT block the hamburger when closed */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
    z-index: 1000;
  }

  /* Off-canvas menu (hidden until opened) */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(86vw, 360px);
    background: rgba(10,15,28,0.98); /* NOT transparent */
    border-left: 1px solid rgba(255,255,255,0.10);
    transform: translateX(105%);
    transition: transform 220ms ease;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* If your script adds .open (recommended) */
  .mobile-nav.open { transform: translateX(0); }
  .mobile-overlay.open { opacity: 1; pointer-events: auto; }

  /* If your script adds .active instead (fallback support) */
  .mobile-nav.active { transform: translateX(0); }
  .mobile-overlay.active { opacity: 1; pointer-events: auto; }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }

  .mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.95);
    cursor: pointer;
  }

  .mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 10px 10px 0;
  }

  .mobile-nav-links a {
    display: block;
    padding: 12px 12px;
    border-radius: 10px;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
  }

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

  .mobile-cta {
    padding: 14px 14px 18px;
    border-top: 1px solid rgba(255,255,255,0.10);
    margin-top: 10px;
  }

  .btn-block { width: 100%; }
}

/* Footer: keep aligned + prevent email from going off-screen */
.site-footer,
.footer-grid {
  max-width: 100%;
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-logo {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Make all footer links wrap safely */
.site-footer a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Mobile footer tightening */
@media (max-width: 900px) {
  .footer-logo { height: 32px; max-width: 150px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom p { text-align: center; }
}
/* ================================
   MOBILE HERO SIZE (reduce height)
   ================================ */

.hero-slider {
  min-height: 520px;
  height: 78vh;
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 440px;
    height: 62vh; /* reduced from being too tall */
  }
}

@media (max-width: 420px) {
  .hero-slider {
    min-height: 410px;
    height: 58vh;
  }
}
/* ==========================================
   MOBILE MENU: prevent hamburger overlapping X
   ========================================== */

body.nav-open #mobileMenuToggle {
  opacity: 0;
  pointer-events: none;
}

.mobile-nav {
  z-index: 1000;
}

.mobile-overlay {
  z-index: 900;
}

.mobile-nav .mobile-close {
  z-index: 1100;
}
/* ==========================
   Fort Worth Moms badge sizing
   ========================== */

.fwmoms-badge img,
.fwmoms-footer img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .fwmoms-badge img,
  .fwmoms-footer img {
    width: 36px;
    height: 36px;
  }
}

/* If the badge container itself is oversized */
.fwmoms-badge {
  max-width: 320px;
}

@media (max-width: 768px) {
  .fwmoms-badge {
    max-width: 260px;
  }
}
/* =========================================
   Fort Worth Moms badge (HERO) — force size
   ========================================= */

/* Target the badge container so it cannot grow */
.hero-trust,
.fwmoms-badge {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Hard cap the image size no matter what */
.fwmoms-badge img {
  width: 120px !important;
  max-width: 120px !important;
  height: auto !important;
  max-height: 120px !important;
  object-fit: contain !important;
  display: block;
}

/* Tighten spacing so it doesn't feel like a section */
.fwmoms-badge {
  gap: 12px;
  margin-top: 14px;
}

.fwmoms-badge span {
  font-size: 14px;
  line-height: 1.2;
  opacity: 0.9;
}

/* Smaller phones */
@media (max-width: 420px) {
  .fwmoms-badge img {
    width: 96px !important;
    max-width: 96px !important;
    max-height: 96px !important;
  }

  .fwmoms-badge span {
    font-size: 13px;
  }
}
/* =========================================
   HERO – Fort Worth Moms badge (footer-style)
   ========================================= */

.hero-trust {
  margin-top: 18px;
}

/* Pill container */
.hero-trust .fwmoms-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  text-decoration: none;
  max-width: fit-content;
}

/* Small circular logo */
.hero-trust .fwmoms-badge img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

/* Text styling */
.hero-trust .fwmoms-badge span {
  font-size: 14px;
  font-weight: 500;
  color: #e5e7eb;
  white-space: nowrap;
}

/* Hover (subtle) */
.hero-trust .fwmoms-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Mobile tightening */
@media (max-width: 480px) {
  .hero-trust .fwmoms-badge {
    padding: 8px 12px;
  }

  .hero-trust .fwmoms-badge img {
    width: 30px !important;
    height: 30px !important;
  }

  .hero-trust .fwmoms-badge span {
    font-size: 13px;
  }
}
/* =========================================================
   Fleet Page (fleet.html) — add to END of style.css
   ========================================================= */

.fleet-hero .cta-row { margin-top: 1rem; }

.fleet-jump {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.fleet-jump-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
}

.fleet-hero-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  margin-top: 1.25rem;
}

.fleet-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.fleet-subsection { margin-top: 1.5rem; }
.fleet-subsection h3 { margin-bottom: 0.75rem; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.fleet-card {
  grid-column: span 6;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
}

.fleet-card img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.fleet-card figcaption {
  padding: 0.85rem 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.92;
}

/* Responsive */
@media (max-width: 860px) {
  .fleet-card { grid-column: span 12; }
  .fleet-card img { max-height: 320px; }
}
/* =========================
   HERO – Fort Worth Moms badge (match footer vibe)
   ========================= */
.hero .hero-trust { margin-top: 1rem; }

.hero .fwmoms-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 100%;
}

.hero .fwmoms-badge img{
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 999px;
  flex: 0 0 auto;
}

.hero .fwmoms-badge span{
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.1;
  white-space: nowrap;
}
/* =========================
   FLEET PAGE — STRUCTURE + POLISH
   ========================= */

body.fleet-page .section .section-head{ margin-bottom: 18px; }
body.fleet-page .section .section-head .lead{ max-width: 80ch; opacity: 0.92; }

body.fleet-page .fleet-jump{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
body.fleet-page .fleet-jump-link{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  border:1px solid rgba(255,255,255,0.25);
}
body.fleet-page .section-alt .fleet-jump-link{
  border-color: rgba(0,0,0,0.14);
}
body.fleet-page .fleet-jump-link:hover{
  border-color: rgba(255,255,255,0.45);
}
body.fleet-page .section-alt .fleet-jump-link:hover{
  border-color: rgba(0,0,0,0.28);
}

/* Subsections become clean “modules” */
body.fleet-page .fleet-subsection{
  margin-top:16px;
  padding:18px;
  border:1px solid rgba(0,0,0,0.10);
  border-radius:16px;
  background: rgba(255,255,255,0.75);
}
body.fleet-page .section-alt .fleet-subsection{
  background: rgba(255,255,255,0.92);
}
body.fleet-page .fleet-subsection h3{
  margin:0 0 12px;
  font-size:16px;
  letter-spacing:-0.01em;
  display:flex;
  align-items:center;
  gap:10px;
}
body.fleet-page .fleet-subsection h3::after{
  content:"";
  flex:1;
  height:1px;
  background: rgba(0,0,0,0.10);
}

/* Grid consistency */
body.fleet-page .fleet-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}

/* Card consistency */
body.fleet-page .fleet-card{
  grid-column: span 6;
  border:1px solid rgba(0,0,0,0.10);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
@media (max-width: 900px){
  body.fleet-page .fleet-card{ grid-column: span 12; }
}

body.fleet-page .fleet-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}
@media (max-width: 520px){
  body.fleet-page .fleet-card img{ height:220px; }
}

body.fleet-page .fleet-card figcaption{
  padding:10px 12px;
  font-size:13px;
  font-weight:600;
  opacity:0.92;
  border-top:1px solid rgba(0,0,0,0.08);
}

/* Sprinters hero image matches the card system */
body.fleet-page .fleet-hero-image{
  border:1px solid rgba(0,0,0,0.10);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  margin: 12px 0 18px;
}
body.fleet-page .fleet-hero-image img{
  width:100%;
  height: clamp(220px, 30vw, 360px);
  object-fit:cover;
  display:block;
}
/* ===== HEADER BRAND TEXT: FORCE SINGLE-LINE HORIZONTAL ===== */
.main-header .brand{
  display:flex;
  flex-direction: row;
  align-items:center;
  gap: 12px;
}
/* Desktop: keep name readable */
@media (min-width: 980px){
  .brand-text{
    overflow: visible;
    text-overflow: unset;
    white-space: nowrap; /* keep it on one line */
  }
}

.main-header .brand-text{
  display: inline-block;
  white-space: nowrap;   /* stops "QTS / Black / Car / & / Limo" stacking */
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Optional: slightly smaller on small screens so it still fits */
@media (max-width: 520px){
  .main-header .brand-text{ font-size: 0.95rem; }
}
/* =========================
   Fleet Vehicle Blocks (Dark Theme)
   ========================= */
.fleet-vehicle{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,10,12,0.55);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  margin-top: 18px;
}

.fleet-vehicle-inner{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
}

@media (max-width: 980px){
  .fleet-vehicle-inner{ grid-template-columns: 1fr; }
}

.fleet-gallery{
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 980px){
  .fleet-gallery{ border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

.fleet-main{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.30);
}
.fleet-main img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
@media (max-width: 520px){
  .fleet-main img{ height: 260px; }
}

.fleet-thumbs{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
@media (max-width: 520px){
  .fleet-thumbs{ grid-template-columns: repeat(4, 1fr); }
}

.fleet-thumb{
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  cursor: pointer;
}
.fleet-thumb img{
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
}
.fleet-thumb[aria-current="true"]{
  outline: 2px solid rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.25);
}

.fleet-details{
  padding: 22px 22px 18px;
}

.fleet-title{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -0.02em;
}

.fleet-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 10px 0 14px;
  opacity: 0.92;
  font-weight: 600;
}
.fleet-meta span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.fleet-desc{
  margin: 0 0 16px;
  max-width: 70ch;
  opacity: 0.92;
  line-height: 1.55;
}

.fleet-features{
  margin: 0;
  padding-left: 18px;
  opacity: 0.95;
}
.fleet-features li{ margin: 8px 0; }

.fleet-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.fleet-actions .btn{ min-height: 44px; }

/* =========================
   Fleet NEW badge
   ========================= */
.fleet-vehicle.is-new{
  position: relative;
}

.fleet-vehicle.is-new::before{
  content: "NEW 2024";
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;

  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #111;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 999px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  text-transform: uppercase;
}

/* Mobile spacing tweak */
@media (max-width: 520px){
  .fleet-vehicle.is-new::before{
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 6px 10px;
  }
}
/* =========================
   Hero Image Overlay
   ========================= */
.hero-overlay{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end; /* push content to bottom */
  overflow: hidden;
}
.hero-overlay .hero-content{
  padding-bottom: 64px; /* space from bottom edge */
}
@media (max-width: 768px){
  .hero-overlay .hero-content{
    padding-bottom: 48px;
  }
}
.hero-overlay{
  align-items: flex-end;
}

.hero-overlay .hero-content{
  margin-bottom: 4vh;
}


/* Background image */
.hero-overlay .hero-bg{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      180deg,
      rgba(5,10,20,0.88) 0%,
      rgba(5,10,20,0.75) 45%,
      rgba(5,10,20,0.55) 100%
    ),
    url("Photos/Private Airport Pick-up - with GMC.png"); /* <-- CHANGE IMAGE HERE */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Content layer */
.hero-overlay .hero-content{
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* Headline */
.hero-overlay h1{
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 16px;
}

/* Body copy */
.hero-lead{
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 720px;
}

/* Buttons */
.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Fort Worth Moms badge */
.hero-trust{
  margin-top: 28px;
}

.hero-fwmoms{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  font-weight: 600;
}

.hero-fwmoms img{
  width: 34px;
  height: auto;
}

/* Mobile tuning */
@media (max-width: 768px){
  .hero-overlay{
    min-height: 92vh;
  }

  .hero-overlay h1{
    font-size: clamp(36px, 9vw, 48px);
  }

  .hero-lead{
    font-size: 16px;
  }
}
/* Special Events: centered intro + 2x2 card grid */
.events-intro{
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: center;
}

.events-intro .lead{
  margin-left: auto;
  margin-right: auto;
}

.events-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 820px){
  .events-grid{
    grid-template-columns: 1fr;
  }

  .events-intro{
    text-align: left;
    margin-bottom: 40px;
  }
}
/* =========================
   Center Special Events text (desktop)
   ========================= */

/* Special Events: premium layout = centered column, left-aligned content */
.events-intro{
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: left;              /* IMPORTANT */
}

/* Center ONLY the section title + lead */
.events-intro .section-head{
  text-align: center;
  margin-bottom: 26px;
}

.events-intro .section-head .lead{
  margin-left: auto;
  margin-right: auto;
  max-width: 72ch;
}

/* Make the "High-Demand..." subhead feel intentional */
.events-intro h3{
  text-align: center;
  margin-top: 18px;
  margin-bottom: 10px;
}

/* Center the small supporting sentence under the subhead */
.events-intro > p{
  text-align: center;
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
}

/* Keep the icon list left-aligned, but centered as a block */
.events-intro .clean-list{
  display: inline-block;
  text-align: left;
  margin: 18px auto 6px;
}

/* Holiday cards should be LEFT aligned for readability */
.events-intro .holiday-grid{
  margin-top: 18px;
}

.events-intro .holiday-card{
  text-align: left;
}





/* =========================================================
   PATCH: Special Events layout (center head, readable body)
   ========================================================= */
.events-intro{
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: left;
}

.events-intro .section-head{
  text-align: center;
  margin-bottom: 26px;
}

.events-intro .section-head .lead{
  margin-left: auto;
  margin-right: auto;
  max-width: 72ch;
}

/* Subhead + supporting line centered, but body remains readable */
.events-intro h3{
  text-align: center;
  margin-top: 18px;
  margin-bottom: 10px;
}

.events-intro > p{
  text-align: center;
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
}

/* Center the icon list as a block; keep its content left-aligned */
.events-intro .clean-list{
  display: inline-block;
  text-align: left;
  margin: 18px auto 6px;
}

/* Holiday cards should read like content, not a centered “wall” */
.events-intro .holiday-card{
  text-align: left;
}

/* 2x2 grid under intro (desktop) */
.events-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 820px){
  .events-grid{ grid-template-columns: 1fr; }
  .events-intro{ margin-bottom: 40px; }
  .events-intro .section-head,
  .events-intro h3,
  .events-intro > p{ text-align: left; }
  .events-intro .clean-list{ display:block; margin: 16px 0 6px; }
}

/* =========================================================
   PATCH: Mobile hero overlay containment + sizing
   ========================================================= */
.hero.hero-overlay{
  position: relative;
  overflow: hidden;
}

.hero.hero-overlay .hero-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero.hero-overlay .hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Keep the overlay text inside the image area on mobile */
@media (max-width: 768px){
  .hero.hero-overlay{
    min-height: 62vh;
  }

  .hero.hero-overlay .hero-content{
    padding-bottom: 28px;
    margin-bottom: 0;
    max-width: 640px;
  }

  .hero.hero-overlay h1{
    font-size: clamp(28px, 7.2vw, 40px);
    line-height: 1.06;
  }

  .hero.hero-overlay .hero-lead{
    font-size: 15px;
    line-height: 1.55;
    max-width: 60ch;
  }

  .hero.hero-overlay .hero-actions{
    margin-top: 18px;
    gap: 10px;
  }
}

@media (max-width: 420px){
  .hero.hero-overlay{ min-height: 58vh; }
  .hero.hero-overlay h1{ font-size: clamp(26px, 8.2vw, 36px); }
}

/* =========================================================
   PATCH: Image Lightbox (click to view/zoom)
   ========================================================= */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.78);
  z-index: 2000;
}

.lightbox.open{ display: flex; }

.lightbox-inner{
  position: relative;
  width: min(1100px, 96vw);
  max-height: 86vh;
}

.lightbox-img{
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
}

.lightbox-close{
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(15,23,42,0.9);
  color: rgba(255,255,255,0.95);
  cursor: pointer;
}

.lightbox-close:hover{
  background: rgba(15,23,42,0.98);
}

/* Make it obvious images are clickable (main content only) */
main img{
  cursor: zoom-in;
}
.brand-logo,
.footer-logo,
.hero-trust img,
.fwmoms-badge img,
.fwmoms-footer img{
  cursor: default;
}


/* =========================================================
   HERO FIX (forces overlay + text visible, and correct mobile sizing)
   Place at end of style.css so it overrides earlier duplicates.
   ========================================================= */
.hero { position: relative; padding: 0; }

.hero-slider{
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  height: auto;
  overflow: hidden;
  border-radius: 0;
}

/* Slides */
.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 800ms ease;
}
.hero-slide.active{ opacity: 1; }

/* Dark overlay on top of image */
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(1200px 560px at 18% 26%, rgba(0,0,0,0.20), rgba(0,0,0,0.62)),
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.70));
}

/* Text layer */
.hero-content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(18px, 5vh, 64px);
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  max-width: 980px;
  padding: 0 20px;
  text-align: left;
}

.hero-content h1{
  font-size: clamp(30px, 4.8vw, 64px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: rgba(255,255,255,0.96);
}

.hero-lead{
  font-size: clamp(16px, 1.8vw, 20px);
  max-width: 68ch;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.88);
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

/* Keep trust badge within the hero image */
.hero-trust{ margin-top: 10px; }

/* Mobile: keep copy contained (smaller type + safe padding) */
@media (max-width: 640px){
  .hero-slider{ min-height: 560px; height: 78vh; }
  .hero-content{
    bottom: 16px;
    padding: 0 16px;
    max-width: 100%;
  }
  .hero-content h1{ font-size: clamp(24px, 8vw, 34px); }
  .hero-lead{ font-size: 15px; line-height: 1.55; }
  .hero-actions .btn{ width: 100%; }
}

