/* ============================================
   St. Tammany Fire District 13
   Goodbee, Louisiana - Official Website Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
    --navy: #1a2332;
    --navy-light: #243044;
    --red: #c8102e;
    --red-dark: #a00d24;
    --gold: #ffd700;
    --gold-muted: #d4a843;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f1f3;
    --gray-200: #e2e4e8;
    --gray-300: #c5c9d1;
    --gray-600: #6b7280;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.5rem;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--red-dark);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    color: var(--navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 48px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.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);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.leaflet-top,
.leaflet-bottom {
    z-index: 500 !important;
}

.station-map {
    position: relative;
    z-index: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: var(--shadow-md);
    transition: background var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.nav-subtitle {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-menu a {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-menu a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-emergency {
    background: var(--red) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
    border-radius: var(--radius) !important;
}

.nav-emergency:hover {
    background: var(--red-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

/* --- Nav Dropdowns --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 5px;
    margin-bottom: 2px;
    transition: transform var(--transition);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background: var(--navy-light);
    min-width: 220px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    z-index: 100;
}

.nav-dropdown-menu li {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
    border-radius: 0;
}

.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* Desktop: show dropdown on hover */
@media (min-width: 769px) {
    .nav-dropdown:hover > .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown:hover > .nav-dropdown-toggle::after {
        transform: rotate(-135deg);
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--navy);
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.8s ease-in-out, transform 7s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(26, 35, 50, 0.82) 0%,
        rgba(26, 35, 50, 0.6) 50%,
        rgba(26, 35, 50, 0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 20px 60px;
    max-width: 800px;
}

.hero-logo {
    width: 200px;
    margin: 0 auto 32px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-tagline {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-emergency {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.about-stat-card {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius-lg);
    border-bottom: 4px solid var(--red);
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
}

/* Services */
.about-services {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.about-services-title {
    text-align: center;
    font-size: 1.3rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.service-item svg {
    flex-shrink: 0;
    color: var(--red);
    margin-top: 2px;
}

.service-item h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ============================================
   BOARD OF COMMISSIONERS
   ============================================ */
.board {
    background: var(--gray-50);
}

/* Commissioner Cards - compact grid */
.board-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.board-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.board-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.board-card-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
}

.board-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.board-card-photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
}

.board-card-photo--placeholder svg {
    color: var(--gray-400);
}

.board-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.board-role {
    padding: 0;
    color: var(--red);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.board-term {
    color: var(--gray-500);
    font-size: 0.8rem;
    font-style: italic;
}

/* Board Modal */
.board-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.board-modal.active {
    display: flex;
}

.board-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.board-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.board-modal-close:hover {
    color: var(--navy);
}

.board-modal-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.board-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.board-modal-photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
}

.board-modal-photo--placeholder svg {
    color: var(--gray-400);
}

.board-modal-content h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.board-modal-term {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.board-modal-bio {
    text-align: left;
}

.board-modal-bio p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 12px;
}

.board-modal-bio p:last-child {
    margin-bottom: 0;
}

.board-modal-bio .bio-placeholder {
    text-align: center;
    color: var(--gray-400);
    font-style: italic;
}

/* ============================================
   STATIONS
   ============================================ */
.stations {
    background: var(--white);
}

.stations-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.station-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.station-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0,0,0,0.2);
    border-bottom: 3px solid var(--red);
}

.station-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.station-card-header h3 {
    font-size: 1.2rem;
    color: var(--gold);
}

.station-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.station-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

.station-detail svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.station-detail a {
    color: rgba(255,255,255,0.85);
}

.station-detail a:hover {
    color: var(--gold);
}

.station-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.station-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ============================================
   PUBLIC NOTICES
   ============================================ */
.notices {
    background: var(--gray-50);
}

.notices-search {
    position: relative;
    max-width: 480px;
    margin: 0 auto 24px;
}

.notices-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

.notices-search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.notices-search-input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.notices-search-input::placeholder {
    color: var(--gray-400);
}

.notices-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.notices-list {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.notice-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
    align-items: flex-start;
}

.notice-item:hover {
    box-shadow: var(--shadow-md);
}

.notice-date-badge {
    flex-shrink: 0;
    width: 64px;
    text-align: center;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 8px;
}

.notice-date-badge .month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--gold);
}

