:root {
    /* Colors - HSL */
    --color-bg: 222, 47%, 11%;
    --color-bg-light: 217, 35%, 15%;
    --color-text-main: 210, 40%, 98%;
    --color-text-muted: 215, 20%, 65%;
    --color-primary: 354, 70%, 54%;
    /* Firefighter Red */
    --color-primary-dark: 354, 70%, 40%;
    --color-accent: 35, 95%, 56%;
    /* Gold */
    --color-success: 150, 60%, 40%;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(230, 57, 70, 0.3);
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: hsl(var(--color-bg));
    color: hsl(var(--color-text-main));
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Utilities */
.text-accent {
    color: hsl(var(--color-accent));
}

.text-gradient {
    background: linear-gradient(135deg, hsl(var(--color-text-main)), hsl(var(--color-primary)));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, hsl(var(--color-primary)), hsl(var(--color-primary-dark)));
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    /* Reduced from 1rem */
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    max-width: 400px;
    text-transform: uppercase;
    /* Often looks better when smaller */
}

.brand-text {
    line-height: 1.2;
    font-weight: 800;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Dropdown Styles */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    color: hsl(var(--color-text-muted));
    transition: color 0.3s ease;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-toggle {
    color: hsl(var(--color-text-main));
}

.nav-item-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    margin-top: 10px;
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: hsl(var(--color-text-muted)) !important;
    font-size: 0.9rem !important;
}

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

.nav-dropdown a.active {
    color: hsl(var(--color-primary)) !important;
    background: rgba(230, 57, 70, 0.05);
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: hsl(var(--color-text-muted));
}

.nav-links a:hover,
.nav-links a.active {
    color: hsl(var(--color-text-main));
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    /* Removed background-color to ensure video with negative z-index is visible */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Abstract Background via CSS Gradient - Replaced with Image */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(16, 23, 42, 0.4), rgba(16, 23, 42, 0.2));
    z-index: 2;
}

.hero-glow {
    /* Kept for subtle lighting effect over the image */
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 4;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: hsl(var(--color-primary));
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    /* Fallback */
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(var(--color-text-muted));
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: hsl(var(--color-text-muted));
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* About Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: hsl(var(--color-text-muted));
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: hsl(var(--color-accent));
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(var(--color-text-muted));
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-visual {
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.icon-lg {
    font-size: 4rem;
    color: hsl(var(--color-primary));
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, hsl(var(--color-primary)), hsl(var(--color-accent)));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Services / Features */
.services-section {
    background: hsl(var(--color-bg-light));
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: hsl(var(--color-bg));
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(230, 57, 70, 0.3);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(230, 57, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: hsl(var(--color-primary));
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: hsl(var(--color-text-muted));
}

/* CTA */
.cta-box {
    background: linear-gradient(135deg, hsl(var(--color-bg-light)), hsl(var(--color-bg)));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(var(--color-primary)), hsl(var(--color-accent)));
}

.donation-info {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: inline-block;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Donation Methods */
.donation-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.donation-option {
    text-align: center;
}

.donation-option h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.donation-option h3 i {
    color: hsl(var(--color-accent));
}

.donation-option p {
    color: hsl(var(--color-text-muted));
    margin-bottom: 1.5rem;
}

.donation-divider {
    position: relative;
    text-align: center;
    margin: 1rem 0;
}

.donation-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.donation-divider span {
    position: relative;
    background: hsl(var(--color-bg));
    padding: 0 1rem;
    color: hsl(var(--color-text-muted));
    font-weight: 600;
}

.donation-option .donation-info {
    margin: 0;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: hsl(var(--color-bg-light));
    border-radius: var(--radius-md);
}

.contact-item i {
    font-size: 2rem;
    color: hsl(var(--color-accent));
    margin-bottom: 1rem;
}

.contact-item a {
    color: hsl(var(--color-primary));
    font-weight: 600;
}

/* Footer */
.main-footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: hsl(var(--color-bg));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .brand-text {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: hsl(var(--color-text-muted));
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: hsl(var(--color-text-muted));
}

/* Gallery Section */
.gallery-section {
    background: hsl(var(--color-bg));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-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.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay p {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Page-Specific Styles */
.page-content {
    padding-top: 80px;
}

.page-hero {
    background: linear-gradient(135deg, hsl(var(--color-bg-light)), hsl(var(--color-bg)));
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.apply-hero {
    background: linear-gradient(to bottom, rgba(16, 23, 42, 0.7), rgba(16, 23, 42, 0.7)), url('assets/apply-hero.jpg');
    background-size: cover;
    background-position: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--color-text-muted));
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: hsl(var(--color-bg-light));
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(230, 57, 70, 0.3);
}

.faq-question {
    padding: 1.5rem;
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: hsl(var(--color-text-main));
}

.faq-question i {
    color: hsl(var(--color-accent));
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 4rem;
    color: hsl(var(--color-text-muted));
    line-height: 1.8;
}

.faq-answer ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.faq-answer li {
    margin-bottom: 0.75rem;
}

.faq-answer a {
    color: hsl(var(--color-primary));
    text-decoration: underline;
}

/* Process Steps */
.process-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--color-primary)), hsl(var(--color-primary-dark)));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.step-content p {
    color: hsl(var(--color-text-muted));
    line-height: 1.8;
}

/* Info Box */
.info-box {
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
}

.info-box h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-box i {
    color: hsl(var(--color-primary));
    font-size: 1.75rem;
}

.info-box p {
    color: hsl(var(--color-text-muted));
    line-height: 1.8;
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: hsl(var(--color-bg-light));
    padding: 2.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 57, 70, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(var(--color-accent));
    margin-bottom: 1rem;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: hsl(var(--color-accent));
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--color-text-main));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1rem;
}

