/* ============================================================
   RUG LIFE — Coming Soon Page  |  style.css
   Brand Colours: Navy #0E1F5E · Blue #2B4DBD · Gold #E8B530
   Fonts: Bangers (display) · Oswald (headings) · Open Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Oswald:wght@400;600;700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
    --navy:         #0E1F5E;
    --navy-dark:    #060E2F;
    --blue:         #2B4DBD;
    --blue-light:   #4A6DD4;
    --sparkle-blue: #89CFF0;
    --gold:         #E8B530;
    --gold-dark:    #C99A20;
    --white:        #FFFFFF;
    --off-white:    #F4F7FF;
    --light-bg:     #EEF2FB;
    --border:       #D5DCF0;
    --text-dark:    #0D1A3E;
    --text-muted:   #6B7BA4;

    --font-display: 'Bangers', 'Impact', cursive;
    --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body:    'Open Sans', 'Helvetica Neue', Arial, sans-serif;

    --radius:       10px;
    --radius-lg:    18px;
    --shadow:       0 4px 24px rgba(14,31,94,0.10);
    --shadow-lg:    0 10px 48px rgba(14,31,94,0.18);
    --transition:   0.25s ease;
    --max-width:    1220px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── ADA: Skip link ─────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.2rem;
    border-radius: 0 0 6px 6px;
    text-decoration: none;
    transition: top 0.1s;
}
.skip-link:focus { top: 0; outline: 3px solid var(--navy-dark); outline-offset: 2px; }

/* ── ADA: Focus visible ─────────────────────────────────────── */
:focus { outline: none; }
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}
a:focus-visible,
button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 0;
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 3px rgba(43, 77, 189, 0.2);
}

/* ── ADA: Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Layout ────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5.5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.9rem 1.9rem;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232,181,48,0.40);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.10);
    border-color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ── Button loading / spinner state ────────────────────────── */
@keyframes btn-spin { to { transform: rotate(360deg); } }

.btn[disabled] {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-spinner {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2.5px solid rgba(14, 31, 94, 0.25);
    border-top-color: var(--navy-dark);
    border-radius: 50%;
    animation: btn-spin 0.65s linear infinite;
    flex-shrink: 0;
}

/* ── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
    background: var(--gold);
    color: var(--navy-dark);
    text-align: center;
    padding: 0.55rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    position: relative;
    z-index: 110;
}
.announcement-bar a {
    color: var(--navy-dark);
    font-weight: 700;
    text-decoration: underline;
}
.announcement-bar .sep { margin: 0 0.6rem; opacity: 0.4; }
.sparkle { color: inherit; }

/* ── Site Header ───────────────────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(14,31,94,0.07);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}
.site-header .logo img { height: 66px; width: auto; }

.header-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 0.15rem; }

.header-phone {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color var(--transition);
}
.header-phone:hover { color: var(--blue); }
.header-phone svg { width: 20px; height: 20px; flex-shrink: 0; }

.header-hours {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    background: var(--navy);
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 88vh;
    overflow: hidden;
    position: relative;
}

.hero-text {
    padding: 5rem 2.5rem 5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232,181,48,0.12);
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
}
.hero-badge .dot {
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5.2rem);
    color: var(--white);
    letter-spacing: 2.5px;
    line-height: 1.0;
    text-shadow: 3px 3px 0 rgba(6,14,47,0.5);
}
.hero h1 .gold { color: var(--gold); }

.hero-sub {
    font-size: 1.1rem;
    color: var(--sparkle-blue);
    line-height: 1.75;
    max-width: 490px;
}

.hero-note {
    background: rgba(255,255,255,0.07);
    border-left: 3px solid var(--gold);
    padding: 0.8rem 1.1rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.78);
    max-width: 420px;
}
.hero-note strong { color: var(--gold); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Right side: photo */
.hero-photo {
    position: relative;
    overflow: hidden;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
/* Gradient blends photo edge into navy — tight so photo dominates */
.hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy) 0%, rgba(14,31,94,0.5) 8%, transparent 28%);
    z-index: 1;
    pointer-events: none;
}
/* Decorative sparkle stars on photo */
.hero-photo::after {
    content: '✦';
    position: absolute;
    top: 10%;
    left: 8%;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.6;
    z-index: 2;
    text-shadow: 0 0 20px rgba(232,181,48,0.5);
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
    background: #ffffff;
    border-top: none;
    border-bottom: none;
    padding: 0;
}
.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 2.5rem;
    position: relative;
}
.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; height: 60%;
    width: 1px; background: rgba(14,31,94,0.18);
}
.trust-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14,31,94,0.10);
    border: 1.5px solid rgba(14,31,94,0.22);
    border-radius: 14px;
    color: var(--navy);
}
.trust-icon svg { width: 28px; height: 28px; }
.trust-body {}
.trust-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--navy);
    letter-spacing: 2px;
    line-height: 1;
}
.trust-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.trust-sub {
    font-size: 0.78rem;
    color: rgba(14,31,94,0.65);
    margin-top: 0.15rem;
}
/* Icon-as-hero variant — no stat number, bigger icon */
.trust-item--icon-hero .trust-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(14,31,94,0.13);
    border-color: rgba(14,31,94,0.28);
}
.trust-item--icon-hero .trust-icon svg {
    width: 38px;
    height: 38px;
}
.trust-item--icon-hero .trust-label {
    font-size: 1rem;
    letter-spacing: 0.6px;
}

