/* ============================================================
   RUG LIFE — Full Website  |  style.css
   Brand: 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;
    --nav-h:        88px;
}

/* ── 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 { 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; }
: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); }
@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: 3.5rem 0; }
.section-xs { padding: 2rem 0; }
.text-center { text-align: center; }

/* ── 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-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); }
.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-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.85rem; }

/* ── Section Labels ─────────────────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 1.5px;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 1.1rem;
}
.section-h2.on-dark { color: var(--white); }
.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.75;
}
.section-lead.on-dark { color: rgba(255,255,255,0.75); }

/* ── 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; }

/* ── Site Header / Navigation ──────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 16px rgba(14,31,94,0.07);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    gap: 1rem;
}
.site-logo { flex-shrink: 0; }
.site-logo img { height: 72px; width: auto; display: block; }

/* Desktop Nav */
.site-nav { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
    display: block;
    padding: 0.5rem 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--navy);
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--light-bg); }
.nav-link.active { color: var(--navy); font-weight: 700; }

/* Dropdown */
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-toggle::after { content: ''; display: block; width: 8px; height: 5px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%230E1F5E'/%3E%3C/svg%3E") no-repeat center; transition: transform var(--transition); }
.nav-item:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(-6px);
    z-index: 300;
    padding: 0.5rem;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background: var(--light-bg); color: var(--blue); }
.nav-dropdown a .dd-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Nav CTA + Phone */
.nav-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: 1.25rem; }
.nav-phone { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 0.35rem; white-space: nowrap; }
.nav-phone svg { width: 15px; height: 15px; }
.nav-cta { /* uses .btn .btn-gold .btn-sm */ }

/* Hamburger (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: none;
    transition: background var(--transition);
}
.hamburger:hover { background: var(--light-bg); }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 190;
    background: var(--navy-dark);
    padding: 6rem 1.5rem 2rem;
    overflow-y: auto;
    flex-direction: column;
    gap: 0.25rem;
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer .mob-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-drawer .mob-link.active { color: var(--gold); }
.mobile-drawer .mob-link svg { opacity: 0.5; transition: transform 0.2s; }
.mobile-drawer .mob-link.is-open svg { transform: rotate(180deg); }
.mob-sub { display: none; padding-left: 1rem; }
.mob-sub.is-open { display: block; }
.mob-sub a { display: block; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.65); padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mob-sub a:hover { color: var(--gold); }
.mob-cta { margin-top: 1.5rem; }
.mob-phone { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 1px; color: var(--gold); margin-top: 1.5rem; text-align: center; display: block; }

/* ── Homepage Hero ─────────────────────────────────────────── */
.hero {
    min-height: calc(100vh - var(--nav-h));
    background: var(--navy);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 65% 50%, rgba(43,77,189,0.30) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 2rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232,181,48,0.15);
    border: 1.5px solid rgba(232,181,48,0.5);
    color: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    width: fit-content;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
    text-shadow: 4px 4px 0 rgba(6,14,47,0.5);
    margin-bottom: 1.5rem;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero-trust-item strong { color: var(--sparkle-blue); }

.hero-visual {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.hero-visual img.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
}
.hero-mascot-float {
    position: absolute;
    bottom: -10px;
    left: -20px;
    width: 200px;
    z-index: 3;
    filter: drop-shadow(0 8px 24px rgba(6,14,47,0.5));
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar { background: var(--gold); padding: 1.5rem 0; }
.stats-bar .container { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; letter-spacing: 1.5px; color: var(--navy-dark); line-height: 1; }
.stat-label { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(14,31,94,0.65); margin-top: 0.2rem; }

/* ── Page Hero (interior pages) ────────────────────────────── */
.page-hero {
    background: var(--navy);
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 120% at 100% 50%, rgba(43,77,189,0.25) 0%, transparent 65%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--gold); }
.page-hero-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.05;
    text-shadow: 3px 3px 0 rgba(6,14,47,0.4);
    margin-bottom: 1rem;
}
.page-hero h1 .gold { color: var(--gold); }
.page-hero .hero-lead {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    line-height: 1.75;
}
.page-hero-mascot {
    position: absolute;
    right: 1.5rem;
    bottom: -20px;
    width: 220px;
    opacity: 0.9;
    filter: drop-shadow(0 8px 24px rgba(6,14,47,0.4));
}

