@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ===== Variables & base ===== */
:root {
  --brand-orange:#f28c20;
  --brand-yellow:#ffcc33;
  --brand-yellow-2:#ffd54d;
  --brand-black:#1a1a1a;
  --primary: var(--brand-orange);
  --accent: var(--brand-yellow);
  --bg:#f7f8fa;
}

* { box-sizing: border-box; }
body { font-family: 'Poppins', system-ui, Arial, sans-serif; color: var(--text-color, #222); background: var(--bg); margin: 0; line-height: 1.5; overflow-x:hidden; }
a { color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.section { padding: 64px 0; }
.eyebrow { text-transform: uppercase; font-size: .75rem; letter-spacing: .2em; color: var(--primary); margin:0 0 6px; font-weight:600; }
.muted { color:#6b7280; font-size:.95rem; }
.btn, button { background: var(--primary); color:#fff; border:none; padding:12px 20px; border-radius:999px; cursor:pointer; text-decoration:none; display:inline-flex; align-items:center; justify-content:center; gap:6px; font-weight:600; transition: transform .05s ease, filter .2s ease, background .2s ease; }
.btn:hover, button:hover { filter: brightness(.95); }
.btn:active, button:active { transform: scale(.98); }
.btn.secondary { background:#6c757d; }
.btn-sm { padding:10px 16px; border-radius:16px; font-size:.9rem; }
.btn-tier { border:2px solid var(--brand-yellow); background:var(--brand-yellow); color:#111; padding:8px 14px; border-radius:12px; font-weight:600; text-decoration:none; display:inline-flex; align-items:center; justify-content:center; }
.btn-tier.secondary { background:#fff; border-color:#e5e7eb; }
.flash { padding:12px 16px; background:#e6f0ff; border:1px solid #cfe0ff; border-radius:10px; margin:16px 0; }
label { display:block; font-weight:600; margin:8px 0 4px; }
input, select, textarea { width:100%; padding:10px 12px; border:1px solid #cbd5e1; border-radius:10px; background:#fff; font:inherit; transition:border-color .2s, box-shadow .2s; }
input:focus, select:focus, textarea:focus { outline:none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(242,140,32,.25); }

/* Top bar & header */
.top-bar { background: var(--topbar-bg, #0a3d62); color: var(--topbar-text, #fff); font-size:.9rem; }
.top-bar-inner { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:10px 16px; }
.top-bar .contact-info { display:flex; gap:20px; flex-wrap:wrap; }
.top-bar .contact-info span { display:flex; align-items:center; gap:6px; }
.top-bar .social-icons a { color:inherit; margin-left:12px; opacity:.85; transition:opacity .2s, transform .2s; }
.top-bar .social-icons a:hover { opacity:1; transform:translateY(-2px); }

.site-header { background:#fff; position:sticky; top:0; z-index:100; border-bottom:1px solid #e5e7eb; }
.site-header .inner { display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; padding:12px 16px; }
.brand img { max-height:48px; }
.logo { font-size:1.8rem; font-weight:800; color:#0a3d62; text-decoration:none; }
.logo span { color:var(--primary); }
.menu { list-style:none; display:flex; gap:18px; margin:0; padding:0; align-items:center; flex-wrap:wrap; }
.menu a { text-decoration:none; color:#0a3d62; font-weight:600; position:relative; padding-bottom:3px; }
.menu a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--primary); transition:width .2s; }
.menu a:hover::after { width:100%; }
.menu .currency select { border-radius:999px; padding:6px 28px 6px 12px; border:1px solid #e5e7eb; }
.contact-inline .btn { border-radius:999px; padding:10px 20px; }

/* Hero slider */
.full-bleed { width:100vw; position:relative; left:50%; transform:translateX(-50%); }
.hero-slider { position:relative; height:74vh; min-height:460px; overflow:hidden; }
.hero-track { display:flex; height:100%; transition:transform .7s ease; }
.hero-track.no-transition { transition:none !important; }
.hero-slide { position:relative; flex:0 0 100%; background-size:cover; background-position:center; display:flex; align-items:flex-end; }
.hero-slide .hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.65)); }
.hero-content { position:relative; z-index:2; padding:0 16px 112px; text-align:center; color:#fff; max-width:900px; margin:0 auto; }
.hero-content h1 { font-size:3rem; margin:0 0 10px; text-shadow:0 8px 30px rgba(0,0,0,.45); text-transform:uppercase; letter-spacing:.08em; }
.hero-content p { font-size:1.1rem; color:#f7f7f7; margin:0 0 20px; font-weight:500; }
.hero-content .hero-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.hero-slider .dots { position:absolute; bottom:16px; left:0; right:0; display:flex; justify-content:center; gap:8px; z-index:3; }
.hero-slider .dot { width:12px; height:12px; border-radius:50%; border:1px solid #fff; background:#fff7; cursor:pointer; }
.hero-slider .dot.active { background:var(--accent); border-color:var(--accent); }
.hero-slider .arrow { position:absolute; top:50%; transform:translateY(-50%); width:42px; height:42px; border-radius:50%; background:rgba(0,0,0,.35); color:#fff; border:1px solid rgba(255,255,255,.7); cursor:pointer; z-index:3; display:flex; align-items:center; justify-content:center; }
.hero-slider .arrow.prev { left:18px; }
.hero-slider .arrow.next { right:18px; }

/* Booking block */
.booking-cta { margin-top:-36px; position:relative; z-index:6; padding:0 16px 24px; }
.booking-card { background:#fff; border-radius:32px; padding:32px 36px; box-shadow:0 24px 50px rgba(0,0,0,.12); display:grid; grid-template-columns:minmax(280px, 430px) minmax(0, 1fr); gap:26px; align-items:flex-start; border:1px solid rgba(255,255,255,.65); max-width:1180px; margin:0 auto; }
.booking-card .text { min-width:0; padding-top:8px; }
.booking-card .search-form { display:grid; grid-template-columns:repeat(3,minmax(160px,1fr)); gap:16px; align-items:end; min-width:0; }
.booking-card .field label { font-size:.85rem; color:#6b7280; }
.booking-card .field input, .booking-card .field select { border-radius:18px; }
.booking-card .submit { align-self:end; }
@media (max-width: 1180px){
  .booking-card { grid-template-columns:1fr; }
  .booking-card .search-form { grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); }
}

.booking-card h2 { font-size:2rem; line-height:1.2; margin:8px 0 0; color:#0f172a; max-width:100%; }
.booking-card .eyebrow { margin-bottom:10px; }
.booking-card .submit .btn { min-width:140px; }
.booking-card .field input,
.booking-card .field select { min-height:48px; background:#fff; }


/* Sections */
.section-header { display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:16px; margin-bottom:30px; }
.section-header h2 { margin:0; font-size:2rem; color:#0a3d62; }
.section-light { background:#fff; }

/* Fleet strip horizontal */
.fleet-strip { display:grid; grid-auto-flow:column; grid-auto-columns:minmax(290px,1fr); gap:18px; overflow-x:auto; padding:0 16px 8px; scroll-snap-type:x proximity; }
.fleet-strip::-webkit-scrollbar { height:8px; }
.fleet-strip::-webkit-scrollbar-thumb { background:#d1d5db; border-radius:999px; }
.fleet-card { background:#fff; border:1px solid #e5e7eb; border-radius:18px; overflow:hidden; scroll-snap-align:start; box-shadow:0 10px 25px rgba(0,0,0,.05); display:flex; flex-direction:column; min-height:360px; }
.fleet-card .media { background:#f8f9fb; display:flex; align-items:center; justify-content:center; padding:14px; }
.fleet-card img { width:100%; height:200px; object-fit:cover; border-radius:12px; }
.fleet-card .body { padding:16px; display:flex; flex-direction:column; gap:8px; }
.fleet-card .title { font-size:1.08rem; font-weight:700; color:#0f172a; }
.fleet-card .subtitle { color:#6b7280; font-size:.9rem; }
.vehicle-meta { display:flex; gap:14px; color:#4b5563; font-size:.9rem; flex-wrap:wrap; }
.price-block { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.price { font-size:1.4rem; font-weight:700; color:#0a3d62; }
.price small { font-size:.75rem; color:#6b7280; font-weight:500; margin-left:4px; }
.fleet-page { padding:0 40px 16px; }

/* Experiences */
.exp-carousel { position:relative; overflow:hidden; }
.exp-track { display:flex; gap:18px; transition:transform .4s ease; }
.exp-card { flex:0 0 calc(25% - 13.5px); border-radius:18px; overflow:hidden; box-shadow:0 18px 30px rgba(0,0,0,.06); background:#fff; }
.exp-card figure { margin:0; height:220px; background:#111 center/cover no-repeat; }
.exp-card .video { padding:0; }
.exp-card iframe { border:0; }
.exp-card .card-body { padding:18px; }
.exp-card .card-title { font-weight:700; margin-bottom:10px; }
.exp-card .muted { color:#6b7280; font-size:.95rem; }
.exp-nav { position:absolute; top:50%; transform:translateY(-50%); border:none; background:rgba(10,61,98,.85); color:#fff; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 8px 20px rgba(0,0,0,.15); }
.exp-nav.prev { left:10px; }
.exp-nav.next { right:10px; }
.exp-nav:disabled { opacity:.4; cursor:not-allowed; }
@media (max-width: 1024px){
  .exp-card { flex:0 0 calc(50% - 9px); }
}
@media (max-width: 640px){
  .exp-card { flex:0 0 100%; }
  .exp-nav { display:none; }
}

/* Contact preview & global contact */
.contact-blurb { display:grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap:30px; align-items:center; }
.contact-data { list-style:none; padding:0; margin:16px 0; display:flex; flex-direction:column; gap:10px; color:#374151; }
.contact-data i { margin-right:8px; color:var(--primary); }
.contact-preview .map img { width:100%; border-radius:16px; object-fit:cover; }
.global-contact { background:#fff; padding:40px 0; }
.global-contact .mini-contact { display:grid; gap:10px; }
.global-contact textarea { resize:vertical; min-height:90px; }

/* Contact page */
.contact-page { padding-top:40px; }
.contact-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap:24px; }
.contact-grid.contact-map-layout { grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); }
.suggestions { background:#fff; border-radius:18px; padding:20px; border:1px solid #e5e7eb; box-shadow:0 10px 20px rgba(0,0,0,.04); }
.mini-vehicle { display:flex; gap:12px; margin-bottom:16px; padding-bottom:12px; border-bottom:1px solid #f1f5f9; }
.mini-vehicle:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.mini-vehicle .thumb { width:110px; height:80px; border-radius:12px; background:#e5e7eb center/cover no-repeat; }
.mini-vehicle .title { font-weight:700; }
.mini-vehicle .muted { font-size:.9rem; color:#6b7280; margin:4px 0; }
.form-wrap { background:#fff; border-radius:18px; padding:24px; border:1px solid #e5e7eb; box-shadow:0 18px 30px rgba(0,0,0,.05); }
.terms { display:flex; align-items:center; gap:8px; font-size:.9rem; color:#374151; }
.map-card { background:#fff; border-radius:18px; border:1px solid #e5e7eb; box-shadow:0 12px 24px rgba(0,0,0,.04); overflow:hidden; }
.map-card iframe, .map-card img { width:100%; min-height:360px; border:0; display:block; }

/* Footer */
.site-footer { background:var(--footer-bg,#0a243d); color:var(--footer-text,#ffffff); padding:60px 0 30px; }
.footer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:30px; margin-bottom:30px; }
.footer-logo { font-size:1.5rem; font-weight:700; }
.site-footer h5 { margin:0 0 12px; color:var(--accent); }
.site-footer a { color:#cfd8e3; text-decoration:none; display:block; margin:4px 0; }
.site-footer a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.15); padding-top:16px; text-align:center; font-size:.9rem; color:#c1c7d6; }

/* Search results */
.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:18px; margin-top:24px; }
.vehicle-card { background:#fff; border-radius:18px; overflow:hidden; border:1px solid #e5e7eb; display:flex; flex-direction:column; box-shadow:0 12px 22px rgba(0,0,0,.04); }
.vehicle-card .media { background:#f8f8fb; }
.vehicle-card .media img { width:100%; height:220px; object-fit:cover; }
.vehicle-card .body { padding:16px; display:flex; flex-direction:column; gap:8px; }
.vehicle-badges { display:flex; gap:10px; flex-wrap:wrap; font-size:.85rem; color:#4b5563; }
.vehicle-badges span { background:#f3f4f6; border-radius:999px; padding:4px 10px; }
.cta { display:flex; gap:10px; flex-wrap:wrap; }
.vehicle-card .btn-sm,
.cta .btn-sm,
.mini-vehicle .btn-sm {
  background:#fff;
  border:1px solid #e5e7eb;
  color:#0a3d62;
}

.vehicle-card .btn-sm:hover,
.cta .btn-sm:hover,
.mini-vehicle .btn-sm:hover {
  background:#f8fafc;
}

/* Reservation detail */
.reserve-header { display:grid; grid-template-columns:180px 1fr; gap:16px; align-items:center; background:#fff; border:1px solid #e5e7eb; border-radius:18px; padding:16px; margin-bottom:24px; }
.reserve-header .media { width:100%; height:140px; border-radius:12px; background-size:cover; background-position:center; }
.badge-year { background:#f39c12; color:#111; border-radius:999px; padding:2px 10px; font-size:.85rem; font-weight:600; margin-left:8px; }
.reserve-wrap { display:grid; grid-template-columns: minmax(0,1fr) minmax(320px,0.9fr); gap:20px; }
.reserve-left .card, .reserve-right .card { background:#fff; border:1px solid #e5e7eb; border-radius:18px; padding:18px; }
.booking-card input { border-radius:14px; }
.summary-card .summary-row { display:flex; justify-content:space-between; border-bottom:1px dashed #e5e7eb; padding:6px 0; }
.summary-card .summary-row:last-child { border-bottom:none; }
.summary-total strong { font-size:1.25rem; color:#0a3d62; }
.extras-list .extra { display:flex; gap:12px; padding:8px 0; border-bottom:1px dashed #e5e7eb; }
.extras-list .extra:last-child { border-bottom:none; }
.extras-list .extra input[type="checkbox"] { width:18px; height:18px; margin-top:4px; accent-color:var(--primary); }
.mini-vehicle .btn { border-radius:10px; padding:8px 12px; }

/* Global utilities */
.filters { display:flex; flex-wrap:wrap; gap:16px; align-items:flex-end; background:#fff; border-radius:18px; padding:20px; border:1px solid #e5e7eb; box-shadow:0 6px 18px rgba(0,0,0,.04); }
.filters .field { flex:1 1 160px; }
.filters .submit { flex:0 0 auto; }
.contact-map-block { padding-top:0; }

.tariff-card { background:#fff; border:1px solid #e5e7eb; border-radius:18px; padding:20px; box-shadow:0 10px 24px rgba(0,0,0,.04); }
.tariff-controls { display:flex; justify-content:flex-end; margin-bottom:12px; }
.tariff-controls input { max-width:280px; border-radius:999px; padding:10px 16px; border:1px solid #d1d5db; }
.table-responsive { overflow-x:auto; }
.tariff-table { width:100%; border-collapse:separate; border-spacing:0; }
.tariff-table thead th { text-align:left; font-size:.9rem; text-transform:uppercase; letter-spacing:.08em; color:#6b7280; padding:12px; border-bottom:1px solid #e5e7eb; }
.tariff-table tbody td { padding:14px 12px; border-bottom:1px solid #f1f5f9; }
.tariff-table tbody tr:hover { background:#f8fafc; }
.tariff-table .badge-pill { display:inline-flex; align-items:center; gap:6px; border-radius:999px; padding:4px 10px; font-size:.85rem; background:#fef3c7; color:#92400e; }

@media (max-width: 768px){
  .hero-slider { min-height:520px; }
  .hero-content { padding-bottom:96px; }
  .booking-cta { margin-top:-6px; padding:0 12px 18px; }
  .booking-card { padding:24px 20px; border-radius:24px; }
  .booking-card h2 { font-size:1.7rem; }
  .site-header .inner { justify-content:center; }
  .reserve-wrap { grid-template-columns:1fr; }
}
.pill { background:#f3f4f6; color:#374151; padding:6px 12px; border-radius:999px; font-size:.85rem; display:inline-flex; align-items:center; gap:6px; }





/* Fleet page refresh */
.fleet-hero-section { padding-bottom: 24px; }
.fleet-results-section { padding-top: 12px; }
.fleet-hero { display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:24px; flex-wrap:wrap; }
.fleet-hero p.muted { max-width:620px; margin:8px 0 0; }
.fleet-filters { display:grid; grid-template-columns: minmax(220px,1fr) minmax(220px,1fr) auto; gap:18px; align-items:end; padding:26px; border-radius:24px; }
.fleet-filter-actions { display:flex; gap:12px; align-items:end; }
.fleet-filter-actions .btn { min-width:120px; }
.fleet-summary { display:flex; align-items:center; gap:8px; margin-top:16px; color:#475569; font-size:.95rem; }
.fleet-summary strong { color:#0a3d62; font-size:1.1rem; }
.fleet-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:22px; }
.fleet-page-grid { padding:0; }
.fleet-card-compact { min-height:unset; border-radius:22px; box-shadow:0 14px 32px rgba(15, 23, 42, .07); }
.fleet-card-compact .media { padding:16px 16px 0; }
.fleet-card-compact img { height:190px; border-radius:18px; object-fit:contain; background:#f8fafc; }
.fleet-card-compact .body { padding:18px; gap:12px; }
.fleet-card-compact .title-row { display:flex; justify-content:space-between; align-items:flex-start; gap:12px; }
.fleet-card-compact .title { font-size:1.2rem; line-height:1.2; }
.fleet-year { display:inline-flex; align-items:center; justify-content:center; min-width:54px; padding:6px 10px; border-radius:999px; background:#fff3e4; color:#b45309; font-size:.82rem; font-weight:700; }
.vehicle-meta.compact span { display:inline-flex; align-items:center; gap:6px; }
.branch-stack { display:flex; flex-direction:column; gap:8px; }
.branch-tags { display:flex; flex-wrap:wrap; gap:8px; }
.branch-tag { display:inline-flex; align-items:center; padding:6px 10px; border-radius:999px; background:#eff6ff; color:#0a3d62; font-size:.82rem; font-weight:600; }
.price-block.compact { margin-top:auto; }
.tiers.tiers-full { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.compact-contact-preview { padding-top:24px; }
@media (max-width: 900px) {
  .fleet-filters { grid-template-columns:1fr; }
  .fleet-filter-actions { width:100%; }
  .fleet-filter-actions .btn { flex:1 1 auto; }
}
/* Reservation detail refresh */
.reserve-page-section { padding-top: 40px; }
.reserve-header { grid-template-columns: 160px 1fr; padding: 20px 22px; }
.reserve-intro { display:flex; flex-direction:column; gap:10px; }
.reserve-note { margin: 0; max-width: 620px; }
.reserve-layout-improved { align-items: start; gap: 22px; }
.reserve-left, .reserve-right { display:flex; flex-direction:column; gap:18px; }
.reserve-right { position: sticky; top: 110px; }
.reserve-left .card, .reserve-right .card { padding: 22px; }
.card-head { margin-bottom: 16px; }
.card-head h3 { margin:0 0 6px; font-size:1.35rem; color:#0f172a; }
.card-head p { margin:0; }
.compact-head { margin-bottom: 12px; }
.period-card { display:block; }
.period-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
.period-field label { margin-bottom: 8px; }
.period-field input { min-height: 52px; border-radius: 14px; }
.summary-box { background:#f8fafc; border:1px solid #e2e8f0; border-radius:16px; padding:14px 16px; margin-bottom:14px; }
.reserve-form-card .muted { margin-bottom: 14px; }
.form-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field label { margin-bottom: 8px; }
.form-field input, .form-field select { min-height: 50px; border-radius: 14px; }
.captcha-wrap { margin-top: 8px; }
.reserve-actions { display:flex; gap:10px; margin-top:14px; }
.reserve-actions .btn { min-width: 120px; }
.reserve-side-card { box-shadow:0 12px 28px rgba(15,23,42,.05); }
.selectable-extra { display:flex; gap:12px; align-items:flex-start; padding:12px 0; cursor:pointer; }
.selectable-extra input[type="checkbox"] { margin-top:4px; }
.extra-copy { display:flex; flex-direction:column; gap:2px; }
.related-list { display:flex; flex-direction:column; gap:12px; }
.compact-mini { margin:0; padding:0 0 12px; }
.compact-mini .thumb { width:92px; height:72px; }
.compact-mini .mini-copy { display:flex; flex-direction:column; gap:6px; }
@media (max-width: 992px) {
  .reserve-right { position: static; }
  .period-grid, .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .reserve-header { grid-template-columns: 1fr; }
  .reserve-header .media { height: 200px; }
}
/* Home page refresh */
.home-booking-cta { margin-top: -28px; }
.home-booking-card { gap: 30px; align-items: center; }
.home-booking-card .text { max-width: 420px; }
.home-booking-card .text .muted { margin: 10px 0 0; }
.home-search-form { grid-template-columns: minmax(220px,1.1fr) minmax(180px,1fr) minmax(180px,1fr) auto; }
.home-search-submit .btn { min-width: 130px; }
.home-featured-section .section-header { margin-bottom: 24px; }
.home-featured-grid { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.home-featured-card .media { padding: 16px 16px 0; }
.home-featured-card img { height: 185px; object-fit: contain; background:#f8fafc; }
.home-featured-card .body { gap: 12px; }
.home-featured-card .price-block.compact { display:flex; align-items:end; justify-content:space-between; gap:12px; }
.home-featured-card .btn-tier { min-width: 118px; }
@media (max-width: 1180px) {
  .home-search-form { grid-template-columns: repeat(2, minmax(180px,1fr)); }
}
@media (max-width: 768px) {
  .home-booking-cta { margin-top: -8px; }
  .home-search-form { grid-template-columns: 1fr; }
}
/* Fleet pagination */
.fleet-filters .field-small { flex: 0 0 140px; }
.fleet-summary-extended { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.fleet-count { display:flex; align-items:center; gap:8px; }
.fleet-range { color:#64748b; font-size:.92rem; }
.fleet-pagination { display:flex; justify-content:center; align-items:center; gap:10px; margin-top:28px; flex-wrap:wrap; }
.fleet-pagination a { width:42px; height:42px; display:inline-flex; align-items:center; justify-content:center; border-radius:999px; border:1px solid #dbe3ee; background:#fff; color:#0a3d62; text-decoration:none; font-weight:600; transition:.2s ease; }
.fleet-pagination a:hover { border-color:var(--primary); color:var(--primary); }
.fleet-pagination a.active { background:var(--primary); border-color:var(--primary); color:#fff; }
@media (max-width: 900px) {
  .fleet-summary-extended { align-items:flex-start; }
}
/* How booking section */
.how-booking-section { padding-top: 28px; }
.how-booking-head { margin-bottom: 26px; }
.how-booking-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.how-step-card { position:relative; background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%); border:1px solid #e5e7eb; border-radius:24px; padding:24px 22px 22px; box-shadow:0 18px 35px rgba(15,23,42,.05); overflow:hidden; min-height:240px; }
.how-step-card::after { content:''; position:absolute; inset:auto -20px -40px auto; width:120px; height:120px; background:rgba(242,140,32,.08); border-radius:50%; }
.how-step-card.highlight { background:linear-gradient(180deg,#fff7ed 0%,#ffffff 100%); border-color:#fed7aa; }
.how-step-badge { width:34px; height:34px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; background:#0a3d62; color:#fff; font-weight:700; font-size:.92rem; margin-bottom:18px; position:relative; z-index:1; }
.how-step-icon { width:68px; height:68px; border-radius:20px; display:flex; align-items:center; justify-content:center; background:#fff3e4; color:var(--primary); font-size:1.7rem; margin-bottom:16px; position:relative; z-index:1; box-shadow:0 10px 22px rgba(242,140,32,.16); }
.how-step-card h3 { margin:0 0 10px; font-size:1.2rem; color:#0f172a; position:relative; z-index:1; }
.how-step-card p { margin:0; color:#475569; position:relative; z-index:1; }
@media (max-width: 1100px) {
  .how-booking-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .how-booking-grid { grid-template-columns:1fr; }
  .how-step-card { min-height:unset; }
}

/* Footer refresh */
.site-footer {
  background: linear-gradient(180deg, var(--footer-bg,#0a243d) 0%, #071a2c 100%);
  color: var(--footer-text,#ffffff);
  padding: 68px 0 26px;
}
.footer-grid-refined {
  grid-template-columns: minmax(280px,1.3fr) repeat(3,minmax(180px,1fr));
  gap: 34px;
  align-items: start;
}
.footer-brand-image {
  max-height: 52px;
  margin-bottom: 14px;
}
.footer-brand-block .footer-logo {
  margin-bottom: 12px;
}
.footer-copy {
  color: #d6deea;
  max-width: 320px;
  margin: 0 0 18px;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: .2s ease;
}
.footer-socials a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.site-footer h5 {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-footer a {
  margin: 0 0 10px;
  color: #d6deea;
}
.site-footer a:hover {
  color: #fff;
}
.footer-info-list {
  display: grid;
  gap: 12px;
  color: #d6deea;
}
.footer-info-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.footer-info-list i {
  color: var(--primary);
  margin-top: 3px;
}
.footer-bottom-refined {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .footer-grid-refined {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid-refined {
    grid-template-columns: 1fr;
  }
  .footer-bottom-refined {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 120;
}

.site-whatsapp-pop {
  position: fixed;
  right: 22px;
  bottom: 98px;
  width: min(320px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
  padding: 18px;
  z-index: 119;
}

.site-whatsapp-pop.is-hidden {
  display: none;
}

.site-whatsapp-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 999px;
  background: #eef2f7;
  color: #334155;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.site-whatsapp-pop h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #0f172a;
}

.site-whatsapp-pop p {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 0.94rem;
}

.site-whatsapp-pop .btn {
  width: 100%;
}

@media (max-width: 720px) {
  .site-whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .site-whatsapp-pop {
    right: 14px;
    bottom: 84px;
  }
}
