/* =========================================================
   SENIOR VET DISCOUNTS
   SeniorVetDiscounts.com
   © 2026 Bruce Goldwell
   ========================================================= */

/* ---------- ROOT COLORS ---------- */

:root {
    --navy: #0b2d5c;
    --blue: #174f9e;
    --royal-blue: #1f5fbf;
    --light-blue: #eaf3ff;

    --red: #c91f2c;
    --dark-red: #9e1721;
    --light-red: #fff1f2;

    --white: #ffffff;
    --off-white: #f7f9fc;

    --text: #1f2937;
    --muted: #5f6b7a;
    --border: #d9e0e8;

    --green: #1f7a45;
    --light-green: #edf8f1;

    --gold: #d99b22;

    --shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.14);

    --radius: 14px;
    --radius-small: 8px;

    --max-width: 1180px;
}


/* ---------- RESET ---------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: var(--red);
}

button,
input,
select,
textarea {
    font: inherit;
}


/* ---------- ACCESSIBILITY ---------- */

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    z-index: 9999;
    background: var(--white);
    color: var(--navy);
    padding: 12px 18px;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow);
}


/* ---------- SITE WRAPPER ---------- */

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}


/* =========================================================
   HEADER / BRAND
   ========================================================= */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.brand-top {
    background: var(--navy);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.brand-top a {
    color: var(--white);
}

.brand-top a:hover {
    color: #dbe9ff;
}

.brand-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.brand-text h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.05;
}

.brand-text .tagline {
    margin: 6px 0 0;
    color: var(--red);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
    background: var(--blue);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.nav-links a {
    color: var(--white);
    padding: 15px 15px;
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--navy);
    color: var(--white);
}

.nav-app-button {
    background: var(--red);
    color: var(--white) !important;
    border-radius: 7px;
    margin: 7px 0;
    padding: 10px 20px !important;
}

.nav-app-button:hover {
    background: var(--dark-red) !important;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    background:
        linear-gradient(
            120deg,
            rgba(11, 45, 92, 0.97),
            rgba(31, 95, 191, 0.92)
        );
    color: var(--white);
    padding: 70px 0;
}

.hero-content {
    max-width: 850px;
}

.hero h2 {
    margin: 0 0 18px;
    font-size: clamp(2.1rem, 6vw, 4rem);
    line-height: 1.08;
    color: var(--white);
}

.hero .hero-tagline {
    color: var(--white);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 18px;
}

.hero p {
    font-size: 1.15rem;
    max-width: 760px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-block;
    border: none;
    border-radius: 9px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: transform 0.15s ease,
                background 0.15s ease,
                box-shadow 0.15s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-red);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
}

.btn-secondary:hover {
    background: var(--light-blue);
    color: var(--navy);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

.btn-large {
    padding: 17px 30px;
    font-size: 1.1rem;
}


/* =========================================================
   PAGE CONTENT
   ========================================================= */

main {
    min-height: 60vh;
}

.section {
    padding: 60px 0;
}

.section-light {
    background: var(--off-white);
}

.section-blue {
    background: var(--light-blue);
}

.section-red {
    background: var(--light-red);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-title p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
}

h1,
h2,
h3,
h4 {
    color: var(--navy);
    line-height: 1.25;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.4rem;
}

.page-header {
    background: var(--navy);
    color: var(--white);
    padding: 45px 0;
}

.page-header h1 {
    color: var(--white);
    margin: 0 0 8px;
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.page-header p {
    margin: 0;
    font-size: 1.1rem;
    color: #e6eef9;
}


/* =========================================================
   CARDS
   ========================================================= */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.card h3 {
    margin-top: 0;
}

.card p:last-child {
    margin-bottom: 0;
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.card-link {
    font-weight: 700;
}


/* ---------- DISCOUNT CARD ---------- */

.discount-card {
    border-top: 5px solid var(--blue);
}

.discount-card .discount-name {
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 700;
}

.discount-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 5px 5px 5px 0;
}

.badge-veteran {
    background: var(--light-blue);
    color: var(--navy);
}

.badge-senior {
    background: var(--light-red);
    color: var(--dark-red);
}

.badge-official {
    background: var(--light-green);
    color: var(--green);
}


/* =========================================================
   IMPORTANT NOTICE / ASK BEFORE PAYING
   ========================================================= */

.notice {
    margin: 30px 0;
    padding: 22px;
    border-radius: var(--radius);
    border-left: 6px solid var(--red);
    background: var(--light-red);
}

.notice strong {
    color: var(--dark-red);
}

.ask-before-paying {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.ask-before-paying h2,
.ask-before-paying h3 {
    color: var(--white);
    margin-top: 0;
}

.ask-before-paying strong {
    color: #ffffff;
}

.ask-before-paying p {
    margin-bottom: 0;
}


/* =========================================================
   FEATURE STEPS
   ========================================================= */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
}


/* =========================================================
   LISTS
   ========================================================= */

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    margin: 10px 0;
    padding-left: 32px;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 700;
}


/* =========================================================
   FORMS
   ========================================================= */

.form-box {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-small);
    background: var(--white);
    color: var(--text);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}


