/* ============================================================================
   HeathrowMeetPark — Design Override Stylesheet
   HeathrowMeetPark design overrides — loaded after main.css.
   Loaded after main.css — overrides specific components only.
   ============================================================================ */

/* ── HEADER: White nav + green trust bar ─────────────────────────────────── */
.trust-bar {
    background: var(--clr-accent);
    color: #0e2d4a;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    border-bottom: none;
}
.trust-bar .container { gap: 20px; }
.trust-item { gap: 5px; font-weight: 700; }
.trust-item a { color: #0e2d4a; font-weight: 700; }
.trust-item a:hover { color: #071c2e; text-decoration: none; }

/* White header — keep as-is, just ensure border-bottom is accent */
.site-header {
    background: var(--clr-white);
    border-bottom: 2px solid var(--clr-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.main-nav { background: var(--clr-white); }

/* "Get a Quote" button → vivid orange, white text */
.main-nav .btn.btn-primary,
.site-header .btn.btn-primary {
    background: #f97316 !important;
    border-color: #f97316 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 12px rgba(249,115,22,0.45) !important;
}
.main-nav .btn.btn-primary:hover,
.site-header .btn.btn-primary:hover {
    background: #ea580c !important;
    border-color: #ea580c !important;
    color: #ffffff !important;
}

/* Dropdown: emerald top accent */
.nav-dropdown-menu {
    border-top: 3px solid var(--clr-accent);
}
.nav-dropdown-menu::before { border-bottom-color: var(--clr-accent); }


/* ── HERO: Dark petrol navy gradient ─────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #071c2e 0%, #0e2d4a 55%, #1a4a6e 100%);
    padding-bottom: var(--s20);
}
.hero::before {
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
}

/* Hero proof avatars — light on dark navy hero */
.proof-avatar { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); }
.proof-avatar--1 { background: #f97316; }
.proof-avatar--2 { background: rgba(255,255,255,0.20); }
.proof-avatar--3 { background: rgba(255,255,255,0.12); }

/* Hero text — white on dark navy background */
.hero-title { color: #ffffff; }
.hero-accent { color: #fb923c; }
.hero-title-sub { color: rgba(255,255,255,0.70); }
.hero-subtitle { color: rgba(255,255,255,0.88); opacity: 1; }
.hero-bullets li { color: rgba(255,255,255,0.92); opacity: 1; }
.hero-social-proof { color: rgba(255,255,255,0.88); opacity: 1; }
.proof-text strong { color: #ffffff; }

/* Hero badge — translucent white on dark navy */
.hero-badge {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.22);
    color: #ffffff;
}
.badge-star { color: #f97316; }

/* Widget header — darker navy panel sits inside hero */
.widget-header {
    background: linear-gradient(135deg, #0e2d4a 0%, #071c2e 100%);
}
.widget-title { color: #fff; font-size: 1.05rem; }
.widget-badge {
    background: rgba(249,115,22,0.2);
    color: var(--clr-accent);
    font-weight: 600;
}

/* Search button inside widget — vivid orange for max urgency */
.booking-widget .btn-cta {
    background: #f97316;
    border-color: #f97316;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(249,115,22,0.50);
    font-size: 1.08rem;
    letter-spacing: 0.01em;
}
.booking-widget .btn-cta:hover {
    background: #ea580c;
    border-color: #ea580c;
    color: #ffffff;
    box-shadow: 0 6px 28px rgba(249,115,22,0.65);
    transform: translateY(-1px);
}

/* Booking widget rounded corners — slightly different */
.booking-widget { border-radius: var(--radius-lg); }

/* ── FORM INPUTS: Warmer feel, clearly visible fields ─────────────────────── */
.booking-widget .form-control,
.booking-widget select.form-control,
.booking-widget input.form-control {
    background: #f8f9ff;
    border: 2px solid #c7d2e8;
    border-radius: 10px;
    color: #0e2d4a;
    font-weight: 500;
    padding: 11px 14px;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.booking-widget .form-control:focus,
.booking-widget select.form-control:focus,
.booking-widget input.form-control:focus {
    background: #ffffff;
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249,115,22,0.14);
    outline: none;
}
.booking-widget label {
    font-weight: 600;
    font-size: 0.82rem;
    color: #0e2d4a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
}

/* ── PROGRESS BAR: Orange active step ─────────────────────────────────────── */
.step.active .step-num  { background: #f97316 !important; color: #fff !important; }
.step.active            { color: #f97316 !important; }
.step.done .step-num    { background: #0e2d4a !important; color: #fff !important; }
.step.done              { color: #0e2d4a !important; }

/* ── PRODUCT CARDS: Navy/orange image bands, orange price, CTA button ──────── */

/* Default + meet & greet → light orange-tinted */
.product-img,
.product-img--meet-greet {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%) !important;
}
/* Park & ride / standard → light blue-white */
.product-img--standard {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
}
/* Valet → light warm peach */
.product-img--valet {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%) !important;
}
/* Covered / long-stay → light slate-blue */
.product-img--covered {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0eeff 100%) !important;
}
/* All icons/labels darken on light bg */
.product-img .product-img-icon  { filter: none !important; }
.product-img .product-img-label { color: #0e2d4a !important; opacity: 0.75; }

/* Product card base → white */
.product-card {
    background: #ffffff !important;
}

/* Product card hover + selected → orange accent */
.product-card:hover {
    border-color: #f97316 !important;
    box-shadow: 0 0 0 4px rgba(249,115,22,0.12) !important;
    background: #fff8f5 !important;
}
.product-card.selected {
    border-color: #f97316 !important;
    background: #fff4ec !important;
}

/* Price → orange */
.product-price { color: #f97316 !important; }

/* Feature checkmarks → orange */
.product-features li::before { color: #f97316 !important; }

/* Save badge → orange-tinted */
.product-save-badge {
    color: #9a3412 !important;
    background: #fed7aa !important;
}

/* Urgency badge → matches brand */
.urgency-badge {
    color: #9a3412 !important;
    background: #fff7ed !important;
    border-color: #fed7aa !important;
}

/* ── BOOK NOW BUTTON: High-urgency orange CTA ─────────────────────────────── */
.btn-book-now {
    background: #f97316 !important;
    border-color: #f97316 !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
    padding: 14px 20px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 18px rgba(249,115,22,0.40) !important;
    transition: background 0.18s, box-shadow 0.18s, transform 0.15s !important;
    text-transform: uppercase !important;
}
.btn-book-now:hover {
    background: #ea580c !important;
    border-color: #ea580c !important;
    box-shadow: 0 6px 26px rgba(249,115,22,0.55) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}
.product-card.selected .btn-book-now {
    background: #ea580c !important;
    border-color: #ea580c !important;
}

/* ── CHECKOUT PRODUCT BAR: Navy bg, white text ─────────────────────────────── */
.checkout-product-bar {
    background: #0e2d4a !important;
    border-color: #071c2e !important;
    color: #ffffff !important;
}
.checkout-product-name { color: #ffffff !important; }
.checkout-product-price { color: #fb923c !important; }
.btn-text-link { color: #fb923c !important; }

/* Extra cards → orange selected state */
.extra-card:hover    { border-color: #f97316 !important; }
.extra-card.selected { border-color: #f97316 !important; background: #fff7ed !important; }
.extra-card.selected .extra-checkbox { background: #f97316 !important; border-color: #f97316 !important; }
.extra-price { color: #f97316 !important; }


/* ── USP STRIP: Warm cream, centered, gold top-border accent ─────────────── */
.usp-strip {
    background: #f0f7ff;
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
    padding: var(--s10) 0;
}
.usp-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--s6) var(--s4);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--clr-accent);
    background: rgba(255,255,255,0.7);
    gap: var(--s3);
    box-shadow: 0 2px 8px rgba(14,45,74,0.05);
}
.usp-item:hover { background: var(--clr-white); box-shadow: 0 4px 16px rgba(14,45,74,0.08); }
.usp-icon { font-size: 2rem; flex-shrink: 0; }
.usp-body { align-items: center; gap: 4px; }
.usp-body strong { font-size: 0.95rem; color: var(--clr-primary-dark); line-height: 1.3; }
.usp-body span { font-size: 0.8rem; color: var(--clr-text-muted); }


/* ── HOW IT WORKS: Raised cards, left-aligned, square numbered badge ─────── */
.hiw-section { background: var(--clr-bg-alt); }
.hiw-step {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: var(--s8) var(--s6);
    border: 1.5px solid var(--clr-border);
    border-top: 4px solid var(--clr-accent);
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--ease), transform var(--ease);
}
.hiw-step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.hiw-num {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--clr-accent);
    color: #0e2d4a;
    font-size: 1.2rem;
    font-weight: 900;
    margin: 0 0 var(--s4) 0;
}
.hiw-icon { font-size: 1.8rem; margin-bottom: var(--s3); }
.hiw-step h3 { font-size: 1.15rem; color: var(--clr-primary-dark); margin-bottom: var(--s2); }
.hiw-step p { font-size: 0.88rem; }

/* Connector line — dashed emerald */
.hiw-connector {
    background: none;
    border-top: 2px dashed rgba(249,115,22,0.4);
    height: 0;
    margin-top: 58px;
    width: 48px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .hiw-connector {
        border-top: none;
        border-left: 2px dashed rgba(249,115,22,0.4);
        width: 0;
        height: 28px;
        margin-top: 0;
    }
    .hiw-step { text-align: center; }
    .hiw-num { margin: 0 auto var(--s4); }
}


/* ── SERVICES: Featured card — emerald border, light green tint ──────────── */
.service-card--featured {
    border-color: var(--clr-accent);
    border-width: 2px;
    background: linear-gradient(160deg, #f0f9ff 0%, var(--clr-white) 65%);
}
.service-badge {
    background: var(--clr-primary-dark);
    color: var(--clr-white);
}
.service-price-hint strong { color: var(--clr-accent-dark); }


/* ── SEO SERVICE ARTICLES: Emerald accent on image side ─────────────────── */
.seo-service-media {
    border-right: 3px solid var(--clr-accent);
}
@media (max-width: 980px) {
    .seo-service-media {
        border-right: none;
        border-bottom: 3px solid var(--clr-accent);
    }
}


/* ── FAQ: Warm cream background, 2-column numbered white cards ───────────── */
.faq-section {
    background: #f0f7ff;
}
.faq-section .section-header h2 { color: var(--clr-primary-dark); }
.faq-section .section-header p { color: var(--clr-text-muted); }

/* 2-column grid layout */
.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s4);
    max-width: 100%;
    counter-reset: faq-counter;
}
@media (max-width: 768px) {
    .faq-list { grid-template-columns: 1fr; }
}

/* FAQ item card — white on cream */
.faq-item {
    background: var(--clr-white);
    border: 1.5px solid #dbeafe;
    border-radius: var(--radius-lg);
    overflow: hidden;
    counter-increment: faq-counter;
    transition: border-color var(--ease), box-shadow var(--ease);
    box-shadow: 0 2px 8px rgba(14,45,74,0.04);
}
.faq-item[open] {
    border-color: var(--clr-accent);
    box-shadow: 0 4px 20px rgba(249,115,22,0.12);
}

/* FAQ question — numbered with counter */
.faq-q {
    padding: var(--s5) var(--s5);
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--clr-primary-dark);
    justify-content: flex-start;
    gap: var(--s3);
}
.faq-q::before {
    content: counter(faq-counter, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    background: var(--clr-accent);
    color: #0e2d4a;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: var(--radius);
    flex-shrink: 0;
    line-height: 1;
}
.faq-q::after {
    content: '+';
    margin-left: auto;
    color: var(--clr-primary-mid);
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
}
.faq-item[open] .faq-q::after {
    content: '-';
    color: var(--clr-accent-dark);
}

/* FAQ answer */
.faq-a {
    padding: 0 var(--s5) var(--s5) calc(var(--s5) + 30px + var(--s3));
    border-top: 1px solid #dbeafe;
    padding-top: var(--s4);
}
.faq-a p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.75;
}
.faq-a p strong { color: var(--clr-primary-dark); }


/* ── TRUST SECTION: Slight differentiation ───────────────────────────────── */
.trust-section { background: var(--clr-bg-alt); }
.trust-badge-icon { font-size: 1.8rem; }
.trust-badge-item {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--s4) var(--s5);
    min-width: 100px;
    box-shadow: var(--shadow-sm);
}


/* ── CTA BANNER: Gold gradient — plum text ───────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
    color: #0e2d4a;
}
.cta-copy h2 { color: #0e2d4a; }
.cta-copy p { color: rgba(14,45,74,0.80); opacity: 1; }
.cta-banner .btn-cta {
    background: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    color: var(--clr-white);
    box-shadow: 0 4px 20px rgba(14,45,74,0.30);
}
.cta-banner .btn-cta:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-white);
}
.cta-banner .btn-cta-outline {
    border-color: rgba(14,45,74,0.30);
    color: #0e2d4a;
    background: rgba(14,45,74,0.06);
}
.cta-banner .btn-cta-outline:hover {
    background: rgba(14,45,74,0.12);
    border-color: rgba(14,45,74,0.50);
    color: #0e2d4a;
}

/* ── FOOTER: Three-zone redesign ─────────────────────────────────────────── */

/* Hide the old site-footer entirely — replaced by hmp-footer */
.site-footer { display: none !important; }

/* ─── hmp-footer wrapper ─── */
.hmp-footer {
    font-family: var(--font);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
}

/* ─── Zone 1: Brand + CTA ─── */
.hmp-footer__brand {
    background: var(--clr-primary-dark);
    border-top: 4px solid var(--clr-accent);
    padding: 52px 0 44px;
}
.hmp-footer__brand-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.hmp-footer__brand-left { flex: 1; min-width: 260px; }

.hmp-footer__logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}
.hmp-footer__logo img {
    filter: brightness(0) invert(1);
    opacity: 0.88;
    max-width: 160px;
    height: auto;
}
.hmp-footer__logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--clr-white);
    text-decoration: none;
    margin-bottom: 16px;
    display: block;
}

.hmp-footer__tagline {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin-bottom: 20px;
}
.hmp-footer__tagline span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.hmp-footer__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hmp-pill {
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.35);
    color: var(--clr-accent);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

/* CTA box */
.hmp-footer__cta-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 32px;
    text-align: center;
    min-width: 240px;
    max-width: 300px;
}
.hmp-cta-box__label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 6px;
}
.hmp-cta-box__price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 18px;
}
.hmp-cta-box__price strong { color: var(--clr-accent); font-size: 1.9rem; }
.hmp-cta-box__btn {
    display: block;
    background: var(--clr-accent);
    color: #0e2d4a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none !important;
    margin-bottom: 10px;
    transition: background 0.2s, transform 0.15s;
}
.hmp-cta-box__btn:hover {
    background: var(--clr-accent-dark);
    color: var(--clr-white);
    transform: translateY(-1px);
}
.hmp-cta-box__sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
}
.hmp-cta-box__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    margin-bottom: 0;
}
.hmp-cta-box__phone a { color: rgba(255,255,255,0.9); text-decoration: none; }
.hmp-cta-box__phone a:hover { color: var(--clr-accent); }

/* ─── Zone 2: Navigation links ─── */
.hmp-footer__nav {
    background: #0c1929;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hmp-footer__nav-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}
.hmp-footer__nav-heading {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-accent);
    margin-bottom: 14px;
}
.hmp-footer__nav-group ul { list-style: none; padding: 0; margin: 0; }
.hmp-footer__nav-group ul li { margin-bottom: 8px; }
.hmp-footer__nav-group ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.855rem;
    text-decoration: none;
    transition: color 0.15s;
}
.hmp-footer__nav-group ul a:hover {
    color: var(--clr-accent);
    text-decoration: none;
}

/* Payment badges column */
.hmp-payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.hmp-payment-badges span {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.55);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
    letter-spacing: 0.03em;
}
.hmp-secure-note {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.73rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ─── Zone 3: Legal disclaimer ─── */
.hmp-footer__disclaimer {
    background: #080f1a;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.hmp-footer__disclaimer-inner p {
    font-size: 0.755rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.65;
    margin-bottom: 6px;
}
.hmp-footer__disclaimer-inner p:last-child { margin-bottom: 0; }
.hmp-footer__disclaimer-inner strong { color: rgba(255,255,255,0.5); }
.hmp-footer__reg { margin-top: 6px; }

/* ─── Zone 4: Copyright bar ─── */
.hmp-footer__bar {
    background: #04090f;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.hmp-footer__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.3);
}
.hmp-footer__legal-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hmp-footer__legal-links a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 0.76rem;
    transition: color 0.15s;
}
.hmp-footer__legal-links a:hover { color: var(--clr-accent); }

/* Responsive */
@media (max-width: 960px) {
    .hmp-footer__nav-inner { grid-template-columns: repeat(3, 1fr); }
    .hmp-footer__nav-group--payments { grid-column: span 1; }
}
@media (max-width: 640px) {
    .hmp-footer__brand-inner { flex-direction: column; }
    .hmp-footer__cta-box { max-width: 100%; width: 100%; }
    .hmp-footer__nav-inner { grid-template-columns: 1fr 1fr; }
    .hmp-footer__nav-group--payments { grid-column: span 2; }
    .hmp-footer__bar-inner { flex-direction: column; text-align: center; }
    .hmp-footer__legal-links { justify-content: center; }
}


/* ── TERMINAL CARDS SECTION ──────────────────────────────────────────────── */
.hmp-terminals-section {
    background: var(--clr-bg-alt);
    padding: var(--s16) 0;
}

.hmp-terminals-header {
    text-align: center;
    margin-bottom: 48px;
}
.hmp-terminals-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--clr-accent-light);
    color: var(--clr-accent-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(249,115,22,0.3);
}
.hmp-terminals-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--clr-primary-dark);
    margin-bottom: 10px;
}
.hmp-terminals-header p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* 2×2 grid of terminal cards */
.hmp-terminals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
}
@media (max-width: 680px) {
    .hmp-terminals-grid { grid-template-columns: 1fr; }
}