/* ── About Section ─────────────────────────────────────────── */
.about { background: var(--navy); color: var(--white); }

.about .container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
}

/* Radial glow to make mascot pop against navy */
.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: -5%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 55%,
            rgba(137,207,240,0.18) 0%,
            rgba(232,181,48,0.10) 42%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Gold outer ring accent */
.about-image-wrap::after {
    content: '';
    position: absolute;
    width: 75%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1.5px solid rgba(232,181,48,0.14);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.about-image-wrap img {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    position: relative;
    z-index: 1;
    transform: scale(1.18);
    transform-origin: center center;
    filter: drop-shadow(0 18px 48px rgba(6,14,47,0.7)) drop-shadow(0 0 30px rgba(137,207,240,0.12));
}

.about-content .eyebrow {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 2.25rem;
}

.about-pillars { display: flex; flex-direction: column; gap: 1.75rem; }

.pillar {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}
.pillar-icon {
    width: 46px; height: 46px;
    background: rgba(232,181,48,0.12);
    border: 2px solid rgba(232,181,48,0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--gold);
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-body h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 0.35rem;
}
.pillar-body p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

/* ── Services Section ──────────────────────────────────────── */
.services { background: var(--white); }

.section-intro {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-intro .eyebrow {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}
.section-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--navy);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 0.6rem;
}
.section-intro .intro-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 580px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.service-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.service-img {
    /* Radial glow at the base so the blue mascot pops off the dark ground */
    background:
        radial-gradient(ellipse 70% 55% at 50% 100%, rgba(232,181,48,0.18) 0%, rgba(137,207,240,0.22) 35%, transparent 65%),
        #e8b530 !important;
    height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.service-img img {
    height: 200px;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    transition: transform var(--transition);
    filter: drop-shadow(0 6px 18px rgba(6,14,47,0.55));
}
.service-card:hover .service-img img { transform: scale(1.06) translateY(-5px); }

/* Truck card uses cover image */
.service-img.cover {
    background: var(--navy-dark);
}
.service-img.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    transform: none;
    filter: none;
}
.service-card:hover .service-img.cover img { transform: scale(1.04); }

.service-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.service-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
}
.service-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}
.service-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

/* ── Fleet Section ─────────────────────────────────────────── */
.fleet { background: var(--gold); overflow: hidden; position: relative; }

.fleet-inner {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    min-height: 440px;
    position: relative;
    z-index: 1;
}

