/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== COLORS ===== */
:root {
    --fire-red: #6b1d2a;
    --fire-red-dark: #4e1520;
    --fire-red-light: #8a2838;
    --fire-gold: #c9a84c;
    --fire-gold-light: #e0c673;
    --maroon: #6b1d2a;
    --maroon-light: #8a2838;
    --charcoal: #1c1c1c;
    --charcoal-light: #2d2d2d;
    --navy: #1c1c1c;
    --navy-light: #2d2d2d;
    --cream: #faf7f2;
    --smoke: #f3f1ee;
    --dark: #111;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header .accent-line {
    width: 60px;
    height: 4px;
    background: var(--fire-red);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--fire-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--fire-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
}

.btn-gold {
    background: var(--fire-gold);
    color: var(--dark);
}

.btn-gold:hover {
    background: var(--fire-gold-light);
    transform: translateY(-2px);
}

/* ===== HEADER / NAV ===== */
.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: var(--fire-gold);
}

.top-bar a:hover {
    color: var(--fire-gold-light);
}

header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 64px;
    height: 64px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
}

.logo-icon svg {
    width: 30px;
    height: 30px;
}

/* Present the full badge image (don't crop to a circle), keep it contained */
.logo-icon img {
    width: auto;
    height: 64px;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

/* Slightly tighten text spacing for the header */
.logo-text h1 {
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    .logo-icon {
        width: 48px;
        height: 48px;
    }

    .logo-icon img {
        height: 48px;
    }

    .logo-text h1 {
        font-size: 1rem;
    }
}

.logo-text h1 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    gap: 8px;
}

nav a {
    padding: 8px 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--navy);
    border-radius: 4px;
    transition: all 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--maroon);
    background: rgba(107, 29, 42, 0.06);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 6px 0;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--charcoal);
    overflow: hidden;
}

/* Carousel background slides */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

/* Dark overlay so text is always readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(20, 20, 20, 0.82) 0%,
            rgba(20, 20, 20, 0.6) 50%,
            rgba(107, 29, 42, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.15);
    color: var(--fire-gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 168, 67, 0.3);
}

.hero h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h2 .highlight {
    color: var(--fire-gold);
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 67, 0.4);
}

.stat-card .number {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--fire-gold);
    display: block;
    line-height: 1;
}

.stat-card .label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* Carousel indicators */
.hero-indicators {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-indicator {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    padding: 0;
}

.hero-indicator.active {
    background: var(--fire-gold);
    width: 48px;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-indicator.active:hover {
    background: var(--fire-gold);
}

/* Caption bar */
.hero-caption {
    position: absolute;
    bottom: 48px;
    right: 24px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.4s;
}

.hero:hover .hero-caption {
    opacity: 1;
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
    background: var(--fire-red);
    color: var(--white);
    padding: 16px 0;
}

.emergency-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    text-align: center;
}

.emergency-banner strong {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emergency-banner .divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
}

.emergency-banner a {
    color: var(--fire-gold-light);
    font-weight: 600;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.about-content h3 {
    font-size: 1rem;
    color: var(--fire-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.highlight-icon img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.highlight-item h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

.highlight-item p {
    font-size: 0.82rem;
    margin: 0;
}

/* ===== SERVICES ===== */
.services {
    background: var(--smoke);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: border-color 0.25s, background-color 0.25s;
    border-bottom: 4px solid transparent;
    cursor: default;
}

.service-card:hover {
    border-bottom-color: rgba(193, 18, 31, 0.45);
    background: #fffdfd;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* ===== APPARATUS ===== */
.apparatus {
    background: var(--white);
}

.apparatus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 360px);
    justify-content: center;
    gap: 28px;
}

.apparatus-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.apparatus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.apparatus-img {
    height: 260px;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a1520 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.apparatus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.apparatus-station-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(107, 29, 42, 0.92);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apparatus-officer {
    position: absolute;
    bottom: -36px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.apparatus-officer img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.apparatus-officer-name {
    font-size: 0.72rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--white);
    background: rgba(107, 29, 42, 0.92);
    padding: 2px 10px;
    border-radius: 12px;
    margin-top: 4px;
    white-space: nowrap;
}

.apparatus-info {
    padding: 24px;
    padding-top: 48px;
}

.apparatus-info h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.apparatus-info .apparatus-year {
    font-size: 0.85rem;
    color: var(--fire-red);
    font-weight: 600;
    margin-bottom: 12px;
}

.apparatus-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.apparatus-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-tag {
    background: var(--smoke);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    color: var(--text);
    font-weight: 500;
}

/* ===== STATION BANNERS (inside apparatus section) ===== */
.station-banner {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a1520 100%);
    border-radius: 14px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.station-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.station-banner-north {
    margin-top: 48px;
}

.station-banner-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.station-banner-icon svg {
    width: 24px;
    height: 24px;
    color: var(--fire-gold);
}

.station-banner-info h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 4px;
}

.station-banner-hq {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--fire-gold);
    letter-spacing: 0.5px;
}

.station-banner-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ===== LEADERSHIP ===== */
.leadership {
    background: linear-gradient(160deg, #1a1a1a 0%, #2a1520 50%, #1c1c1c 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.leadership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(107, 29, 42, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.leadership .section-header h2 {
    color: var(--white);
}

.leadership .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.leadership .accent-line {
    background: var(--fire-gold);
}

.leadership-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.leadership-row:last-child {
    margin-bottom: 0;
}

.leader-card {
    flex: 0 1 220px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 20px 28px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.leader-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.leader-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.5), rgba(107, 29, 42, 0.6));
    position: relative;
    transition: transform 0.35s ease;
}

.leader-card:hover .leader-avatar {
    transform: scale(1.06);
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #1c1c1c;
}

/* Top row (Chief / Deputy) gets larger, more prominent avatars */
.leadership-row:first-child .leader-card {
    flex: 0 1 260px;
    padding: 36px 24px 32px;
    border-color: rgba(201, 168, 76, 0.2);
}

.leadership-row:first-child .leader-avatar {
    width: 110px;
    height: 110px;
    padding: 3px;
    background: linear-gradient(135deg, var(--fire-gold), var(--fire-red));
}

.leadership-row:first-child .leader-card h3 {
    font-size: 1.15rem;
}

.leader-card h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
}

