/* ==========================================================================
   EasyRide Rent a Car Islamabad — stylesheet
   Design tokens
   ========================================================================== */
:root {
    /* Brand palette */
    --navy: #0A2E5C;
    --navy-deep: #071D3D;
    --navy-tint: #14417F;
    --gold: #D4AF37;
    --gold-light: #E9CD6E;
    --white: #FFFFFF;
    --cream: #F7F4EC;
    --ink: #16202E;
    --slate: #5B6472;
    --line: #E4E0D2;
    --line-on-navy: rgba(255, 255, 255, 0.14);
    --success: #2F7A4B;

    /* Type */
    --font-display: "Fraunces", "Georgia", serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "IBM Plex Mono", "Courier New", monospace;

    /* Layout */
    --container: 1180px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --shadow-card: 0 12px 32px rgba(10, 46, 92, 0.10);
    --shadow-lift: 0 20px 48px rgba(10, 46, 92, 0.18);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .5em; line-height: 1.15; color: var(--navy); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

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

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

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}

.section { padding: 88px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.92); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--slate); font-size: 1.05rem; }
.section--navy .section-head p { color: rgba(255,255,255,0.72); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1.5px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 10px 24px rgba(212,175,55,0.35); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-light { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-tint); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp { background: #25D366; color: #073b1f; }
.btn-whatsapp:hover { background: #34e07a; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 46, 92, 0.97);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line-on-navy);
}
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.28rem;
    letter-spacing: 0.01em;
}
.brand-mark {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; color: var(--gold-light); font-weight: 500; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 999px;
    transition: background .15s ease, color .15s ease;
}
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,0.1); color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.3); color: var(--white);
    transition: background .15s ease;
}
.icon-btn:hover { background: rgba(255,255,255,0.12); }
.icon-btn svg { width: 18px; height: 18px; }

.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    border: none; background: transparent; color: var(--white);
    align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    overflow: hidden;
    padding: 76px 0 190px;
}
.hero-skyline {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%; height: auto;
    opacity: 0.9;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.hero-copy .eyebrow { color: var(--gold-light); }
.hero-copy h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.hero-copy h1 em { font-style: normal; color: var(--gold-light); }
.hero-copy p.lede {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.78);
    max-width: 480px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stats { display: flex; gap: 30px; margin-top: 44px; }
.hero-stats div strong { display: block; font-family: var(--font-mono); font-size: 1.5rem; color: var(--gold-light); }
.hero-stats div span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; }

/* Floating booking form */
.booking-form {
    position: relative;
    z-index: 3;
    margin-top: -130px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: end;
}
.booking-form .field { grid-column: span 1; display: flex; flex-direction: column; gap: 6px; }
.booking-form .field.wide { grid-column: span 2; }
.booking-form label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); }
.booking-form input, .booking-form select {
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    background: var(--cream);
    color: var(--ink);
}
.booking-form input:focus, .booking-form select:focus { border-color: var(--gold); outline: none; }
.booking-form .submit-cell { grid-column: span 1; }

/* ==========================================================================
   Fleet cards
   ========================================================================== */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line);
    display: flex; flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.fleet-media { position: relative; aspect-ratio: 4/3; background: linear-gradient(160deg, var(--navy), var(--navy-tint)); overflow: hidden; }
.fleet-media img { width: 100%; height: 100%; object-fit: cover; }
.fleet-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--gold); color: var(--navy-deep);
    font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
    padding: 5px 10px; border-radius: 999px; letter-spacing: 0.04em;
}
.fleet-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.fleet-body h3 { font-size: 1.2rem; margin-bottom: 0; }
.fleet-category { color: var(--slate); font-size: 0.85rem; margin: 0; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0; }
.fleet-specs span {
    font-size: 0.74rem; font-weight: 600; color: var(--navy);
    background: var(--cream); border: 1px solid var(--line);
    padding: 5px 10px; border-radius: 999px;
}
.fleet-rates { display: flex; justify-content: space-between; align-items: baseline; margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--line); }
.fleet-rates .rate { display: flex; flex-direction: column; }
.fleet-rates .rate span { font-size: 0.7rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.04em; }
.fleet-rates .rate strong { font-family: var(--font-mono); color: var(--navy); font-size: 1.15rem; }
.fleet-body .btn { margin-top: 6px; }

/* ==========================================================================
   Route line motif (signature element)
   ========================================================================== */
.route-divider { display: block; width: 100%; height: 46px; }
.route-divider path { stroke: var(--gold); }