/* ── Service Cards ─────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(43,77,189,0.3);
}
.card-img {
    background: var(--light-bg);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 200px;
    overflow: hidden;
    padding-top: 1rem;
}
.card-img img { height: 185px; width: auto; object-fit: contain; }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--light-bg);
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.65rem;
    line-height: 1.25;
}
.card-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.card-features { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.25rem; }
.card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
}
.card-features li::before { content: '✦'; color: var(--gold); font-size: 0.65rem; }
.card-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-top: auto;
    transition: gap var(--transition), color var(--transition);
}
.card-cta:hover { gap: 0.7rem; color: var(--navy); }

/* ── Process Steps ─────────────────────────────────────────── */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    position: relative;
}
.process-step:nth-child(even) { direction: rtl; }
.process-step:nth-child(even) > * { direction: ltr; }
.process-img {
    position: relative;
    background: var(--light-bg);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-top: 2rem;
}
.process-img img { height: 340px; width: auto; object-fit: contain; }
.process-img-accent {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 5rem;
    letter-spacing: 2px;
    color: rgba(14,31,94,0.06);
    line-height: 1;
    user-select: none;
}
.process-body {
    background: var(--white);
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.process-num {
    font-family: var(--font-display);
    font-size: 5rem;
    letter-spacing: 2px;
    color: var(--light-bg);
    line-height: 1;
    margin-bottom: -1rem;
    user-select: none;
}
.process-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.process-body h3 span { color: var(--gold); }
.process-body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; max-width: 420px; }
.process-divider { height: 2px; background: linear-gradient(to right, var(--gold), transparent); width: 60px; margin: 1rem 0 1.25rem; }

/* Alternating bg */
.process-step:nth-child(odd)  .process-body { background: var(--white); }
.process-step:nth-child(even) .process-body { background: var(--off-white); }
.process-step:nth-child(even) .process-img  { background: var(--light-bg); }

/* ── Feature Grid ──────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-box { text-align: center; }
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    border: 2px solid var(--border);
}
.feature-box h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; letter-spacing: 0.75px; text-transform: uppercase; color: var(--navy); margin-bottom: 0.65rem; }
.feature-box p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; max-width: 280px; margin: 0 auto; }

/* ── Story / About Grid ────────────────────────────────────── */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.story-grid.reverse { }
.story-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.story-visual img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); }
.story-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
}
.story-accent strong { font-family: var(--font-display); font-size: 2rem; letter-spacing: 1px; color: var(--navy-dark); line-height: 1; }
.story-accent span { font-family: var(--font-heading); font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy-dark); line-height: 1.2; margin-top: 0.2rem; }
.story-pillars { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.pillar { display: flex; gap: 1.1rem; align-items: flex-start; }
.pillar-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.55rem; }
.pillar h4 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 0.35rem; }
.pillar p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ── Process Teaser (dark) ─────────────────────────────────── */
.process-teaser { background: var(--navy); }
.process-teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0 2.5rem;
}
.teaser-step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    position: relative;
    transition: background var(--transition), border-color var(--transition);
}
.teaser-step:hover { background: rgba(255,255,255,0.09); border-color: rgba(232,181,48,0.3); }
.teaser-num {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 1.5px;
    color: rgba(232,181,48,0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.teaser-step h4 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; }
.teaser-step p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── Fleet Section ─────────────────────────────────────────── */
.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.fleet-img { border-radius: var(--radius-lg); overflow: hidden; }
.fleet-img img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.4s ease; }
.fleet-img:hover img { transform: scale(1.03); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
    background: var(--navy);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 120% at 50% 50%, rgba(232,181,48,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: 2px; color: var(--white); text-shadow: 3px 3px 0 rgba(6,14,47,0.4); margin-bottom: 0.75rem; }
.cta-banner h2 .gold { color: var(--gold); }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 2.25rem; line-height: 1.75; }
.cta-banner .cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.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); }
.faq-item[open] { border-color: rgba(43,77,189,0.25); }
.faq-q {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--navy);
    user-select: none;
    gap: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-item[open] .faq-q { background: var(--navy); color: var(--white); border-radius: var(--radius) var(--radius) 0 0; }
.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 20 20'%3E%3Cpath d='M5 7l5 5 5-5' stroke='%230E1F5E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center; transition: transform var(--transition); }
.faq-item[open] .faq-q::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 7l5 5 5-5' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); transform: rotate(180deg); }
.faq-a { padding: 1.1rem 1.5rem 1.3rem; border-top: 1px solid rgba(14,31,94,0.08); font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ── Contact Form ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 1.5px; color: var(--navy); margin-bottom: 0.75rem; }
.contact-info h2 .gold { color: var(--gold); }
.contact-info p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-detail-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--light-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--navy); }
.contact-detail-text strong { display: block; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.15rem; }
.contact-detail-text span { font-size: 0.95rem; color: var(--text-dark); }
.contact-form-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark); background: var(--off-white); transition: border-color var(--transition), box-shadow var(--transition); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(107,123,164,0.6); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'%3E%3Cpath d='M0 0l6 7 6-7z' fill='%230E1F5E'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 10px; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-req { color: var(--gold); margin-left: 2px; }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }

