@charset "UTF-8";
/* =========================================================
   Premier 2026 — cleaned 000033bg + de-duped
*/
html, body {
  height: 100%;
  margin: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    /* primary glow  bottom right */
    radial-gradient(
      1400px 900px at 90% 88%,
      rgba(64, 170, 255, 0.28) 0%,
      rgba(64, 170, 255, 0.18) 35%,
      rgba(64, 170, 255, 0.06) 55%,
      rgba(64, 170, 255, 0.00) 75%
    ),

    /* secondary atmospheric lift  lower mid-right */
    radial-gradient(
      1200px 800px at 70% 65%,
      rgba(48, 120, 255, 0.12) 0%,
      rgba(48, 120, 255, 0.00) 70%
    ),

    /* base night tone */
    linear-gradient(
      180deg,
      #050530 0%,
      #060a2a 45%,
      #02021a 100%
    );

  pointer-events: none;
  transform: translateZ(0);
}

.home-feature {
  transition:
    transform .25s ease,
    border-color .25s ease,
    background-color .25s ease,
    box-shadow .25s ease;
}

.home-feature:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* =========================================================
   NAV 66 — clean + usable + centered main nav
   ========================================================= */

/* 1) Header surface */
.navShell66{
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navSurface66{
  background: #f5f6f7;
  border-bottom: 1px solid rgba(15,18,35,0.08);
  box-shadow: 0 2px 14px rgba(15,18,35,0.08);
	padding-block: .5rem; /* top + bottom */
}

.navBar66{
  background: transparent !important;
}

/* 2) Desktop layout: center main nav, keep CTAs right */
@media (min-width: 1400px){
  .offBodyLayout66{
    display: flex;
    align-items: center;
    width: 100%;
    gap: .75rem;
  }

  /* Main nav sits in the center */
  .navMain66{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    flex: 1 1 auto;        /* takes middle space */
    margin: 0;             /* prevent odd centering drift */
  }

  /* Right-side CTAs stay on the right */
  .navRight66{
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* 3) Mobile/offcanvas layout: clean vertical list */
@media (max-width: 1399.98px){
  .navMain66{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .5rem;
    margin: 0;
  }

  .navRight66{
    display: none; /* your mobile CTAs already exist outside the offcanvas */
  }
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1rem;
}

.icon-badge i {
  color: #0a1f4d;
}

/* =========================================================
   MAIN NAV LINK STYLE (Home, Taxi App, Airport Transfers...)
   ========================================================= */

/* >>> CHANGE MAIN NAV FONT WEIGHT HERE <<< */
:root{
  --navMainWeight66: 300; /* e.g. 500, 550, 600 */
}
.navBtn66 i{
  opacity: .9;
}

/* Give icon more breathing room */
.navLink66 i{
  margin-left: .2rem;
display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* Space between text and dropdown arrow */
.navLink66.dropdown-toggle{
  padding-right: 1.4rem; /* overall padding */
}

/* Push dropdown arrow away from text */
.navLink66.dropdown-toggle::after{
  margin-left: 0rem;
}

.navLink66{
  display: inline-flex;
  align-items: center;
  gap: .55rem;

  padding: .7rem 1.1rem;
  border-radius: 999px;

  font-weight: var(--navMainWeight66); /* <<< this is the one you asked for */
  letter-spacing: .01em;

  color: rgba(15,18,35,0.92) !important;
  text-decoration: none;

  transition: background-color .16s ease, transform .16s ease, color .16s ease;
}

.navLink66:hover{
  background: rgba(15,18,35,0.06);
  transform: translateY(-1px);
  color: rgba(15,18,35,1) !important;
}

.navLink66:hover i{
  color: #0d6efd;
	transition: color .30s ease;
}

.navLink66[aria-current="page"]{
  color: #0d6efd !important;              /* text matches icon */
  background: rgba(15,18,35,0.03);
}

/* 4) Dropdown menus (simple + consistent) */
.navMenu66{
  border: 1px solid rgba(15,18,35,0.10);
  border-radius: 12px;
  padding: .45rem;
  box-shadow: 0 12px 30px rgba(15,18,35,0.14);
}

.navItem66{
  border-radius: 10px;
  padding: .6rem .8rem;
  font-weight: 300;
  color: rgba(15,18,35,0.92);
}

.navItem66:hover{
  background: rgba(15,18,35,0.06);
  color: rgba(15,18,35,1);
}

/* 5) Right-side CTA buttons */
.navBtn66{
  border-radius: 12px;
  padding: .55rem .85rem;
  font-weight: 600;
}

/* 6) Toggler */
.navTog66{
  border: 1px solid rgba(15,18,35,0.14);
  border-radius: 12px;
  padding: .45rem .6rem;
}
.navTog66:focus{
  box-shadow: 0 0 0 .2rem rgba(13,110,253,0.18);
}

/* Mobile offcanvas social icons */
.offcanvas .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.offcanvas .social-icon:hover,
.offcanvas .social-icon:focus {
  color: var(--bs-primary);
}

.hero99{
  background: #ffffff;
  padding-block: 3.5rem 4.5rem;
  border-bottom: 1px solid rgba(15,18,35,0.10);
}

/* =========================================================
   Nested submenu (Socials under Learn More) — desktop only
   ========================================================= */

.dropSubWrap66{ position: relative; }

@media (min-width: 1400px){
  .dropSubMenu66{
    display: none;
    position: absolute;
    top: -0.25rem;
    left: 100%;
    margin-left: .35rem;
  }

  .dropSubWrap66:hover > .dropSubMenu66,
  .dropSubWrap66:focus-within > .dropSubMenu66{
    display: block;
  }

  .dropSubToggle66{
    display: flex;
    align-items: center;
  }
}

/* On mobile, nested hover menus are a usability trap.
   Keep Social links as flat items in your mobile "Learn More" list. */
@media (max-width: 1399.98px){
  .dropSubMenu66{ display: none !important; }
}

/* HERO WRAPPER: reserve space early (CLS/LCP stability) */
.hero40{
  position: relative;
  overflow: hidden;

  /* Mobile/tablet: keep current stable sizing */
  min-height: clamp(520px, 20vh, 760px);
}

/* Desktop: reduce the hero height so theres less dead space under the trust bar */
@media (min-width: 992px){
  .hero40{
    min-height: clamp(520px, 20vh, 680px);
  }
}

/* Large desktop: tighten a touch more (optional but usually feels better) */
@media (min-width: 1400px){
  .hero40{
    min-height: clamp(520px, 20vh, 640px);
  }
}

/* Background image */
.hero40-bg{
	filter: brightness(1.12) contrast(1.05) saturate(1.05);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 75%,
    rgba(0,0,0,0.70) 88%,
    rgba(0,0,0,0.20) 96%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 75%,
    rgba(0,0,0,0.70) 88%,
    rgba(0,0,0,0.20) 96%,
    rgba(0,0,0,0) 100%
  );
}

.hero40-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,40,0.75) 0%,
    rgba(0,0,60,0.85) 100%
  );
}

@media (min-width: 992px){
  .hero40-overlay{
    background: linear-gradient(
      180deg,
      rgba(0, 0, 51, 0.60) 0%,
      rgba(0, 0, 51, 0.46) 40%,
      rgba(0, 0, 51, 0.22) 75%,
      rgba(0, 0, 51, 0.09) 92%,
      rgba(0, 0, 51, 0.00) 100%
    );
  }
}

/* Content above image + overlay */
.hero40 .container{
  position: relative;
  z-index: 2;
}

