/* ============================================
   AMVETS Ladies Auxiliary Department of Ohio
   Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
    --navy: #1B3A5C;
    --navy-dark: #142C47;
    --navy-light: #1529B0;
    --red: #E33E46;
    --red-dark: #C4343B;
    --red-light: #E8616A;
    --white: #FFFFFF;
    --gold: #C5A35A;
    --gold-light: #D4BA7A;
    --gray-50: #F8F9FA;
    --gray-100: #F0F1F3;
    --gray-200: #E2E4E8;
    --gray-300: #C8CCD2;
    --gray-500: #8891A0;
    --gray-700: #4A5568;
    --gray-900: #1A202C;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--gray-900);
    background-color: var(--white);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    line-height: 1.2;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.625rem; }

a {
    color: var(--navy-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--red);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    padding-left: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--navy-dark);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--gray-300);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.header-top a {
    color: var(--gold);
}

.header-top a:hover {
    color: var(--gold-light);
}

.header-main {
    padding: 0.75rem 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo .logo-star {
    font-size: 2rem;
    color: var(--gold);
}

.site-logo-text {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.5px;
}

/* --- Navigation --- */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: block;
    padding: 0.5rem 0.875rem;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
}

/* Dropdown */
.dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    z-index: 100;
    list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.25rem;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.dropdown-menu li a:hover {
    background: var(--gray-100);
    color: var(--navy);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, #0D1F33 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-text .hero-subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-text .hero-motto {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-president {
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.president-photo-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--navy-dark);
    margin: 0 auto 1.5rem;
    border: 4px solid var(--gold);
    overflow: hidden;
    position: relative;
}

.president-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transform: scale(1.25);
    transform-origin: center 20%;
}

.hero-president h3 {
    color: var(--white);
    font-size: 1.25rem;
}

.hero-president p {
    color: var(--gold);
    font-size: 0.95rem;
}

.hero-president .president-theme {
    color: var(--gray-300);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy-dark);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-navy:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-banner p {
    color: var(--gray-300);
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-top: 0.75rem;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gray-500);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
    flex: 1;
}

.page-content {
    padding: 3rem 0;
}

.content-section {
    margin-bottom: 3rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.section-title .icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Static cards (no hover effect - not clickable) */
.card-static {
    cursor: default;
}

.card-static:hover {
    box-shadow: var(--shadow-sm);
    transform: none;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--navy);
    flex-shrink: 0;
}

.card h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.card-role {
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card-meta {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.card-meta a {
    display: inline;
}

.card-theme {
    font-size: 0.85rem;
    color: var(--navy-light);
    font-style: italic;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
}

.card-project {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

/* Officer card accent */
.card-officer {
    border-left: 4px solid var(--gold);
}

.card-president {
    border-left: 4px solid var(--red);
    background: linear-gradient(to right, #FFF5F5, var(--white));
}

/* ============================================
   DOWNLOAD CARDS
   ============================================ */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    color: var(--gray-900);
}

.download-card:hover {
    border-color: var(--navy-light);
    box-shadow: var(--shadow-sm);
    color: var(--navy);
    transform: translateY(-1px);
}

.download-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.download-info h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: var(--navy);
}

.download-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   QUICK LINKS (Home page)
   ============================================ */
.quick-links {
    padding: 4rem 0;
    background: var(--gray-50);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.quick-link-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-decoration: none;
    color: var(--gray-900);
}

.quick-link-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--navy-light);
    color: var(--gray-900);
}

.quick-link-card .ql-icon {
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.quick-link-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.quick-link-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

/* ============================================
   TABLE STYLES
   ============================================ */
.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

thead {
    background: var(--navy);
    color: var(--white);
}

th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

tbody tr:hover {
    background: var(--gray-50);
}

/* ============================================
   PRESIDENTS LIST
   ============================================ */
.presidents-list {
    list-style: none;
    padding: 0;
}

.presidents-list li {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: baseline;
}

.presidents-list li:nth-child(even) {
    background: var(--gray-50);
}

.presidents-list .year {
    font-weight: 700;
    color: var(--navy);
    min-width: 90px;
}

.presidents-list .name {
    font-weight: 600;
}

.presidents-list .details {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.presidents-list .national-star {
    color: var(--gold);
    font-weight: 700;
}

/* ============================================
   LOCAL AUXILIARIES
   ============================================ */
.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-bar input,
.filter-bar select {
    padding: 0.625rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
}

.filter-bar input {
    flex: 1;
    min-width: 200px;
}

.filter-bar select {
    min-width: 160px;
}

.aux-count {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

/* ============================================
   VAVS CARDS
   ============================================ */
.vavs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.vavs-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.vavs-card-header {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.5rem;
}

.vavs-card-header h3 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.vavs-card-body {
    padding: 1.5rem;
}

/* ============================================
   LINKS PAGE
   ============================================ */
.link-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    color: var(--gray-900);
}

.link-card:hover {
    border-color: var(--navy-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
    color: var(--gray-900);
}

.link-card .link-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.link-card h4 {
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.link-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.375rem;
    font-size: 0.9rem;
    color: var(--navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--navy-light);
    box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item .ci-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0;
    line-height: 0;
}

.contact-info-item .ci-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
}

.contact-info-item h4 {
    margin-bottom: 0.2rem;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0;
}

.hours-table {
    width: 100%;
    margin-top: 0.5rem;
}

.hours-table td {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--gray-200);
}

.hours-table .closed {
    color: var(--red);
}

.hours-table .open {
    color: #2D7A3A;
}

/* ============================================
   EVENTS PLACEHOLDER
   ============================================ */
.events-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
}

.events-placeholder .ep-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ============================================
   COMMITTEES
   ============================================ */
.committee-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.committee-card h3 {
    color: var(--navy);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 1rem;
}

.committee-card ul {
    list-style: none;
    padding: 0;
}

.committee-card ul li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.925rem;
}

.committee-card ul li::before {
    content: '\2605';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--navy-dark);
    color: var(--gray-300);
    padding: 3rem 0 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-about .footer-logo .logo-star {
    font-size: 1.75rem;
    color: var(--gold);
}

.footer-about .footer-logo-text {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.footer-about p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--gray-300);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--gray-300);
    font-size: 0.875rem;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-contact p {
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
}

.footer-contact a {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--gray-500); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.info-box {
    background: var(--gray-50);
    border-left: 4px solid var(--gold);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 1.5rem;
}

.info-box.info-box-red {
    border-left-color: var(--red);
    background: #FFF5F5;
}

.divider {
    height: 1px;
    background: var(--gray-200);
    margin: 2rem 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-list > li > a {
        padding: 0.5rem 0.625rem;
        font-size: 0.825rem;
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-list > li > a {
        padding: 0.75rem 1rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        display: none;
        border-radius: 0;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: var(--gray-300);
        padding: 0.5rem 2rem;
    }

    .dropdown-menu li a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--gold);
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .hero {
        padding: 3rem 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .quick-links-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .header-top {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 1.625rem;
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }
}