.notice-date-badge .day {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.notice-date-badge .year {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
}

.notice-content {
    flex: 1;
}

.notice-content h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.notice-meta {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.notice-content p {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.notice-tag {
    display: inline-block;
    padding: 2px 10px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
}

.notice-tag.meeting { background: #dbeafe; color: #1e40af; }
.notice-tag.agenda { background: #fef3c7; color: #92400e; }
.notice-tag.minutes { background: #d1fae5; color: #065f46; }
.notice-tag.budget { background: #fce7f3; color: #9d174d; }
.notice-tag.general { background: #e0e7ff; color: #3730a3; }

.notice-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red);
    margin-top: 4px;
}

.notice-link:hover {
    text-decoration: underline;
}

.notices-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--gray-600);
    font-size: 1.05rem;
}

.notices-show-more {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.btn-show-more {
    padding: 12px 32px;
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-show-more:hover {
    background: var(--red);
    color: var(--white);
}

/* ============================================
   BUDGET & FINANCE
   ============================================ */
.budget-section {
    background: var(--white);
}

.budget-block {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.budget-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: var(--navy);
    color: var(--white);
}

.budget-block-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.budget-block-icon svg {
    color: var(--gold);
}

.budget-block-header h3 {
    font-size: 1.3rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.budget-block-body {
    padding: 32px;
}

.budget-block-body > p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

.budget-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.budget-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--red);
}

.highlight-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 1px;
}

.budget-highlight span:last-child {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.budget-list {
    padding-left: 24px;
    margin-bottom: 20px;
}

.budget-list li {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 6px;
}

.budget-uses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.budget-use {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.budget-use svg {
    flex-shrink: 0;
    color: var(--red);
}

.budget-use span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.budget-commitment {
    padding: 16px 20px;
    background: var(--navy);
    color: rgba(255,255,255,0.9) !important;
    border-radius: var(--radius);
    font-size: 0.95rem !important;
    text-align: center;
}

.budget-commitment a {
    color: var(--gold);
    font-weight: 600;
}

.budget-commitment a:hover {
    text-decoration: underline;
    color: #fde68a;
}

.budget-explainer {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.budget-explainer:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 24px;
}

.budget-explainer h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.budget-explainer p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 12px;
}

.budget-example {
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold-muted);
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.budget-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: var(--radius-lg);
    margin-top: 16px;
}

.callout-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.callout-icon svg {
    color: #d97706;
}

.budget-callout strong {
    display: block;
    color: #92400e;
    font-size: 1rem;
    margin-bottom: 4px;
}

.budget-callout p {
    font-size: 0.9rem !important;
    color: #78350f !important;
    margin-bottom: 0 !important;
    line-height: 1.6;
}

.budget-summary-box {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    color: var(--white);
}

.budget-summary-box h4 {
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
}

.summary-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.summary-bullet {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 6px;
}

.summary-item span:last-child {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* Budget responsive */
@media (max-width: 768px) {
    .budget-block-header {
        padding: 20px;
    }

    .budget-block-body {
        padding: 24px 20px;
    }

    .budget-uses-grid {
        grid-template-columns: 1fr;
    }

    .summary-items {
        grid-template-columns: 1fr;
    }

    .budget-callout {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .budget-block-header h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/10;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ============================================
   FIRE SAFETY TIPS
   ============================================ */
.safety {
    background: var(--gray-50);
}

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

.safety-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--red);
    transition: transform var(--transition), box-shadow var(--transition);
}

.safety-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.safety-card-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.safety-card-icon svg {
    color: var(--gold);
}

.safety-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.safety-card ul {
    list-style: none;
    padding: 0;
}

.safety-card li {
    position: relative;
    padding-left: 18px;
    padding-bottom: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
    border-bottom: 1px solid var(--gray-100);
}

.safety-card li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.safety-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}

/* ============================================
   JOIN / RECRUITMENT
   ============================================ */
.join {
    position: relative;
    background: var(--navy);
    padding: 80px 0;
    overflow: hidden;
}

.join-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.join-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,35,50,0.95), rgba(26,35,50,0.8));
}

.join-content {
    position: relative;
    z-index: 1;
}

.join-title {
    color: var(--white) !important;
}

.join-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
}

.join-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(4px);
}