/* Panel */
.hero40-panel{
  background: rgba(8, 15, 60, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2.5rem 2rem;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  max-width: 1400px;
  margin-inline: auto;
}

@supports ((-webkit-backdrop-filter: blur(4px)) or (backdrop-filter: blur(4px))){
  .hero40-panel{
    background: rgba(8, 15, 60, 0.55);
  }
}

.hero40-cta{ max-width: 560px; }

/* Underline effect */
.hero40-underline{
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 1;
  padding-bottom: .18em;
}

.hero40-underline::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-0.1em;
  height:.55em;
  z-index:-1;
  opacity:.95;

  background-repeat:no-repeat;
  background-size:100% 100%;
  background-position:left bottom;
  transform: rotate(-1deg);

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 80'%3E%3Cpath d='M-150 56 Q150 6 450 56' fill='none' stroke='%230d6efd' stroke-width='10' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Trust bar */
.hero40-trustbar{
  background: rgba(8, 15, 60, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1em;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Trust pills */
.hero40-trustitem {
  background: #ffffff;
  color: #111;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.hero40-trustitem i {
  color: inherit; /* keep icons consistent */
  opacity: .85;
}

.hero40-trustitem a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (hover: hover){
  .hero40-trustitem:hover{
    transform: translateY(0);
    box-shadow:
      inset 0 0 0 2px rgba(255,255,255,0.25),
      0 10px 24px rgba(0,0,0,0.25);
  }
}

.airportIntro66{
  background:
    linear-gradient(
      180deg,
      #f5f7fb 0%,
      #ffffff 140px
    );
  padding-block: 3.5rem 4.5rem;
  border-bottom: 1px solid rgba(15,18,35,0.10);
}

@media (max-width: 575.98px){
  .airportIntro66{
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.conbotshad {
  box-shadow: inset 0 -20px 20px -20px rgba(0, 0, 0, 0.15);
}

.breadcrumb66{
  font-size: .92rem;
  color: rgba(15,18,35,0.60);
}

.breadcrumbLink66 i{
  opacity: .8;
  transform: translateY(-1px);
}

.breadcrumb66 .breadcrumb-item + .breadcrumb-item::before{
  opacity: .55;
}

.breadcrumbLink66{
  color: rgba(15,18,35,0.72);
  text-decoration: none;
}

.breadcrumbLink66:hover{
  color: rgba(15,18,35,0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 991.98px) {
  .breadcrumb66 {
    font-size: 0.9rem;
    padding-inline: .25rem;
	  padding-bottom:.30rem;
  }
}
/* =========================================================
   LUX PAGE – EXECUTIVE HERO (Neutral Silver / Corporate)
   Scope: #lux-taxis only
   Replace ALL previous LUX CSS with this block
   ========================================================= */

/* 1) Base background: corporate silver + charcoal */
#lux-taxis{
  position: relative;
  background:
    /* soft vignette for depth */
    radial-gradient(
      1200px 600px at 80% 40%,
      rgba(255,255,255,0.08),
      rgba(0,0,0,0.65) 60%
    ),
    /* subtle metallic light sweep */
    linear-gradient(
      120deg,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.02) 35%,
      rgba(0,0,0,0.15) 65%
    ),
    /* executive charcoal base */
    linear-gradient(
      180deg,
      #1b1e26 0%,
      #0f1116 100%
    );

  color: #ffffff;
  overflow: hidden;
}

/* 2) Soft light framing (no colour glow) */
#lux-taxis::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 520px at 50% -12%, rgba(255,255,255,0.16), transparent 58%),
    radial-gradient(900px 520px at 92% 12%, rgba(255,255,255,0.10), transparent 60%);
  pointer-events:none;
  z-index: 0;
}

/* Ensure content is above background layers */
#lux-taxis > .container{
  position: relative;
  z-index: 1;
}

/* 3) Breadcrumbs (corporate, calm) */
#lux-taxis .breadcrumb{
  --bs-breadcrumb-divider-color: rgba(255,255,255,0.55);
}
#lux-taxis .breadcrumb-item,
#lux-taxis .breadcrumb-item.active{
  color: rgba(255,255,255,0.78);
}
#lux-taxis .breadcrumb a{
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px; /* classic corporate */
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.45);
}
#lux-taxis .breadcrumb a:hover{
  text-decoration-color: rgba(255,255,255,0.75);
}

/* 4) Typography hierarchy */
#lux-taxis h1{
  color: rgba(255,255,255,0.98);
  letter-spacing: 0.2px;
}
#lux-taxis .h4{
  color: rgba(255,255,255,0.92);
}
#lux-taxis .lead{
  color: rgba(255,255,255,0.88);
}

/* Lift muted text for dark background */
#lux-taxis .text-muted,
#lux-taxis .small{
  color: rgba(255,255,255,0.72) !important;
}

/* Icons/checkmarks */
#lux-taxis .bi{
  opacity: 0.92;
}

/* 5) Buttons (keep brand primary, neutral outlines) */
#lux-taxis .btn-primary{
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

#lux-taxis .btn-outline-primary{
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.55);
}
#lux-taxis .btn-outline-primary:hover,
#lux-taxis .btn-outline-primary:focus{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.80);
  color: #ffffff;
}

/* 6) Inline links (executive style: same colour, underlined) */
#lux-taxis a{
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px; /* optional polish applied */
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.55);
}

#lux-taxis a:hover{
  text-decoration-color: rgba(255,255,255,0.85);
}

/* Keep buttons behaving as buttons */
#lux-taxis .btn{
  text-decoration: none;
}

/* 7) Hero image treatment */
#lux-taxis .img-thumbnail{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.40),
    0 2px 0 rgba(255,255,255,0.06) inset;
}

/* 8) Accessibility: keyboard focus */
#lux-taxis a:focus-visible,
#lux-taxis button:focus-visible{
  outline: 3px solid rgba(180,180,190,0.75);
  outline-offset: 3px;
  border-radius: 0.75rem;
}

/* 9) Reduced motion / transparency */
@media (prefers-reduced-motion: reduce){
  #lux-taxis::before{
    display:none;
  }
}

/* =========================================================
   End LUX hero CSS (Neutral Silver / Corporate)
   ========================================================= */

h1, {
  background: none;
  -webkit-text-fill-color: initial;
}

