/* ===========================================================
   LahoreRentCar.com — Design System v3
   Palette: Deep Navy + Vivid Amber (matches reference theme)
   =========================================================== */

:root{
  --ink:        #070F1F;   /* deepest navy */
  --ink-soft:   #0F2447;   /* navy panel */
  --ink-mid:    #1A3C6E;   /* navy accent */
  --ink-light:  #2563A8;   /* navy bright */
  --brick:      #E8A020;   /* amber — primary CTA */
  --brick-light:#F59E0B;
  --brick-pale: #FFF7E8;
  --gold:       #FBBF24;   /* bright amber highlight */
  --gold-dark:  #D68910;
  --ivory:      #F7F8FA;
  --ivory-dark: #EEF0F5;
  --clay:       #3F3F46;
  --clay-light: #71717A;
  --white:      #FFFFFF;
  --line:       #E2E5EB;
  --line-dark:  #1B2A3B;
  --danger:     #DC2626;
  --success:    #16A34A;

  --f-display: "Playfair Display", serif;
  --f-body:    "Work Sans", sans-serif;
  --f-mono:    "IBM Plex Mono", monospace;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow-card: 0 6px 24px rgba(15,36,71,.12);
  --shadow-lg: 0 12px 48px rgba(15,36,71,.18);
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family: var(--f-display); font-weight:700; letter-spacing:0; line-height:1.15; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }

:focus-visible{ outline: 3px solid var(--gold); outline-offset: 2px; }

.container{ width:100%; max-width:1180px; margin:0 auto; padding:0 24px; }
.container-wide{ width:100%; max-width:1400px; margin:0 auto; padding:0 24px; }

.eyebrow{
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brick); display:inline-flex; align-items:center; gap:8px;
}
.eyebrow::before{ content:""; width:7px; height:7px; background: var(--gold); display:inline-block; }
.eyebrow.on-dark{ color: var(--gold); }

.section-head{ max-width: 680px; margin-bottom: 36px; }
.section-head h2{ font-size: clamp(28px,4vw,42px); margin-top:10px; color: var(--ink); }
.section-head p{ color: var(--clay); font-size:16px; margin-top:12px; max-width:560px; font-family:var(--f-body); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

section{ padding: 72px 0; }
.section-ivory{ background: var(--ivory); }
.section-white{ background: var(--white); }
.section-ink{ background: var(--ink); color: var(--white); }
.section-brick{ background: var(--brick); color: var(--white); }

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--f-mono); font-weight:600; font-size:13.5px; letter-spacing:.06em; text-transform:uppercase;
  padding: 14px 26px; border-radius: var(--radius); border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease; white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-gold{ background: var(--gold); color: var(--ink); }