.join-card h3 {
    color: var(--gold);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.join-card h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 16px 0 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.join-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.join-card ul {
    list-style: none;
    padding: 0;
}

.join-card li {
    position: relative;
    padding-left: 18px;
    padding-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.join-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}

.join-benefits li {
    padding-left: 0;
    padding-bottom: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.join-benefits li::before {
    display: none;
}

.join-benefits li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.join-benefits strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.join-benefits span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}

.join-cta {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.join-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 20px;
}

.join-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   COMMUNITY / SOCIAL
   ============================================ */
.community {
    background: var(--gray-50);
}

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

.community-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    border-top: 4px solid transparent;
    transition: all var(--transition);
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.community-card--facebook { border-top-color: #1877F2; }
.community-card--instagram { border-top-color: #E4405F; }
.community-card--x { border-top-color: var(--navy); }

.community-card--facebook .community-card__icon { color: #1877F2; }
.community-card--instagram .community-card__icon { color: #E4405F; }
.community-card--x .community-card__icon { color: var(--navy); }

.community-card__icon {
    margin-bottom: 16px;
}

.community-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.community-card__handle {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.community-card__list {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.community-card__list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    padding-left: 18px;
    position: relative;
}

.community-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.community-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    transition: gap var(--transition);
}

.community-card:hover .community-card__cta {
    gap: 10px;
}

/* -- Facebook Feed Posts -- */
.fb-feed {
    margin-bottom: 40px;
}

.fb-feed__loading {
    text-align: center;
    padding: 40px;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.fb-feed__posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fb-post {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}

.fb-post:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.fb-post__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 12px;
}

.fb-post__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.fb-post__author {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
}

.fb-post__time {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 1px;
}

.fb-post__text {
    padding: 0 20px 16px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--gray-700);
    flex: 1;
}

.fb-post__image {
    margin-top: auto;
}

.fb-post__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* ============================================
   TRANSPARENCY & COMPLIANCE
   ============================================ */
.transparency {
    background: var(--white);
}

.fraud-report-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #7f1d1d, #991b1b);
    color: var(--white);
    padding: 32px 36px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    flex-wrap: wrap;
}

.fraud-report-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 280px;
}

.fraud-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fraud-icon svg {
    color: #fbbf24;
}

.fraud-report-content h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--white);
}

.fraud-report-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.btn-fraud {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fbbf24;
    color: #7f1d1d;
    border: 2px solid #fbbf24;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-fraud:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #7f1d1d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

.compliance-card {
    background: var(--gray-50);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--navy);
    transition: transform var(--transition), box-shadow var(--transition);
}

.compliance-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.compliance-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.compliance-icon svg {
    color: var(--gold);
}

.compliance-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.compliance-card p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 12px;
}

.compliance-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red);
}

.compliance-link:hover {
    text-decoration: underline;
    color: var(--red-dark);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--white);
}

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

.contact-card {
    background: var(--gray-50);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.contact-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 0.85rem !important;
    color: var(--gray-600) !important;
    font-style: italic;
    margin-top: 12px !important;
}