.stat-card p {
    color: hsl(var(--color-text-muted));
    font-size: 0.95rem;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
    background: hsl(var(--color-bg-light));
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-item i {
    font-size: 2.5rem;
    color: hsl(var(--color-primary));
    margin-bottom: 1rem;
}

.impact-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.impact-item p {
    color: hsl(var(--color-text-muted));
    line-height: 1.7;
}

.content-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.fundraising-intro p,
.apply-intro p {
    font-size: 1.1rem;
    color: hsl(var(--color-text-muted));
    line-height: 1.8;
}

.contact-info {
    text-align: center;
}

.contact-info a {
    color: hsl(var(--color-primary));
    font-weight: 600;
}

/* Board of Directors Styles */
.board-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: hsl(var(--color-text-muted));
    line-height: 1.8;
}

.board-section {
    margin-top: 4rem;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 1rem auto 3rem;
    font-size: 1.1rem;
    color: hsl(var(--color-text-muted));
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.board-member {
    background: hsl(var(--color-bg-light));
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.board-member:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 57, 70, 0.3);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid hsl(var(--color-primary));
    box-shadow: var(--shadow-glow);
}

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

.member-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--color-primary)), hsl(var(--color-primary-dark)));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.board-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.member-title {
    color: hsl(var(--color-accent));
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.member-bio {
    color: hsl(var(--color-text-muted));
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--color-primary));
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
}

.member-contact:hover {
    background: rgba(230, 57, 70, 0.2);
    transform: translateY(-2px);
}

/* Committee Info */
.committee-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: hsl(var(--color-bg-light));
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card i {
    font-size: 2.5rem;
    color: hsl(var(--color-accent));
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: hsl(var(--color-text-muted));
    line-height: 1.7;
}

.committee-members {
    background: hsl(var(--color-bg-light));
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 3rem;
}

.committee-members h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.committee-members>p {
    color: hsl(var(--color-text-muted));
    line-height: 1.8;
    margin-bottom: 2rem;
}

.committee-note {
    background: rgba(230, 57, 70, 0.1);
    border-left: 4px solid hsl(var(--color-primary));
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.committee-note i {
    color: hsl(var(--color-primary));
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.committee-note p {
    color: hsl(var(--color-text-muted));
    line-height: 1.7;
    margin: 0;
}

/* Board Styles */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.committee-grid {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.board-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.board-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 68, 68, 0.2);
}

.board-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.board-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.board-card:hover .board-image img {
    filter: brightness(1) grayscale(0);
}

.board-info {
    padding: 1.5rem;
    text-align: center;
}

.board-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.board-role {
    color: hsl(var(--color-primary));
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.board-region {
    color: hsl(var(--color-text-muted));
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        /* JS will toggle this */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: hsl(var(--color-bg-light));
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .gallery-large {
        grid-column: span 1;
    }

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

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    /* Blog Section */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2.5rem;
    }

    .blog-card {
        background: hsl(var(--color-bg-light));
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .blog-card:hover {
        transform: translateY(-10px);
        border-color: hsla(var(--color-primary), 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .blog-image {
        position: relative;
        height: 240px;
        overflow: hidden;
    }

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

    .blog-card:hover .blog-image img {
        transform: scale(1.1);
    }

    .blog-category {
        position: absolute;
        top: 1.5rem;
        left: 1.5rem;
        background: hsl(var(--color-primary));
        color: white;
        padding: 0.4rem 1rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .blog-content {
        padding: 2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .blog-meta {
        display: flex;
        gap: 1.5rem;
        font-size: 0.85rem;
        color: hsl(var(--color-text-muted));
        margin-bottom: 1rem;
    }

    .blog-meta i {
        margin-right: 5px;
        color: hsl(var(--color-primary));
    }

    .blog-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .blog-title a {
        color: var(--color-text);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .blog-title a:hover {
        color: hsl(var(--color-primary));
    }

    .blog-excerpt {
        color: hsl(var(--color-text-muted));
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .blog-read-more {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: hsl(var(--color-primary));
        font-weight: 600;
        text-decoration: none;
        font-size: 0.95rem;
        transition: gap 0.3s ease;
    }

    .blog-read-more:hover {
        gap: 0.8rem;
    }

    .pagination {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }

    .pagination .btn {
        min-width: 45px;
        padding: 0.8rem;
    }

    .pagination .btn.active {
        background: hsl(var(--color-primary));
        border-color: hsl(var(--color-primary));
    }

    @media (max-width: 768px) {
        .blog-grid {
            grid-template-columns: 1fr;
        }
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .page-hero {
        padding: 4rem 0 3rem;
    }
}

/* Blog Post Detail */
.post-detail {
    padding-top: 0;
}

.post-hero {
    padding: 10rem 0 6rem;
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--color-text-muted));
    font-size: 0.9rem;
}

.post-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-text);
}

.post-body {
    max-width: 850px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.post-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: hsl(var(--color-text-muted));
}

.post-body .lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 3.5rem;
    border-left: 4px solid hsl(var(--color-primary));
    padding-left: 2rem;
}

.post-body h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin: 4.5rem 0 2rem;
    color: var(--color-text);
    font-weight: 700;
}

.post-body h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin: 3.5rem 0 1.5rem;
    color: var(--color-text);
    font-weight: 700;
}

.post-body h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--color-text);
    font-weight: 600;
}

.post-body ul,
.post-body ol {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.post-body li {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: hsl(var(--color-text-muted));
}

.post-image-full {
    margin: 4rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.post-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.post-footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .post-hero {
        padding: 8rem 0 4rem;
    }

    .post-body .lead {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }

    .post-body h2 {
        font-size: 1.8rem;
    }

    .post-body h3 {
        font-size: 1.5rem;
    }
}