.fleet-text {
    padding: 4.5rem 3rem 4.5rem 0;
    color: var(--white);
}
.fleet-text .eyebrow {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.fleet-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    color: var(--navy);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 1.1rem;
}
.fleet-text p {
    font-size: 0.98rem;
    color: rgba(14,31,94,0.80);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 2rem;
}

.fleet-photo {
    position: relative;
    height: 440px;
    overflow: hidden;
}
.fleet-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}
.fleet-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--gold) 0%, rgba(232,181,48,0.5) 10%, transparent 28%);
    z-index: 1;
    pointer-events: none;
}
/* Top/bottom vignette in gold so van feels grounded */
.fleet-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--gold) 0%, transparent 18%),
        linear-gradient(to top,    var(--gold) 0%, transparent 18%);
    z-index: 1;
    pointer-events: none;
}

/* ── FAQ Section ────────────────────────────────────────────── */
.faq { background: var(--white); }

.faq-list {
    max-width: 780px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: var(--light-bg);
    border: 1px solid rgba(14, 31, 94, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: 0 3px 14px rgba(14, 31, 94, 0.08); }
.faq-item[open] {
    border-color: rgba(43, 77, 189, 0.25);
    box-shadow: 0 3px 14px rgba(14, 31, 94, 0.08);
}

.faq-q {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.3px;
    line-height: 1.4;
    user-select: none;
    transition: background var(--transition), color var(--transition);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-item[open] .faq-q { background: var(--navy); color: var(--white); }

.faq-q::after {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E1F5E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform 0.25s ease;
}
.faq-item[open] .faq-q::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.faq-a {
    padding: 1.1rem 1.5rem 1.3rem;
    font-size: 0.93rem;
    color: var(--text-dark);
    line-height: 1.78;
    border-top: 1px solid rgba(14, 31, 94, 0.08);
}

.faq-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.faq-link:hover { color: var(--navy); }

/* ── Contact Section ───────────────────────────────────────── */
.contact { background: var(--light-bg); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }

.contact-mascot { text-align: center; }
.contact-mascot img { max-width: 210px; margin: 0 auto; }

.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}
.detail-icon {
    width: 40px; height: 40px;
    background: var(--navy);
    color: var(--white);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.detail-icon svg { width: 19px; height: 19px; }
.detail-body strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}
.detail-body a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    transition: color var(--transition);
}
.detail-body a:hover { color: var(--navy); }
.detail-body span {
    font-size: 0.92rem;
    color: var(--text-dark);
}

/* Form wrapper */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
}
.form-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    letter-spacing: 2px;
    margin-bottom: 0.35rem;
}
.form-card .form-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.15rem;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--navy);
}
.form-group label .req { color: var(--gold-dark); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230E1F5E' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(43,77,189,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bcd8; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Honeypot — hidden from humans */
.hp-field { display: none !important; visibility: hidden !important; position: absolute !important; }

.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; font-size: 1.05rem; padding: 1.1rem 2rem; }
.form-note {
    font-size: 0.76rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
}