.h1-gradient{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;

  background: linear-gradient(90deg,
    #2f80ff 0%,
    #1f3c88 40%,
    #111827 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  color: #111827; /* fallback */
}

h2 {
	  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
	background: none;
  -webkit-text-fill-color: initial;
}

.h2-gradient{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;

  background: linear-gradient(90deg,
    #2f80ff 0%,
    #1f3c88 40%,
    #111827 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  color: #111827; /* fallback */
}

.swirlbg{
  background:url("../img/cardbg.jpg");
  background-color:cadetblue;
  background-position:left;
  background-size:auto;
}

/* Utility */
p.uppercase { text-transform: uppercase; }

/* iFrames */
iframe {
  border-radius: 30px;
  width: 100%;
  height: 300px;
}


/* =========================================================
   BRAND BACKGROUNDS + GRADIENT TEXT (scoped)
   ========================================================= */

.cardbg{
  background: url("../img/cardng.jpg") no-repeat bottom right / cover;
}

.appbg{
  background: url("../img/headcardbg.jpg") no-repeat bottom right / cover;
}

.appbgflip{
  background: url("../img/headcardbg-flip.jpg") no-repeat bottom left / cover;
}

.airportbg{
  background: url("../img/headcardbgblue.jpg") no-repeat bottom right / cover;
}

/* Gradient heading text ONLY inside these themed blocks */
.appbg h1, .appbg h2,
.cardbg h1, .cardbg h2,
.airportbg h1, .airportbg h2{
  background: -webkit-linear-gradient(90deg,#666699, #000033, #666699);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Misc */
.rotate { transform: rotate(-2deg); }

.premierblue { background-color: #262262; }
.premierbluetext { color: #262262 !important; }


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar{
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.navbar .navbar-brand img{
  height: 40px;
  width: auto;
  max-height: 40px;
  display: block;
}

/* Offcanvas logo sizing */
.offcanvas-logo {
  width: 20vw;
  max-width: 180px;
  min-width: 140px;
  height: auto;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link{
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-150%);
  padding: 12px 16px;
  z-index: 1030;
  background: #000;
  color: #fff;
  text-decoration: none;
}
.skip-link:focus-visible{
  transform: translateY(0);
  outline: 3px solid #fff;
}


/* =========================================================
   BUTTONS (icon alignment + CTA system)
   ========================================================= */

/* Keep icon-link buttons aligned */
.btn.icon-link{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  vertical-align: middle;
  gap: .5rem;
  text-decoration: none;
}
.btn.icon-link i,
.btn.icon-link .bi{
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transform: translateY(1px);
}
.btn.icon-link:hover,
.btn.icon-link:focus{
  text-decoration: none;
}

/* Gradient button helper (optional) */
.btn-gradient{
  background-image: linear-gradient(to right, var(--bs-btn-bg) 0%, var(--bs-btn-bg-gradient) 100%);
  background-size: 200% auto;
  transition: background-position 1s ease-out;
  border: 0;
}
.btn-gradient:hover{ background-position: right center; }
.btn-primary.btn-gradient{ --bs-btn-bg:#0d6efd; --bs-btn-bg-gradient:#000033; }
.btn-success.btn-gradient{ --bs-btn-bg:#198754; --bs-btn-bg-gradient:#005d0d; }
.btn-danger.btn-gradient{ --bs-btn-bg:#dc3545; --bs-btn-bg-gradient:#ff7d87; }

/* CTA system (kept, cleaned) */
:root{
  --cta-radius: 1rem;
  --cta-min-height: 44px;
  --cta-gap: .5rem;
  --cta-font-weight: 700;
}
.btn-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--cta-gap);
  min-height: var(--cta-min-height);
  padding: .65rem 1.1rem;
  border-radius: var(--cta-radius);
  font-weight: var(--cta-font-weight);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.btn-cta-block{ width: 100%; }
.btn-cta-lg{
  min-height: 48px;
  padding: .8rem 1.25rem;
  font-size: 1.05rem;
}
.btn-cta .bi,
.btn-cta i{
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transform: translateY(1px);
}

.btn-cta-primary{
  background: #0d6efd;
  color: #fff;
  border: 1px solid rgba(0,0,0,.08);
}
.btn-cta-primary:hover{ filter: brightness(1.03); color:#fff; }

.btn-cta-success{
  background: #198754;
  color: #fff;
  border: 1px solid rgba(0,0,0,.08);
}
.btn-cta-success:hover{ filter: brightness(1.03); color:#fff; }

.btn-cta-outline{
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.75);
}
.btn-cta-outline:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}

.btn-cta-light{
  background: #fff;
  color: #000;
  border: 1px solid rgba(0,0,0,.12);
}
.btn-cta-light:hover{ filter: brightness(.98); color:#000; }

.btn-cta:focus-visible{
  outline: 3px solid rgba(255,255,255,.95);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  .btn-cta{ transition: none; }
}

@media (max-width: 575.98px){
  .cta-row{
    display: grid !important;
    gap: .75rem !important;
  }
  .cta-row .btn-cta{ width: 100%; }
}

/* Topbar – compact, premium, predictable */
.topbar {
  background: #000;
}

/* Let Bootstrap spacing control height (container py-2),
   but keep a slightly tighter feel on small screens */
@media (max-width: 575.98px) {
  .topbar .container {
    padding-top: .45rem !important;
    padding-bottom: .45rem !important;
  }
}

/* Typography + rhythm */
.topbar {
  line-height: 1.3;
  font-size: 0.92rem;
}

/* Icon styling: subtle, not shouty */
.topbar .bi {
  opacity: .9;
}

/* Links remain clean */
.topbar a {
  color: #fff;
  text-decoration: none;
}

.topbar a:hover,
.topbar a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Address line: slightly softer than brand */
.topbar address {
  margin: 0;
  opacity: 0.95;
}


/* Trustbar: calmer, more premium */

.trustbar{
  background: rgba(13, 110, 253, 0.06); /* subtle brand tint */
	padding:4px;
}

.trustbar-item{
  gap: .55rem !important; /* a touch tighter than 2 */
	color: #fff;
}

/* Icon becomes a subtle badge, not a loud glyph */
.trustbar-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(15,18,35,0.06);
}

/* Make the icon itself understated */
.trustbar-icon i{
  font-size: .95rem;
  opacity: .75;
}

/* Text becomes the hero */
.trustbar-text{
  font-size: .92rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: .005em;
}

/* Star gets a tiny bit of emphasis, but still classy */
.trustbar-icon--star{
  background: rgba(15,18,35,0.08);
}

.trustbar-icon--star i{
  opacity: .85;
}

/* Mobile: reduce visual density */
@media (max-width: 575.98px){
  .trustbar-text{
    font-size: .88rem;
  }
  .trustbar-icon{
    width: 26px;
    height: 26px;
  }
}

/* =========================================================
   NAV PILLS
   ========================================================= */

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 1030px;
  padding: 0.55rem 0.95rem;
  line-height: 1.1;
  transition: background-color 160ms ease, color 160ms ease, transform 120ms ease;
}

.navbar .nav-link.nav-pill { color: rgba(33, 37, 41, 0.75); }

.navbar .nav-link.nav-pill:hover {
  background-color: rgba(13, 110, 253, 0.10);
  color: rgba(13, 110, 253, 1);
  text-decoration: none;
}

.navbar .nav-link.nav-pill:active { transform: translateY(1px); }

.navbar .nav-link.nav-pill.active,
.navbar .nav-link.nav-pill[aria-current="page"]{
  background-color: rgba(13, 110, 253, 1);
  color: #fff;
}

.nav-pill i{
  opacity: 0.85;
  transition: opacity 160ms ease;
}
.nav-pill:hover i,
.nav-pill.active i{ opacity: 1; }

.navbar a:focus-visible,
.navbar button:focus-visible{
  outline: 3px solid rgba(13, 110, 253, 0.45);
  outline-offset: 3px;
  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .offcanvas-body .navbar-nav { padding-top: 0.5rem; }

  .offcanvas-body .nav-pill {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(33, 37, 41, 0.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(4px);
  }

  .offcanvas-body .nav-pill:hover {
    background-color: rgba(13, 110, 253, 0.12);
  }

  .offcanvas-body .dropdown-menu { width: 100%; }
}

@media (prefers-reduced-motion: reduce){
  .nav-pill{ transition: none; }
}

.hero-section{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-wrap{
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

@media (min-width: 768px){ .hero-wrap{ min-height: 600px; } }
@media (max-width: 575.98px){ .hero-wrap{ min-height: 560px; } }

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;

  /* keep LCP cheap */
  transform: none;
  filter: none;
}

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

  background: linear-gradient(
    180deg,
    rgba(5,10,30,0.45) 0%,
    rgba(5,10,30,0.35) 45%,
    rgba(5,10,30,0.55) 100%
  );

  /* optional: “pop” without touching the LCP image */
  /* backdrop-filter: saturate(1.05) contrast(1.05) brightness(1.05);
  -webkit-backdrop-filter: saturate(1.05) contrast(1.05) brightness(1.05); */
}

.hero-content{
  position: relative;
  z-index: 2;
}

.hero-panel{
  background: rgba(15, 18, 35, 0.55);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}


.hero-panel .btn{ font-weight: 700; }

.hero-subline{
  max-width: 34ch;
  margin-inline: auto;
  text-wrap: balance;
}
@supports not (text-wrap: balance){
  .hero-subline{ max-width: 36ch; }
}


/* =========================================================
   TRUST CARDS
   ========================================================= */

.trust-card{
  transition: transform .15s ease, box-shadow .15s ease;
}
.trust-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 .75rem 1.25rem rgba(0,0,0,.08);
}

.text-primary {
  color: rgba(47,128,255,1) !important;
}

/* =========================================================
   “GET THE PREMIER APP” — reduce tall feel
   (your HTML uses huge padding: p-4 p-md-5 p-lg-5 p-xl-5)
   We safely override only inside .cardbg sections.
   ========================================================= */

.cardbg .card-body{
  padding: 1.5rem !important;
}

@media (min-width: 768px){
  .cardbg .card-body{
    padding: 2rem !important;
  }
}

@media (min-width: 1200px){
  .cardbg .card-body{
    padding: 2.25rem !important; /* less than p-xl-5 */
  }
}

/* Optional: reduce visual height of the app image a touch */
.cardbg picture img{
  max-width: 520px;
  width: 100%;
  height: auto;
}

/* =========================================================
   REVIEWS  redesign (carousel + proof panel)
   ========================================================= */

.reviewsX{
  position: relative;
}

.reviewsX-shell{
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  overflow: hidden;
}

.reviewsX-title{
  letter-spacing: -0.02em;
}

.reviewsX-kicker{
  color: rgba(15,18,35,.68);
  max-width: 62ch;
  margin-inline: auto;
}

.reviewsX-rating{
  color: rgba(15,18,35,.75);
  font-size: .95rem;
}

.reviewsX-rule{
  width: 84px;
  height: 4px;
  border-radius: 999px;
  margin: 1rem auto 0 auto;
  background: linear-gradient(90deg, rgba(13,110,253,.70), rgba(13,110,253,.18));
}

/* LEFT: stage */
.reviewsX-proof{
  padding: 1rem;
  height: 100%;
}

.reviewsX-stageTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: .75rem;
  margin-bottom: .75rem;
}

.reviewsX-stageTitle{
  display:flex;
  align-items:center;
  gap: .75rem;
}

.reviewsX-stageHint{
  font-size: .9rem;
}

.reviewsX-pause{
  border-radius: 999px;
  padding: .35rem .75rem;
  font-weight: 700;
}

/* Carousel containment */
#carouselReviews{
  position: relative;
  overflow: hidden;              /* no peeking slides */
  border-radius: 1.4rem;
  padding: 1rem 3.25rem 1.25rem; /* space for arrows + indicators */
}

/* Indicators tucked inside stage */
#carouselReviews .carousel-indicators{
  margin: 0;
  bottom: .55rem;
}

#carouselReviews .carousel-indicators [data-bs-target]{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  opacity: .35;
  margin-inline: 5px;
}
#carouselReviews .carousel-indicators .active{ opacity: 1; }

/* Arrows */
#carouselReviews .carousel-control-prev,
#carouselReviews .carousel-control-next{
  width: 3rem;
  opacity: 1;
}
#carouselReviews .carousel-control-prev{ left: .25rem; }
#carouselReviews .carousel-control-next{ right: .25rem; }

#carouselReviews .carousel-control-prev-icon,
#carouselReviews .carousel-control-next-icon{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background-size: 55% 55%;
  background-color: rgba(108, 117, 125, .92);
}

/* Review card (your JS likely creates .review-card inside slides) */
.review-card{
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  overflow: hidden;
}

.review-card .card-body{ padding: 1.1rem 1.15rem; }

.review-card .card-text{
  color: rgba(15,18,35,.86);
  line-height: 1.45;
  margin-bottom: .85rem;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* keeps height tight */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card .fw-bold{
  font-weight: 850 !important;
  letter-spacing: -0.01em;
}

/* RIGHT: proof panel */
.reviewsX-proof{
  background: rgba(255,255,255,.70);
  padding: 1.25rem 1.25rem;
  height: 100%;
}

.reviewsX-proofTitle{
  letter-spacing: -0.02em;
  font-weight: 800;
}

.reviewsX-proofSub{
  color: rgba(15,18,35,.68);
}

.reviewsX-bullets{
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.1rem 0;
  display: grid;
  gap: .85rem;
}

.reviewsX-bullets li{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: .75rem;
  align-items: start;
}

.reviewsX-bullets i{
  width: 34px;
  height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: rgba(13,110,253,.10);
  color: rgba(13,110,253,1);
  font-size: 1.05rem;
}

.reviewsX-bullets strong{
  display:block;
  font-weight: 800;
  margin-bottom: .1rem;
}

.reviewsX-bullets span{
  display:block;
  color: rgba(15,18,35,.70);
}

.reviewsX-ctaRow{
  display:flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .25rem;
}

.reviewsX-miniNote{
  margin-top: .9rem;
  color: rgba(15,18,35,.62);
  font-size: .92rem;
}

@media (max-width: 575.98px){
  #carouselReviews{ padding: .95rem 2.85rem 1.2rem; }
}

/* Reviews (static, minimal) */
.reviewsS-card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: 0 .5rem 1.25rem rgba(0,0,0,.06);
}

.reviewsS-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .75rem;
}

.reviewsS-name{
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.reviewsS-source{
  font-size: .9rem;
  color: rgba(33,37,41,.65);
  margin-top: .15rem;
}

.reviewsS-stars{
  font-weight: 900;
  letter-spacing: .06em;
  color: #f4b400; /* warm star */
  white-space: nowrap;
  font-size: .95rem;
}

.reviewsS-text{
  margin: 0;
  color: rgba(33,37,41,.85);
  line-height: 1.45;

  /* keeps all cards neat */
  display: -webkit-box;
  -webkit-line-clamp: 5;          /* adjust 46 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviewsS-scroll{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reviewsS-card{ scroll-snap-align: start; }

/* Desktop: force overflow so it scrolls */
@media (min-width: 1200px){
  .reviewsS-scroll{
    grid-auto-columns: 320px; /* tweak: 300360 */
    overflow-x: auto;
  }
}

/* Optional: subtle scrollbar polish */
.reviewsS-scroll::-webkit-scrollbar{
  height: 8px;
}
.reviewsS-scroll::-webkit-scrollbar-track{
  background: rgba(0,0,0,.06);
  border-radius: 999px;
}
.reviewsS-scroll::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.18);
  border-radius: 999px;
}


/* =========================================================
   BUSINESS SECTION — fix “too tall / long” feel
   Root cause: .biz-side justify-content:center on XL.
   Also tighten padding slightly on desktop.
   ========================================================= */

.biz-wrap{ background: #fff; }

/* Side tint */
.biz-side{
  background: rgba(13,110,253,.04);
  justify-content: flex-start; /* ✅ key fix */
}

/* Below XL: divider on top */
@media (max-width: 1199.98px){
  .biz-side{ border-top: 1px solid rgba(0,0,0,.08); }
}

/* XL+: divider on left + keep content top */
@media (min-width: 1200px){
  .biz-side{
    border-left: 1px solid rgba(0,0,0,.10);
    justify-content: flex-start; /* ✅ never center vertically */
  }
}

/* Make sure nothing forces tall heights */
.biz-wrap,
.biz-main,
.biz-side{
  height: auto !important;
  min-height: 0 !important;
}

/* Keep row normal (no weird stretching) */
.biz-wrap > .row{ align-items: flex-start; }

/* Business icon mark */
.biz-mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(13,110,253,.12);
  color: #0d6efd;
  font-size: 1.2rem;
  flex-shrink: 0;
}
@media (min-width: 992px){
  .biz-mark{
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

/* Benefit tiles */
.biz-benefit{
  background: #f8f9fa; /* consistent */
}

/* Side tiles */
.biz-tile-dark{
  background: #fff;
  color: #212529;
  border: 1px solid rgba(0,0,0,.08);
}
.biz-tile-dark strong{
  font-weight: 600;
  display: block;
  margin-bottom: .25rem;
  color: #0d6efd;
}
@media (hover: hover){
  .biz-tile-dark{ transition: background-color .15s ease; }
  .biz-tile-dark:hover{ background: #f1f3f6; }
}

/* CTA band */
.biz-cta{
  background: linear-gradient(
    to bottom,
    rgba(230, 242, 252, 0.8),
    rgba(0,0,0,0)
  );
  position: static !important;
  inset: auto !important;
  width: 100%;
}

/* Tighten business section padding a bit on desktop
   (without changing your HTML classes) */
@media (min-width: 768px){
  .biz-wrap .biz-main{ padding: 2.25rem !important; } /* was p-md-5 (3rem) */
  .biz-wrap .biz-side{ padding: 1.75rem !important; } /* was p-4 (1.5rem) + can feel big */
}


/* =========================================================
   FAQ / VEHICLE UI (kept)
   ========================================================= */

.note{
  background: #cfe2ff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1.25rem;
}

.vehicle-badge{
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.18);
  background: #e9ecef;
  color: #111;
  border-radius: 999px;
  padding: .35rem .75rem;
  font-weight: 700;
  font-size: .900rem;
  cursor: pointer;
}

.vehicle-badge.is-active{
  background: #009200;
  border-color: rgba(0,0,0,.25);
	color:#fff;
}

.vehicle-pane{ display: none; }
.vehicle-pane.is-active{ display: block; }


/* =========================================================
   SMALL ANIMATIONS (kept)
   ========================================================= */

.qq2-pulse{ animation: qq2Pulse 1.8s ease-in-out infinite; }
@keyframes qq2Pulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.01); }
}