.contact-office {
    text-align: left;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-detail svg {
    flex-shrink: 0;
    color: var(--red);
    margin-top: 3px;
}

.contact-detail a {
    color: var(--navy);
    font-weight: 600;
}

.contact-detail a:hover {
    color: var(--red);
}

.emergency-card {
    background: var(--red);
    color: var(--white);
}

.emergency-card h3 {
    color: var(--white);
}

.emergency-card p {
    color: rgba(255,255,255,0.9);
}

.emergency-number {
    font-family: var(--font-heading);
    font-size: 3rem !important;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.footer-brand p {
    color: var(--gold);
    font-size: 0.9rem;
}

.footer-compliance h4 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-compliance ul {
    list-style: none;
}

.footer-compliance li {
    margin-bottom: 8px;
}

.footer-compliance a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-compliance a:hover {
    color: var(--gold);
}

.footer-fraud-link {
    color: #fbbf24 !important;
    font-weight: 600;
}

.footer-fraud-link:hover {
    color: #fde68a !important;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.social-link:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1;
    line-height: 1;
    padding: 8px;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.lightbox-caption {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-top: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   STAT ALERT BANNER
   ============================================ */
.stat-alert {
    background: var(--navy);
    padding: 48px 0;
}

.stat-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    flex-wrap: wrap;
}

.stat-banner-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-banner-icon svg {
    color: var(--gold);
}

.stat-banner-content {
    flex: 1;
    min-width: 250px;
}

.stat-banner-content h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-banner-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.stat-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all var(--transition);
}

.stat-banner-btn:hover {
    background: #e5a30d;
    border-color: #e5a30d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ============================================
   DOCUMENTS PAGE
   ============================================ */
.documents-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.documents-body .documents-page {
    flex: 1;
}

.documents-page {
    padding-top: 120px;
}

.documents-header {
    margin-bottom: 32px;
}

.documents-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 16px;
}

.documents-back:hover {
    text-decoration: underline;
}

.documents-count {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .board-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .community-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fb-feed__posts {
        grid-template-columns: repeat(2, 1fr);
    }

    .stations-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 16px 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius);
    }

    /* Mobile dropdown overrides */
    .nav-dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        min-width: 0;
        padding: 0;
        border-radius: 0;
    }

    .nav-dropdown-menu a {
        padding-left: 36px;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.65);
    }

    .nav-dropdown-menu a:hover {
        color: var(--white);
        background: rgba(255,255,255,0.05);
    }

    .nav-dropdown.open > .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown.open > .nav-dropdown-toggle::after {
        transform: rotate(-135deg);
    }

    .nav-logo-text {
        display: none;
    }

    /* Hero */
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.05rem;
    }

    .hero-logo {
        width: 150px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-services {
        padding: 24px 20px;
    }

    /* Board */
    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* STAT */
    .stat-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .stat-banner-content {
        min-width: 0;
    }

    /* Stations */
    .stations-cards {
        grid-template-columns: 1fr;
    }

    /* Safety */
    .safety-grid {
        grid-template-columns: 1fr;
    }

    /* Join */
    .join-grid {
        grid-template-columns: 1fr;
    }

    /* Community */
    .community-grid {
        grid-template-columns: 1fr;
    }

    .fb-feed__posts {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Transparency */
    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .fraud-report-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .fraud-report-content {
        flex-direction: column;
        text-align: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    /* Notices */
    .notice-item {
        flex-direction: column;
        gap: 12px;
    }

    .notice-date-badge {
        display: flex;
        gap: 8px;
        align-items: center;
        width: auto;
        padding: 6px 12px;
    }

    .notice-date-badge .day {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand {
        grid-column: auto;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .notices-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none !important;
    }
    .hero-slideshow .hero-slide {
        animation: none !important;
    }
    .navbar,
    .nav-menu,
    .nav-dropdown-menu,
    .gallery-item img,
    .board-card,
    .station-card,
    .safety-card,
    .compliance-card,
    .community-card,
    .join-card,
    .notice-item,
    .btn,
    .btn-primary,
    .btn-outline,
    a {
        transition: none !important;
        animation: none !important;
    }
    .lightbox {
        transition: none !important;
    }
    .board-modal {
        transition: none !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    /* Hide non-essential elements */
    .navbar,
    .nav-toggle,
    .hero,
    .hero-slideshow,
    .hero-emergency,
    .lightbox,
    .board-modal,
    .gallery,
    .community,
    .stat-alert,
    .join,
    .footer,
    .skip-link,
    .fb-feed,
    .station-map,
    .btn,
    .btn-primary,
    .btn-outline,
    .btn-fraud,
    .stat-banner-btn,
    .notices-show-more,
    .notices-search,
    .notices-filters,
    .hero-buttons,
    .join-cta-buttons {
        display: none !important;
    }

    /* Reset backgrounds and colors for printing */
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.5;
    }

    .section {
        padding: 1rem 0 !important;
        background: white !important;
        color: black !important;
    }

    .about,
    .board,
    .stations,
    .notices,
    .budget-section,
    .safety,
    .transparency,
    .contact {
        background: white !important;
    }

    /* Ensure text is readable */
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
        page-break-after: avoid;
    }

    p, li, span, div {
        color: black !important;
    }

    a {
        color: black !important;
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555;
    }

    a[href^="#"]::after,
    a[href^="tel:"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    /* Layout adjustments */
    .container {
        max-width: 100% !important;
        padding: 0 1rem !important;
    }

    .about-grid,
    .board-grid,
    .stations-cards,
    .services-grid,
    .safety-grid,
    .compliance-grid,
    .contact-grid {
        display: block !important;
    }

    .about-image {
        display: none !important;
    }

    .station-card,
    .board-card,
    .safety-card,
    .compliance-card,
    .contact-card,
    .notice-item {
        break-inside: avoid;
        border: 1px solid #ccc !important;
        margin-bottom: 0.5rem !important;
        padding: 0.5rem !important;
        box-shadow: none !important;
        background: white !important;
    }

    .section-title {
        font-size: 18pt !important;
        border-bottom: 2px solid black;
        padding-bottom: 0.25rem;
    }

    /* Page breaks */
    .section {
        page-break-inside: avoid;
    }

    .notices {
        page-break-before: always;
    }

    /* Fraud banner simplification */
    .fraud-report-banner {
        border: 2px solid black !important;
        background: white !important;
        padding: 1rem !important;
    }

    .fraud-report-banner * {
        color: black !important;
    }

    /* Join section background */
    .join-bg,
    .join-overlay,
    .footer-bg {
        display: none !important;
    }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10001;
    background: transparent;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transition: width 0.1s linear;
}

/* ============================================
   LIGHTBOX NAVIGATION
   ============================================ */

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
    line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
}

/* ============================================
   SKELETON LOADING
   ============================================ */

@keyframes skeleton-pulse {
    0% { opacity: 0.15; }
    50% { opacity: 0.3; }
    100% { opacity: 0.15; }
}

.skeleton-item {
    pointer-events: none;
}

.skeleton-block {
    background: var(--gray-300);
    border-radius: 6px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    min-width: 60px;
    min-height: 70px;
}

.skeleton-line {
    height: 14px;
    background: var(--gray-300);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    width: 100%;
}

.skeleton-line--short {
    width: 40%;
}

.skeleton-line--medium {
    width: 70%;
}

.skeleton-line--xs {
    width: 25%;
    height: 10px;
}

.skeleton-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-300);
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.skeleton-item .notice-date-badge {
    background: var(--gray-200);
}

.skeleton-item .fb-post__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-card {
    grid-column: 1 / -1;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-form .form-group:nth-child(3),
.contact-form .form-group:nth-child(4) {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.35rem;
    font-family: var(--font-body);
}

.form-required {
    color: var(--red);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 35, 50, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.form-submit {
    grid-column: 1 / -1;
    justify-self: start;
    min-width: 180px;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    grid-column: 1 / -1;
    font-size: 0.9rem;
    padding: 0;
    border-radius: 6px;
    min-height: 0;
    transition: all 0.3s ease;
}

.form-status--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 0.75rem 1rem;
}

.form-status--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 0.75rem 1rem;
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    .contact-form .form-group:nth-child(3),
    .contact-form .form-group:nth-child(4) {
        grid-column: auto;
    }
    .form-submit {
        width: 100%;
        justify-self: stretch;
    }
}

/* ============================================
   FACEBOOK FEED EMPTY/ERROR STATE
   ============================================ */

.fb-feed__empty {
    text-align: center;
    padding: 2rem;
    color: var(--gray-600);
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px dashed var(--gray-300);
}

.fb-feed__empty p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ============================================
   STAFF & APPARATUS PAGES
   ============================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.team-card-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-photo--placeholder {
    color: var(--gray-300);
}

.team-card-body {
    padding: 1.25rem;
}

.team-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-card-body .team-role {
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card-body .team-bio {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
    line-height: 1.5;
}

.team-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.team-section-subtitle {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.team-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.team-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
}

.team-stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

/* Apparatus page styles */
.apparatus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.apparatus-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apparatus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.apparatus-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.apparatus-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apparatus-card-image--placeholder {
    color: var(--gray-300);
}

.apparatus-card-body {
    padding: 1.5rem;
}

.apparatus-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.apparatus-card-station {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.apparatus-card-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.apparatus-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--gray-200);
    padding-top: 0.75rem;
}

.apparatus-specs li {
    font-size: 0.85rem;
    color: var(--gray-700);
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.apparatus-specs li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.page-header {
    padding-top: 6rem;
    padding-bottom: 2rem;
    text-align: center;
}

.page-header .documents-back {
    display: inline-block;
    margin-bottom: 1rem;
}