/* Form alert messages */
.alert {
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.alert-error {
    background: #fff1f1;
    border: 1.5px solid #fca5a5;
    color: #991b1b;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: #0E1F5E; color: rgba(255,255,255,0.65); }

.footer-top { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 3.5rem 0; }
.footer-top .container {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo img { height: 100px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p {
    font-size: 0.86rem;
    line-height: 1.75;
    max-width: 280px;
    color: rgba(255,255,255,0.55);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li { font-size: 0.87rem; line-height: 1.5; }
.footer-col ul li a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }

.social-links { display: flex; gap: 0.65rem; margin-top: 0.25rem; }
.social-link {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 1.1rem;
    position: relative;
    cursor: default;
    transition: all var(--transition);
}
.social-link:hover {
    border-color: rgba(232,181,48,0.4);
    color: rgba(232,181,48,0.5);
}
.social-link:hover::after {
    content: 'Coming Soon';
    position: absolute;
    bottom: calc(100% + 7px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0.3rem 0.65rem;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom { padding: 1.3rem 0; }
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-powered {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.22);
    padding: 0.5rem 0 0.8rem;
    letter-spacing: 0.3px;
}
.footer-powered a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-powered a:hover { color: var(--gold); }

/* ── Quote Modal ───────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6,14,47,0.88);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: modalFadeIn 0.22s ease;
}
.modal-overlay[hidden] { display: none !important; }

@keyframes modalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    box-shadow: 0 32px 96px rgba(6,14,47,0.55);
    animation: modalSlideIn 0.25s ease;
}
.modal-card::-webkit-scrollbar { display: none; }
@keyframes modalSlideIn {
    from { transform: translateY(22px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

.modal-header {
    background: var(--navy);
    padding: 1rem 1.5rem 0.9rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}
.modal-header .eyebrow {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.15rem;
}
.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1.5px;
    line-height: 1.05;
    margin-bottom: 0.15rem;
}
.modal-header p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    transition: all var(--transition);
}
.modal-close:hover {
    background: rgba(255,255,255,0.22);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.1rem 1.5rem 1.4rem;
}

/* Reuse form styles — modal form shares same classes */
.modal-body .form-card {
    box-shadow: none;
    border: none;
    padding: 0;
}
.modal-body .form-card h3 { display: none; }
.modal-body .form-card .form-sub { display: none; }

/* Compact field spacing inside modal */
.modal-body .form-group { margin-bottom: 0.65rem; }
.modal-body .form-group label { font-size: 0.7rem; margin-bottom: 0.25rem; }
.modal-body .form-group input,
.modal-body .form-group select,
.modal-body .form-group textarea { padding: 0.55rem 0.85rem; font-size: 0.88rem; }
.modal-body .form-group textarea { min-height: 70px; }
.modal-body .form-row { gap: 0.65rem; }
.modal-body .form-submit { margin-top: 0.75rem; }
.modal-body .form-note { font-size: 0.75rem; margin-top: 0.5rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr 1fr; }
    .hero-text { padding: 4rem 2.5rem 4rem 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-inner { grid-template-columns: 50% 50%; }
}

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-text { padding: 3.5rem 2rem 2rem; text-align: center; align-items: center; }
    .hero h1 { font-size: 3rem; }
    .hero-badge { margin: 0 auto; }
    .hero-note { text-align: left; }
    .hero-sub { max-width: 100%; text-align: left; }
    .hero-photo { height: 380px; }
    .hero-photo::before { background: linear-gradient(to bottom, var(--navy) 0%, rgba(14,31,94,0.2) 30%, transparent 60%); }

    .trust-bar .container { grid-template-columns: 1fr; }
    .trust-item:not(:last-child)::after { display: none; }
    .trust-item:not(:last-child) { border-bottom: 1px solid var(--border); }
    .trust-item { padding: 1.5rem 2rem; }

    .about .container { grid-template-columns: 1fr; gap: 2rem; }
    .about-image-wrap { max-width: 400px; margin: 0 auto; }
    .about-image-wrap img { transform: scale(1.0); }
    .about-badge { right: 0; bottom: -1.2rem; }

    .fleet-inner { grid-template-columns: 1fr; }
    .fleet-photo { height: 280px; }
    .fleet-text { padding: 3rem 2rem; }
    .fleet-photo::before { background: linear-gradient(to bottom, var(--navy) 0%, transparent 40%); }

    .faq-list { margin-left: 0; margin-right: 0; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-mascot { display: none; }

    .footer-top .container { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .section { padding: 3.5rem 0; }
    .announcement-bar { font-size: 0.78rem; }
    .announcement-bar .sep { display: none; }
    .site-header .logo img { height: 52px; }
    .header-phone { font-size: 1.1rem; }
    .hero h1 { font-size: 2.6rem; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; }
    .hero-photo { height: 280px; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top .container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
    .form-card { padding: 1.75rem; }
    .modal-card { max-height: 96vh; border-radius: var(--radius); }
    .modal-header { padding: 1.4rem 1.25rem 1.2rem; }
    .modal-body { padding: 1.25rem; }
}