.tours-route { position: relative; }
.tours-route svg.route-path { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.tour-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.tour-card {
    background: var(--white); border-radius: var(--radius-md);
    overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card);
    display: flex; flex-direction: column;
}
.tour-media { aspect-ratio: 4/3; background: linear-gradient(160deg, var(--navy-tint), var(--navy)); overflow: hidden; position: relative; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; }
.tour-km {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(7,29,61,0.82); color: var(--gold-light);
    font-family: var(--font-mono); font-size: 0.68rem; padding: 4px 9px; border-radius: 999px;
}
.tour-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tour-body h3 { font-size: 1.05rem; margin-bottom: 0; }
.tour-duration { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.tour-body p { color: var(--slate); font-size: 0.9rem; margin-bottom: 4px; }
.tour-body .btn { margin-top: auto; }

/* ==========================================================================
   Services / Why choose us
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
    padding: 26px 22px; box-shadow: var(--shadow-card);
    transition: transform .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.service-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon svg { width: 24px; height: 24px; color: var(--navy); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.service-card p { color: var(--slate); font-size: 0.88rem; margin: 0; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: var(--radius-md); background: rgba(255,255,255,0.05); border: 1px solid var(--line-on-navy); }
.why-item .service-icon { background: rgba(212,175,55,0.14); }
.why-item .service-icon svg { color: var(--gold-light); }
.why-item h4 { color: var(--white); font-size: 0.98rem; margin: 0 0 4px; font-family: var(--font-body); font-weight: 700; }
.why-item p { color: rgba(255,255,255,0.68); font-size: 0.85rem; margin: 0; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-slider { position: relative; max-width: 720px; margin: 0 auto; text-align: center; min-height: 220px; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-slide p.quote { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; color: var(--navy); line-height: 1.5; }
.testimonial-author { margin-top: 16px; font-weight: 700; color: var(--navy); }
.testimonial-author span { display: block; font-weight: 400; color: var(--slate); font-size: 0.85rem; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.slider-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); padding: 0; }
.slider-dots button.active { background: var(--gold); width: 22px; border-radius: 5px; transition: width .2s ease; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; color: var(--navy); font-size: 1.02rem;
}
.faq-q .plus { font-family: var(--font-mono); font-size: 1.3rem; color: var(--gold); transition: transform .2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--slate); }
.faq-item.open .faq-a { max-height: 260px; }
.faq-a p { padding-bottom: 20px; margin: 0; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
    border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; background: var(--cream);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); outline: none; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .service-icon { flex-shrink: 0; }
.contact-info-item h4 { margin: 0 0 4px; font-size: 0.95rem; color: var(--navy); font-family: var(--font-body); font-weight: 700; }
.contact-info-item p { margin: 0; color: var(--slate); font-size: 0.92rem; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); margin-top: 22px; }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }
.form-alert { padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 0.92rem; font-weight: 600; }
.form-alert.success { background: #E9F6EE; color: var(--success); border: 1px solid #BEE6CC; }
.form-alert.error { background: #FCEDEC; color: #B3261E; border: 1px solid #F5C6C2; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.blog-media { aspect-ratio: 16/10; background: linear-gradient(160deg, var(--navy), var(--navy-tint)); overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-date { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.04em; }
.blog-body h3 { font-size: 1.08rem; margin-bottom: 4px; }
.blog-body p { color: var(--slate); font-size: 0.9rem; }
.blog-body .read-more { margin-top: auto; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.blog-post-body { max-width: 720px; margin: 0 auto; font-size: 1.05rem; color: var(--ink); }
.blog-post-body p { margin-bottom: 1.2em; }

/* ==========================================================================
   Breadcrumbs / page header
   ========================================================================== */
.page-header { background: linear-gradient(180deg, var(--navy), var(--navy-deep)); color: var(--white); padding: 54px 0 42px; }
.page-header h1 { color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-style: italic; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.62); margin-bottom: 14px; }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs .sep { opacity: 0.5; }

/* ==========================================================================
   Reviews / cards on cream (shared)
   ========================================================================== */
.card-plain { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-card); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-on-navy); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.92rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 0.82rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 10px; }
.footer-bottom .legal-links { display: flex; gap: 18px; }
.footer-bottom .legal-links a:hover { color: var(--gold-light); }

/* ==========================================================================
   Floating action buttons
   ========================================================================== */
.floating-actions { position: fixed; right: 22px; bottom: 22px; z-index: 200; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
    transition: transform .18s ease;
}
.fab:hover { transform: translateY(-3px); }
.fab svg { width: 20px; height: 20px; }
.fab-whatsapp { background: #25D366; color: #06331a; }
.fab-book { background: var(--gold); color: var(--navy-deep); }

/* ==========================================================================
   Misc: sticky sub-nav pills, badges, stat strip
   ========================================================================== */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-strip div strong { display: block; font-family: var(--font-mono); font-size: 2rem; color: var(--gold); }
.stat-strip div span { font-size: 0.82rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.05em; }

.tag-pill { display: inline-block; background: var(--cream); border: 1px solid var(--line); color: var(--navy); font-size: 0.78rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .fleet-grid, .services-grid, .tour-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-art { display: none; }
    .booking-form { grid-template-columns: repeat(3, 1fr); }
    .booking-form .field.wide { grid-column: span 3; }
    .booking-form .submit-cell { grid-column: span 3; }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .main-nav, .header-actions .btn-outline-light, .header-actions .icon-btn { display: none; }
    .nav-toggle { display: flex; }
    .header-actions { gap: 8px; }
}

@media (max-width: 640px) {
    .section { padding: 60px 0; }
    .fleet-grid, .services-grid, .tour-grid, .why-grid, .blog-grid { grid-template-columns: 1fr; }
    .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .booking-form { grid-template-columns: 1fr 1fr; padding: 22px; margin-top: -80px;}
    .booking-form .field.wide { grid-column: span 2; }
    .booking-form .submit-cell { grid-column: span 2; }
    .hero { padding-bottom: 130px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* Mobile nav drawer */
.mobile-nav {
    position: fixed; inset: 0; z-index: 300;
    background: var(--navy-deep);
    display: flex; flex-direction: column;
    padding: 24px; transform: translateX(100%);
    transition: transform .28s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-nav-top button { background: none; border: none; color: var(--white); }
.mobile-nav-top button svg { width: 26px; height: 26px; }
.mobile-nav a { display: block; color: var(--white); font-size: 1.25rem; padding: 14px 0; border-bottom: 1px solid var(--line-on-navy); font-family: var(--font-display); }
.mobile-nav .btn { margin-top: 24px; }
