:root {
    --primary-blue: #054A8A;
    --accent-orange: #F79320;
    --text-main: #5f6f82;
    --text-soft: #7c8b9d;
    --border: #e2e7ec;
    --bg-light: #f6f8fb;
    --white: #ffffff;
    --banner-blue: #054A8A;
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
    --radius: 14px;
    --container: 1120px;
}

/* =========================
   NAVBAR
========================= */
.ss-navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(22,59,115,.10);
    padding: .9rem 0;
}

.ss-logo {
    height: 60px !important;
    width: auto !important;
    display: block !important;
}

.ss-navbar .nav-link {
    font-weight: 700;
    color: var(--ss-navy);
    opacity: .92;
    padding: .5rem .85rem;
}

.ss-navbar .nav-link:hover {
    opacity: 1;
}

.ss-btn-quote {
    background: var(--ss-gold) !important;
    color: #ffffff !important;
    font-weight: 800;
    border-radius: 10px;
    padding: .65rem 1.15rem;
    border: none;
    box-shadow: 0 10px 18px rgba(215,154,56,.18);
    text-decoration: none;
}

.ss-btn-quote:hover {
    background: #054A8A;
    color: #fff !important;
}

.ss-nav-toggle {
    border: 1px solid rgba(22,59,115,.18);
    border-radius: 10px;
}

/* RESET */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-main);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* GLOBAL */
.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    width: min(980px, calc(100% - 32px));
}

.section {
    padding: 72px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-title {
    margin: 0 0 34px;
    text-align: center;
    color: var(--primary-blue);
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.2;
    font-weight: 700;
}

/* HERO */
.hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
    background: url("/assets/images/about-us-hero-1.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.882);
}

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

.hero h1 {
    margin: 0 0 10px;
    color: var(--primary-blue);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.15;
    font-weight: 700;
}

.hero p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
}

/* CONTACT GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #e5e9ef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.contact-card.featured {
    border-color: #efb26a;
}

.card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-card h3 {
    margin: 0 0 10px;
    color: var(--primary-blue);
    font-size: 1.3rem;
    line-height: 1.3;
}

.contact-card p {
    margin: 0 0 8px;
    color: var(--text-soft);
    font-size: 0.98rem;
}

.contact-card a,
.contact-card strong {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
}

/* INCLUDES */
.includes-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--primary-blue);
    font-size: 1rem;
}

.bullet-icon {
    width: 16px;
    min-width: 16px;
    margin-top: 3px;
}

.bullet-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* EMERGENCY */
.emergency-card {
    background: var(--banner-blue);
    border-radius: 18px;
    padding: 42px 32px 34px;
    text-align: center;
    color: var(--white);
}

.emergency-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}

.emergency-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.emergency-card h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.2;
}

.emergency-text {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.02rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 12px;
}

.stat-item h3 {
    margin: 0 0 6px;
    color: #f7931f;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.1;
}

.stat-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* PROMISE */
.promise-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 34px 28px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.promise-box p {
    max-width: 820px;
    margin: 0 auto 22px;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-soft);
}