.qq2-badge-pop{ animation: qq2Pop 350ms ease-out; }
@keyframes qq2Pop{
  from{ transform:scale(.9); opacity:.7; }
  to{ transform:scale(1); opacity:1; }
}

.qq2-currency-tick{ animation: qq2Tick 400ms ease-out; }
@keyframes qq2Tick{
  from{ transform: translateY(2px); opacity: .6; }
  to{ transform: translateY(0); opacity: 1; }
}

/* =========================================================
   Airport booking CTA / 3-step process
   ========================================================= */

/* Card base */
.card-soft {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
}

/* Muted helper text */
.muted {
  color: #6c757d;
}

/* =========================================================
   Step cards
   ========================================================= */

.airport-steps .bg-white {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Subtle elevation */
.airport-steps .bg-white {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Slight hover lift (desktop only) */
@media (hover: hover) {
  .airport-steps .bg-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  }
}

/* =========================================================
   Number pill (top-centred)
   ========================================================= */

.airport-steps .badge {
  font-size: 0.95rem;
  font-weight: 600;
  min-width: 2.2rem;
  text-align: center;
}

/* =========================================================
   Arrow styling
   ========================================================= */

/* Base arrow */
.arrow-pulse-desktop {
  display: inline-block;
  line-height: 1;
  opacity: 0.85;
}

/* Desktop pulse animation (off by default) */
@media (min-width: 1200px) {
  .arrow-pulse-desktop.is-active {
    animation: arrowPulse 1.1s ease-in-out infinite;
  }
}

/* Mobile arrow spacing */
@media (max-width: 1199.98px) {
  .airport-steps .col-xl-auto {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

/* Pulse keyframes */
@keyframes arrowPulse {
  0% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(6px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .arrow-pulse-desktop {
    animation: none !important;
    transform: none !important;
  }
}

/* =========================================================
   CTA buttons
   ========================================================= */

.btn.rounded-5 {
  border-radius: 2rem !important;
}

/* Primary CTA emphasis */
.btn-primary.btn-lg {
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

.btn-primary.btn-lg:hover {
  box-shadow: 0 10px 28px rgba(13, 110, 253, 0.35);
}

/* =========================================================
   Spacing sanity (prevents squashed look)
   ========================================================= */

.airport-steps {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.airport-steps > [class*="col-"] {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* Airport Glam Up */
.airport-step{
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

@media (hover:hover){
  .airport-step:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
  }
}

@media (min-width:1200px){
  .airport-steps{
    position: relative;
  }
  .airport-steps::before{
    content:"";
    position:absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    height: 2px;
    background: rgba(0,0,0,.08);
    transform: translateY(-50%);
    z-index: 0;
  }
  .airport-steps > *{
    position: relative;
    z-index: 1;
  }
}

.step-arrow-wrap{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
}

.arrow-pulse-desktop{
  animation: arrowPulse 1.2s ease-in-out infinite;
}

@keyframes arrowPulse{
  0%,100%{ transform: translateX(0); opacity: .75; }
  50%{ transform: translateX(6px); opacity: 1; }
}

/* Only animate when a parent class is added by JS */
.airport-steps:not(.is-inview) .arrow-pulse-desktop{
  animation: none;
}

/* Vehicle card base */
.vehicle-card{
  background: linear-gradient(180deg, rgba(13,110,253,.10), rgba(13,110,253,.03));
  border: 1px solid rgba(13,110,253,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.vehicle-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,.12);
  border-color: rgba(13,110,253,.30);
}

/* Image area */
.vehicle-media{
  background: radial-gradient(circle at 30% 20%, rgba(13,110,253,.18), transparent 60%),
              linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.6));
  border: 1px solid rgba(13,110,253,.12);
}

.vehicle-img{
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform .25s ease;
}

.vehicle-card:hover .vehicle-img{
  transform: scale(1.03);
}

/* Spec chips (more premium than badges) */
.spec-chip{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);
  font-size: .9rem;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.spec-chip i{
  font-size: 1rem;
  opacity: .85;
}

/* Optional: tighten vertical rhythm */
.vehicle-card .h5{
  letter-spacing: .2px;
}

/* ---------- Vehicle cards (base) ---------- */
.vehicle-card {
  background: #ffffff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

/* ---------- LUX variation ---------- */
.vehicle-card.is-lux {
  background: linear-gradient(
    180deg,
    rgba(13, 110, 253, 0.06),
    rgba(13, 110, 253, 0.02)
  );
  border: 1px solid rgba(13, 110, 253, 0.15);
}

.vehicle-card.is-lux .vehicle-media {
  box-shadow: 0 1rem 2rem rgba(13, 110, 253, 0.15);
}

.vehicle-card.is-lux h3 {
  color: #0d6efd;
}

/* Optional premium badge */
.lux-badge {
  display: inline-block;
  font-size: .90rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

/* Most popular ribbon */
.popular-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  gap: 0.25rem;

  padding: 0.20rem 0.50rem;
  border-radius: 999px;

  font-size: 0.65rem;
  font-weight: 500;

  background: #009200;
  color: #fff;

  border: 1px solid rgba(13, 110, 253, 0.25);
  backdrop-filter: blur(2px);
}

/* =========================================
   App screenshots section — neutral & aligned
   ========================================= */

/* Grid row helper */
#app-screenshots .appshot-row{
  --appshot-gap: 1rem;
}

/* Tile wrapper keeps everything vertically aligned */
#app-screenshots .appshot-tile{
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Top spacer (keeps all steps aligned even if empty) */
#app-screenshots .appshot-top{
  min-height: 1.8rem; /* reserves space where badges used to be */
}

/* Frame = locked viewport that crops screenshots */
#app-screenshots .appshot-frame{
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto 1rem;
  aspect-ratio: 12 / 10;
  overflow: hidden;
  background: #f8f9fa;
  border-radius: 28px;
  padding: 10px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
}

/* Screenshot image */
#app-screenshots .appshot-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  display: block;
}

/* Step pill */
#app-screenshots .appshot-step{
  display: inline-block;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #0b5ed7;
  background: rgba(13,110,253,.10);
  border-radius: 999px;
  padding: .35rem .7rem;
}

/* Copy area */
#app-screenshots .appshot-copy{
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------
   Focus control per step (optional, keep/edit)
   ----------------------------------------- */
#app-screenshots .step-pickup  .appshot-img { object-position: center top; }
#app-screenshots .step-vehicle .appshot-img { object-position: center 70%; }
#app-screenshots .step-track   .appshot-img { object-position: center 40%; }
#app-screenshots .step-payment .appshot-img { object-position: center bottom; }

/* -----------------------------------------
   Mobile adjustments
   ----------------------------------------- */
@media (max-width: 575px){
  #app-screenshots .appshot-frame{
    max-width: 300px;
  }

  #app-screenshots .appshot-copy{
    max-width: 300px;
  }
}