/* =========================================================
   CTA / APP AREA
   ========================================================= */

.app-cta {
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    color: var(--white);
    padding: 45px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-large);
}

.app-cta h2 {
    color: var(--white);
    margin-top: 0;
}

.app-cta p {
    max-width: 720px;
    margin: 0 auto 25px;
    font-size: 1.08rem;
}


/* =========================================================
   TWO COLUMN CONTENT
   ========================================================= */

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.two-column.reverse .image-column {
    order: 2;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-item {
    margin-bottom: 18px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.faq-item h3 {
    margin-top: 0;
}


/* =========================================================
   SITEMAP
   ========================================================= */

.sitemap-list {
    columns: 2;
    column-gap: 50px;
}

.sitemap-list li {
    margin-bottom: 10px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: var(--navy);
    color: var(--white);
    margin-top: 60px;
}

.footer-main {
    padding: 40px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 35px;
}

.site-footer h3 {
    color: var(--white);
    margin-top: 0;
}

.site-footer a {
    color: #dbe9ff;
}

.site-footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #d9e3f1;
}

.footer-bottom p {
    margin: 5px 0;
}


/* =========================================================
   UTILITY CLASSES
   ========================================================= */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-red {
    color: var(--red);
}

.text-blue {
    color: var(--blue);
}

.text-navy {
    color: var(--navy);
}

.text-muted {
    color: var(--muted);
}

.mt-0 {
    margin-top: 0;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}


/* =========================================================
   MOBILE NAV TOGGLE
   ========================================================= */

.menu-toggle {
    display: none;
    background: var(--navy);
    color: var(--white);
    border: 0;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    body {
        font-size: 17px;
    }

    .brand-area {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-inner {
        display: block;
        padding: 8px 0;
    }

    .menu-toggle {
        display: inline-block;
        margin: 4px 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding-top: 8px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-app-button {
        margin: 6px 0;
        text-align: center;
    }

    .card-grid,
    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .two-column.reverse .image-column {
        order: initial;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    body {
        font-size: 17px;
        line-height: 1.6;
    }

    .container {
        width: 92%;
    }

    .brand-logo {
        width: 64px;
        height: 64px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section {
        padding: 42px 0;
    }

    .card-grid,
    .steps,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 22px;
    }

    .btn {
        width: 100%;
    }

    .form-box {
        padding: 22px;
    }

    .sitemap-list {
        columns: 1;
    }

    .footer-main {
        padding-top: 35px;
    }
}


/* =========================================================
   PRINT
   ========================================================= */

@media print {

    .main-nav,
    .hero-buttons,
    .app-cta,
    .site-footer,
    .menu-toggle {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    a {
        color: #000;
        text-decoration: none;
    }
}