/* ============================================================
   Custom CSS — Kapaleshwar Cab Services
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --brand-yellow: #fecc18;
    --brand-dark:   #111827;
    --brand-gray:   #6b7280;
    --radius-xl:    20px;
    --shadow-md:    0 8px 30px rgba(0,0,0,.10);
    --shadow-lg:    0 16px 48px rgba(0,0,0,.15);
    --transition:   all 0.35s cubic-bezier(.25,.8,.25,1);
}

/* ---------- Global ---------- */
body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, label, input, select, textarea, button {
    font-family: 'Libre Baskerville', serif;
}

/* ---------- Keyframes ---------- */
@keyframes float1 {
    0%,100% { transform: translate(30%,-30%) scale(1); }
    50%      { transform: translate(28%,-34%) scale(1.05); }
}
@keyframes float2 {
    0%,100% { transform: translate(-30%,30%) scale(1); }
    50%      { transform: translate(-27%,33%) scale(1.08); }
}
@keyframes float3 {
    0%,100% { transform: translate(-10%,10%) scale(1); }
    50%      { transform: translate(-12%,8%) scale(1.06); }
}
@keyframes shimmer {
    0%,100% { opacity:.6; }
    50%      { opacity:1; }
}
@keyframes roadmove {
    0%   { background-position: 0 0; }
    100% { background-position: 60px 0; }
}
@keyframes fadein {
    from { opacity:0; transform:translateY(18px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@keyframes pulse-ring {
    0%   { transform:scale(.9); opacity:1; }
    100% { transform:scale(1.6); opacity:0; }
}
@keyframes slideUp {
    from { opacity:0; transform:translateY(40px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes countUp {
    from { transform:scale(.8); opacity:0; }
    to   { transform:scale(1);  opacity:1; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-6 {
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-6-bg {
    background-size: cover;
    background-position: center;
    filter: brightness(.45) saturate(1.1);
    transition: filter 8s ease;
}
.dark-overlay {
    background: linear-gradient(
        135deg,
        rgba(0,0,0,.75) 0%,
        rgba(17,24,39,.60) 50%,
        rgba(254,204,24,.12) 100%
    );
}
.hero-6-content { animation: slideUp .9s ease both; }
.hero-6-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.hero-6-content p.lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: .88;
}

/* Pulse button */
.btn-book-pulse {
    position: relative;
    animation: heroFloat 4s ease-in-out infinite;
}
.btn-book-pulse::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: var(--brand-yellow);
    opacity: .35;
    animation: pulse-ring 2s cubic-bezier(.215,.61,.355,1) infinite;
    pointer-events: none;
}

/* Hero badge strip */
.hero-badge-strip {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: .35rem 1rem;
    font-size: .82rem;
    color: #fff;
    font-weight: 500;
}
.hero-badge i { color: var(--brand-yellow); }

/* ============================================================
   BOOKING BAR
   ============================================================ */
.booking-bar {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.booking-bar .form-control,
.booking-bar .form-select {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: .75rem 1rem;
    font-size: .92rem;
    transition: var(--transition);
}
.booking-bar .form-control:focus,
.booking-bar .form-select:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 3px rgba(254,204,24,.2);
}
.booking-bar .btn-search {
    background: var(--brand-yellow);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    padding: .75rem 1.8rem;
    color: #111;
    transition: var(--transition);
}
.booking-bar .btn-search:hover {
    background: #e5b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254,204,24,.5);
}

/* ============================================================
   COUNTER / STATS SECTION
   ============================================================ */
.counter-section { background: #f8fafc; }

.stat-card {
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    background: #fff;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,.05);
}
.stat-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 100px; height: 100px;
    background: var(--brand-yellow);
    opacity: .12;
    border-radius: 50%;
}
.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-yellow);
}
.stat-card .stat-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--brand-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(254,204,24,.4);
}
.stat-card .stat-icon i { font-size: 1.6rem; color: #111; }
.stat-card .stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
    animation: countUp .6s ease both;
}
.stat-card .stat-label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-gray);
    margin-top: .4rem;
}

/* keep old .feature-box working */
.feature-box { transition: var(--transition); }
.feature-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-intro { background: #fff; }

.about-img-wrap { position: relative; }
.about-img-wrap .main-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-wrap .main-img img { transition: transform .6s ease; }
.about-img-wrap:hover .main-img img { transform: scale(1.04); }

.about-badge {
    position: absolute;
    bottom: 24px; right: -20px;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.4rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .8rem;
    min-width: 200px;
}
.about-badge .badge-icon {
    width: 48px; height: 48px;
    background: var(--brand-yellow);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-badge .badge-icon i { font-size: 1.2rem; color: #111; }
.about-badge .badge-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
}
.about-badge .badge-lbl {
    font-size: .78rem;
    color: var(--brand-gray);
    margin: 0;
}

.about-blob {
    position: absolute;
    top: -30px; left: -30px;
    width: 220px; height: 220px;
    background: var(--brand-yellow);
    opacity: .12;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    z-index: -1;
    animation: float1 8s ease-in-out infinite;
}

/* Check list */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .4rem 0;
    font-size: .95rem;
    color: #374151;
}
.check-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--brand-yellow);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-intro { background: #f8fafc; }

.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.8rem 1.5rem;
    height: 100%;
    transition: var(--transition);
    border: 1.5px solid transparent;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-yellow);
}
.service-card .service-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.15); }
.service-card h5 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand-dark);
    margin-bottom: .6rem;
    transition: color .3s;
}
.service-card:hover h5 { color: #b08a00; }
.service-card p { font-size: .88rem; color: var(--brand-gray); margin: 0; line-height: 1.65; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us-section { background: var(--brand-dark); }

.why-card {
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    transition: var(--transition);
    text-align: center;
}
.why-card:hover {
    background: rgba(254,204,24,.12);
    border-color: rgba(254,204,24,.4);
    transform: translateY(-6px);
}
.why-card .why-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--brand-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(254,204,24,.3);
}
.why-card .why-icon i { font-size: 1.6rem; color: #111; }
.why-card h5 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.why-card p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.65; margin: 0; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
    background: linear-gradient(135deg, var(--brand-yellow) 0%, #f5a000 100%);
}
.cta-strip h2 { color: var(--brand-dark); }
.cta-strip p { color: rgba(0,0,0,.6); }
.cta-strip .btn-dark { border-radius: 12px; font-weight: 700; transition: var(--transition); }
.cta-strip .btn-dark:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-1 { background: var(--brand-dark); }

.testimonial-1 .card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}
.testimonial-1 .card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(254,204,24,.35);
    transform: translateY(-4px);
}
.testimonial-1 .card p.fs-6 { color: rgba(255,255,255,.8); }
.testimonial-1 .card h3 { color: #fff; }
.testimonial-1 .card span { color: rgba(255,255,255,.55); }

.star-rating { color: var(--brand-yellow); font-size: .85rem; margin-bottom: .5rem; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
    position: relative;
    overflow: hidden;
    padding: 80px 24px 90px;
    background: linear-gradient(135deg,#0a1628 0%,#0f2044 50%,#0a1628 100%);
    text-align: center;
}
.page-header .blob1 {
    position: absolute; top:0; right:0;
    width:320px; height:320px;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    background: radial-gradient(circle at 40% 40%,#F5C400 0%,#E6A800 40%,transparent 70%);
    opacity:.18;
    animation: float1 7s ease-in-out infinite;
    pointer-events: none;
}
.page-header .blob2 {
    position: absolute; bottom:0; left:0;
    width:260px; height:260px;
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
    background: radial-gradient(circle at 60% 60%,#378ADD 0%,#185FA5 40%,transparent 70%);
    opacity:.22;
    animation: float2 9s ease-in-out infinite;
    pointer-events: none;
}
.page-header .blob3 {
    position: absolute; top:50%; left:55%;
    width:180px; height:180px;
    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
    background: radial-gradient(circle at 50% 50%,#F5C400 0%,transparent 70%);
    opacity:.08;
    animation: float3 11s ease-in-out infinite;
    pointer-events: none;
}
.page-header .dots-layer {
    position: absolute; inset:0;
    background-image: radial-gradient(rgba(255,255,255,.08) 1.5px,transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}
.page-header .road-stripe {
    position: absolute; bottom:0; left:0; right:0;
    height: 4px;
    background: repeating-linear-gradient(90deg,#F5C400 0px,#F5C400 30px,transparent 30px,transparent 60px);
    animation: roadmove 1.2s linear infinite;
    opacity:.55;
}
.page-header .header-content {
    position: relative; z-index:2;
    animation: fadein .8s ease both;
}
.page-header h1 {
    font-size: 48px; font-weight:700; color:#fff;
    margin:0 0 16px; line-height:1.15; letter-spacing:-.5px;
}
.page-header h1 span { color:#F5C400; }
.page-header .lead {
    font-size:16px; color:rgba(255,255,255,.65);
    max-width:520px; margin:0 auto 32px; line-height:1.7;
}

/* ============================================================
   CAR CARDS (vehicles page)
   ============================================================ */
.car-card {
    background: #fecc18;
    border: .5px solid #f5e68a;
    border-radius: 18px;
    overflow: hidden;
    display: flex; flex-direction: column; height: 100%;
    transition: var(--transition);
}
.car-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(254,204,24,.25); }
.car-card.featured { border: 2px solid #000; }

.card-img-zone { position: relative; height:155px; background:#fecc18; overflow:hidden; }
.card-img-zone img { width:100%; height:100%; object-fit:cover; display:block; }

.card-overlay {
    position: absolute; top:10px; left:12px; right:12px;
    display: flex; justify-content:space-between; align-items:flex-start;
}
.price-pill,.hot-pill {
    background: #000; color:#fff9db;
    font-size:11px; font-weight:500; padding:4px 10px; border-radius:20px; white-space:nowrap;
}
.rating-pill { background:rgba(0,0,0,.08); color:#000; font-size:11px; padding:3px 8px; border-radius:20px; }
.rating-pill .star { color:#000; }

.card-body-inner { padding:14px 16px 16px; display:flex; flex-direction:column; gap:10px; flex:1; }
.name-row { display:flex; align-items:center; gap:8px; }
.cat-dot { width:9px; height:9px; border-radius:50%; background:#000; flex-shrink:0; }
.car-name { font-size:15px; font-weight:600; color:#000; }
.car-cat { font-size:11px; margin-left:auto; color:#7a6a00; }
.car-desc { font-size:12.5px; color:#4a3e00; line-height:1.55; margin:0; }
.card-sep { height:.5px; background:rgba(0,0,0,.10); }
.feats-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.feat-item { display:flex; align-items:center; gap:7px; font-size:12px; color:#000; }
.feat-icon {
    width:24px; height:24px; border-radius:7px;
    background:rgba(0,0,0,.07); display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.feat-icon i { font-size:11px; color:#000; }
.card-btn {
    margin-top:auto; display:flex; align-items:center; justify-content:center; gap:6px;
    padding:10px; font-size:13px; font-weight:500; border-radius:11px; border:none;
    background:#000; color:#fff9db; text-decoration:none; transition:opacity .15s ease; cursor:pointer;
}
.card-btn:hover { opacity:.85; color:#fff9db; }
.car-card.featured .card-btn,.car-card.featured .price-pill { background:#000; color:#fff9db; }

/* ============================================================
   SECTION BADGE HELPER
   ============================================================ */
.section-badge {
    display: inline-block;
    background: rgba(254,204,24,.15);
    border: 1px solid rgba(254,204,24,.4);
    color: #92711a;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* ============================================================
   PAGE HEADER — INNER PAGES (redesigned)
   ============================================================ */
.inner-page-header {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0d1117 0%, #111827 55%, #0d1117 100%);
}

/* diagonal yellow accent band */
.inner-page-header::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(254,204,24,.07) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

/* bottom wave divider */
.inner-page-header::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 60px;
    background: #f8fafc;
    clip-path: ellipse(55% 100% at 50% 100%);
    pointer-events: none;
}

.iph-blob-1 {
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(254,204,24,.18) 0%, transparent 65%);
    border-radius: 50%;
    animation: float1 8s ease-in-out infinite;
    pointer-events: none;
}
.iph-blob-2 {
    position: absolute;
    bottom: -60px; left: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(99,102,241,.14) 0%, transparent 65%);
    border-radius: 50%;
    animation: float2 10s ease-in-out infinite;
    pointer-events: none;
}
.iph-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
}
.iph-road-stripe {
    position: absolute; bottom: 60px; left: 0; right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg,
        #fecc18 0px, #fecc18 28px, transparent 28px, transparent 56px);
    animation: roadmove 1.4s linear infinite;
    opacity: .4;
}

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

/* breadcrumb */
.iph-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}
.iph-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .3s; }
.iph-breadcrumb a:hover { color: #fecc18; }
.iph-breadcrumb .sep { color: rgba(255,255,255,.25); }
.iph-breadcrumb .current { color: #fecc18; font-weight: 600; }

/* icon circle */
.iph-icon-circle {
    width: 72px; height: 72px;
    background: rgba(254,204,24,.12);
    border: 1.5px solid rgba(254,204,24,.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    animation: shimmer 3s ease-in-out infinite;
}
.iph-icon-circle svg,
.iph-icon-circle i { font-size: 1.8rem; color: #fecc18; }

.iph-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: .8rem;
    letter-spacing: -.5px;
}
.iph-title span { color: #fecc18; }
.iph-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,.6);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* stat bar */
.iph-stat-bar {
    display: inline-flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(6px);
}
.iph-stat-item {
    padding: 1rem 1.6rem;
    border-right: 1px solid rgba(255,255,255,.1);
    text-align: center;
}
.iph-stat-item:last-child { border-right: none; }
.iph-stat-item .s-num { font-size: 1.4rem; font-weight: 800; color: #fecc18; line-height: 1; }
.iph-stat-item .s-lbl { font-size: .68rem; color: rgba(255,255,255,.4); margin-top: .2rem; }

/* ============================================================
   ABOUT — INTRO SPLIT
   ============================================================ */
.about-split-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    position: relative;
}
.about-split-img img { transition: transform .6s ease; display: block; }
.about-split-img:hover img { transform: scale(1.04); }

.about-exp-badge {
    position: absolute;
    top: 24px; left: -20px;
    background: #fecc18;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    box-shadow: 0 8px 24px rgba(254,204,24,.35);
    text-align: center;
    min-width: 100px;
}
.about-exp-badge .exp-num { font-size: 2rem; font-weight: 900; color: #111; line-height: 1; }
.about-exp-badge .exp-lbl { font-size: .7rem; font-weight: 600; color: #5a4a00; line-height: 1.3; margin-top: .2rem; }

.about-happy-badge {
    position: absolute;
    bottom: 24px; right: -20px;
    background: #fff;
    border-radius: 14px;
    padding: .9rem 1.2rem;
    box-shadow: 0 12px 36px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 190px;
}
.about-happy-badge .hb-icon {
    width: 44px; height: 44px;
    background: rgba(254,204,24,.15);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-happy-badge .hb-icon i { color: #fecc18; font-size: 1.1rem; }
.about-happy-badge .hb-num { font-size: 1.4rem; font-weight: 800; color: #111; line-height: 1; }
.about-happy-badge .hb-lbl { font-size: .72rem; color: #6b7280; }

/* ============================================================
   WHY CHOOSE US — FEATURE GRID
   ============================================================ */
.why-feature-card {
    border-radius: 18px;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1.5px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.why-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--brand-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.why-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.10);
    border-color: rgba(254,204,24,.5);
}
.why-feature-card:hover::after { transform: scaleX(1); }

.why-feature-card .wf-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 1.3rem;
    transition: var(--transition);
}
.why-feature-card:hover .wf-icon { transform: scale(1.1) rotate(-5deg); }

.why-feature-card h5 {
    font-size: .95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: .4rem;
}
.why-feature-card p { font-size: .84rem; color: #6b7280; line-height: 1.65; margin: 0; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* ── Big service card (3-col grid) ── */
.svc-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #f0f0f0;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.10);
    border-color: rgba(254,204,24,.5);
}

/* coloured top bar */
.svc-card-bar {
    height: 4px;
    width: 100%;
    background: var(--brand-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.svc-card:hover .svc-card-bar { transform: scaleX(1); }

.svc-card-body { padding: 2rem 1.8rem; flex: 1; display: flex; flex-direction: column; }

.svc-card .svc-icon-wrap {
    width: 68px; height: 68px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    font-size: 1.5rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.svc-card:hover .svc-icon-wrap { transform: rotate(-8deg) scale(1.12); }

.svc-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: .6rem;
}
.svc-card .svc-desc {
    font-size: .88rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.svc-card .svc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.svc-card .svc-features li {
    font-size: .82rem;
    color: #374151;
    padding: .28rem 0;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.svc-card .svc-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: .65rem;
    color: #fff;
    background: var(--brand-yellow);
    width: 18px; height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.svc-card .svc-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #0d1117;
    color: #fecc18;
    border: none;
    border-radius: 12px;
    padding: .65rem 1.4rem;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-start;
}
.svc-card .svc-btn:hover {
    background: var(--brand-yellow);
    color: #111;
    transform: translateX(4px);
}

/* ── How It Works steps ── */
.hiw-section { background: #0d1117; }

.hiw-step {
    position: relative;
    text-align: center;
    padding: 0 1rem;
}
/* connector line between steps */
.hiw-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(50% + 36px);
    right: calc(-50% + 36px);
    height: 2px;
    background: repeating-linear-gradient(90deg,
        rgba(254,204,24,.5) 0, rgba(254,204,24,.5) 8px,
        transparent 8px, transparent 16px);
}
@media (max-width: 767px) {
    .hiw-step:not(:last-child)::after { display: none; }
}

.hiw-num-wrap {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(254,204,24,.1);
    border: 2px solid rgba(254,204,24,.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
    transition: var(--transition);
}
.hiw-step:hover .hiw-num-wrap {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
}
.hiw-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--brand-yellow);
    line-height: 1;
    transition: color .3s;
}
.hiw-step:hover .hiw-num { color: #111; }

.hiw-icon {
    position: absolute;
    top: -8px; right: -8px;
    width: 28px; height: 28px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    color: #111;
    box-shadow: 0 2px 8px rgba(254,204,24,.4);
}
.hiw-step h5 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.hiw-step p  { font-size: .82rem; color: rgba(255,255,255,.5); margin: 0; line-height: 1.6; }

/* ── Pricing teaser strip ── */
.pricing-strip {
    background: linear-gradient(135deg, #fecc18 0%, #f5a000 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}
.pricing-strip::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    pointer-events: none;
}
.pricing-strip::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -30px;
    width: 160px; height: 160px;
    background: rgba(0,0,0,.05);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================================
   VEHICLES PAGE
   ============================================================ */

/* ── Category filter tabs ── */
.fleet-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.fleet-tab {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem 1.2rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    border: 1.5px solid #e5e7eb;
    color: #6b7280;
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.fleet-tab:hover,
.fleet-tab.active {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: #111;
    box-shadow: 0 4px 14px rgba(254,204,24,.4);
}

/* ── Vehicle card ── */
.vehicle-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #f0f0f0;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0,0,0,.11);
    border-color: rgba(254,204,24,.5);
}

/* image zone */
.vc-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
}
.vc-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.vehicle-card:hover .vc-img img { transform: scale(1.06); }

/* badges over image */
.vc-badges {
    position: absolute;
    top: 12px; left: 12px; right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}
.vc-price-pill {
    background: #111827;
    color: #fecc18;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .85rem;
    border-radius: 50px;
    white-space: nowrap;
}
.vc-popular-pill {
    background: var(--brand-yellow);
    color: #111;
    font-size: .7rem;
    font-weight: 700;
    padding: .28rem .75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .3rem;
}
.vc-rating-pill {
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: .72rem;
    padding: .28rem .7rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .25rem;
    backdrop-filter: blur(4px);
}
.vc-rating-pill i { color: var(--brand-yellow); font-size: .65rem; }

/* "Popular" top ribbon */
.vc-ribbon {
    position: absolute;
    top: 0; right: 0;
    background: var(--brand-yellow);
    color: #111;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .3rem .9rem;
    border-bottom-left-radius: 12px;
    z-index: 2;
}

/* card body */
.vc-body {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vc-category {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-yellow);
    margin-bottom: .3rem;
}
.vc-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: .5rem;
}
.vc-desc {
    font-size: .82rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* specs row */
.vc-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-bottom: 1.2rem;
}
.vc-spec {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: #374151;
    background: #f8fafc;
    border-radius: 8px;
    padding: .45rem .7rem;
}
.vc-spec i {
    width: 18px;
    text-align: center;
    color: #111827;
    font-size: .75rem;
    flex-shrink: 0;
}

/* divider */
.vc-divider {
    height: 1px;
    background: #f0f0f0;
    margin-bottom: 1.2rem;
}

/* book button */
.vc-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: #111827;
    color: var(--brand-yellow);
    border: none;
    border-radius: 12px;
    padding: .75rem 1rem;
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.vc-btn:hover {
    background: var(--brand-yellow);
    color: #111;
    box-shadow: 0 6px 20px rgba(254,204,24,.4);
}
.vc-btn i { transition: transform .3s; }
.vc-btn:hover i { transform: translateX(4px); }

/* ── Fleet highlights strip ── */
.fleet-highlight {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 1rem 1.4rem;
    transition: var(--transition);
}
.fleet-highlight:hover {
    background: rgba(254,204,24,.12);
    border-color: rgba(254,204,24,.3);
}
.fleet-highlight .fh-icon {
    width: 46px; height: 46px;
    background: var(--brand-yellow);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fleet-highlight .fh-icon i { color: #111; font-size: 1rem; }
.fleet-highlight .fh-title { font-size: .88rem; font-weight: 700; color: #fff; line-height: 1.2; }
.fleet-highlight .fh-sub   { font-size: .75rem; color: rgba(255,255,255,.5); }

/* ============================================================
   BLOG PAGE
   ============================================================ */

/* ── Featured hero card ── */
.blog-hero-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    background: #111;
}
.blog-hero-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    filter: brightness(.55);
}
.blog-hero-card:hover img { transform: scale(1.04); }
.blog-hero-overlay {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
    width: 100%;
}
.blog-hero-card .bh-cat {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    background: var(--brand-yellow);
    padding: .25rem .8rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: .9rem;
}
.blog-hero-card .bh-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: .7rem;
    text-decoration: none;
    display: block;
    transition: color .3s;
}
.blog-hero-card .bh-title:hover { color: var(--brand-yellow); }
.blog-hero-card .bh-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .78rem;
    color: rgba(255,255,255,.65);
}
.blog-hero-card .bh-meta i { color: var(--brand-yellow); margin-right: .3rem; }
.blog-hero-card .bh-read-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--brand-yellow);
    color: #111;
    font-size: .82rem;
    font-weight: 700;
    padding: .5rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
}
.blog-hero-card .bh-read-btn:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* ── Standard blog card ── */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #f0f0f0;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(0,0,0,.10);
    border-color: rgba(254,204,24,.45);
}

/* image */
.bc-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.bc-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.blog-card:hover .bc-img img { transform: scale(1.07); }
.bc-cat {
    position: absolute;
    bottom: 12px; left: 14px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: .28rem .8rem;
    border-radius: 50px;
    color: #111;
    background: var(--brand-yellow);
}

/* body */
.bc-body {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bc-meta {
    display: flex;
    align-items: center;
    gap: .9rem;
    font-size: .74rem;
    color: #9ca3af;
    margin-bottom: .75rem;
    flex-wrap: wrap;
}
.bc-meta i { color: var(--brand-yellow); font-size: .68rem; }
.bc-title {
    font-size: .98rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.4;
    margin-bottom: .6rem;
    text-decoration: none;
    display: block;
    transition: color .3s;
}
.bc-title:hover { color: #b08a00; }
.bc-excerpt {
    font-size: .83rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    flex: 1;
}
.bc-divider {
    height: 1px;
    background: #f0f0f0;
    margin-bottom: 1rem;
}
.bc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}
.bc-author {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    color: #374151;
    font-weight: 600;
}
.bc-author-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--brand-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
    color: #111;
    flex-shrink: 0;
}
.bc-read-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    transition: var(--transition);
}
.bc-read-link i { transition: transform .3s; }
.bc-read-link:hover { color: #b08a00; }
.bc-read-link:hover i { transform: translateX(4px); }

/* ── Newsletter strip ── */
.newsletter-strip {
    background: linear-gradient(135deg, #0d1117 0%, #111827 100%);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}
.newsletter-strip::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(254,204,24,.15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.newsletter-strip::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(99,102,241,.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.newsletter-strip h3 { color: #fff; font-weight: 800; }
.newsletter-strip p  { color: rgba(255,255,255,.55); font-size: .9rem; }
.nl-form {
    display: flex;
    gap: .6rem;
    max-width: 440px;
}
.nl-form input {
    flex: 1;
    border: 1.5px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.07);
    color: #fff;
    border-radius: 12px;
    padding: .7rem 1rem;
    font-size: .88rem;
    outline: none;
    transition: var(--transition);
}
.nl-form input::placeholder { color: rgba(255,255,255,.35); }
.nl-form input:focus { border-color: var(--brand-yellow); background: rgba(255,255,255,.1); }
.nl-form button {
    background: var(--brand-yellow);
    color: #111;
    border: none;
    border-radius: 12px;
    padding: .7rem 1.4rem;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.nl-form button:hover { background: #e5b800; box-shadow: 0 4px 16px rgba(254,204,24,.4); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Quick contact cards ── */
.contact-quick-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.8rem 1.5rem;
    border: 1.5px solid #f0f0f0;
    transition: var(--transition);
    text-align: center;
    height: 100%;
}
.contact-quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.09);
    border-color: rgba(254,204,24,.45);
}
.contact-quick-card .cqc-icon {
    width: 62px; height: 62px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: var(--transition);
}
.contact-quick-card:hover .cqc-icon { transform: scale(1.1) rotate(-6deg); }
.contact-quick-card h6 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-bottom: .35rem;
}
.contact-quick-card .cqc-value {
    font-size: .95rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    display: block;
    transition: color .3s;
}
.contact-quick-card .cqc-value:hover { color: #b08a00; }
.contact-quick-card .cqc-sub {
    font-size: .78rem;
    color: #9ca3af;
    margin-top: .2rem;
}

/* ── Info panel (dark sidebar) ── */
.contact-info-panel {
    background: #0d1117;
    border-radius: 20px;
    padding: 2.2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(254,204,24,.14) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.cip-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}
.cip-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: 1.4rem;
}
.cip-icon {
    width: 40px; height: 40px;
    background: rgba(254,204,24,.12);
    border: 1px solid rgba(254,204,24,.2);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.cip-icon i { color: var(--brand-yellow); font-size: .85rem; }
.cip-label { font-size: .68rem; color: rgba(255,255,255,.35); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; }
.cip-val   { font-size: .88rem; color: rgba(255,255,255,.8); margin-top: .1rem; }
.cip-val a { color: rgba(255,255,255,.8); text-decoration: none; transition: color .3s; }
.cip-val a:hover { color: var(--brand-yellow); }

.cip-divider { height: 1px; background: rgba(255,255,255,.07); margin: 1.4rem 0; }

.cip-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    padding: .35rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.cip-hours-row:last-child { border-bottom: none; }
.cip-hours-row .day  { color: rgba(255,255,255,.5); }
.cip-hours-row .time { color: #fff; font-weight: 600; }
.cip-hours-row .open { color: #4ade80; font-size: .7rem; font-weight: 700; }

.cip-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.cip-social a {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: .8rem;
    transition: var(--transition);
}
.cip-social a:hover { transform: translateY(-3px); filter: brightness(1.15); }

/* ── Contact form ── */
.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 2.2rem 2.4rem;
    box-shadow: 0 4px 30px rgba(0,0,0,.07);
    border: 1.5px solid #f0f0f0;
}
.contact-form-wrap .cf-label {
    font-size: .78rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: .4rem;
    display: block;
}
.contact-form-wrap .cf-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: .75rem 1rem;
    font-size: .9rem;
    color: #111;
    background: #fff;
    outline: none;
    transition: var(--transition);
}
.contact-form-wrap .cf-input:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 3px rgba(254,204,24,.18);
}
.contact-form-wrap textarea.cf-input { resize: none; height: 140px; }
.contact-form-wrap .cf-submit {
    background: #111827;
    color: var(--brand-yellow);
    border: none;
    border-radius: 12px;
    padding: .85rem 2rem;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.contact-form-wrap .cf-submit:hover {
    background: var(--brand-yellow);
    color: #111;
    box-shadow: 0 6px 20px rgba(254,204,24,.4);
}
.contact-form-wrap .cf-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: .85rem 1.8rem;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}
.contact-form-wrap .cf-whatsapp:hover {
    background: #1fb855;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
    transform: translateY(-2px);
}

/* ── Map section ── */
.map-section { background: #f8fafc; }
.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
    border: 3px solid #fff;
}
.map-wrap iframe { display: block; }

/* ── FAQ accordion ── */
.contact-faq .accordion-item {
    border: 1.5px solid #f0f0f0;
    border-radius: 14px !important;
    margin-bottom: .7rem;
    overflow: hidden;
}
.contact-faq .accordion-button {
    font-weight: 700;
    font-size: .9rem;
    background: #fff;
    color: #111827;
    border-radius: 14px !important;
    box-shadow: none;
}
.contact-faq .accordion-button:not(.collapsed) {
    background: #fffbeb;
    color: #92400e;
    box-shadow: none;
}
.contact-faq .accordion-button::after {
    filter: none;
}
.contact-faq .accordion-button:not(.collapsed)::after {
    filter: none;
}
.contact-faq .accordion-body {
    font-size: .85rem;
    color: #6b7280;
    line-height: 1.7;
    background: #fff;
}

/* ============================================================
   BOOK NOW PAGE
   ============================================================ */

/* ── Form wrapper ── */
.booknow-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 2.4rem 2.6rem;
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
    border: 1.5px solid #f0f0f0;
}
@media (max-width: 576px) {
    .booknow-form-wrap { padding: 1.6rem 1.2rem; }
}

/* ── Section divider inside form ── */
.bf-section {
    border-bottom: 1.5px solid #f3f4f6;
    padding-bottom: 1.8rem;
    margin-bottom: 1.8rem;
}
.bf-section:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.bf-section-title {
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9ca3af;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.bf-section-title span {
    width: 24px; height: 24px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 900;
    color: #111;
    flex-shrink: 0;
}

/* ── Trip type tabs ── */
.trip-type-tabs {
    display: flex;
    gap: .5rem;
    background: #f8fafc;
    border-radius: 12px;
    padding: .4rem;
}
.trip-type-tab {
    flex: 1;
    text-align: center;
    padding: .6rem .5rem;
    border-radius: 9px;
    font-size: .82rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}
.trip-type-tab.active,
.trip-type-tab:hover {
    background: #fff;
    color: #111;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.trip-type-tab.active { color: #b08a00; font-weight: 700; }
.trip-type-tab i { font-size: .8rem; }

/* ── Form inputs ── */
.bf-label {
    font-size: .76rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: .35rem;
    display: flex;
    align-items: center;
    gap: .35rem;
}
.bf-label i { color: var(--brand-yellow); font-size: .7rem; }

.bf-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: .72rem 1rem;
    font-size: .9rem;
    color: #111;
    background: #fff;
    outline: none;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.bf-input:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 3px rgba(254,204,24,.18);
}
.bf-input-icon-wrap {
    position: relative;
}
.bf-input-icon-wrap .bf-input { padding-left: 2.5rem; }
.bf-input-icon-wrap .bi-icon {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .82rem;
    color: #9ca3af;
    pointer-events: none;
}

/* ── Counter stepper ── */
.bf-stepper {
    display: flex;
    align-items: center;
    gap: .6rem;
}
.bf-stepper button {
    width: 34px; height: 34px;
    border-radius: 9px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bf-stepper button:hover {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: #111;
}
.bf-stepper .bf-count {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: .95rem;
    color: #111;
}

/* ── Vehicle selection cards ── */
.vehicle-pick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: .9rem;
}
.vehicle-pick-card {
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: .9rem .8rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    background: #fff;
}
.vehicle-pick-card:hover {
    border-color: var(--brand-yellow);
    box-shadow: 0 4px 16px rgba(254,204,24,.2);
}
.vehicle-pick-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.vehicle-pick-card.selected,
.vehicle-pick-card:has(input:checked) {
    border-color: var(--brand-yellow);
    background: #fffbeb;
    box-shadow: 0 4px 16px rgba(254,204,24,.25);
}
.vehicle-pick-card .vpc-check {
    position: absolute;
    top: 8px; right: 8px;
    width: 20px; height: 20px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    color: #111;
    font-weight: 900;
}
.vehicle-pick-card.selected .vpc-check,
.vehicle-pick-card:has(input:checked) .vpc-check { display: inline-flex; }

.vpc-img {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem;
}
.vpc-img img { max-height: 70px; max-width: 100%; object-fit: contain; }
.vpc-name { font-size: .8rem; font-weight: 700; color: #111827; margin-bottom: .2rem; }
.vpc-cat  { font-size: .68rem; color: #9ca3af; }
.vpc-price {
    margin-top: .4rem;
    font-size: .72rem;
    font-weight: 700;
    color: #d4a000;
    background: rgba(254,204,24,.12);
    border-radius: 50px;
    padding: .15rem .5rem;
    display: inline-block;
}

/* ── Payment method cards ── */
.pay-options { display: flex; gap: .75rem; flex-wrap: wrap; }
.pay-card {
    flex: 1;
    min-width: 100px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: .9rem .75rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.pay-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.pay-card:hover { border-color: var(--brand-yellow); }
.pay-card.selected,
.pay-card:has(input:checked) {
    border-color: var(--brand-yellow);
    background: #fffbeb;
}
.pay-card i { font-size: 1.3rem; margin-bottom: .4rem; display: block; }
.pay-card .pay-label { font-size: .78rem; font-weight: 600; color: #374151; }

/* ── Submit button ── */
.bf-submit {
    width: 100%;
    background: #111827;
    color: var(--brand-yellow);
    border: none;
    border-radius: 14px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}
.bf-submit:hover {
    background: var(--brand-yellow);
    color: #111;
    box-shadow: 0 8px 24px rgba(254,204,24,.4);
    transform: translateY(-2px);
}

/* ── Sidebar trust panel ── */
.booking-trust-panel {
    background: #0d1117;
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}
.btp-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.btp-title i { color: var(--brand-yellow); }
.btp-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    margin-bottom: 1.1rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.btp-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.btp-icon {
    width: 38px; height: 38px;
    background: rgba(254,204,24,.12);
    border: 1px solid rgba(254,204,24,.2);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.btp-icon i { color: var(--brand-yellow); font-size: .8rem; }
.btp-text h6 { font-size: .85rem; font-weight: 700; color: #fff; margin: 0 0 .15rem; }
.btp-text p  { font-size: .76rem; color: rgba(255,255,255,.45); margin: 0; line-height: 1.5; }

.btp-divider { height: 1px; background: rgba(255,255,255,.07); margin: 1.4rem 0; }

.btp-call {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(254,204,24,.1);
    border: 1px solid rgba(254,204,24,.25);
    border-radius: 12px;
    padding: .85rem 1rem;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: .7rem;
}
.btp-call:hover { background: rgba(254,204,24,.2); }
.btp-call .bc-ico {
    width: 38px; height: 38px;
    background: var(--brand-yellow);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.btp-call .bc-ico i { color: #111; font-size: .9rem; }
.btp-call .bc-lbl { font-size: .68rem; color: rgba(255,255,255,.4); }
.btp-call .bc-num { font-size: .9rem; font-weight: 700; color: #fff; }

.btp-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: #25D366;
    border-radius: 12px;
    padding: .75rem;
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    transition: var(--transition);
}
.btp-wa:hover { background: #1fb855; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0d1117;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    position: relative;
    overflow: hidden;
}

/* decorative blobs */
.site-footer::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(254,204,24,.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.site-footer::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(254,204,24,.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ── CTA band ── */
.footer-cta-band {
    background: linear-gradient(135deg, #fecc18 0%, #f5a000 100%);
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
}
.footer-cta-band h3 { color: #111; font-weight: 800; margin: 0; }
.footer-cta-band p  { color: rgba(0,0,0,.6); margin: .25rem 0 0; }
.footer-cta-band .btn-footer-cta {
    background: #111;
    color: #fecc18;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    padding: .75rem 2rem;
    transition: var(--transition);
    white-space: nowrap;
}
.footer-cta-band .btn-footer-cta:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
}
.footer-cta-band .btn-footer-cta-outline {
    background: transparent;
    color: #111;
    border: 2px solid #111;
    border-radius: 12px;
    font-weight: 700;
    padding: .75rem 2rem;
    transition: var(--transition);
    white-space: nowrap;
}
.footer-cta-band .btn-footer-cta-outline:hover {
    background: #111;
    color: #fecc18;
    transform: translateY(-2px);
}

/* ── Main body ── */
.footer-body {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

/* ── Logo & brand ── */
.footer-logo {
    display: inline-block;
    margin-bottom: 1.2rem;
}
.footer-logo img { height: 48px; width: auto; }

.footer-desc {
    line-height: 1.8;
    color: rgba(255,255,255,.55);
    margin-bottom: 1.5rem;
}

/* ── Hotline pill ── */
.footer-hotline {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: rgba(254,204,24,.10);
    border: 1px solid rgba(254,204,24,.25);
    border-radius: 50px;
    padding: .6rem 1.2rem;
}
.footer-hotline .hicon {
    width: 36px; height: 36px;
    background: #fecc18;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-hotline .hicon i { color: #111; font-size: .85rem; }
.footer-hotline .hlabel { font-size: .72rem; color: rgba(255,255,255,.45); }
.footer-hotline .hnum   { font-size: 1rem; font-weight: 700; color: #fff; }

/* ── Social icons ── */
.footer-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .85rem;
    transition: var(--transition);
}
.footer-social a:hover { transform: translateY(-3px); filter: brightness(1.2); }

/* ── Column headings ── */
.footer-col-title {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fecc18;
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: .6rem;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: #fecc18;
    border-radius: 2px;
}

/* ── Nav links ── */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: .6rem;
    color: #fecc18;
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--transition);
}
.footer-links a:hover {
    color: #fecc18;
    padding-left: 4px;
}
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

/* ── Contact items ── */
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: .9rem;
    margin-bottom: 1.1rem;
    align-items: flex-start;
}
.footer-contact .fc-icon {
    width: 34px; height: 34px;
    background: rgba(254,204,24,.12);
    border: 1px solid rgba(254,204,24,.2);
    border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact .fc-icon i { color: #fecc18; font-size: .8rem; }
.footer-contact .fc-label { font-size: .7rem; color: rgba(255,255,255,.35); }
.footer-contact .fc-value { color: rgba(255,255,255,.8); font-size: .88rem; }
.footer-contact a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer-contact a:hover { color: #fecc18; }

/* ── App buttons ── */
.app-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: .65rem 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    min-width: 150px;
}
.app-btn:hover {
    background: rgba(254,204,24,.12);
    border-color: rgba(254,204,24,.3);
    color: #fff;
    transform: translateY(-2px);
}
.app-btn i { font-size: 1.5rem; }
.app-btn .ab-text small { font-size: .65rem; color: rgba(255,255,255,.45); display: block; }
.app-btn .ab-text span  { font-size: .88rem; font-weight: 600; }

/* ── Bottom bar ── */
.footer-bottom {
    padding: 1.4rem 0;
    position: relative;
    z-index: 1;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom a:hover { color: #fecc18; }
.footer-bottom-links {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    padding: 0; margin: 0;
}
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom-links a:hover { color: #fecc18; }

/* ============================================================
   MOBILE RESPONSIVENESS — All Device Fixes
   (Android, iOS, Tablet, Small screens)
   ============================================================ */

/* ── iOS/Android global fixes ── */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    touch-action: manipulation;
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
*, *::before, *::after {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}

/* ── Fixed header body offset ── */
.site-main {
    padding-top: 76px; /* mobile: only upper header */
}
@media (min-width: 992px) {
    .site-main {
        padding-top: 130px; /* desktop: upper + lower header */
    }
}

/* ── Hamburger icon (3 spans) ── */
.navbar-toggler {
    border: none;
    padding: 6px 8px;
    background: transparent;
    cursor: pointer;
    outline: none;
    box-shadow: none !important;
}
.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
}
.navbar-toggler-icon span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: #111827;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.navbar-toggler.active .navbar-toggler-icon span:nth-child(1) {
    transform: translateY(8.75px) rotate(45deg);
}
.navbar-toggler.active .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navbar-toggler.active .navbar-toggler-icon span:nth-child(3) {
    transform: translateY(-8.75px) rotate(-45deg);
}

/* ── Mobile offcanvas dark theme ── */
.mobile-offcanvas {
    background: #111827 !important;
    max-width: 300px;
    width: 85vw !important;
}
.mobile-offcanvas-header {
    background: #0d1117;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 1.1rem 1.2rem;
}
.mobile-offcanvas-body {
    padding: 1rem 1.2rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-nav-item {
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav-link {
    color: rgba(255,255,255,.75) !important;
    padding: .85rem .4rem !important;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color .25s, padding-left .25s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active-link {
    color: #fecc18 !important;
    padding-left: .8rem !important;
}
.mobile-contact-bar {
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.mobile-contact-link {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: .88rem;
    padding: .5rem 0;
    transition: color .25s;
}
.mobile-contact-link:hover { color: #fecc18; }
.mobile-whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: .6rem 1rem;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s;
}
.mobile-whatsapp-link:hover { background: #1fb855; color: #fff; }

/* ── Touch targets: minimum 44px ── */
@media (max-width: 991px) {
    .btn,
    a.btn,
    button:not(.accordion-button):not(.navbar-toggler) {
        min-height: 44px;
    }
    .nav-link { min-height: 44px; }
}

/* ── Hero section — mobile ── */
@media (max-width: 575px) {
    .hero-6 {
        min-height: 70vh;
    }
    .hero-6-content h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    }
    .hero-badge-strip {
        gap: .4rem;
        margin-top: 1.2rem;
    }
    .hero-badge {
        font-size: .7rem;
        padding: .25rem .65rem;
    }
    .btn-book-pulse {
        font-size: .9rem;
        padding: .65rem 1.4rem !important;
    }
}

/* ── About badges — prevent overflow on small screens ── */
@media (max-width: 991px) {
    .about-exp-badge {
        left: 8px !important;
        top: 16px;
        bottom: auto;
    }
    .about-happy-badge {
        right: 8px !important;
        min-width: 160px;
    }
    .about-badge {
        right: 8px !important;
        min-width: 170px;
    }
}
@media (max-width: 575px) {
    .about-exp-badge,
    .about-happy-badge,
    .about-badge {
        display: none;
    }
    .about-img-wrap,
    .about-split-img,
    .position-relative[style*="padding"] {
        padding: 0 !important;
    }
}

/* ── Counter / stats ── */
@media (max-width: 575px) {
    .stat-card { padding: 1.4rem 1rem; }
    .stat-card .stat-num { font-size: 1.9rem; }
    .counter-section .col-6 { padding-left: .5rem; padding-right: .5rem; }
}

/* ── Inner page header ── */
@media (max-width: 767px) {
    .inner-page-header {
        padding: 60px 0 55px;
    }
    .iph-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
    }
    .iph-subtitle {
        font-size: .9rem;
    }
}
@media (max-width: 575px) {
    .inner-page-header {
        padding: 50px 0 45px;
    }
    .iph-stat-bar {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        border-radius: 12px;
        width: 100%;
    }
    .iph-stat-item {
        padding: .75rem .6rem;
        border-right: 1px solid rgba(255,255,255,.1);
    }
    .iph-stat-item:last-child { border-right: none; }
    .iph-stat-item .s-num { font-size: 1.1rem; }
}

/* ── Page header (old style) ── */
@media (max-width: 575px) {
    .page-header {
        padding: 55px 16px 60px;
    }
    .page-header h1 {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
        margin-bottom: 10px;
    }
}

/* ── Services section ── */
@media (max-width: 575px) {
    .service-card { padding: 1.3rem 1rem; }
    .services-intro .text-muted.lead { font-size: .95rem; }
}

/* ── Why us section ── */
@media (max-width: 575px) {
    .why-card { padding: 1.5rem 1rem; }
    .why-us-section .col-md-4 { padding-left: .5rem; padding-right: .5rem; }
}

/* ── CTA strip ── */
@media (max-width: 575px) {
    .cta-strip { padding: 2.5rem 0; }
    .cta-strip h2 { font-size: 1.4rem; }
    .cta-strip .d-flex { flex-direction: column; }
    .cta-strip .btn { width: 100%; justify-content: center; }
}

/* ── Car cards (vehicles page) ── */
@media (max-width: 575px) {
    .card-img-zone { height: 130px; }
    .feats-grid { grid-template-columns: 1fr; gap: 5px; }
}

/* ── Blog hero card ── */
@media (max-width: 575px) {
    .blog-hero-card { min-height: 260px; }
    .blog-hero-overlay { padding: 1.4rem; }
    .blog-hero-card .bh-title { font-size: 1.1rem; }
}

/* ── Newsletter strip ── */
@media (max-width: 767px) {
    .newsletter-strip { padding: 2.5rem 1.5rem; border-radius: 16px; }
    .nl-form {
        flex-direction: column;
        max-width: 100%;
    }
    .nl-form input,
    .nl-form button {
        width: 100%;
    }
}

/* ── Pricing strip ── */
@media (max-width: 575px) {
    .pricing-strip { padding: 2rem 1.2rem; border-radius: 14px; }
}

/* ── Contact page ── */
@media (max-width: 575px) {
    .contact-form-wrap { padding: 1.5rem 1.1rem; border-radius: 16px; }
    .contact-info-panel { padding: 1.4rem 1.1rem; border-radius: 16px; }
    .contact-form-wrap .col-12.d-flex {
        flex-direction: column;
    }
    .cf-submit,
    .cf-whatsapp {
        width: 100%;
        justify-content: center;
    }
    .map-wrap iframe { height: 260px; }
}

/* ── Book Now page ── */
@media (max-width: 575px) {
    .booknow-form-wrap { padding: 1.3rem .9rem; border-radius: 16px; }
    .trip-type-tabs { flex-direction: column; gap: .4rem; }
    .trip-type-tab { justify-content: flex-start; padding: .75rem .9rem; border-radius: 9px; }
    .vehicle-pick-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
    .pay-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .6rem;
    }
    .pay-card { min-width: unset; }
    .bf-section-title { font-size: .65rem; }
}
@media (max-width: 991px) {
    .booking-trust-panel { position: static; top: auto; }
}

/* ── Footer ── */
@media (max-width: 767px) {
    .footer-body { padding: 3rem 0 2rem; }
    .footer-cta-band { padding: 1.8rem 0; }
    .footer-cta-band h3 { font-size: 1.15rem; }
    .footer-cta-band p { font-size: .85rem; }
    .footer-cta-band .d-flex { flex-direction: column; gap: .7rem !important; }
    .btn-footer-cta,
    .btn-footer-cta-outline {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .footer-bottom p { text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .footer-bottom .col-md-6:last-child { margin-top: .5rem; }
}
@media (max-width: 575px) {
    .footer-logo img { height: 38px; }
    .footer-hotline { flex-wrap: wrap; padding: .5rem .9rem; }
    .footer-hotline .hnum { font-size: .9rem; }
}

/* ── Swiper testimonials ── */
@media (max-width: 575px) {
    .testimonial-1 .card { padding: 1.5rem 1rem !important; }
    .testimonial-1 .card p.fs-6 { font-size: .85rem !important; }
}

/* ── About page — mission/vision cards ── */
@media (max-width: 575px) {
    .col-md-4 > div.rounded-4.p-4 { padding: 1.4rem 1rem !important; }
}

/* ── Sections py-8 / py-7 reduce on small screens ── */
@media (max-width: 575px) {
    .py-8 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .py-7 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .py-6 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .mb-6 { margin-bottom: 2rem !important; }
}

/* ── Section headings scale on mobile ── */
@media (max-width: 575px) {
    .display-3 { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
    .display-5 { font-size: clamp(1.4rem, 6vw, 1.9rem) !important; }
    .display-6 { font-size: clamp(1.2rem, 5.5vw, 1.6rem) !important; }
    h2.fw-bold { font-size: clamp(1.2rem, 5.5vw, 1.6rem) !important; }
}

/* ── HIW connector — hide on mobile ── */
@media (max-width: 767px) {
    .hiw-step:not(:last-child)::after { display: none; }
}

/* ── Fleet highlight strip ── */
@media (max-width: 575px) {
    .fleet-highlight { padding: .8rem 1rem; }
}

/* ── iph stat bar 4-item variant (about page) ── */
@media (max-width: 575px) {
    .iph-stat-bar.d-inline-flex {
        grid-template-columns: repeat(2, 1fr);
        display: grid !important;
        width: 100%;
    }
    .iph-stat-bar .iph-stat-item:nth-child(2) { border-right: none; }
}

/* ── Horizontal scroll guard for tables/grids ── */
.vehicle-pick-grid,
.pay-options,
.fleet-tabs,
.hero-badge-strip,
.iph-stat-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.vehicle-pick-grid,
.pay-options,
.fleet-tabs,
.hero-badge-strip,
.iph-stat-bar {
    overflow-x: visible; /* use grid/flex wrapping instead */
}

/* ── Smooth scroll on iOS ── */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* ── Focus rings for accessibility ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--brand-yellow);
    outline-offset: 2px;
}

/* ── Upper header address — truncate on small lg screens ── */
@media (min-width: 992px) and (max-width: 1200px) {
    .upper-header small {
        display: none;
    }
}

/* ── Booknow form trust items wrap on tablet ── */
@media (max-width: 767px) {
    .btp-item { gap: .6rem; }
    .btp-text h6 { font-size: .8rem; }
    .btp-text p  { font-size: .72rem; }
}

/* ── Contact quick cards ── */
@media (max-width: 575px) {
    .contact-quick-card { padding: 1.3rem 1rem; }
    .contact-quick-card .cqc-icon { width: 50px; height: 50px; font-size: 1.1rem; }
}

/* ── Vehicle cards specs grid ── */
@media (max-width: 375px) {
    .vc-specs { grid-template-columns: 1fr; }
    .vc-body { padding: 1.1rem 1.1rem 1.3rem; }
}

/* ── About split image badges — tablet ── */
@media (min-width: 576px) and (max-width: 991px) {
    .about-exp-badge { left: 8px !important; }
    .about-happy-badge { right: 8px !important; min-width: 150px; }
}

/* ── Prevent text overflow ── */
.iph-title,
.page-header h1,
h1, h2, h3 {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* ── Input/select fix on iOS (prevents zoom on focus) ── */
@media (max-width: 767px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="time"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important; /* prevents iOS auto-zoom */
    }
}

/* ── Safe area insets (iPhone notch / home bar) ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .site-footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
    .mobile-offcanvas {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