/* =========================================
   Vehicle choices section (Uber-ish cards)
   Scoped to #vehicle-options + v66-* classes
   ========================================= */

#vehicle-options .v66-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  overflow: hidden;
  height: 100%;
}

#vehicle-options .v66-body{
  padding: 1.25rem; /* matches your p-4 feel without relying on it */
  height: 100%;
}

/* Media area */
#vehicle-options .v66-media{
  border-radius: 18px;
  overflow: hidden;
  background: #f8f9fa;
  border: 1px solid rgba(13,110,253,.18); /* subtle "app" accent */
}

/* Keep image sizes consistent so cards line up */
#vehicle-options .v66-img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;     /* consistent crop area */
  object-fit: cover;        /* no distortion */
  object-position: center;
}

/* Typography */
#vehicle-options .v66-title{
  font-weight: 800;
  font-size: 1.15rem;
  margin: .25rem 0 .35rem;
  letter-spacing: -0.01em;
}

#vehicle-options .v66-text{
  color: rgba(33,37,41,.75);
  margin: 0;
  line-height: 1.35;
  font-size: .98rem;

  max-width: 34ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* IMPORTANT: keeps button locked to bottom even if copy differs */
#vehicle-options .v66-content{
  /* This creates the "top section" of the card */
}

#vehicle-options .v66-cta{
  margin-top: auto; /* pins CTA to the bottom because parent is flex-column */
}