.leader-card p {
    font-size: 0.78rem;
    color: var(--fire-gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    padding: 4px 14px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

/* ===== FIRE PERMITS ===== */
.permits {
    background: var(--white);
}

.permits-hero {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--fire-red-dark) 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: var(--white);
    margin-bottom: 48px;
}

.permits-hero svg {
    width: 56px;
    height: 56px;
    color: var(--fire-gold);
    margin-bottom: 16px;
}

.permits-hero h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.permits-hero p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 28px;
}

.permits-hero .btn-permit-cta {
    display: inline-block;
    padding: 18px 48px;
    background: var(--fire-gold);
    color: var(--dark);
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.permits-hero .btn-permit-cta:hover {
    background: var(--fire-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.permits-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.permit-detail-card {
    background: var(--smoke);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.permit-detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.permit-detail-icon img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.permit-detail-card h4 {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.permit-detail-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
}

.permit-fire-danger {
    background: var(--smoke);
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.permit-fire-danger span {
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 600;
}

.permit-fire-danger a {
    color: var(--maroon);
    font-weight: 700;
    font-size: 0.9rem;
}

.permit-phone-toggle {
    text-align: center;
}

.permit-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid var(--smoke);
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.permit-phone-btn:hover {
    border-color: var(--maroon);
    color: var(--maroon);
}

.permit-phone-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.permit-phone-btn.open svg {
    transform: rotate(180deg);
}

.permit-phone-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.permit-phone-list.open {
    max-height: 300px;
}

.permit-phone-list-inner {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.permit-phone-card {
    background: var(--smoke);
    border-radius: 10px;
    padding: 16px 24px;
    text-align: center;
    min-width: 200px;
}

.permit-phone-card h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.permit-phone-card .permit-phone-role {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 6px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.permit-phone-card a {
    color: var(--maroon);
    font-weight: 600;
    font-size: 0.9rem;
}

.permit-phone-card a:hover {
    text-decoration: underline;
}

/* ===== SAFETY TIPS ===== */
.safety {
    background: var(--smoke);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.safety-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.safety-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.safety-card-icon img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.safety-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.safety-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== JOIN / VOLUNTEER ===== */
.join {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--fire-red-dark) 100%);
    color: var(--white);
    text-align: center;
}

.join h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.join p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

.join-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.join-option {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 28px 20px;
    transition: background 0.3s;
}

.join-option:hover {
    background: rgba(255, 255, 255, 0.18);
}

.join-option h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.join-option p {
    font-size: 0.88rem;
    opacity: 0.8;
    margin: 0;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--smoke);
    border-radius: 12px;
    transition: box-shadow 0.3s;
}

.contact-card:hover {
    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--fire-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card p,
.contact-card a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-card a:hover {
    color: var(--fire-red);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* ===== FACEBOOK FEED ===== */
.social {
    background: var(--smoke);
}

.social-embed {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.fb-placeholder {
    background: var(--white);
    border-radius: 12px;
    padding: 48px 32px;
    box-shadow: var(--shadow);
    text-align: center;
}

.fb-placeholder svg {
    width: 48px;
    height: 48px;
    color: #1877F2;
    margin-bottom: 16px;
}

.fb-placeholder h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.fb-placeholder p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn-facebook {
    background: #1877F2;
    color: var(--white);
}

.btn-facebook:hover {
    background: #1462cc;
    transform: translateY(-2px);
}

/* ===== FIREWORKS ORDINANCE ===== */
.ordinance {
    background: var(--cream);
}

.ordinance-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--fire-red);
}

.ordinance-content h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.ordinance-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
}

footer h4 {
    font-size: 0.85rem;
    color: var(--fire-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul a {
    font-size: 0.9rem;
    transition: color 0.3s;
}

footer ul a:hover {
    color: var(--fire-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
}

/* ===== FIRE DANGER WIDGET ===== */
.fire-danger-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.fire-danger-widget h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fire-danger-widget a {
    color: var(--fire-red);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== MOBILE ===== */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .permits-details {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stations-grid {
        grid-template-columns: 1fr;
    }

    .join-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    nav ul {
        display: none;
    }

    nav ul.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 16px;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: 75vh;
    }

    .hero h2 {
        font-size: 2.4rem;
    }

    .hero-caption {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .apparatus-grid {
        grid-template-columns: 1fr;
    }

    .leadership-row {
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-bar .container {
        justify-content: center;
        text-align: center;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 10001;
}

.lightbox-close:hover {
    opacity: 1;
}