/* ── Site Footer ───────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-col-logo img { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 240px; margin-bottom: 1.25rem; }
.footer-phone { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 1px; color: var(--gold); display: block; margin-bottom: 0.25rem; }
.footer-hours { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.footer-col-heading { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 0.65rem; line-height: 1.5; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 0.2rem; color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0; }
.footer-bottom { padding: 1.25rem 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-credits { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-credits a { color: rgba(255,255,255,0.35); }
.footer-credits a:hover { color: rgba(255,255,255,0.6); }

/* ── Service Page Layout ───────────────────────────────────── */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3.5rem; align-items: start; }
.service-main h2 { font-family: var(--font-display); font-size: 2rem; letter-spacing: 1.5px; color: var(--navy); margin: 2rem 0 0.75rem; }
.service-main p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.service-features-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0 2rem; }
.service-features-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-dark); }
.service-features-list li::before { content: '✦'; color: var(--gold); font-size: 0.7rem; margin-top: 0.35rem; flex-shrink: 0; }
.service-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.sidebar-card { background: var(--navy); border-radius: var(--radius-lg); padding: 2rem; color: var(--white); margin-bottom: 1.25rem; }
.sidebar-card h3 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.sidebar-card .sidebar-phone { font-family: var(--font-display); font-size: 2rem; letter-spacing: 1px; color: var(--gold); display: block; margin: 0.5rem 0 0.25rem; }
.sidebar-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 1.25rem; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-links a { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); padding: 0.6rem 0.75rem; border-radius: 6px; background: rgba(14,31,94,0.04); transition: background var(--transition), color var(--transition); }
.sidebar-links a:hover { background: rgba(14,31,94,0.08); color: var(--blue); }
.sidebar-links a .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.related-services { margin-top: 4rem; padding-top: 3rem; border-top: 2px solid var(--border); }
.related-services h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.related-card { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.25rem; transition: all var(--transition); }
.related-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.related-card h4 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 0.4rem; }
.related-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.related-card a { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--blue); }

/* ── Utilities ─────────────────────────────────────────────── */
.gold { color: var(--gold); }
.on-dark { color: var(--white); }
.bg-light { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.divider-gold { width: 60px; height: 3px; background: var(--gold); margin: 1rem 0 1.5rem; border-radius: 2px; }
.divider-gold.centered { margin: 1rem auto 1.5rem; }

/* ── h1 Location Subtitle ───────────────────────────────────── */
.h1-location { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; margin-top: 0.4rem; }

/* ── Step Mini Cards (What to Expect) ──────────────────────── */
.steps-mini { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.25rem 0 2rem; }
.step-mini { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; align-items: start; padding: 1rem 1.25rem; background: var(--off-white); border-radius: var(--radius); border-left: 3px solid var(--gold); }
.step-mini-num { width: 2rem; height: 2rem; background: var(--navy); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.5px; flex-shrink: 0; margin-top: 0.1rem; }
.step-mini-body h4 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); margin: 0 0 0.25rem; }
.step-mini-body p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Contact Form Radio Group ───────────────────────────────── */
.radio-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.25rem; }
.radio-option { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; padding: 0.6rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.88rem; color: var(--text-dark); transition: border-color 0.2s, background 0.2s; }
.radio-option:has(input:checked) { border-color: var(--blue); background: rgba(43,77,189,0.05); }
.radio-option input[type="radio"] { accent-color: var(--blue); width: 16px; height: 16px; margin: 0; flex-shrink: 0; }
.weekend-warning { display: none; font-size: 0.8rem; color: #b91c1c; margin-top: 0.35rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .process-teaser-grid { grid-template-columns: repeat(2, 1fr); }
    .service-layout { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero-mascot { width: 160px; right: 1rem; }
}

@media (max-width: 1024px) {
    .nav-list, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .story-visual img { height: 360px; }
}

@media (max-width: 768px) {
    :root { --nav-h: 68px; }
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content { padding: 3rem 1.5rem; }
    .hero h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
    .services-grid { grid-template-columns: 1fr; }
    .process-step, .process-step:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
    .process-img { min-height: 260px; padding-top: 1.5rem; }
    .process-img img { height: 220px; }
    .process-body { padding: 2rem 1.5rem; }
    .process-num { font-size: 4rem; }
    .fleet-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 2.5rem 0 2rem; }
    .page-hero h1 { font-size: 2.4rem; }
    .page-hero-mascot { display: none; }
    .stats-bar .container { justify-content: center; gap: 2rem; }
}

@media (max-width: 480px) {
    .section { padding: 3.5rem 0; }
    .hero h1 { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; }
    .cta-banner .cta-btns { flex-direction: column; align-items: center; }
    .process-teaser-grid { grid-template-columns: 1fr; }
}