/* Button: slightly more "Uber" (pill + strong weight) */
#vehicle-options .v66-btn{
  padding: .85rem 1rem;
  border-radius: 999px !important;
  font-weight: 800;
}

/* Hover (desktop) */
@media (hover: hover){
  #vehicle-options .v66-card{
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }

  #vehicle-options .v66-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(0,0,0,.12);
    border-color: rgba(13,110,253,.20);
  }

  #vehicle-options .v66-card:hover .v66-media{
    border-color: rgba(13,110,253,.32);
  }
}

/* Tighten spacing on very small screens */
@media (max-width: 575px){
  #vehicle-options .v66-body{
    padding: 1rem;
  }

  #vehicle-options .v66-title{
    font-size: 1.08rem;
  }

  #vehicle-options .v66-text{
    font-size: .95rem;
  }
}

/* Keep odd last row centered nicely (Bootstrap row already uses justify-content-center)
   This just ensures columns don't look stretched */
#vehicle-options .row > .col{
  display: flex;          /* makes the column a flex container */
}

#vehicle-options .row > .col > .v66-card{
  width: 100%;            /* card fills col width */
}

/* =========================================
   Pre-book callout (simple, bold, Uber-ish)
   ========================================= */
#prebook-callout .prebook-pill{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .02em;
  color: #0b5ed7;
  background: rgba(13,110,253,.10);
  border: 1px solid rgba(13,110,253,.18);
  border-radius: 999px;
  padding: .45rem .85rem;
}

#prebook-callout .prebook-title{
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

#prebook-callout .prebook-accent{
  color: #0b5ed7; /* Bootstrap primary */
}

/* Contact Stuff & Honey Hidden*/
.hp-field{
    position:absolute !important;
    left:-9999px !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
}

#contact_type.border-danger {
  box-shadow: 0 0 0 0.25rem rgba(220,53,69,.15);
}

.step-copy {
  min-height: 4.5rem; /* tweak if needed */
}

#manPrice66 .mp66-card { border: 0; }
#manPrice66 .mp66-badge {
  border: 1px solid rgba(0,0,0,.15);
  background: #f8f9fa;
  border-radius: 999px;
  padding: .45rem .8rem;
  font-weight: 600;
  line-height: 1;
}
#manPrice66 .mp66-badge.is-active {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}
#manPrice66 .mp66-badge i { vertical-align: -1px; }

#manPrice66 .mp66-note {
  background: rgba(13,110,253,.12);
  border-radius: 1.25rem;
  border: 1px solid rgba(13,110,253,.25);
}

#manPrice66 .mp66-price { font-weight: 800; font-size: 1.15rem; }

#manPrice66 .mp66-pane { display: none; }
#manPrice66 .mp66-pane.is-active { display: block; }

#manPrice66 .mp66-sidebar {
  border-radius: 1.75rem;
  border: 1px solid rgba(0,0,0,.1);
  background: #f8f9fa;
}

#manPrice66 .mp66-icon { width: 74px; height: 74px; }
#manPrice66 .mp66-summary { display: none; }
#manPrice66 .mp66-summary.is-active { display: block; }

#manPrice66 .mp66-metrics{
  display:flex;
  gap:.75rem;
  justify-content:center;
  flex-wrap:wrap;
}
#manPrice66 .mp66-metric{
  min-width: 140px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  border-radius: 1rem;
  padding: .75rem .9rem;
  text-align:center;
}
#manPrice66 .mp66-metricNum{ font-size: 1.35rem; font-weight: 800; }
#manPrice66 .mp66-metricLabel{ font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: #6c757d; margin-top: .15rem; }

#manPrice66 .mp66-bullets{
  text-align:left;
  max-width: 18rem;
  margin-left:auto;
  margin-right:auto;
  padding-left: 1.25rem;
}
#manPrice66 .mp66-bullets li { margin-bottom: .35rem;
}

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  border-radius: 0.75rem;
}

#lytham-st-annes-editorial .editorial-card,
#lytham-st-annes-editorial .editorial-feature {
  transition: transform .18s ease, box-shadow .18s ease;
}

@media (hover: hover) {
  #lytham-st-annes-editorial .editorial-card:hover,
  #lytham-st-annes-editorial .editorial-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
  }
}

@media (min-width: 992px) {
  #lytham-st-annes-editorial .editorial-feature img {
    filter: blur(6px);
    transform: scale(1.05);
  }
}

.legal-summary {
  display: flex;
  align-items: center;   /* 👈 this is the key */
  gap: 0.5rem;
}

.footer-card {
  border-radius: 2rem 2rem 0 0;
}

.footer-gradient {
  background: linear-gradient(
    to bottom,
    #252b30 0%,
    #171b1f 100%
  );
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.footer-card a.link-light {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background-color .18s ease, transform .18s ease;
}

.footer-card a.link-light:hover,
.footer-card a.link-light:focus-visible {
  background-color: rgba(255,255,255,0.08);
  transform: translateX(3px);
}

.badge {
  font-weight: 500;
  letter-spacing: .02em;
}

/* Soft surface cards for About page */
.surface-soft {
  background: linear-gradient(
    180deg,
    rgba(248,249,250,0.9) 0%,
    rgba(248,249,250,0.6) 60%,
    rgba(248,249,250,0) 100%
  );
  border: 1px solid rgba(0,0,0,.06);
}

/* Defer heavy below-the-fold sections */
#team,
#about-next-steps,
#awards{
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

#quote-hero .rounded-pill{
  background: rgba(13,110,253,.04);
  border-color: rgba(13,110,253,.18);
  font-weight: 600;
}

#accountFormToggle[aria-expanded="true"] i {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  line-height: 1;
}

.icon-wrap i {
  font-size: 1.4rem;
}

.impact-counter {
  border-radius: 1rem;
}

.counter-value {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* App-like feature row feel */
#why-drive .feature-row {
  border-color: rgba(0,0,0,.08) !important;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
#why-drive .feature-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.08) !important;
  border-color: rgba(13,110,253,.25) !important; /* bootstrap primary tint */
}

/* Slightly softer card shadow */
#why-drive .shadow-sm {
  box-shadow: 0 .35rem .9rem rgba(0,0,0,.06) !important;
}

#immediate-starts .border { border-color: rgba(0,0,0,.08) !important; }
#immediate-starts .shadow-sm { box-shadow: 0 .35rem .9rem rgba(0,0,0,.06) !important; }
#immediate-starts .btn { box-shadow: 0 .5rem 1rem rgba(13,110,253,.18); }

/* Background icon using taxi-front-fill SVG */
.bg-icon-vehicle {
  position: relative;
  overflow: hidden;
}