.btn-gold:hover{ background: var(--gold-dark); }
.btn-brick{ background: var(--brick); color: var(--white); }
.btn-brick:hover{ background: var(--brick-light); }
.btn-outline{ background: transparent; border-color: currentColor; }
.btn-outline.on-light{ color: var(--ink); border-color: var(--ink); }
.btn-outline.on-light:hover{ background: var(--ink); color: var(--white); }
.btn-outline.on-dark{ color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline.on-dark:hover{ border-color: var(--white); }
.btn-block{ width:100%; }
.btn-sm{ padding: 9px 16px; font-size:12px; }

/* ===== Header ===== */
.site-header{ position: sticky; top:0; z-index: 100; background: var(--ink); border-bottom: 1px solid var(--line-dark); }
.topbar{ background: var(--ink-soft); font-family: var(--f-mono); font-size: 12px; color: var(--clay-light); }
.topbar .container-wide{ display:flex; align-items:center; justify-content:space-between; height:34px; }
.topbar a{ color: var(--gold); }
.topbar .topbar-routes{ display:flex; gap:18px; }
.topbar .topbar-routes span b{ color:#fff; font-weight:600; }
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; height:74px; }
.brand{ display:flex; align-items:center; gap:10px; color:#fff; }
.brand-mark{
  width:44px; height:44px; background: var(--gold); border-radius: 3px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-family: var(--f-mono); font-weight:700; color: var(--ink); line-height:1;
}
.brand-mark span{ font-size:9px; letter-spacing:.05em; }
.brand-mark strong{ font-size:14px; }
.brand-text{ font-family: var(--f-display); font-size: 22px; letter-spacing:0; line-height:1; }
.brand-text small{ display:block; font-family: var(--f-mono); font-size:9.5px; letter-spacing:.18em; color: var(--gold); text-transform:uppercase; margin-top:3px; }

.main-nav{ display:flex; align-items:center; gap:24px; }
.main-nav a{ color: #DCD3C9; font-size: 14px; font-weight:500; font-family:var(--f-body); position:relative; padding:6px 0; }
.main-nav a:hover{ color: var(--white); }
.main-nav a.active{ color: var(--gold); }
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-phone{ display:flex; flex-direction:column; align-items:flex-end; color:#fff; }
.nav-phone small{ font-family: var(--f-mono); font-size:10px; color: var(--clay-light); letter-spacing:.08em; text-transform:uppercase; }
.nav-phone a{ font-family: var(--f-mono); font-weight:600; font-size:15px; color:#fff; }

.menu-toggle{ display:none; background:none; border:none; color:#fff; font-size:18px; }
.mobile-panel{ display:none; }

@media (max-width: 980px){
  .main-nav{ display:none; } .nav-phone{ display:none; } .menu-toggle{ display:block; }
  .topbar .topbar-routes{ display:none; }
  .mobile-panel{ display:block; position:fixed; inset:0 0 0 auto; width:min(86vw,360px); background: var(--ink);
    transform: translateX(100%); transition: transform .25s ease; z-index: 200; padding: 24px; overflow-y:auto; }
  .mobile-panel.open{ transform: translateX(0); }
  .mobile-panel a{ display:block; color:#EFE8DC; padding:13px 0; border-bottom:1px solid var(--line-dark); font-size:16px; font-family:var(--f-body); }
  .mobile-overlay{ position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:199; display:none; }
  .mobile-overlay.open{ display:block; }
  .mobile-close{ background:none;border:none;color:#fff;font-size:14px;font-family:var(--f-mono);margin-bottom:18px; }
}

/* ===== Breadcrumb ===== */
.breadcrumb{ font-family: var(--f-mono); font-size: 12px; color: var(--clay); padding: 16px 0; border-bottom: 1px solid var(--line); }
.breadcrumb a{ color: var(--brick); }
.breadcrumb span{ margin: 0 8px; color: var(--clay-light); }

/* ===== Hero ===== */
.hero{ background: var(--ink); color: #fff; position: relative; overflow:hidden; padding: 56px 0 0; }
.hero::before{
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(180deg, rgba(26,20,17,.2), var(--ink) 92%),
    repeating-linear-gradient(115deg, rgba(201,154,62,.05) 0 2px, transparent 2px 64px);
  pointer-events:none;
}
.hero-grid{ position:relative; z-index:1; display:grid; grid-template-columns: 1.15fr .85fr; gap:48px; align-items:start; }
.hero-copy .eyebrow{ margin-bottom:18px; }
.hero-copy h1{ font-size: clamp(36px, 5vw, 60px); color:#fff; font-weight:800; }
.hero-copy h1 em{ color: var(--gold); font-style:italic; }
.hero-copy p.lede{ font-family: var(--f-body); color:#D2C8BC; font-size:17px; margin-top:18px; max-width: 480px; font-weight:400; }
.hero-actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:32px; margin-top:42px; flex-wrap:wrap; }
.hero-stats div b{ display:block; font-family: var(--f-display); font-size:28px; color:#fff; }
.hero-stats div span{ font-family: var(--f-mono); font-size:11px; color: var(--clay-light); letter-spacing:.08em; text-transform:uppercase; }

/* Route board — signature hero element */
.route-board{ background: var(--brick); border: 1px solid #A85042; border-radius: var(--radius-lg); padding: 6px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); }
.route-board-head{ display:flex; align-items:center; justify-content:space-between; padding: 14px 16px 12px; font-family: var(--f-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: #F0CFC4; }
.route-board-head .dot{ width:7px;height:7px;border-radius:50%; background: var(--gold); display:inline-block; margin-right:6px; animation:blink 2s infinite; }
@keyframes blink{ 50%{ opacity:.25; } }
.route-row{ display:grid; grid-template-columns: auto 1fr auto auto; gap:14px; align-items:center; padding: 13px 16px; border-top: 1px solid rgba(255,255,255,.14); font-family: var(--f-mono); font-size: 13px; }
.route-row .code{ color: var(--gold); font-weight:700; letter-spacing:.03em; }
.route-row .name{ font-family: var(--f-body); font-size:15px; font-weight:500; color:#fff; }
.route-row .dist{ color:#F0CFC4; }
.route-row .arrow{ color: var(--gold); }
.route-row:hover{ background: rgba(255,255,255,.06); }

/* ===== Route Compass — signature replacing the sector grid ===== */
.compass-wrap{ display:grid; grid-template-columns: .9fr 1.1fr; gap:56px; align-items:center; }
.compass-svg{ width:100%; height:auto; }
.compass-hub-circle{ fill: var(--ink); }
.compass-hub-text{ font-family: var(--f-mono); fill:#fff; font-size:13px; letter-spacing:.05em; text-anchor:middle; }
.compass-hub-text.small{ fill: var(--gold); font-size:9.5px; letter-spacing:.12em; }
.compass-spoke{ stroke: var(--line); stroke-width:2; stroke-dasharray:3 5; }
.compass-node{ fill: var(--brick); stroke: var(--white); stroke-width:3; transition: fill .15s; }
.compass-node:hover{ fill: var(--gold); }
.compass-node-text{ font-family: var(--f-mono); font-size:12.5px; fill:#fff; text-anchor:middle; font-weight:600; }
.compass-legend{ display:flex; gap:22px; margin-top:18px; font-family: var(--f-mono); font-size:11.5px; color: var(--clay); flex-wrap:wrap; }
.compass-legend i{ width:11px;height:11px;display:inline-block;margin-right:6px;border-radius:50%; vertical-align:-1px; }

/* ===== Cards ===== */
.grid{ display:grid; gap:26px; }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 980px){ .grid-3,.grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-3,.grid-4{ grid-template-columns: 1fr; } .compass-wrap,.hero-grid{ grid-template-columns:1fr !important; } }

.card{ background: var(--white); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-card); border:1px solid var(--line); display:flex; flex-direction:column; height:100%; }
.card-media{ height:200px; width:100%; background: var(--ivory-dark); position:relative; overflow:hidden; flex-shrink:0; }
.card-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.card-badge{ position:absolute; top:12px; left:12px; background: var(--ink); color:#fff; font-family: var(--f-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; padding:5px 9px; border-radius:3px; z-index:2; }
.card-body{ padding: 20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.card-body h3{ font-size:19px; font-weight:700; }
.card-body p{ color: var(--clay); font-size:14.5px; font-family:var(--f-body); }
.card-meta{ display:flex; justify-content:space-between; align-items:center; margin-top:auto; padding-top:14px; border-top:1px solid var(--line); }
.card-price{ font-family: var(--f-mono); font-weight:700; color: var(--brick); font-size:15px; }
.card-price small{ font-weight:400; color: var(--clay); text-transform:none; }

.tag-list{ display:flex; gap:8px; flex-wrap:wrap; }
.tag{ font-family: var(--f-mono); font-size:11px; letter-spacing:.04em; color: var(--clay); background: var(--ivory); border:1px solid var(--line); padding:4px 9px; border-radius:3px; }

.class-badge{ display:inline-flex; align-items:center; gap:6px; font-family: var(--f-mono); font-weight:700; font-size:11.5px; letter-spacing:.07em; padding: 5px 10px; border-radius:3px; border:1.5px solid var(--ink); color: var(--ink); text-transform:uppercase; }

/* ===== Quick booking ticket form ===== */
.ticket{ background:#fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow:hidden; border:1px solid var(--line); }
.ticket-strip{ background: var(--gold); color: var(--ink); padding:12px 20px; display:flex; justify-content:space-between; align-items:center; }
.ticket-strip .eyebrow{ color: var(--ink); }
.ticket-strip .eyebrow::before{ background: var(--ink); }
.ticket-body{ padding: 22px; display:grid; gap:14px; }
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{ font-family: var(--f-mono); font-size:11px; letter-spacing:.07em; text-transform:uppercase; color: var(--clay); }
.field input, .field select{ border:1.5px solid var(--line); border-radius: var(--radius); padding:11px 12px; font-family: var(--f-body); font-size:14.5px; background: var(--ivory); color: var(--ink); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }

/* ===== Stat strip ===== */
.stat-strip{ display:grid; grid-template-columns: repeat(4,1fr); border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; background:#fff; }
.stat-strip div{ padding: 26px 22px; border-right:1px solid var(--line); }
.stat-strip div:last-child{ border-right:none; }
.stat-strip b{ display:block; font-family: var(--f-display); font-size:30px; color: var(--brick); }
.stat-strip span{ font-family: var(--f-mono); font-size:11px; color: var(--clay); letter-spacing:.05em; text-transform:uppercase; }
@media (max-width: 760px){ .stat-strip{ grid-template-columns: repeat(2,1fr); } .stat-strip div:nth-child(2n){ border-right:none; } }

/* ===== FAQ accordion ===== */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; text-align:left; background:none; border:none; padding: 20px 0; display:flex; justify-content:space-between; align-items:center; gap:16px; font-family: var(--f-body); font-weight:600; font-size:16px; color: var(--ink); }
.faq-q .plus{ font-family: var(--f-mono); color: var(--brick); font-size:20px; flex-shrink:0; transition: transform .2s; }
.faq-item.open .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a{ max-height: 600px; }
.faq-a-inner{ padding: 0 0 22px; color: var(--clay); font-size:15px; max-width:760px; font-family:var(--f-body); }

/* ===== Process / numbered steps ===== */
.step{ display:flex; gap:18px; }
.step .num{ font-family: var(--f-mono); font-size:13px; color: var(--gold-dark); border:1.5px solid var(--gold); width:34px;height:34px;border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-weight:700; }
.step h4{ font-size:16px; font-weight:700; margin-bottom:4px; }
.step p{ color: var(--clay); font-size:14.5px; font-family:var(--f-body); }

/* ===== Review card ===== */
.review-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding:22px; }
.review-stars{ color: var(--gold); font-family: var(--f-mono); letter-spacing:2px; margin-bottom:10px; }
.review-card p{ color: var(--ink); font-size:14.5px; font-family:var(--f-body); }
.review-name{ display:flex; justify-content:space-between; margin-top:14px; font-family: var(--f-mono); font-size:11.5px; color: var(--clay); text-transform:uppercase; letter-spacing:.05em; }

.trust-bar{ display:flex; gap:36px; flex-wrap:wrap; align-items:center; justify-content:center; padding:26px 0; color: var(--clay-light); font-family: var(--f-mono); font-size:12px; letter-spacing:.06em; text-transform:uppercase; }

/* ===== Generic content blocks ===== */
.prose{ max-width:740px; }
.prose h2{ font-size:26px; margin-top:42px; margin-bottom:14px; font-weight:700; }
.prose h3{ font-size:19px; margin-top:28px; margin-bottom:10px; font-weight:700; }
.prose p{ color: var(--clay); margin-bottom:14px; font-size:15.5px; font-family:var(--f-body); }
.prose ul{ margin-bottom:14px; }
.prose li{ color: var(--clay); font-size:15.5px; padding-left:20px; position:relative; margin-bottom:8px; font-family:var(--f-body); }
.prose li::before{ content:"—"; position:absolute; left:0; color: var(--gold-dark); }
.prose a{ color: var(--brick); text-decoration:underline; text-decoration-color: var(--line); }

.sidebar-box{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding:22px; }
.sidebar-box h4{ font-size:13px; letter-spacing:.06em; margin-bottom:14px; color: var(--ink); font-family:var(--f-mono); text-transform:uppercase; }
.sidebar-box ul li{ border-bottom:1px solid var(--line); padding:10px 0; font-size:14px; font-family:var(--f-body); }
.sidebar-box ul li:last-child{ border-bottom:none; }
.sidebar-box ul li a{ display:flex; justify-content:space-between; color: var(--clay); }
.sidebar-box ul li a:hover{ color: var(--brick); }
.layout-2col{ display:grid; grid-template-columns: 1fr 320px; gap:48px; align-items:start; }
@media (max-width: 900px){ .layout-2col{ grid-template-columns:1fr; } }

.price-table{ width:100%; border-collapse:collapse; background:#fff; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-card); }
.price-table th{ background: var(--ink); color:#fff; font-family:var(--f-mono); font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; text-align:left; padding:14px 16px; }
.price-table td{ padding:14px 16px; border-bottom:1px solid var(--line); font-size:14.5px; font-family:var(--f-body); }
.price-table tr:last-child td{ border-bottom:none; }
.price-table td.amt{ font-family: var(--f-mono); font-weight:700; color: var(--brick); }
.price-table tr:hover td{ background: var(--ivory); }

.cta-band{ background: var(--brick); color:#fff; border-radius: var(--radius-lg); padding: 44px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 10px, transparent 10px 20px); }
.cta-band h3{ font-size:26px; max-width:480px; }
.cta-band p{ color:#F0DCD3; margin-top:8px; max-width: 420px; font-family: var(--f-body); }

/* ===== Footer ===== */
.site-footer{ background: var(--ink); color: #C2B8AC; padding-top: 64px; }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap:32px; padding-bottom:48px; border-bottom:1px solid var(--line-dark); }
.footer-top h5{ color:#fff; font-family: var(--f-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:18px; }
.footer-top ul li{ margin-bottom:11px; font-size:14px; font-family:var(--f-body); }
.footer-top ul li a:hover{ color: var(--gold); }
.footer-about p{ font-size:14px; color:#A89C8E; margin-top:14px; max-width:280px; font-family:var(--f-body); }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:34px;height:34px; border:1px solid var(--line-dark); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 22px 0; font-family: var(--f-mono); font-size:11.5px; color:#8A7E72; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color:#A89C8E; margin-left:18px; }
@media (max-width: 900px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } .hero-stats{ gap:22px; } .stat-strip{grid-template-columns:1fr 1fr;} }

.float-wa{ position:fixed; bottom:22px; right:22px; z-index:150; width:56px; height:56px; border-radius:50%; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; font-size:26px; box-shadow: 0 10px 24px rgba(0,0,0,.3); }

/* ===== Added components for full silo build-out ===== */
.callout{ background: var(--brick-pale); border-left:4px solid var(--brick); padding:16px 20px; border-radius:6px; margin:22px 0; }
.callout p{ color: var(--ink); margin:0; font-size:14.5px; font-family:var(--f-body); }
.callout strong{ color: var(--brick); }

.fact-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:26px 0; }
.fact-box{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:16px 18px; }
.fact-box span{ display:block; font-family:var(--f-mono); font-size:10.5px; letter-spacing:.07em; text-transform:uppercase; color:var(--clay); margin-bottom:6px; }
.fact-box b{ font-family:var(--f-display); font-size:21px; color:var(--brick); display:block; }
@media (max-width:760px){ .fact-grid{ grid-template-columns:1fr 1fr; } }

.toc{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:18px 20px; margin:24px 0; }
.toc span.eyebrow{ margin-bottom:10px; display:block; }
.toc ol{ margin:0; padding-left:18px; }
.toc li{ font-size:14px; color:var(--brick); margin-bottom:6px; font-family:var(--f-body); }
.toc li a{ text-decoration:none; }

.kw-pills{ display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }

.list-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:980px){ .list-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .list-grid{ grid-template-columns:1fr; } }
.list-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:22px; box-shadow:var(--shadow-card); display:flex; flex-direction:column; gap:10px; }
.list-card h3{ font-size:18px; }
.list-card h3 a{ color:var(--ink); }
.list-card h3 a:hover{ color:var(--brick); }
.list-card p{ color:var(--clay); font-size:14px; font-family:var(--f-body); flex:1; }
.list-card .meta-row{ display:flex; justify-content:space-between; align-items:center; font-family:var(--f-mono); font-size:11.5px; color:var(--clay); border-top:1px solid var(--line); padding-top:10px; }
.list-card .meta-row b{ color:var(--brick); }

.pagehead{ padding:44px 0 8px; }
.pagehead h1{ font-size:clamp(30px,4.5vw,44px); margin-top:12px; max-width:760px; }
.pagehead p.lede{ color:var(--clay); margin-top:14px; max-width:640px; font-size:16px; font-family:var(--f-body); }

/* ===== Sub-page hero banner (replaces plain pagehead on every inner page) ===== */
.page-hero{
  background: linear-gradient(122deg, var(--ink) 0%, var(--ink-soft) 55%, var(--brick) 145%);
  color:#fff; position:relative; overflow:hidden; padding:0 0 46px;
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 64px);
  pointer-events:none;
}
.page-hero::after{
  content:""; position:absolute; right:-120px; top:-120px; width:380px; height:380px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,154,62,.18) 0%, transparent 70%); pointer-events:none;
}
.page-hero-inner{ position:relative; padding-top:18px; }
.page-hero-crumb{ font-family:var(--f-mono); font-size:11.5px; color:rgba(255,255,255,.55); padding-bottom:22px; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.page-hero-crumb a{ color:rgba(255,255,255,.75); text-decoration:none; }
.page-hero-crumb a:hover{ color:var(--gold); }
.page-hero-crumb span.sep{ opacity:.4; }
.page-hero-crumb span.current{ color:#fff; }
.page-hero .eyebrow.on-dark{ margin-bottom:0; }
.page-hero h1{ font-family:var(--f-display); font-size:clamp(28px,4.2vw,42px); margin-top:12px; max-width:760px; color:#fff; line-height:1.12; }
.page-hero p.lede{ color:rgba(255,255,255,.78); margin-top:14px; max-width:640px; font-size:15.5px; font-family:var(--f-body); }
.page-hero-chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.page-hero-chip{ font-family:var(--f-mono); font-size:11.5px; color:#fff; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); padding:7px 13px; border-radius:30px; }
.page-hero-chip b{ color:var(--gold); margin-right:5px; }
@media (max-width:640px){ .page-hero{ padding-bottom:34px; } }

/* ===== Hero Booking Card ===== */
.hero-booking-card{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  backdrop-filter: blur(12px);
  align-self: center;
}
.hero-booking-head{ margin-bottom:18px; }
.hero-booking-form{ display:flex; flex-direction:column; gap:12px; }
.hb-field{ display:flex; flex-direction:column; gap:5px; }
.hb-field label{ font-family:var(--f-mono); font-size:10.5px; text-transform:uppercase; letter-spacing:.06em; color:rgba(255,255,255,.6); }
.hb-field input, .hb-field select{
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  font-family: var(--f-body);
  font-size: 14px;
  outline: none;
  transition: border-color .18s;
  width: 100%;
}
.hb-field input::placeholder{ color: rgba(255,255,255,.35); }
.hb-field input:focus, .hb-field select:focus{ border-color: var(--gold); background: rgba(255,255,255,.13); }
.hb-field select option{ color: var(--ink); background: #fff; }
.hb-row{ display: grid; grid-template-columns: 1fr 80px; gap: 10px; }
.hero-booking-form .btn-gold{ background: var(--gold); color: var(--ink); font-weight:700; letter-spacing:.03em; border:none; }
.hero-booking-form .btn-gold:hover{ background: #b8872a; }
.hero-booking-confirm{
  display:none; flex-direction:column; align-items:center; justify-content:center;
  gap:12px; text-align:center; padding:24px 0; color:#fff;
}
.hero-booking-confirm .confirm-icon{ font-size:36px; }
.hero-booking-confirm h3{ font-family:var(--f-display); font-size:22px; }
.hero-booking-confirm p{ font-family:var(--f-body); font-size:14px; color:rgba(255,255,255,.7); max-width:240px; }

/* ===== Feature Cards — Wedding / Luxury ===== */
.feature-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:0; }
@media(max-width:860px){ .feature-cards{ grid-template-columns:1fr 1fr; } }
@media(max-width:580px){ .feature-cards{ grid-template-columns:1fr; } }
.feature-card{
  border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-card); display:flex; flex-direction:column;
  border:1px solid var(--line); background:#fff; transition:transform .18s, box-shadow .18s;
}
.feature-card:hover{ transform:translateY(-4px); box-shadow:0 12px 36px rgba(0,0,0,.13); }
.feature-card-media{
  height:180px; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center;
}
.feature-card-media.wedding{
  background: linear-gradient(135deg, #1a0a0a 0%, #4a1010 60%, var(--brick) 100%);
}
.feature-card-media.luxury{
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 60%, #2a2060 100%);
}
.feature-card-media.airport{
  background: linear-gradient(135deg, #0a1a10 0%, #0d2e18 60%, #1a4a28 100%);
}
.feature-card-icon{
  font-size:52px; opacity:.9; filter:drop-shadow(0 2px 12px rgba(0,0,0,.4));
  transition:transform .25s;
}
.feature-card:hover .feature-card-icon{ transform:scale(1.12); }
.feature-card-badge{
  position:absolute; top:12px; right:12px;
  background:var(--gold); color:var(--ink);
  font-family:var(--f-mono); font-size:10px; font-weight:700; letter-spacing:.05em;
  padding:4px 9px; border-radius:20px; text-transform:uppercase;
}
.feature-card-body{ padding:20px 20px 18px; flex:1; display:flex; flex-direction:column; gap:8px; }
.feature-card-body h3{ font-size:18px; color:var(--ink); margin:0; }
.feature-card-body p{ font-family:var(--f-body); font-size:13.5px; color:var(--clay); margin:0; flex:1; line-height:1.55; }
.feature-card-footer{
  display:flex; align-items:center; justify-content:space-between;
  border-top:1px solid var(--line); padding-top:12px; margin-top:6px;
}
.feature-card-footer .from{ font-family:var(--f-mono); font-size:11px; color:var(--clay); }
.feature-card-footer .from b{ color:var(--brick); font-size:14px; display:block; }
.feature-card-footer a.btn{ font-size:12px; padding:7px 14px; }

/* ===== Vehicle card image zoom-on-hover (contained, no overflow) ===== */
.card-media img{ transition:transform .35s ease; }
.card:hover .card-media img{ transform:scale(1.06); }

/* Vehicle detail page image */
.vehicle-img-wrap{ border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:16/9; margin-top:14px; background:var(--brick-pale); }
.vehicle-img-wrap img{ width:100%; height:100%; object-fit:cover; }

/* ===== Hero — navy/amber, matches reference theme ===== */
.hero{
  background: linear-gradient(148deg, #060e1c 0%, var(--ink-soft) 52%, var(--ink-light) 100%);
  position:relative; overflow:hidden;
}
.hero::before{
  content:""; position:absolute; right:-100px; top:-100px; width:500px; height:500px;
  background: radial-gradient(circle, rgba(232,160,32,.12), transparent 65%); pointer-events:none;
}
.hero::after{
  content:""; position:absolute; left:-60px; bottom:-80px; width:380px; height:380px;
  background: radial-gradient(circle, rgba(37,99,168,.16), transparent 65%); pointer-events:none;
}
.hero-grid{ position:relative; z-index:2; }
.hero-stats{ position:relative; z-index:2; }

/* KKH highway-dash accent — signature detail */
.hero-kkh{
  position:absolute; bottom:0; left:0; right:0; height:5px;
  background: repeating-linear-gradient(90deg, var(--brick) 0, var(--brick) 28px, transparent 28px, transparent 56px);
  animation: kkh-move 1.2s linear infinite; opacity:.55;
}
@keyframes kkh-move{ from{ background-position:0; } to{ background-position:56px; } }

/* Live pulse badge */
.live-badge{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(232,160,32,.18); border:1px solid rgba(232,160,32,.38);
  color: var(--gold); font-family:var(--f-mono); font-size:11px; font-weight:800;
  padding:6px 15px; border-radius:99px; margin-bottom:18px; letter-spacing:.08em; text-transform:uppercase;
}
.live-pulse{ width:7px; height:7px; background:#4ade80; border-radius:50%; animation:live-pulse-anim 1.5s ease-in-out infinite; }
@keyframes live-pulse-anim{ 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.4; transform:scale(1.5); } }

/* Stat strip — navy panel with amber numbers */
.stat-strip{
  background: linear-gradient(90deg, var(--ink), var(--ink-soft));
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display:flex; flex-wrap:wrap; gap:24px; justify-content:space-around;
  box-shadow: var(--shadow-lg);
}
.stat-strip div{ text-align:center; }
.stat-strip b{ font-family:var(--f-display); font-size:28px; color:var(--gold); display:block; }
.stat-strip span{ font-family:var(--f-mono); font-size:11px; color:rgba(255,255,255,.65); text-transform:uppercase; letter-spacing:.08em; }

/* Vibrant section backgrounds */
.section-ivory{ background: var(--ivory); }
.section-white{ background: #fff; }

/* Fleet cards — subtle, contained hover (no row-bleed) */
.card{ transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover{ transform:translateY(-3px); box-shadow:0 10px 24px -6px rgba(15,36,71,.18); border-color:var(--brick-light); }
.card-body h3{ color:var(--ink); font-size:16px; }

/* Feature cards — stronger gradients */
.feature-card-media.wedding{
  background: linear-gradient(135deg, #2a1000 0%, #7a4400 50%, var(--brick) 100%);
}
.feature-card-media.luxury{
  background: linear-gradient(135deg, #050510 0%, #0d0d30 50%, #1a1060 100%);
}
.feature-card-media.airport{
  background: linear-gradient(135deg, #021208 0%, #063820 50%, #0a6b38 100%);
}
.feature-card:hover{ transform:translateY(-4px); box-shadow:0 12px 28px -6px rgba(15,36,71,.2); }

/* CTA bands */
.cta-band{ background:transparent; }
.section-brick{ background: linear-gradient(140deg, var(--ink-soft) 0%, var(--ink-light) 100%); }
.section-ink{ background: linear-gradient(140deg, var(--ink) 0%, var(--ink-mid) 100%); }

/* Page hero — navy gradient, matches homepage hero */
.page-hero{
  background: linear-gradient(148deg, #060e1c 0%, var(--ink-soft) 60%, var(--ink-mid) 145%);
}
.page-hero::before{
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 2px, transparent 2px 64px);
}
.page-hero::after{
  background: radial-gradient(circle, rgba(232,160,32,.18) 0%, transparent 70%);
}

/* Booking card — vibrant glass */
.hero-booking-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 48px rgba(0,0,0,.35);
}
.hero-booking-form .btn-gold{ background:var(--gold); }
.hero-booking-form .btn-gold:hover{ background:var(--gold-dark); }

/* Buttons — amber CTA, navy secondary (matches reference) */
.btn-gold{ background:var(--gold); color:var(--ink); font-weight:800; }
.btn-gold:hover{ background:var(--gold-dark); transform:translateY(-1px); box-shadow:0 6px 22px rgba(232,160,32,.38); }
.btn-brick{ background:var(--ink-soft); color:#fff; font-weight:700; }
.btn-brick:hover{ background:var(--ink-mid); transform:translateY(-1px); box-shadow:0 6px 20px rgba(15,36,71,.3); }

/* Float WA button — vibrant green */
.float-wa{ background: linear-gradient(135deg, #25D366, #128C7E); box-shadow:0 4px 20px rgba(37,211,102,.45); }
.float-wa:hover{ transform:scale(1.1); box-shadow:0 8px 28px rgba(37,211,102,.55); }

/* Section heads — stronger */
.section-head h2{ color:var(--ink); font-size:clamp(26px,3.5vw,38px); }
.section-head p{ color:var(--clay); font-family:var(--f-body); max-width:600px; margin:10px auto 0; }

/* List cards — hover lift */
.list-card:hover{ transform:translateY(-3px); box-shadow:0 8px 20px -4px rgba(15,36,71,.15); border-color:var(--brick-light); }

/* Eyebrow — vibrant */
.eyebrow.on-dark{ color:var(--gold); }

/* Topbar — vibrant */
.topbar{ background: linear-gradient(90deg, var(--ink), var(--ink-soft)); }

/* Review cards */
.review-card{ background:linear-gradient(135deg, var(--ink), var(--ink-soft)); color:#fff; border-radius:var(--radius-lg); padding:22px; }
.review-card p{ color:rgba(255,255,255,.82); font-family:var(--f-body); font-size:14px; font-style:italic; }
.review-card .meta-row{ border-top:1px solid rgba(255,255,255,.12); padding-top:12px; margin-top:14px; }
.review-card .meta-row b{ color:var(--gold); }

/* Compass hub — gold */
.compass-hub-circle{ fill:var(--ink); stroke:var(--gold); stroke-width:3; }
.compass-hub-text{ fill:var(--gold); }
.compass-node{ fill:var(--brick); }
.compass-node-text{ fill:#fff; }
.compass-spoke{ stroke:rgba(15,36,71,.25); }

/* ===== Feature tiles (Why Us, icon cards) ===== */
.feat-tile{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px 24px; text-align:left; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position:relative; overflow:hidden;
}
.feat-tile::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--brick), var(--gold)); transform:scaleX(0); transform-origin:left;
  transition:transform .3s ease;
}
.feat-tile:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:transparent; }
.feat-tile:hover::before{ transform:scaleX(1); }
.feat-tile-ic{
  width:56px; height:56px; border-radius:14px;
  background:linear-gradient(135deg, var(--brick-pale), #fff);
  display:flex; align-items:center; justify-content:center; font-size:26px;
  margin-bottom:16px; box-shadow:inset 0 0 0 1px rgba(232,160,32,.18);
}
.feat-tile h3{ font-size:17px; margin-bottom:8px; color:var(--ink); }
.feat-tile p{ font-size:13.5px; color:var(--clay-light); font-family:var(--f-body); line-height:1.6; }

/* ===== How It Works steps ===== */
.steps-row{ display:flex; align-items:flex-start; justify-content:center; gap:8px; flex-wrap:wrap; margin-top:12px; }
.step-tile{ flex:1; min-width:220px; max-width:280px; text-align:center; padding:8px; }
.step-num{
  width:52px; height:52px; margin:0 auto 16px; border-radius:50%;
  background:linear-gradient(135deg, var(--brick), var(--gold)); color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--f-display); font-weight:800; font-size:19px;
  box-shadow:0 6px 20px rgba(232,160,32,.35);
}
.step-tile h3{ font-size:18px; margin-bottom:8px; }
.step-tile p{ font-size:13.5px; line-height:1.6; max-width:230px; margin:0 auto; }
.step-arrow{ font-size:24px; color:var(--gold); align-self:center; margin-top:24px; opacity:.6; }
@media (max-width:760px){ .step-arrow{ display:none; } .steps-row{ flex-direction:column; align-items:center; } }

/* ===== Section head decorative accent ===== */
.section-head{ text-align:center; max-width:720px; margin:0 auto 44px; }
.section-head .eyebrow{ display:inline-flex; align-items:center; gap:8px; }
.section-head .eyebrow::before, .section-head .eyebrow::after{
  content:""; width:22px; height:1px; background:currentColor; opacity:.4;
}
.section-head h2{ margin-top:8px; }

/* ===== Gradient headline accent (optional utility) ===== */
.grad-text{
  background:linear-gradient(90deg, var(--brick), var(--gold));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ===== Subtle section texture ===== */
.section-ivory{ position:relative; }
.section-ivory::before{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image: radial-gradient(rgba(15,36,71,.035) 1px, transparent 1px);
  background-size: 22px 22px;
}
.section-ivory > *{ position:relative; z-index:1; }

/* ---- Explore internal-linking block ---- */
.explore-block{border-top:1px solid var(--line);background:var(--ivory)}
.explore-cols{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;margin-top:6px}
.explore-cols .col h4{font-family:var(--f-mono);font-size:11px;letter-spacing:.09em;text-transform:uppercase;color:var(--clay);margin:0 0 12px}
.explore-cols ul{list-style:none;padding:0;margin:0}
.explore-cols li{margin:0 0 9px;line-height:1.35}
.explore-cols a{color:var(--ink-mid,#444);text-decoration:none;font-size:14px;border-bottom:1px solid transparent;transition:.15s}
.explore-cols a:hover{color:var(--ink,#111);border-bottom-color:var(--gold)}
@media(max-width:820px){.explore-cols{grid-template-columns:repeat(2,1fr);gap:22px}}
@media(max-width:460px){.explore-cols{grid-template-columns:1fr}}


/* --- LahoreRentCar readability fixes --- */
.stat-strip > div{ display:flex; flex-direction:column; align-items:center; gap:4px; padding:8px 12px; text-align:center; }
.stat-strip > div b{ display:block; font-size:24px; line-height:1.1; color:var(--ink); }
.stat-strip > div span{ display:block; font-size:12px; color:var(--clay); font-family:var(--f-mono); letter-spacing:.06em; text-transform:uppercase; }

/* Trusted By: keep rating labels and values readable on their own line */
.trust-rating{ display:flex; flex-direction:column; align-items:center; gap:2px; padding:6px 10px; }
.trust-rating .label{ font-size:11px; color:var(--clay); text-transform:uppercase; letter-spacing:.06em; }
.trust-rating .value{ font-size:20px; font-weight:800; color:var(--ink); }

/* CTA band: force dark background on all screens so the white/pale text is
   always readable (previously turned transparent on smaller viewports). */
.cta-band, section .cta-band{ background: var(--brick) !important; color:#fff !important; }
.cta-band h3, .cta-band p{ color:#fff !important; }
.cta-band p{ opacity:.95; }

/* Feature card media: real photos need to fill and crop cleanly */
.feature-card-media picture, .feature-card-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.feature-card-media .feature-card-badge{ position:absolute; top:12px; right:12px; z-index:2; }

/* --- Header logo (real image replaces placeholder brand-mark) --- */
.brand-mark--logo{ width:52px; height:52px; background:transparent !important; border-radius:0; padding:0; overflow:visible; }
.brand-mark--logo picture, .brand-mark--logo img{ width:100%; height:100%; object-fit:contain; display:block; }


/* --- Stats strip on dark background: force white text --- */
.section-ink .stat-strip > div b{ color:#fff; }
.section-ink .stat-strip > div span{ color:#fff; opacity:.85; }