.hmp-terminal-card {
    background: var(--clr-white);
    border-radius: 16px;
    border: 1.5px solid var(--clr-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.hmp-terminal-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* Coloured label badge top-left */
.hmp-terminal-card__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 0 0 12px 0;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--clr-white);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.hmp-terminal-card--t2 .hmp-terminal-card__label { background: var(--clr-accent-dark); }
.hmp-terminal-card--t3 .hmp-terminal-card__label { background: #0891b2; }
.hmp-terminal-card--t4 .hmp-terminal-card__label { background: #7c3aed; }
.hmp-terminal-card--t5 .hmp-terminal-card__label { background: #b45309; }

.hmp-terminal-card--t2 { border-top: 3px solid var(--clr-accent-dark); }
.hmp-terminal-card--t3 { border-top: 3px solid #0891b2; }
.hmp-terminal-card--t4 { border-top: 3px solid #7c3aed; }
.hmp-terminal-card--t5 { border-top: 3px solid #b45309; }

.hmp-terminal-card__body {
    padding: 16px 24px 20px;
    flex: 1;
}
.hmp-terminal-card__body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-primary-dark);
    margin-bottom: 8px;
}
.hmp-terminal-card__body p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}
.hmp-terminal-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hmp-terminal-card__features li {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    padding-left: 18px;
    position: relative;
}
.hmp-terminal-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
    font-weight: 700;
}

.hmp-terminal-card__btn {
    display: block;
    margin: 0 24px 20px;
    padding: 11px 20px;
    background: var(--clr-primary-dark);
    color: var(--clr-white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    text-decoration: none !important;
    transition: background 0.15s;
}
.hmp-terminal-card--t2 .hmp-terminal-card__btn:hover { background: var(--clr-accent-dark); color: #fff; }
.hmp-terminal-card--t3 .hmp-terminal-card__btn:hover { background: #0891b2; color: #fff; }
.hmp-terminal-card--t4 .hmp-terminal-card__btn:hover { background: #7c3aed; color: #fff; }
.hmp-terminal-card--t5 .hmp-terminal-card__btn:hover { background: #b45309; color: #fff; }

/* Social proof bar */
.hmp-terminals-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--clr-primary-dark);
    border-radius: 12px;
    padding: 24px 32px;
    flex-wrap: wrap;
}
.hmp-proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 28px;
    gap: 4px;
}
.hmp-proof-stat strong {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--clr-accent);
    line-height: 1;
}
.hmp-proof-stat span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    max-width: 160px;
    line-height: 1.4;
}
.hmp-proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
@media (max-width: 680px) {
    .hmp-terminals-proof { gap: 0; padding: 20px 16px; }
    .hmp-proof-divider { display: none; }
    .hmp-proof-stat { padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; }
    .hmp-proof-stat:last-child { border-bottom: none; }
}


/* ── PARKING LOCATION PAGE: Emerald accent for terminal headers ───────────── */
.parking-instructions-container .hero-section {
    background: linear-gradient(135deg, #071c2e 0%, var(--clr-primary-dark) 50%, #1a0535 100%);
    border: 1px solid rgba(249,115,22,0.2);
    position: relative;
    overflow: hidden;
}
.parking-instructions-container .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249,115,22,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249,115,22,0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.parking-instructions-container .hero-content { position: relative; z-index: 1; }

.parking-instructions-container .terminal-header {
    background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-dark) 100%);
    border-bottom-color: rgba(5,150,105,0.3);
}
.parking-instructions-container .terminal-header h3 { color: #0e2d4a; }
.parking-instructions-container .terminal-icon { filter: none; }

.parking-instructions-container .location-highlight {
    background: var(--clr-accent-light);
    color: var(--clr-accent-dark);
    font-weight: 700;
}

.parking-instructions-container .step-number {
    background: var(--clr-accent);
    color: #0e2d4a;
    font-weight: 800;
    border-radius: var(--radius);
    width: 36px;
    height: 36px;
}

.parking-instructions-container .card-header {
    background: var(--clr-primary-light);
    border-left: 4px solid var(--clr-accent);
}

.parking-instructions-container .map-link-button {
    background: var(--clr-accent);
    color: #0e2d4a;
    font-weight: 700;
}
.parking-instructions-container .map-link-button:hover {
    background: var(--clr-accent-dark);
    color: var(--clr-white);
}

.parking-instructions-container .contact-link,
.parking-instructions-container .contact-button {
    background: var(--clr-accent);
    color: #0e2d4a;
}
.parking-instructions-container .contact-link:hover,
.parking-instructions-container .contact-button:hover {
    background: var(--clr-accent-dark);
    color: var(--clr-white);
}

.parking-instructions-container .contact-card {
    background: linear-gradient(135deg, #f0f9ff, var(--clr-accent-light));
    border: 1px solid rgba(249,115,22,0.3);
}

/* Section titles — emerald icon accent */
.parking-instructions-container .section-title {
    color: var(--clr-primary-dark);
    border-left: 4px solid var(--clr-accent);
    padding-left: var(--s4);
}