.bg-icon-vehicle::before {
  content: "";
  position: absolute;
  top: -12%;
  left: -10%;
  width: 420px;
  height: 420px;

  background-repeat: no-repeat;
  background-size: contain;

  /* Embedded SVG (bi-taxi-front-fill) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6 1a1 1 0 0 0-1 1v1h-.181A2.5 2.5 0 0 0 2.52 4.515l-.792 1.848a.8.8 0 0 1-.38.404c-.5.25-.855.715-.965 1.262L.05 9.708a2.5 2.5 0 0 0-.049.49v.413c0 .814.39 1.543 1 1.997V14.5a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1.338c1.292.048 2.745.088 4 .088s2.708-.04 4-.088V14.5a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-1.892c.61-.454 1-1.183 1-1.997v-.413q0-.248-.049-.49l-.335-1.68a1.8 1.8 0 0 0-.964-1.261.8.8 0 0 1-.381-.404l-.792-1.848A2.5 2.5 0 0 0 11.181 3H11V2a1 1 0 0 0-1-1zM4.309 4h7.382a.5.5 0 0 1 .447.276l.956 1.913a.51.51 0 0 1-.497.731c-.91-.073-3.35-.17-4.597-.17s-3.688.097-4.597.17a.51.51 0 0 1-.497-.731l.956-1.913A.5.5 0 0 1 4.309 4M4 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0m10 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-9 0a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1'/%3E%3C/svg%3E");

  opacity: 0.06;
	transform: rotate(-12deg);
  pointer-events: none;
}

@media (max-width: 768px) {
  .bg-icon-vehicle::before {
    width: 260px;
    height: 260px;
    opacity: 0.04;
    transform: rotate(-8deg);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .bg-icon-vehicle::before {
    animation: bg-drift 14s ease-in-out infinite;
  }
}

@keyframes bg-drift {
  0% {
    transform: rotate(-12deg) translateY(0);
  }
  50% {
    transform: rotate(-12deg) translateY(-12px);
  }
  100% {
    transform: rotate(-12deg) translateY(0);
  }
}

/* Scoped styles for this section only */
      #rewards-feature .rf-wrap{
        border-radius: 2.25rem;
        padding: 1px;
        background: linear-gradient(135deg, rgba(47,128,255,.95), rgba(0,194,255,.90));
      }
      #rewards-feature .rf-surface{
        border-radius: 2.25rem;
        overflow: hidden;
        border: 0;
        background:
          radial-gradient(1200px 700px at 15% 0%, rgba(47,128,255,.35), transparent 55%),
          radial-gradient(900px 520px at 85% 15%, rgba(0,194,255,.25), transparent 55%),
          linear-gradient(135deg, #0b1a33, #000033);
      }
      #rewards-feature .rf-inner{
        padding: 1.25rem;
      }
      @media (min-width: 768px){
        #rewards-feature .rf-inner{ padding: 2.25rem; }
      }

      #rewards-feature .rf-pill{
        display:inline-flex;
        align-items:center;
        gap:.5rem;
        padding:.45rem .85rem;
        border-radius: 999px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.16);
        color: rgba(255,255,255,.92);
        font-weight: 600;
        font-size: .95rem;
      }

      #rewards-feature .rf-title{
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #fff;
        margin: .75rem 0 .5rem 0;
        line-height: 1.05;
        font-size: clamp(2rem, 4vw, 3rem);
      }

      #rewards-feature .rf-sub{
        color: rgba(255,255,255,.70);
        font-size: 1.15rem;
        max-width: 38rem;
        margin-bottom: 1.25rem;
      }

      #rewards-feature .rf-badges .badge{
        border-radius: 999px;
        padding: .5rem .8rem;
      }

      #rewards-feature .rf-card{
        border-radius: 2rem;
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(255,255,255,.06);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 20px 60px rgba(0,0,0,.35);
      }

      #rewards-feature .rf-metric{
        border-radius: 1.5rem;
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(0,0,0,.18);
        padding: 1.1rem 1.1rem;
        height: 100%;
      }

      #rewards-feature .rf-kicker{
        color: rgba(255,255,255,.60);
        text-transform: uppercase;
        letter-spacing: .08em;
        font-size: .75rem;
        font-weight: 700;
      }

      #rewards-feature .rf-big{
        color:#fff;
        font-weight: 900;
        letter-spacing: -0.03em;
        font-size: clamp(2.2rem, 4.5vw, 3.2rem);
        line-height: 1.0;
        margin: .4rem 0 .5rem 0;
      }

      #rewards-feature .rf-muted{
        color: rgba(255,255,255,.60);
        font-size: .95rem;
      }

      #rewards-feature .rf-progress{
        height: 10px;
        border-radius: 999px;
        background: rgba(255,255,255,.12);
        overflow:hidden;
      }
      #rewards-feature .rf-progress > span{
        display:block;
        height:100%;
        width: 0%;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(47,128,255,1), rgba(0,194,255,1));
        transition: width 1.2s ease;
      }

      #rewards-feature .rf-minirow{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap: .75rem;
        margin-top: .75rem;
      }
      #rewards-feature .rf-chip{
        display:inline-flex;
        align-items:center;
        gap:.45rem;
        padding:.4rem .7rem;
        border-radius: 999px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
        color: rgba(255,255,255,.85);
        font-weight: 600;
        font-size: .9rem;
        white-space: nowrap;
      }

      #rewards-feature .rf-cta{
        border-radius: 999px;
        padding: .9rem 1.15rem;
        font-weight: 700;
      }

      #rewards-feature .rf-foot{
        border-top: 1px solid rgba(255,255,255,.10);
        margin-top: 1.25rem;
        padding-top: 1.25rem;
      }

      #rewards-feature .rf-jab{
        color: rgba(255,255,255,.65);
        font-size: .95rem;
        margin: 0;
      }


.object-fit-cover {
  object-fit: cover;
}

/* =========================
   Perks  Winners gallery
   ========================= */

#perks .rf-winner-gallery{
  margin-top: 1rem;
}

/* Grid layout */
#perks .rf-winner-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Image styling */
#perks .rf-winner-img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 .35rem .9rem rgba(0,0,0,.10);
  transition: transform .15s ease, box-shadow .15s ease;
}

#perks .rf-winner-img:hover{
  transform: translateY(-2px);
  box-shadow: 0 .6rem 1.2rem rgba(0,0,0,.14);
}

/* Caption */
#perks .rf-winner-note{
  font-size: .9rem;
  color: rgba(0,0,0,.55);
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991px){
  #perks .rf-winner-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px){
  #perks .rf-winner-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   Local Partner Perks
   ========================= */

#partner-perks .partner-card{
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 .45rem 1.25rem rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

#partner-perks .partner-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 .9rem 2.2rem rgba(0,0,0,.10);
}

/* Offer banner */
#partner-perks .partner-banner{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: .45rem .7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(135deg, #2f80ff, #00c2ff);
  box-shadow: 0 .4rem 1rem rgba(0,0,0,.14);
}

/* Media */
#partner-perks .partner-media{
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1.25rem 1.25rem 0 0;
  background: rgba(0,0,0,.04);
}

/* Image fills the media area */
#partner-perks .partner-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .25s ease;
}

#partner-perks .partner-card:hover .partner-media img{
  transform: scale(1.04);
}


/* Body */
#partner-perks .partner-body{
  padding: 1rem 1.1rem 1.2rem;
}

#partner-perks .partner-link{
  display: inline-block;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

#partner-perks .partner-link:hover{
  text-decoration: underline;
}

/* CTA card only (Get your business listed) */
#partner-perks .partner-card-cta{
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 320px;                 /* keeps it the same size class */
  padding: 1.35rem 1.35rem 1.15rem;  /* more top padding stops clipping */
  color: #fff;

  background: radial-gradient(900px 520px at 15% 0%, rgba(255,255,255,.18), transparent 55%),
              linear-gradient(135deg, #2f80ff, #00c2ff);

  box-shadow: 0 .9rem 2.2rem rgba(0,0,0,.10);
}

/* Make the CTA card layout consistent */
#partner-perks .partner-card-cta .partner-body{
  padding: 0;                 /* CTA uses the card padding instead */
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Small kicker / eyebrow */
#partner-perks .partner-card-cta .partner-kicker{
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: .75rem;
}

/* Headline */
#partner-perks .partner-card-cta h3{
  font-size: 2.1rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 .75rem 0;
}

/* Copy */
#partner-perks .partner-card-cta p{
  color: rgba(255,255,255,.88);
  max-width: 28ch;
  margin: 0;
}

/* Button area */
#partner-perks .partner-card-cta .partner-cta{
  margin-top: auto;           /* pushes button to bottom */
  padding-top: 1.2rem;
}

/* Button itself */
#partner-perks .partner-card-cta .btn{
  border-radius: 999px;
  font-weight: 800;
  padding: .85rem 1.1rem;
  width: 100%;
  max-width: 260px;           /* stops the giant pill look */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

