/* ============================================================
   AATransfers — clean rebuild stylesheet
   Look reproduced from the Luxride/Elementor original.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --c-accent: #2B59B0;      /* brand blue */
  --c-dark: #090909;        /* footer / near-black sections */
  --c-header: #1E1E20;      /* header bar */
  --c-ink: #181A1F;         /* headings on light */
  --c-body: #626262;        /* body copy */
  --c-muted: #9E9EA2;       /* menu idle / secondary */
  --c-line: #E5E5E5;        /* light borders */
  --c-line-dark: rgba(255,255,255,.1);
  --c-bg-soft: #FAFAFA;
  --c-wa: #25D366;          /* WhatsApp green */
  --f-head: 'Oswald', sans-serif;
  --f-body: 'Montserrat', sans-serif;
  --f-alt: 'DM Sans', sans-serif;
  --container: 1140px;
  --gutter: 20px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font: 500 15px/1.6 var(--f-alt);
  color: var(--c-body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
p { margin: 0 0 1em; font-family: var(--f-body); font-weight: 400; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--f-head); font-weight: 500; color: var(--c-ink); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 100px 0; }
.section--dark { background: var(--c-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: #E9E9E9; }
.section--soft { background: var(--c-bg-soft); }

/* small label above a heading */
.kicker { font: 500 16px/1.4 var(--f-body); color: var(--c-ink); margin-bottom: 20px; }
.section--dark .kicker, .on-dark .kicker { color: #A8C3F4; }
.section-title { font-size: 36px; line-height: 1.35; }
.section-lead { max-width: 760px; font-size: 16px; line-height: 1.65; color: var(--c-body); }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font: 600 16px var(--f-body); color: #fff;
  background: var(--c-accent); border-radius: 4px;
  padding: 14px 24px; transition: background .25s, color .25s;
}
.btn:hover { background: #244C97; }
.btn--dark { background: var(--c-ink); }
.btn--dark:hover { background: #000; }
.btn .luxride-up-right-arrow { font-size: 13px; }

/* WhatsApp accents */
.wa-link { color: var(--c-wa); }

/* ============================================================
   header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-header);
  transition: box-shadow .3s;
}
.site-header.stuck { box-shadow: 0 2px 14px rgba(0,0,0,.45); }
.site-header .bar {
  display: flex; align-items: center; gap: 28px;
  min-height: 75px; padding: 3px 5rem;
}
.site-header .logo img { width: 178px; height: 20px; }
.site-header nav { margin-left: auto; }
.site-header nav ul { display: flex; align-items: center; gap: 4px; }
.site-header nav a {
  display: inline-block;
  font: 500 15px/1.6 var(--f-body); text-transform: uppercase;
  color: var(--c-muted); padding: 6px 15px; border-radius: 30px;
  transition: color .25s, background .25s;
}
.site-header nav a:hover { color: #fff; }
.site-header nav a.active { color: #fff; background: var(--c-accent); }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font: 500 18px var(--f-head); color: #D5D5D5; white-space: nowrap;
}
.header-phone:hover { color: #fff; }
.header-phone .fa-whatsapp { color: var(--c-wa); font-size: 19px; }

/* mobile menu */
.nav-toggle { display: none; color: #fff; font-size: 22px; padding: 6px 10px; }
@media (max-width: 1100px) {
  .site-header .bar { padding: 3px var(--gutter); }
  .nav-toggle { display: block; margin-left: auto; }
  .site-header nav {
    position: fixed; inset: 0 30% 0 0; z-index: 110;
    background: var(--c-header); padding: 80px 30px 30px;
    transform: translateX(-100%); transition: transform .3s; overflow-y: auto;
  }
  .site-header nav.open { transform: none; }
  .site-header nav ul { flex-direction: column; align-items: flex-start; gap: 10px; }
  .menu-backdrop {
    position: fixed; inset: 0; z-index: 105; background: rgba(0,0,0,.5);
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .menu-backdrop.show { opacity: 1; pointer-events: auto; }
  .header-phone { margin-left: 0; }
}

/* breadcrumbs */
.breadcrumbs { border-bottom: 1px solid var(--c-line); }
.breadcrumbs ul { display: flex; gap: 8px; padding: 15px 0; font: 500 14px var(--f-body); }
.breadcrumbs a { color: var(--c-accent); }
.breadcrumbs li + li::before { content: '\203A'; margin-right: 8px; color: var(--c-muted); }
.breadcrumbs .active { color: var(--c-ink); }

/* ============================================================
   footer
   ============================================================ */
.site-footer { background: var(--c-dark); color: #9E9EA2; }
.site-footer .top {
  display: flex; align-items: center; gap: 40px;
  padding: 34px 0; border-bottom: 1px solid var(--c-line-dark);
}
.site-footer .top .logo img { width: 178px; height: 20px; }
.site-footer .social { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.site-footer .social .lbl { font: 500 15px var(--f-head); color: #D5D5D5; }
.site-footer .social a { color: #fff; font-size: 15px; }
.site-footer .social a:hover { color: var(--c-wa); }
.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  padding: 55px 0 65px; border-bottom: 1px solid var(--c-line-dark);
}
.footer-cols h4 { font-size: 16px; color: #fff; margin-bottom: 26px; }
.footer-cols li { margin-bottom: 12px; }
.footer-cols a, .footer-cols span { font: 400 14px var(--f-body); color: #9E9EA2; }
.footer-cols a:hover { color: #fff; }
.site-footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; font: 500 14px var(--f-head); color: #D5D5D5;
}
@media (max-width: 800px) {
  .site-footer .top { flex-wrap: wrap; gap: 20px; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* floating WhatsApp button */
.wa-float {
  position: fixed; left: 20px; bottom: 5%; z-index: 90;
  width: 50px; height: 50px; display: block;
  animation: wa-pop .4s cubic-bezier(.25,1,.5,1) both;
}
.wa-float svg { width: 50px; height: 50px; display: block; }
@keyframes wa-pop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

/* ============================================================
   homepage components
   ============================================================ */

/* hero — clean navy, no photo; panels echo the booking app */
.hero { padding: 70px 0 90px; color: #fff; }
.hero-heading { text-align: center; margin: 0 auto 40px; }
.hero-heading h1 {
  color: #F5F2EA; font-weight: 300; font-size: 64px; line-height: 1.15;
}
.hero-sub {
  font: 400 20px/1.5 var(--f-head); color: var(--c-accent);
  text-transform: uppercase; letter-spacing: 1px; margin: 18px 0 0;
}
.hero .book-box { max-width: 560px; margin: 0 auto 50px; }
.hero-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch;
}
.hero-card {
  background: #15203A; border: 1px solid #283656; border-radius: 14px;
  padding: 34px 38px;
}
.hero-card h3 { color: var(--c-accent); font: 500 26px/1.3 var(--f-head); margin-bottom: 16px; }
.hero-card p { color: #C7CFDF; font-size: 15px; line-height: 1.7; }
.hero-card a[href*="wa.me"]:not(.btn) { color: var(--c-accent-strong); font-weight: 700; }
.hero-card .btn { margin-top: 8px; }
@media (max-width: 900px) {
  .hero { padding: 44px 0 60px; }
  .hero-heading h1 { font-size: 34px; line-height: 1.2; }
  .hero-sub { font-size: 14px; letter-spacing: .5px; }
  .hero .book-box { margin-bottom: 34px; }
  .hero-cols { grid-template-columns: 1fr; gap: 20px; }
  .hero-card { padding: 26px 22px; }
}

/* icon grid */
.kicker--accent { color: var(--c-accent); font-weight: 700; font-size: 22px; }
.icon-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 60px 90px; margin-top: 55px;
}
.icon-box { display: flex; gap: 22px; }
.icon-box .icon { font-size: 30px; color: var(--c-accent); margin-top: 4px; }
.icon-box h4 { font-size: 18px; margin-bottom: 10px; }
.icon-box p { font-size: 14px; line-height: 1.75; margin: 0; }
@media (max-width: 900px) { .icon-grid { grid-template-columns: 1fr; gap: 34px; } }

/* splits */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split--wide { grid-template-columns: 5fr 6fr; }
.split-media { margin: 0; position: relative; }
.split-media img { width: 100%; }
.split-copy .section-title { margin: 6px 0 20px; }
.split-copy > p { font-size: 16px; line-height: 1.7; }
.split-copy .btn { margin-top: 16px; }
.badges { position: absolute; left: 28px; bottom: 28px; display: grid; gap: 12px; }
.badges li {
  display: inline-flex; align-items: center; gap: 10px; justify-self: start;
  background: #fff; color: var(--c-ink); border-radius: 30px;
  font: 500 14px var(--f-body); padding: 8px 18px 8px 8px;
}
.badges .fa-check-circle {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--c-accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 13px;
}
@media (max-width: 900px) { .split, .split--wide { grid-template-columns: 1fr; gap: 34px; } }

/* row head (title + link right) */
.row-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.link-more { font: 500 15px var(--f-head); color: var(--c-ink); white-space: nowrap; }
.link-more:hover { color: var(--c-accent); }
.link-more .luxride-up-right-arrow { font-size: 11px; margin-left: 6px; }

/* carousel base */
.carousel { position: relative; }
.car-track {
  display: flex; gap: 30px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track > * { scroll-snap-align: start; flex: 0 0 auto; }
.car-nav { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.car-nav button {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--c-line); color: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all .25s;
}
.car-nav button:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.section--dark .car-nav button { border-color: var(--c-line-dark); color: #fff; }
.section--dark .car-nav button:hover { background: #fff; color: var(--c-ink); }

/* fleet cards */
.fleet-card {
  width: calc((100% - 60px) / 3);
  border: 1px solid var(--c-line); padding: 28px 28px 20px;
  display: flex; flex-direction: column;
}
.fleet-card .title { font: 500 22px/1.35 var(--f-head); color: var(--c-ink); margin-bottom: 8px; }
.fleet-card .title:hover { color: var(--c-accent); }
.fleet-card p { font-size: 13px; line-height: 1.7; min-height: 66px; }
.fleet-card .img img { width: 100%; height: auto; }
.fleet-card .meta {
  display: flex; justify-content: space-between; margin-top: 16px;
  border-top: 1px solid var(--c-line); padding-top: 14px;
  font: 500 13px var(--f-alt); color: var(--c-ink);
}
@media (max-width: 900px) { .fleet-card { width: 85%; } }

/* toggles (dark section accordions) */
.toggles { margin-top: 30px; }
.toggles details { border-bottom: 1px solid var(--c-line-dark); }
.toggles summary {
  cursor: pointer; list-style: none; position: relative;
  font: 500 20px/1.4 var(--f-head); color: #fff; padding: 20px 40px 20px 0;
}
.toggles summary::-webkit-details-marker { display: none; }
.toggles summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border: 1px solid var(--c-line-dark); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font: 400 18px var(--f-body); color: #fff;
}
.toggles details[open] summary { color: var(--c-accent); }
.toggles details[open] summary::after { content: '\2212'; border-color: var(--c-accent); color: var(--c-accent); }
.toggles details > p { font-size: 13px; line-height: 1.8; padding: 0 0 22px; margin: 0; }

/* pricing flips */
.flips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 50px; }
.flip { perspective: 1200px; min-height: 460px; outline: none; }
.flip-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform .7s;
}
.flip:hover .flip-inner, .flip:focus .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute; inset: 0; backface-visibility: hidden;
  box-shadow: -1px -1px 10px 2px rgba(0,0,0,.5);
}
.flip-front { background-size: cover; background-position: center; }
.flip-front .veil {
  position: absolute; inset: 0; background: rgba(5,21,27,.6);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px 25px 25px; text-align: center;
}
.flip-front .icon { font-size: 44px; color: #fff; margin-bottom: 26px; }
.flip-front h3, .flip-back h3 { color: #fff; font-size: 34px; line-height: 1.2; }
.flip-front p { color: #E9E9E9; font-size: 14px; line-height: 1.7; margin: 40px 0 0; }
.flip-front .note { color: #BFD9CF; font-size: 13px; margin-top: 18px; }
.flip-back {
  transform: rotateY(180deg); background: var(--c-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 26px 30px; text-align: center;
}
.flip-back h3 { font-size: 26px; margin-bottom: 18px; }
.flip-back ul { width: 100%; max-width: 300px; }
.flip-back li {
  display: flex; justify-content: space-between; gap: 12px;
  font: 400 13px/1.5 var(--f-body); color: #E9E9E9; padding: 3px 0;
}
.flip-back li em { font-style: normal; color: #fff; white-space: nowrap; }
.flip-back .note { color: #BFD9CF; font-size: 12px; margin: 16px 0 0; }
.flip-btn {
  margin-top: 18px; background: #fff; color: var(--c-accent);
  border: 1px solid var(--c-accent); border-radius: 3px;
  font: 600 18px var(--f-head); padding: 10px 28px; transition: all .25s;
}
.flip-btn:hover { background: #3B3B3D; color: #fff; border-color: #fff; }
@media (max-width: 900px) { .flips { grid-template-columns: 1fr; } }

/* tabs + steps */
.tabs { margin-top: 40px; }
.tab-buttons { display: inline-flex; margin-bottom: 55px; }
.tab-buttons button {
  font: 500 15px var(--f-head); color: var(--c-ink);
  background: #F5F5F5; padding: 11px 22px; border: 1px solid var(--c-line);
}
.tab-buttons button.active { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; counter-reset: none; position: relative;
}
.steps li { position: relative; padding: 0 10px; }
.steps .num {
  width: 40px; height: 40px; margin: 0 auto 26px;
  background: #fff; border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center;
  font: 500 16px var(--f-head); color: var(--c-ink); position: relative; z-index: 1;
}
.steps li:not(:last-child)::after {
  content: ''; position: absolute; top: 20px; left: calc(50% + 40px); right: calc(-50% + 40px);
  border-top: 1px dashed #C9C9C9;
}
.steps h4 { font: 600 16px var(--f-body); color: var(--c-ink); margin-bottom: 14px; }
.steps p { font-size: 13px; line-height: 1.7; margin: 0; }
.steps a { color: var(--c-accent); font-weight: 600; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .steps li:not(:last-child)::after { display: none; }
  .tab-buttons { flex-wrap: wrap; }
}

/* reviews */
.reviews .rev-head {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 30px 0 40px; color: #E9E9E9; font: 400 14px var(--f-body);
}
.reviews .rev-head strong { font: 700 20px var(--f-body); color: #fff; }
.stars { display: inline-flex; gap: 2px; }
.stars img { display: inline-block; }
.rev-card {
  width: calc((100% - 60px) / 3);
  background: #fff; border-radius: 6px; padding: 24px;
  text-align: left; display: flex; flex-direction: column; gap: 12px;
}
.rev-card .who { display: flex; align-items: flex-start; gap: 12px; }
.rev-card .who img:first-child { border-radius: 50%; }
.rev-card .who div { flex: 1; display: flex; flex-direction: column; }
.rev-card .who strong { font: 600 14px var(--f-body); color: var(--c-ink); }
.rev-card .who span { font: 400 12px var(--f-body); color: var(--c-muted); }
.rev-card p { font: 400 13px/1.7 var(--f-body); color: #444; margin: 0; }
@media (max-width: 900px) { .rev-card { width: 85%; } }

/* faq columns */
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; margin-top: 30px; }
.faq-item summary {
  cursor: pointer; list-style: none; position: relative;
  font: 500 15px/1.5 var(--f-head); color: var(--c-ink); padding: 10px 0 10px 22px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: ''; position: absolute; left: 0; top: 17px;
  border: 5px solid transparent; border-top-color: var(--c-accent);
}
.faq-item[open] summary::before { transform: rotate(180deg); top: 12px; }
.faq-item p { font-size: 13px; line-height: 1.75; padding: 4px 0 14px 22px; margin: 0; }
@media (max-width: 900px) { .faq-cols { grid-template-columns: 1fr; } }

/* final cta */
.cta { background-repeat: repeat; background-size: auto; position: relative; overflow: hidden; }
.cta .split-media img { max-width: 520px; margin-left: auto; }
.cta-pill {
  display: inline-flex; align-items: center; gap: 16px;
  background: #000; border-radius: 8px; padding: 12px 26px 12px 16px; margin-top: 10px;
}
.cta-pill .fa-check-circle { color: #fff; font-size: 22px; }
.cta-pill small { display: block; font: 400 13px var(--f-body); color: #C9C9C9; }
.cta-pill strong { font: 500 17px var(--f-head); color: #fff; }

/* ============================================================
   service pages
   ============================================================ */
.svc h1, .svc h2 { font-family: var(--f-body); font-weight: 600; color: var(--c-ink); }
.svc h1 { font-size: 44px; line-height: 1.25; }
.svc h2 { font-size: 34px; line-height: 1.3; margin-bottom: 22px; }
.svc p { font: 500 15px/1.7 var(--f-alt); color: var(--c-body); }

.svc-hero {
  background-size: cover; background-position: center; background-attachment: fixed;
  background-color: var(--c-dark); padding: 40px 0 120px;
}
.svc-hero .card {
  max-width: 600px; background: #fff; border-radius: 10px;
  padding: 56px 60px; box-shadow: 0 10px 40px rgba(0,0,0,.3);
}
.svc-hero .kicker { font: 500 14px var(--f-alt); color: var(--c-ink); margin-bottom: 14px; }
.svc-hero h1 { margin-bottom: 22px; }
.svc-hero p { font-size: 14px; margin-bottom: 14px; }

.svc-how h2 { font-size: 36px; }
.steps-row { display: flex; align-items: flex-start; gap: 28px; margin-top: 60px; }
.steps-row .step { flex: 1; }
.steps-row .step img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 26px; }
.steps-row .step h3 { font: 600 17px var(--f-body); color: var(--c-ink); margin-bottom: 16px; }
.steps-row .step p { font-size: 14px; margin: 0; }
.steps-row .arrow {
  flex: 0 0 38px; height: 38px; margin-top: 60px;
  border: 1px solid var(--c-line); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--c-ink);
}
@media (max-width: 900px) {
  .steps-row { flex-direction: column; }
  .steps-row .arrow { display: none; }
}

.svc-list .checks { margin: 26px 0 34px; display: grid; gap: 14px; }
.svc-list .checks li {
  position: relative; padding-left: 40px;
  font: 500 15px/1.6 var(--f-alt); color: var(--c-ink);
}
.svc-list .checks li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  width: 25px; height: 25px; border-radius: 50%;
  background: rgba(0,0,0,.08); color: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
}

.svc-grid .container-wide { padding: 0 10px; }
.svc-grid .cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
/* cardService.one clone: title pinned bottom, excerpt slides open on hover,
   image zooms, blue gradient overlay fades in */
.scard { position: relative; display: block; aspect-ratio: 1 / 1.05; overflow: hidden; border-radius: 6px; }
.scard img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease-in-out; }
.scard::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: #000; opacity: .2; transition: opacity .5s ease-in-out;
}
.scard::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, #0B59B0 0%, rgba(11,89,176,.3) 100%);
  opacity: 0; transition: opacity .5s ease-in-out;
}
.scard:hover img { transform: scale(1.1); }
.scard:hover::before { opacity: 0; }
.scard:hover::after { opacity: 1; }
.scard .inner {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 0 20px 18px; display: block;
}
.scard .name { display: block; font: 600 17px var(--f-body); color: #fff; }
.scard .more {
  display: block; max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .35s ease, opacity .35s ease;
}
.scard:hover .more, .scard:focus .more { max-height: 180px; opacity: 1; }
.scard .desc { display: block; font: 400 13px/1.6 var(--f-body); color: #fff; margin: 10px 0 14px; }
.scard .go {
  width: 34px; height: 34px; border: 1px solid #fff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.scard .go svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .svc-grid .cards { grid-template-columns: repeat(2, 1fr); } }

/* services listing: white cards, image on top (cardService.two.three clone) */
.svc-listing .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.lcard {
  border-radius: 6px; background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,.05); margin: 15px 0 10px;
}
.lcard figure {
  margin: 0; position: relative; overflow: hidden;
  border-radius: 6px 6px 0 0; height: 350px;
}
.lcard figure::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: #000; opacity: .2; transition: opacity .5s ease-in-out;
}
.lcard figure::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, #0B59B0 0%, rgba(11,89,176,.3) 100%);
  opacity: 0; transition: opacity .5s ease-in-out;
}
.lcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease-in-out; }
.lcard:hover img { transform: scale(1.1); }
.lcard:hover figure::before { opacity: 0; }
.lcard:hover figure::after { opacity: 1; }
.lcard .info { padding: 20px 30px 26px; }
.lcard h2 { font: 600 18px/1.4 var(--f-body); color: var(--c-ink); margin-bottom: 10px; transition: color .25s; }
.lcard:hover h2 { color: var(--c-accent); }
.lcard .info p { font: 400 13px/1.7 var(--f-body); color: var(--c-body); margin: 0; }
@media (max-width: 900px) { .svc-listing .cards { grid-template-columns: 1fr; } }

.svc-split--rev .split-media { order: 2; }
.svc-split .split-copy h2 { margin-top: 0; }
.svc-split p { font-size: 14px; }

.toggles--light details { border-bottom: 1px solid var(--c-line); }
.toggles--light summary { color: var(--c-ink); font: 600 17px/1.5 var(--f-body); }
.toggles--light summary::after { border-color: var(--c-line); color: var(--c-ink); }
.toggles--light details[open] summary,
.toggles--light details[open] summary::after { color: var(--c-ink); border-color: var(--c-ink); }
.toggles--light details > p { color: var(--c-body); font-size: 14px; }

.svc-book h2 { font-size: 40px; }
.svc-book .pills { display: flex; gap: 14px; flex-wrap: wrap; }
.svc-book .split-media img { max-width: 520px; margin-left: auto; }
.svc-book .cta-pill .fas, .svc-book .cta-pill [class^='fa-'] { color: #fff; font-size: 22px; }

/* ============================================================
   fleet detail pages
   ============================================================ */
.fleet-head { padding: 10px 0 0; }
.fleet-head .featured { max-width: 700px; margin-bottom: 30px; }
.fleet-head h2 { font-size: 30px; margin-bottom: 16px; }
.fleet-head p { font: 500 15px/1.7 var(--f-alt); }
.fleet-specs .checks { display: grid; gap: 16px; }
.fleet-specs .checks li {
  position: relative; padding-left: 36px;
  font: 500 16px/1.55 var(--f-head); color: var(--c-ink);
}
.fleet-specs .checks li::before {
  content: '\2713'; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,0,0,.08); color: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px;
}
.fleet-specs .quote-title { font-size: 26px; text-align: center; }
.fleet-gallery .car-track li { width: 100%; }
.fleet-gallery img { width: 100%; max-height: 640px; object-fit: cover; }

/* ============================================================
   blog / guides
   ============================================================ */
.article-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 40px;
  padding-top: 50px; padding-bottom: 90px;
}
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }

.guide h1 { font: 600 32px/1.3 var(--f-body); color: var(--c-ink); margin: 30px 0 18px; }
.guide h3 { font: 600 16px/1.5 var(--f-body); color: var(--c-ink); margin: 26px 0 12px; }
.guide p { font: 500 14px/1.75 var(--f-alt); color: var(--c-body); }
.guide .feature { margin: 0; position: relative; max-width: 370px; }
.guide .feature img { width: 100%; }
time.badge, .guide time, .post-card time {
  position: absolute; left: 0; top: 0;
  background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.05));
  color: #fff; padding: 12px 16px; display: flex; flex-direction: column;
  font: 500 12px var(--f-alt);
}
.guide time .big, .post-card time .big { font: 500 26px var(--f-head); }

.sidebar .widget {
  border: 1px solid var(--c-line); border-radius: 6px;
  padding: 24px 26px; margin-bottom: 30px;
}
.sidebar h4 { font: 600 17px var(--f-body); color: var(--c-ink); margin-bottom: 18px; }
.sidebar .tags { display: flex; flex-wrap: wrap; gap: 10px; }
.sidebar .tags a {
  display: inline-block; background: var(--c-bg-soft); border-radius: 20px;
  font: 500 13px var(--f-alt); color: var(--c-ink); padding: 6px 14px;
}
.sidebar .tags a:hover { background: var(--c-accent); color: #fff; }
.sidebar .recent li { margin-bottom: 12px; }
.sidebar .recent a { font: 500 14px var(--f-alt); color: var(--c-ink); }
.sidebar .recent a:hover { color: var(--c-accent); }

.post-list { display: grid; gap: 40px; }
.post-card { display: flex; gap: 30px; }
.post-card .thumb { position: relative; flex: 0 0 155px; }
.post-card .thumb img { width: 155px; height: 155px; object-fit: cover; }
.post-card .cat { font: 500 12px var(--f-alt); color: var(--c-ink); }
.post-card h2 { margin: 6px 0 4px; }
.post-card h2 a { font: 600 22px var(--f-body); color: var(--c-ink); }
.post-card h2 a:hover { color: var(--c-accent); }
.post-card p { font: 500 13px var(--f-alt); margin: 0 0 12px; }
.post-card .more {
  width: 34px; height: 34px; border: 1px solid var(--c-line); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px;
  color: var(--c-ink);
}
.post-card .more:hover { background: var(--c-ink); color: #fff; }

/* ============================================================
   about / listings / contact / prose
   ============================================================ */
.about-hero { background: #000; padding: 70px 0 0; }
.about-hero .split-copy { padding-bottom: 70px; }
.about-hero h1 { color: #fff; font-size: 34px; margin-bottom: 6px; }
.about-hero h2 { color: #fff; font-size: 30px; margin: 24px 0 16px; }
.about-hero .kicker { color: #C9C9C9; }
.about-hero p { color: #D5D5D5; }
.about-hero .split-media { align-self: stretch; }
.about-hero .split-media img { height: 100%; object-fit: cover; }
.about-hero .dots { display: grid; gap: 16px; margin-top: 26px; }
.about-hero .dots li {
  position: relative; padding-left: 38px; color: #fff;
  font: 500 15px/1.5 var(--f-body);
}
.about-hero .dots li::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%; background: #fff;
}
.about-great .mini-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 34px; margin-top: 30px; }
.about-great .icon-box .icon { font-size: 24px; }
.about-great h4 { font: 600 15px var(--f-body); margin-bottom: 6px; }
.about-great p { font-size: 13px; margin: 0; }
@media (max-width: 900px) { .about-great .mini-boxes { grid-template-columns: 1fr; } }

.grid-title { font: 600 34px var(--f-body); color: var(--c-ink); margin-bottom: 40px; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.fleet-grid .fleet-card { width: auto; }
@media (max-width: 900px) { .fleet-grid { grid-template-columns: 1fr; } }

.contact-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin-bottom: 50px; }
.contact-boxes h3 { font: 600 17px var(--f-body); color: var(--c-ink); margin-bottom: 16px; }
.contact-boxes p { font: 500 14px var(--f-alt); margin: 0 0 8px; }
.contact-boxes a:hover { color: var(--c-accent); }
.contact-form { display: grid; gap: 22px; }
.contact-form label span { display: block; font: 600 13px var(--f-body); color: var(--c-ink); margin-bottom: 8px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 0; background: #F5F5F5; border-radius: 3px;
  font: 500 15px var(--f-alt); color: var(--c-ink); padding: 14px 16px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--c-accent); }
.contact-form .submit {
  background: #000; color: #fff; border-radius: 3px;
  font: 600 15px var(--f-body); padding: 15px; transition: background .25s;
}
.contact-form .submit:hover { background: var(--c-accent); }

.prose { max-width: 900px; }
.prose h1 { font-size: 40px; margin-bottom: 30px; }
.prose h2 { font-size: 24px; margin: 34px 0 12px; }
.prose p, .prose li { font: 500 15px/1.75 var(--f-alt); color: var(--c-body); }
.prose ul { list-style: disc; padding-left: 22px; margin: 0 0 1em; }

/* ============================================================
   motion (entrance reveals + parallax), as in the original theme
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px);
  transition: opacity .8s ease-out, transform .8s ease-out; }
.reveal.in { opacity: 1; transform: none; }
.split-copy.reveal { transform: translateX(-40px); }   /* fadeInLeft accents */
.split-copy.reveal.in { transform: none; }
.split-media img, .fleet-gallery img { will-change: transform; transition: transform .1s linear; }
.flip.reveal .flip-inner { transition: transform .7s; } /* keep flip hover intact */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* hero BOOK box (replaces the old "No obligation" ribbon) */
.book-box {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  background: var(--c-accent); color: #fff;
  font: 600 38px/1 var(--f-head); letter-spacing: 6px;
  padding: 30px 32px; margin-bottom: 28px; border-radius: 4px;
  transition: background .25s, transform .25s;
  animation: book-pulse 2s ease-in-out infinite;
}
.book-box:hover {
  background: #244C97; transform: translateY(-2px);
  animation-play-state: paused;
}
.book-box .luxride-up-right-arrow { font-size: 22px; }
@keyframes book-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(43,89,176,.65); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 18px rgba(43,89,176,0); }
}
@media (prefers-reduced-motion: reduce) {
  .book-box { animation: none; }
}

/* ============================================================
   THEME: navy & gold (palette taken from taxi-uk.pl booking app)
   (override layer — delete this block to return to the blue/white look;
    the previous look is also backed up in style-light-backup.css)
   ============================================================ */
:root {
  --c-accent: #C2A14D;            /* muted gold */
  --c-accent-strong: #D9BC6B;     /* brighter gold for hovers/highlights */
  --c-dark: #0C1424;              /* near-black bands & footer */
  --c-header: #0C1424;            /* header bar graphite */
  --c-ink: #E7ECF7;               /* warm ivory headings/text-strong */
  --c-body: #8893AD;              /* body copy on graphite */
  --c-muted: #6B7793;
  --c-line: #283656;              /* borders on graphite */
  --c-bg-soft: #111B30;
}
body { background: #0E1626; }

/* chrome */
.site-header nav a.active { color: #0E1626; background: var(--c-accent); }
.site-header nav a:hover { color: var(--c-accent-strong); }
.header-phone:hover { color: var(--c-accent-strong); }
.breadcrumbs { background: #111B30; border-bottom-color: var(--c-line); }
.breadcrumbs a { color: var(--c-accent); }
.site-footer { background: var(--c-dark); }
.site-footer .social a:hover { color: var(--c-accent-strong); }

/* buttons: gold with dark text */
.btn, .btn--dark { background: var(--c-accent); color: #0E1626; }
.btn:hover, .btn--dark:hover { background: var(--c-accent-strong); color: #0C1424; }
.link-more:hover { color: var(--c-accent-strong); }

/* dark bands get a navy-graphite tint instead of pure black */
.section--dark { background: #0C1424; }

/* hero */
.hero-talk a[href*="wa.me"]:not(.btn) { color: var(--c-accent-strong); }
.book-box { background: var(--c-accent); color: #0E1626; }
.book-box:hover { background: var(--c-accent-strong); }
@keyframes book-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(194,161,77,.6); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 18px rgba(194,161,77,0); }
}

/* cards & panels that were white */
.rev-card { background: #15203A; }
.rev-card .who strong { color: var(--c-ink); }
.rev-card p { color: #B9BCC3; }
.lcard { background: #15203A; box-shadow: 0 10px 40px rgba(0,0,0,.45); }
.svc-hero .card { background: #15203A; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.svc-hero .kicker { color: var(--c-accent); }
.steps .num { background: #15203A; color: var(--c-ink); box-shadow: 0 2px 10px rgba(0,0,0,.4); }
.steps li:not(:last-child)::after { border-top-color: #2B3A5E; }
.tab-buttons button { background: #15203A; border-color: var(--c-line); color: var(--c-body); }
.tab-buttons button.active { background: var(--c-accent); border-color: var(--c-accent); color: #0E1626; }
.badges li { background: #EDE7DA; }
.badges .fa-check-circle { background: #0E1626; color: var(--c-accent); }
.cta-pill { background: #000; border: 1px solid var(--c-line); }
.cta-pill strong { color: var(--c-accent-strong); }
.flip-btn { background: var(--c-accent); color: #0E1626; border-color: var(--c-accent); }
.flip-btn:hover { background: var(--c-accent-strong); color: #0C1424; border-color: var(--c-accent-strong); }
.flip-front .veil { background: rgba(8,10,14,.66); }
.flip-back { background: #111B30; border: 1px solid var(--c-line); }

/* fleet cards: white product shots sit on an ivory plate */
.fleet-card { background: #111B30; border-color: var(--c-line); }
.fleet-card .img { background: #fff; border-radius: 4px; overflow: hidden; }
.fleet-card p { color: var(--c-body); }
.car-nav button { border-color: #2B3A5E; color: var(--c-ink); }
.car-nav button:hover { background: var(--c-accent); border-color: var(--c-accent); color: #0E1626; }

/* hover overlays: blue -> gold */
.scard::after, .lcard figure::after {
  background: linear-gradient(to top, rgba(148,118,45,.92) 0%, rgba(194,161,77,.35) 100%);
}
.scard .go { border-color: #0E1626; color: #0E1626; }
.scard:hover .name, .scard:hover .desc { color: #0E1626; }
.lcard:hover h2 { color: var(--c-accent-strong); }

/* forms */
.contact-form input, .contact-form textarea { background: #111B30; color: var(--c-ink); }
.contact-form .submit { background: var(--c-accent); color: #0E1626; }
.contact-form .submit:hover { background: var(--c-accent-strong); }
.sidebar .tags a:hover { background: var(--c-accent); color: #0E1626; }

/* light-section accents that assumed white bg */
.section--soft { background: var(--c-bg-soft); }
.about-great .icon-box .icon { color: var(--c-accent); }
.icon-box .icon { color: var(--c-accent); }
.kicker--accent { color: var(--c-accent); }
.section--dark .kicker, .on-dark .kicker { color: var(--c-accent); }
.badges li { color: #0E1626; }
/* line-art step icons are black PNGs — invert them on graphite */
.steps-row .step img { filter: invert(.85) sepia(.3) saturate(2) hue-rotate(10deg); }
.about-hero { background: var(--c-dark); }

/* ============================================================
   mobile polish
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 52px 0; }
  .section-title { font-size: 26px; line-height: 1.3; }
  .section-lead { font-size: 14px; }
  .kicker--accent { font-size: 17px; }
  .icon-grid { gap: 26px; margin-top: 34px; }
  .row-head { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 26px; }
  .split, .split--wide { gap: 24px; }
  .flip { min-height: 430px; }
  .tab-buttons { display: flex; width: 100%; }
  .tab-buttons button { flex: 1 1 auto; padding: 10px 12px; font-size: 13px; }
  .steps { gap: 26px; }
  .reviews .rev-head { flex-wrap: wrap; gap: 8px 14px; font-size: 13px; }
  .reviews .rev-head strong { font-size: 17px; }
  .reviews .rev-head .glogo { height: 24px; width: auto; }
  .rev-card, .fleet-card { width: 88%; }
  .faq-cols { gap: 0; }
  .cta .split-media img { max-width: 100%; }
  .svc h1 { font-size: 30px; }
  .svc h2 { font-size: 24px; }
  .svc-hero .card { padding: 30px 24px; }
  .svc-book h2 { font-size: 28px; }
  .book-box { font-size: 30px; padding: 24px 26px; }
  .footer-cols { padding: 34px 0 20px; gap: 26px; }
  .site-footer .top { padding: 24px 0; }
}

/* ============================================================
   homepage v2 — booking-first landing (navy & gold)
   ============================================================ */
.v2 { --panel: #15203A; --panel-line: #283656; }
.v2 h1, .v2 h2, .v2 h3 { color: var(--c-ink); }
.v2 .eyebrow {
  font: 500 14px/1.5 var(--f-head); text-transform: uppercase;
  letter-spacing: 2px; color: var(--c-accent); margin: 0 0 14px;
}
.v2 .panel {
  background: var(--panel); border: 1px solid var(--panel-line);
  border-radius: 14px; padding: 30px 32px;
}
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--c-accent); color: #0E1626; border-radius: 8px;
  font: 600 17px var(--f-head); letter-spacing: 2px;
  padding: 15px 34px; transition: background .25s, transform .25s;
}
.btn-gold:hover { background: var(--c-accent-strong); transform: translateY(-2px); }
.btn-gold.wide { width: 100%; }
.btn-gold.big { font-size: 22px; padding: 18px 48px; animation: book-pulse 2s ease-in-out infinite; }
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--panel-line); border-radius: 8px; color: var(--c-ink);
  font: 600 15px var(--f-body); padding: 14px 26px; transition: border-color .25s, color .25s;
}
.btn-line:hover { border-color: var(--c-accent); color: var(--c-accent-strong); }
.btn-line .fa-whatsapp { color: var(--c-wa); font-size: 18px; }
.btn-line.small { padding: 10px 20px; font-size: 13px; }

/* hero */
.v2-hero { padding: 64px 0 70px; }
.v2-hero .grid { display: grid; grid-template-columns: 7fr 5fr; gap: 60px; align-items: center; }
.v2-hero h1 { font: 300 54px/1.12 var(--f-head); color: #F5F2EA; margin: 0 0 20px; }
.v2-hero .lead { font: 400 17px/1.7 var(--f-body); color: #B9C2D6; max-width: 540px; }
.v2-hero .trust {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin: 22px 0 30px; font: 500 14px var(--f-alt); color: var(--c-body);
}
.v2-hero .trust strong { color: var(--c-ink); }
.v2-hero .ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.v2-hero .ctas .btn-gold { animation: book-pulse 2s ease-in-out infinite; }
.v2-hero .booking h2 { font: 500 24px var(--f-head); margin-bottom: 8px; }
.v2-hero .booking > p { font: 400 14px/1.6 var(--f-body); color: var(--c-body); }
.v2-hero .booking .btn-gold { margin-top: 10px; }
.v2-hero .booking .alt { font: 400 13px/1.6 var(--f-body); color: var(--c-body); margin: 16px 0 0; }
.v2-hero .booking .alt a { color: var(--c-accent-strong); font-weight: 600; }

/* USP chips */
.v2-usps { padding: 6px 0 30px; }
.v2-usps .chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.v2-usps .chip {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(21,32,58,.55); border: 1px solid var(--panel-line);
  border-radius: 12px; padding: 18px 20px;
}
.v2-usps .icon { font-size: 22px; color: var(--c-accent); margin-top: 3px; }
.v2-usps h3 { font: 600 15px var(--f-body); margin-bottom: 4px; }
.v2-usps p { font: 400 12.5px/1.6 var(--f-body); color: var(--c-body); margin: 0; }

/* generic blocks */
.v2-block { padding: 64px 0; }
.v2-alt { background: #0C1424; }
.v2 .head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 10px; }
.v2 .head.center { justify-content: center; text-align: center; }
.v2 .head h2 { font: 500 32px/1.25 var(--f-head); }
.v2 .head .more { font: 500 14px var(--f-head); color: var(--c-accent); white-space: nowrap; }
.v2 .head .more:hover { color: var(--c-accent-strong); }
.v2 .sub { font: 400 15px/1.65 var(--f-body); color: var(--c-body); max-width: 720px; margin: 0 0 34px; }
.v2 .sub.center { margin-left: auto; margin-right: auto; text-align: center; }
.v2 .narrow { max-width: 860px; }
.v2 .cards--5 { margin-top: 24px; }

/* fleet tiles */
.fleet-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fleet-tiles .tile {
  display: flex; align-items: center; gap: 18px;
  background: var(--c-bg-soft); border: 1px solid var(--panel-line);
  border-radius: 12px; padding: 14px 18px; transition: border-color .25s, transform .25s;
}
.fleet-tiles .tile:hover { border-color: var(--c-accent); transform: translateY(-3px); }
.fleet-tiles .plate {
  flex: 0 0 92px; background: #fff; border-radius: 8px; overflow: hidden;
}
.fleet-tiles .plate img { width: 92px; height: 92px; object-fit: contain; }
.fleet-tiles .info { display: flex; flex-direction: column; gap: 4px; }
.fleet-tiles strong { font: 600 16px var(--f-body); color: var(--c-ink); }
.fleet-tiles small { font: 400 12.5px var(--f-body); color: var(--c-body); }

/* price panels */
.price-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-panels .ph { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.price-panels .ph .icon { font-size: 24px; color: var(--c-accent); }
.price-panels h3 { font: 500 21px/1.3 var(--f-head); }
.price-panels ul { margin-bottom: 16px; }
.price-panels li {
  display: flex; justify-content: space-between; gap: 12px;
  font: 400 13.5px/2 var(--f-body); color: #C7CFDF;
  border-bottom: 1px dashed rgba(40,54,86,.7);
}
.price-panels li em { font-style: normal; color: var(--c-accent-strong); white-space: nowrap; }
.price-panels .note { font: 400 12px/1.6 var(--f-body); color: var(--c-body); margin-bottom: 16px; }

/* ways */
.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ways h3 { font: 500 20px var(--f-head); color: var(--c-accent); margin-bottom: 16px; }
.ways ol { list-style: none; counter-reset: step; margin: 0; padding: 0; }
.ways li { counter-increment: step; position: relative; padding: 0 0 16px 44px; }
.ways li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(194,161,77,.15); border: 1px solid var(--c-accent);
  color: var(--c-accent-strong); font: 500 13px var(--f-head);
  display: inline-flex; align-items: center; justify-content: center;
}
.ways li strong { font: 600 14px var(--f-body); color: var(--c-ink); display: block; margin-bottom: 4px; }
.ways li p { font: 400 13px/1.6 var(--f-body); color: var(--c-body); margin: 0; }
.ways a { color: var(--c-accent-strong); font-weight: 600; }

/* about strip */
.v2-about { padding: 64px 0; background: #0C1424; }
.v2-about .grid { display: grid; grid-template-columns: 5fr 6fr; gap: 60px; align-items: center; }
.v2-about figure { margin: 0; border-radius: 14px; overflow: hidden; }
.v2-about h2 { font: 500 32px/1.25 var(--f-head); margin-bottom: 16px; }
.v2-about p { font: 400 15px/1.7 var(--f-body); color: var(--c-body); }
.v2-about .ticks { margin: 20px 0 26px; display: grid; gap: 10px; }
.v2-about .ticks li {
  display: flex; align-items: center; gap: 12px;
  font: 500 14px var(--f-body); color: var(--c-ink);
}
.v2-about .ticks .fa-check-circle { color: var(--c-accent); font-size: 18px; }

/* reviews strip */
.rev-strip {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin: 8px 0 30px; font: 500 14px var(--f-alt); color: var(--c-body);
}
.rev-strip strong { font: 700 18px var(--f-body); color: var(--c-ink); }

/* FAQ */
.v2-faq .faq-item { border-bottom: 1px solid var(--panel-line); }
.v2-faq .faq-item summary { font-size: 16px; padding: 16px 0 16px 24px; }
.v2-faq .faq-item p { padding-left: 24px; }

/* final CTA */
.v2-cta {
  padding: 70px 0 90px; text-align: center;
  background: linear-gradient(180deg, #0E1626 0%, #0C1424 100%);
}
.v2-cta h2 { font: 500 36px/1.2 var(--f-head); margin-bottom: 14px; }
.v2-cta p { font: 400 15px/1.7 var(--f-body); color: var(--c-body); max-width: 640px; margin: 0 auto 30px; }
.v2-cta .ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* v2 mobile */
@media (max-width: 900px) {
  .v2-hero { padding: 36px 0 44px; }
  .v2-hero .grid { grid-template-columns: 1fr; gap: 28px; }
  .v2-hero h1 { font-size: 34px; }
  .v2-hero .lead { font-size: 15px; }
  .v2-usps .chips { grid-template-columns: 1fr; gap: 10px; }
  .v2-block, .v2-about { padding: 44px 0; }
  .v2 .head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .v2 .head.center { align-items: center; }
  .v2 .head h2 { font-size: 25px; }
  .fleet-tiles { grid-template-columns: 1fr; }
  .price-panels { grid-template-columns: 1fr; }
  .ways { grid-template-columns: 1fr; }
  .v2-about .grid { grid-template-columns: 1fr; gap: 26px; }
  .v2-cta h2 { font-size: 27px; }
  .v2 .panel { padding: 24px 20px; }
}
/* hero: single CTA stack inside the booking panel (no duplicated buttons) */
.btn-gold.pulse { animation: book-pulse 2s ease-in-out infinite; font-size: 20px; }
.btn-line.wide { width: 100%; justify-content: center; margin-top: 12px; }
.v2-hero .booking .alt { text-align: center; }

/* mobile footer: About + Customer Support side by side, Contact full width */
@media (max-width: 800px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px; padding: 30px 0 24px;
  }
  .footer-cols > div:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--c-line-dark); padding-top: 22px;
  }
  .footer-cols h4 { font-size: 14px; margin-bottom: 14px; color: var(--c-accent); }
  .footer-cols li { margin-bottom: 9px; }
  .footer-cols a, .footer-cols span { font-size: 13px; }
  .site-footer .top { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 0; }
  .site-footer .social { margin-left: 0; }
  .site-footer .bottom { padding: 18px 0; }
}

/* INSTANT CHAT in gold (not WhatsApp green) */
.btn-line { border-color: rgba(194,161,77,.55); color: var(--c-accent-strong); }
.btn-line .fa-whatsapp { color: var(--c-accent); }
.btn-line:hover { border-color: var(--c-accent-strong); color: var(--c-accent-strong); }

/* mobile hero: just the choice — BOOK or INSTANT CHAT */
@media (max-width: 900px) {
  .v2-hero { padding: 26px 0 34px; }
  .v2-hero .eyebrow,
  .v2-hero .lead,
  .v2-hero .trust,
  .v2-hero .booking h2,
  .v2-hero .booking > p,
  .v2-hero .booking .alt { display: none; }
  .v2-hero h1 { font-size: 30px; margin-bottom: 4px; text-align: center; }
  .v2-hero .grid { gap: 18px; }
  .v2-hero .booking { background: none; border: 0; padding: 0; }
  .v2-hero .booking .btn-gold { margin-top: 0; }
}

/* ============================================================
   mobile v3 pattern (navy & gold, per user's mockup)
   ============================================================ */
.m-only { display: none; }
.goldtext, .m-goldtext {
  background: linear-gradient(180deg,#EED9A0 0%,#D9B968 45%,#C9A24B 75%,#A07F2E 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

@media (max-width: 900px) {
  .d-only { display: none; }
  .m-only { display: block; }

  /* --- hero --- */
  .v2-hero { padding: 30px 0 0; }
  .v2-hero h1 {
    text-align: center; font-size: 36px; line-height: 1.18;
    font-weight: 500; letter-spacing: .04em;
    background: linear-gradient(180deg,#EED9A0 0%,#D9B968 45%,#C9A24B 75%,#A07F2E 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    margin-bottom: 12px;
  }
  .m-sub {
    text-align: center; font: 600 13px/1.6 var(--f-body);
    letter-spacing: .14em; color: #D7DCEC; margin: 0 0 6px;
  }
  /* pill CTAs */
  .v2-hero .booking .btn-gold, .ride-band .btn-gold {
    border-radius: 999px; min-height: 52px;
    font: 800 14px var(--f-body); letter-spacing: .12em; text-transform: uppercase;
    background: linear-gradient(135deg,#EED9A0,#C9A24B 55%,#A07F2E);
    color: #0A1428; box-shadow: 0 12px 30px rgba(201,162,75,.35);
    animation: none;
  }
  .v2-hero .booking .btn-line {
    border-radius: 999px; min-height: 48px; justify-content: center;
    font: 800 13px var(--f-body); letter-spacing: .12em; text-transform: uppercase;
  }
  /* photo strip with navy fades */
  .m-heroextra { margin-top: 10px; }
  .hero-photo { margin: 0 calc(-1 * var(--gutter)); position: relative; }
  .hero-photo img { width: 100%; height: 280px; object-fit: cover; object-position: 30% 60%; }
  .hero-photo::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg,#0E1626 0%,rgba(14,22,38,.15) 38%,rgba(14,22,38,.1) 60%,#0E1626 100%);
  }
  /* trust row */
  .trust3 { display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 10px 0 0; }
  .trust3 > div {
    padding: 12px 8px; text-align: center; border-right: 1px solid #233A66;
    display: flex; flex-direction: column; align-items: center; gap: 9px;
  }
  .trust3 > div:last-child { border-right: 0; }
  .trust3 svg { width: 30px; height: 30px; }
  .trust3 span { font: 700 10px/1.5 var(--f-body); letter-spacing: .12em; color: #CFD6E8; }
  .chev { display: flex; justify-content: center; padding: 14px 0 22px; }
  .chev svg { width: 22px; height: 12px; }

  /* --- centered gold section headings with rule --- */
  .v2 .head { align-items: center; }
  .v2 .head h2, .v2-about h2, .v2-cta h2 {
    width: 100%; text-align: center;
    font: 800 24px/1.3 var(--f-body); letter-spacing: .04em;
    background: linear-gradient(180deg,#EED9A0 0%,#D9B968 45%,#C9A24B 75%,#A07F2E 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  .v2 .head h2::after, .v2-about h2::after {
    content: ""; display: block; width: 64px; height: 2px; margin: 12px auto 0;
    background: linear-gradient(90deg,transparent,#C9A24B,transparent);
  }
  .v2 .head .more { align-self: center; }
  .v2 .sub { text-align: center; margin-left: auto; margin-right: auto; }

  /* --- services rows --- */
  .v2 .cards--5 { display: none; }
  .m-svclist .lede { text-align: center; font: 400 13.5px/1.6 var(--f-body); color: var(--c-muted); margin: 0 0 22px; }
  .svc-row {
    display: flex; align-items: center; gap: 16px;
    border: 1px solid rgba(201,162,75,.4); border-radius: 14px;
    padding: 12px 14px; margin-bottom: 14px; background: rgba(8,18,38,.35);
  }
  .svc-row img { width: 52px; height: 52px; object-fit: cover; border-radius: 10px; flex: none; }
  .svc-row strong {
    display: block; font: 800 13.5px var(--f-body); letter-spacing: .1em;
    text-transform: uppercase; margin-bottom: 4px;
    background: linear-gradient(180deg,#EED9A0,#C9A24B 70%,#A07F2E);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  .svc-row small { font: 400 12.5px/1.55 var(--f-body); color: var(--c-muted); }
  .m-svclist .chev { padding: 6px 0 0; }

  /* --- Need a ride band --- */
  .v2-cta { padding: 34px 0 44px; }
  .ride-band { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
  .ride-band .row { display: flex; align-items: center; gap: 14px; text-align: left; }
  .ride-band svg { width: 34px; height: 34px; flex: none; }
  .ride-band h3 {
    font: 800 16px var(--f-body); letter-spacing: .08em;
    background: linear-gradient(180deg,#EED9A0,#C9A24B 70%,#A07F2E);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  .ride-band p { font: 400 13px var(--f-body); color: var(--c-muted); margin: 3px 0 0; }
}
/* mobile header: logo left, burger right, no phone button */
@media (max-width: 1100px) {
  .site-header .header-phone { display: none; }
  .nav-toggle { order: 99; margin-left: auto; color: var(--c-accent); }
}

/* bottom action bar — mobile only, slides in after scrolling down */
.action-bar { display: none; }
@media (max-width: 900px) {
  .action-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    display: flex; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(12,20,36,.92);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-top: 1px solid #233A66;
    transform: translateY(110%); transition: transform .3s ease;
  }
  .action-bar.show { transform: none; }
  .action-bar a {
    flex: 1; min-height: 46px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font: 800 12.5px var(--f-body); letter-spacing: .08em; text-transform: uppercase;
    border: 1px solid rgba(201,162,75,.55); color: var(--c-accent-strong);
  }
  .action-bar a svg { width: 17px; height: 17px; }
  .action-bar .fa-whatsapp { font-size: 16px; }
  .action-bar .gold {
    border: 0; background: linear-gradient(135deg,#EED9A0,#C9A24B 55%,#A07F2E);
    color: #0A1428; box-shadow: 0 8px 22px rgba(201,162,75,.35);
  }
  /* the green balloon duplicates the bar on mobile — hide it */
  .wa-float { display: none; }
}

/* brand logo (AA monogram + gold TRANSFERS, per mockup) */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand svg { display: block; flex: none; }
.brand-rest {
  font: 700 16px var(--f-body); letter-spacing: .32em; padding-top: 2px;
  background: linear-gradient(180deg,#EED9A0 0%,#D9B968 45%,#C9A24B 75%,#A07F2E 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.site-footer .brand-rest { font-size: 14px; }

/* hero with photo background (desktop, per mockup) */
.v2-hero { position: relative; overflow: hidden; }
.v2-hero .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 55%;
}
.v2-hero .hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,18,38,.92) 0%, rgba(8,18,38,.72) 28%, rgba(8,18,38,.35) 55%, rgba(8,18,38,.35) 75%),
    linear-gradient(180deg, rgba(8,18,38,.55) 0%, rgba(8,18,38,0) 25%, rgba(8,18,38,0) 70%, #0E1626 100%);
}
.v2-hero .container { position: relative; z-index: 2; }
.v2-hero .booking { background: rgba(14,22,38,.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
@media (max-width: 900px) {
  /* mobile keeps the clean navy top + separate photo strip */
  .v2-hero .hero-bg, .v2-hero .hero-shade { display: none; }
  .v2-hero .booking { background: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .hero-photo img { object-position: center 60%; }
}