.promise-box h3 {
    margin: 0 0 26px;
    color: var(--primary-blue);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.cta-button {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    transition: 0.25s ease;
}

.cta-button:hover {
    opacity: 0.9;
}

/* TABLET */
@media (max-width: 900px) {
    .section {
        padding: 56px 0;
    }

    .contact-grid,
    .includes-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero {
        min-height: 240px;
        padding: 50px 0;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .container,
    .narrow {
        width: calc(100% - 24px);
    }

    .section {
        padding: 44px 0;
    }

    .section-title {
        margin-bottom: 24px;
    }

    .contact-card,
    .includes-box,
    .promise-box,
    .emergency-card {
        padding: 20px 16px;
    }

    .hero {
        min-height: 210px;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .contact-card h3 {
        font-size: 1.15rem;
    }

    .emergency-text,
    .promise-box p {
        font-size: 0.95rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   FOOTER (TIGHTER HEIGHT)
========================= */
.ss-footer {
    background: #1f4f88;
    color: #ffffff;
    font-family: "Arimo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    padding: 1rem 0 0;
    text-align: left;

    /* was 4.25rem */
}

/* inner layout */
.ss-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 0rem;
    justify-items: start;

    /* was 3rem bottom */
    display: grid;
    grid-template-columns: 1.2fr 1px 1.4fr 1px 1fr;
    gap: 1.5rem;

    /* was 3rem */
    align-items: start;
}

.ss-footer-col {
    min-width: 0;
}

.ss-footer-divider {
    width: 1px;
    background: rgba(255,255,255,.25);
    height: 100%;
}

/* BRAND BLOCK */
.ss-footer-brandblock {
    display: flex;
    gap: .85rem;
    align-items: center;
    margin-bottom: .65rem;

    /* was .9rem */
}

.ss-footer-brandblock--stack {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;

    /* was .85rem */
}

.ss-footer-brandblock--row {
    flex-direction: row;
    align-items: center;
}

.ss-footer-logo {
    width: 100px;

    /* was 80px */
    height: auto;
    display: block;
    flex-shrink: 0;
}

/* Brand name */
.ss-footer-title {
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #ffffff;

    /* was 3.1rem */
    line-height: 1.05;
    margin: 0;
    letter-spacing: .4px;
}

/* tagline */
.ss-footer-tagline {
    color: #f0a13e;
    font-size: 1.05rem;

    /* was 1.25rem */
    margin: 0 0 1.4rem 0;

    /* was 2rem */
}

/* contact items */
.ss-footer-contact p {
    display: flex;
    align-items: start;
    gap: .85rem;
    margin: 0 0 .95rem 0;
    justify-items: start;

    /* was 1.2rem */
    font-size: 1.05rem;

    /* was 1.25rem */
}

.ss-footer-icon {
    width: 22px;

    /* was 26px */
    height: 22px;
    object-fit: contain;
    display: block;
}

.ss-footer a {
    color: #ffffff;
    text-decoration: none;
}

.ss-footer a:hover {
    text-decoration: underline;
}

/* headings */
.ss-footer-heading {
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 900;
    color: #f0a13e;
    letter-spacing: .6px;
    margin: 0 0 1.05rem 0;

    /* was 1.5rem */
    font-size: 1.55rem;

    /* was 2rem */
    text-transform: uppercase;
}

/* links columns */
.ss-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;

    /* was 2.5rem */
}

.ss-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;

    /* was 1.4rem */
}

.ss-footer-links a {
    font-size: 1.15rem;

    /* was 1.4rem */
    line-height: 1.35;
}

/* CTA */
.ss-footer-cta .ss-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F79320;
    color: #fff;
    font-weight: 900;
    border-radius: 16px;
    padding: .95rem 1.4rem;

    /* was 1.2rem 2rem */
    font-size: 1.15rem;

    /* was 1.35rem */
    margin-top: 1rem;

    /* was 1.25rem */
    box-shadow: 0 14px 22px rgba(0,0,0,.18);
    text-decoration: none;
    width: min(320px, 100%);
    text-align: center;
}

.ss-footer-cta .ss-footer-btn:hover {
    background: #c88722;
    text-decoration: none;
}

/* bottom bar */
.ss-footer-bottom {
    border-top: 2px solid rgba(255,255,255,.20);
    padding: .5rem 2rem;

    /* was 1.8rem */
    text-align: center;
    font-size: 1rem;

    /* was 1.35rem */
    color: rgba(255,255,255,.92);
}

/* responsive */
@media (max-width: 991.98px){
    .ss-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-bottom: 1.5rem;
    }

    .ss-footer-divider {
        display: none;
    }

    .ss-footer-title {
        font-size: 2.1rem;
    }

    .ss-footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    /* Center the grid itself */
    .ss-footer-inner {
        justify-items: center;
        text-align: center;
    }

    /* Brand / logo block */
    .ss-footer-brandblock,
    .ss-footer-brandblock--stack {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* Contact rows */
    .ss-footer-contact p {
        justify-content: center;
        text-align: center;
    }

    /* Headings */
    .ss-footer-heading {
        text-align: center;
    }

    /* quick links: keep 2 columns but center them */
    .ss-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 0.9rem 1.25rem;
        justify-items: center;

        /* FIX */
        text-align: center;

        /* FIX */
    }

    .ss-footer-links ul {
        text-align: center;

        /* FIX */
        gap: 0.75rem;
    }

    .ss-footer-links a {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    /* CTA section */
    .ss-footer-cta {
        text-align: center;
    }

    .ss-footer-cta .ss-footer-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Fold unfolded / tablets / small laptops: use centered stacked footer */
@media (max-width: 1100px) {
    .ss-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
        justify-items: center;

        /* center the stacked blocks */
        text-align: center;
    }

    .ss-footer-divider {
        display: none;
    }

    .ss-footer-brandblock,
    .ss-footer-brandblock--stack {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .ss-footer-contact p {
        justify-content: center;
        text-align: center;
    }

    /* Keep quick links in 2 columns for wider unfolded screens */
    .ss-footer-links {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        text-align: center;
        gap: 1rem 2rem;
    }

    .ss-footer-links ul {
        text-align: center;
    }

    .ss-footer-cta {
        text-align: center;
    }

    .ss-footer-cta .ss-footer-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =====================
   FORCE BUTTON STYLES
===================== */
a.btn {
    text-decoration: none;
}

.ss-btn-accent {
    background-color: #F79320 !important;
    border-color: #F79320 !important;
    color: #fff !important;
}

.ss-btn-primary {
    background-color: #054A8A !important;
    border-color: #054A8A !important;
    color: #fff !important;
}

.ss-btn-accent:hover {
    background-color: #054A8A !important;
    border-color: ##054A8A !important;
}

.ss-btn-primary:hover {
    background-color: #054A8A !important;
    border-color: #054A8A !important;
}