/* SEO surface (dark glass + subtle blue edge) */
.seo-surface{
  background: rgba(8, 15, 60, 0.55);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 0 0 1px rgba(13,110,253,0.15),
    0 0 0 1px rgba(13,110,253,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Right-hand mini panel */
.seo-panel{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Links */
.seo-link{
  color: #cfe1ff;
  text-decoration: none;
  font-weight: 600;
}
.seo-link:hover{
  color: #ffffff;
  text-decoration: underline;
}

/* Chips */
.seo-chip{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.seo-chip i{ opacity: .85; }

/* Area list */
.seo-area-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
}
.seo-area-list a{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.seo-area-list a::before{
  content: "";
  opacity: .6;
}

/* Location pills */
.seo-pill{
  display: inline-flex;
  align-items: center;
  padding: .45rem .85rem;
  border-radius: 999px;

  font-size: .95rem;
  font-weight: 600;
  white-space: nowrap;

  color: #cfe1ff;
  text-decoration: none;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);

  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.seo-pill:hover{
  background: rgba(13,110,253,0.18);
  border-color: rgba(13,110,253,0.45);
  color: #ffffff;
}

@media (min-width: 768px) {
  .home-authority .col-md-4:not(:last-child) {
    border-right: 1px solid #eee;
  }
}

/* Editorial rhythm for SEO block */
#home-local-guides + .bg-white p { line-height: 1.65; }

.premReview{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 12px 30px rgba(15,23,42,.06);
  transition:all .2s ease;
}

.premReview:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 45px rgba(15,23,42,.12);
}

.review-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}

.verified-pill{
  display:inline-flex;
  align-items:center;
  font-size:.70rem;
  font-weight:600;
  padding:.25rem .6rem;
  border-radius:999px;
  background:rgba(47,128,255,.05);
  color:rgba(15,23,42,.75);
  border:1px solid rgba(47,128,255,.18);
}

/* Sticky control bar  clean, no bottom border */
.faq-controls-sticky {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: .9rem 0;
  margin-top: .25rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

/* Soft panel feel without hard lines */
.faq-controls-sticky .row {
  padding: .75rem;
  border-radius: 1.25rem;
  background: rgba(248,249,250,.8);
}

/* Search bar refinement */
.faq-searchbar .input-group-text {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-color: rgba(0,0,0,.08);
}

.faq-searchbar .form-control {
  border-color: rgba(0,0,0,.08);
}

.faq-searchbar .btn:last-child {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

/* Filter pills  lighter, crisp */
.faq-filter {
  transition: transform .12s ease;
  border-color: rgba(13,110,253,.28);
}

.faq-filter:hover {
  transform: translateY(-1px);
}

.faq-filter.active {
  box-shadow: none;
}

/* Remove section bottom borders entirely */
.faq-section-header {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: none;
}

/* Section icon  flatter */
.faq-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(13,110,253,.08);
  color: #0d6efd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Two-column grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}

/* FAQ cards  crisp, minimal */
.faq-card {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 1.25rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: none;
  transition: border-color .15s ease, background .15s ease;
}

.faq-card:hover {
  border-color: rgba(13,110,253,.35);
  background: rgba(13,110,253,.02);
}

/* Question icon  subtle */
.faq-question-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(13,110,253,.08);
  color: rgba(13,110,253,.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

/* Typography */
.faq-q {
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: .45rem;
  color: rgba(0,0,0,.88);
}

.faq-a {
  font-size: .97rem;
  line-height: 1.65;
  color: rgba(0,0,0,.6);
}

/* Subtle brand-blue highlight */
.faq-mark {
  background: rgba(13,110,253,.12);
  color: inherit;
  padding: 0 .18em;
  border-radius: .35rem;
}

/* App promo  dark premium style */
.faq-app-promo {
  position: relative;
  border-radius: 1.5rem;
  padding: 2.25rem;
  margin-top: 2rem;
  margin-bottom: 3rem;

background:
    radial-gradient(800px 300px at 20% 0%, rgba(0, 200, 255, 0.15), transparent 60%),
    linear-gradient(135deg, #071a3a 0%, #0b1f45 40%, #0a1535 100%);

  color: #ffffff;


  overflow: hidden;
}

/* Force white text inside dark promo */
.faq-app-promo,
.faq-app-promo .faq-app-title,
.faq-app-promo .faq-app-subtext,
.faq-app-promo .faq-q,
.faq-app-promo .faq-a,
.faq-app-promo p,
.faq-app-promo span {
  color: rgba(255,255,255,0.75);
}

.faq-app-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* border thickness */
  border-radius: inherit;

  background: linear-gradient(
    135deg,
    rgba(0, 200, 255, 0.9),
    rgba(0, 120, 255, 0.6),
    rgba(0, 200, 255, 0.9)
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

.faq-app-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,.10);
  color: #0d6efd;
  font-size: 1.15rem;
}

.faq-app-title {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: .2rem;
  color: rgba(0,0,0,.9);
}

.faq-app-subtext {
  color: rgba(0,0,0,.6);
  font-size: .95rem;
  line-height: 1.55;
}

/* FAQ Hero background icon */
.faq-hero-bg {
  position: relative;
  overflow: hidden;
}

.faq-hero-bg::after {
  content: "\f26a"; /* Bootstrap icon: check2-circle */
  font-family: "bootstrap-icons";
  position: absolute;
  top: -40px;
  right: -40px;
  font-size: 420px;
  color: rgba(13,110,253,0.07); /* soft blue */
  z-index: 0;
  pointer-events: none;
}

/* Keep content above icon */
.faq-hero-bg > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .faq-hero-bg::after {
    display: none;
  }
}

.feature-item {
  transition: transform .2s ease, filter .2s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 3.2rem;
  background: linear-gradient(135deg, #fff, #c0c0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 5px rgba(255,255,255,.25));
}

.feature-label {
  font-size: .8rem;
  font-weight: 500;
  color: #fff;
}
.footer-card .border-top,
.footer-card .border-bottom {
  border-color: rgba(255, 255, 255, 0.08) !important;
	padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Footer CTA buttons: less garish, still strong */
.footer-btn-primary{
  background: #0b5ed7;                 /* slightly deeper */
  border-color: #0b5ed7;
  box-shadow: 0 10px 22px rgba(13,110,253,.22);
}

.footer-btn-primary:hover{
  background: #0a58ca;
  border-color: #0a58ca;
}

.footer-btn-secondary{
  border-width: 2px;
}
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.star-rating input {
  display: none;
}

.star-rating label {
  cursor: pointer;
  color: #d0d0d0;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating label i {
  font-size: 2rem;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #f4c542;
  transform: scale(1.05);
}

.star-rating input:checked ~ label {
  color: #f4c542;
}

.airport-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.airport-price-teaser {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(47, 128, 255, 0.14);
  border: 1px solid rgba(47, 128, 255, 0.35);
  color: #9ec5ff;
  font-size: 0.95rem;
  line-height: 1.2;
}

.trust-section {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.trust-section-inner {
  z-index: 1;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .trust-section-inner {
    padding: 2rem;
  }
}

@media (min-width: 992px) {
  .trust-section-inner {
    padding: 2.5rem;
  }
}

.trust-watermark {
  position: absolute;
  top: -60px;
  right: -24px;
  font-size: 11rem;
  color: rgba(47, 128, 255, 0.035);
  transform: rotate(14deg);
  pointer-events: none;
  z-index: 0;
}

.trust-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(47, 128, 255, 0.08);
  color: #2f80ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #101418;
}

.trust-subtitle {
  max-width: 58ch;
  color: #5f6b7a;
  font-size: 1.02rem;
  line-height: 1.65;
}

.trust-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-width: 280px;
}

.trust-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  color: #1d2733;
  font-size: 0.95rem;
}

.trust-meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
}

.trust-card {
  padding: 1.2rem;
  border-radius: 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(47, 128, 255, 0.16);
}

.trust-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.trust-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #2f80ff;
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  white-space: nowrap;
  font-size: 0.85rem;
}

.trust-card p {
  color: #495566;
  line-height: 1.65;
}

@media (max-width: 575.98px) {
  .trust-section-inner {
    padding: 1rem;
  }

  .trust-title {
    font-size: 1.6rem;
  }

  .trust-subtitle {
    font-size: 0.97rem;
  }

  .trust-meta {
    width: 100%;
    min-width: 0;
    border-radius: 1rem;
  }

  .trust-card {
    padding: 1rem;
  }
}