/*
Theme Name: Brotherhood GFT
Theme URI: https://brotherhoodgft.org
Author: Brotherhood GFT Team
Author URI: https://brotherhoodgft.org
Description: A custom WordPress theme for Brotherhood GFT - An NGO dedicated to empowering persons with disabilities through prosthetic limbs, glasses, and assistive devices.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brotherhood-gft
Tags: ngo, charity, nonprofit, accessibility, one-column, custom-menu, featured-images, theme-options
*/

/* ========================================
   CSS Variables & Base Styles
   ======================================== */
:root {
    --primary-color: #5B8FBE;
    --primary-dark: #3D6F99;
    --primary-light: #89B5D9;
    --secondary-color: #D84315;
    --secondary-dark: #BF360C;
    --accent-color: #0288D1;
    --text-dark: #212121;
    --text-light: #757575;
    --text-white: #FFFFFF;
    --bg-light: #EDF4F9;
    --bg-white: #FFFFFF;
    --border-color: #D0E1ED;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

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

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 0.85rem;
}

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

.header-top a {
    color: var(--text-white);
}

.header-main {
    padding: 15px 0;
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.site-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

.header-donate .btn {
    padding: 10px 25px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('assets/images/hero-pattern.svg') no-repeat center right;
    opacity: 0.1;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========================================
   Impact Stats Section
   ======================================== */
.impact-stats {
    background-color: var(--bg-light);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--text-white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 200px;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

.about-content h2 {
    color: var(--primary-color);
}

.about-features {
    margin-top: 25px;
}

.about-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
}

/* ========================================
   Success Stories / Testimonials
   ======================================== */
.stories-section {
    padding: 80px 0;
}

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

.story-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

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

.story-content {
    padding: 25px;
}

.story-quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 20px;
}

.story-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
}

.story-name {
    font-weight: 600;
    color: var(--text-dark);
}

.story-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========================================
   CTA / Donate Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--text-white);
}

.cta-section h2 {
    color: var(--text-white);
    font-size: 2.5rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.cta-section .btn-primary {
    background-color: var(--bg-white);
    color: var(--secondary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--bg-light);
}

/* ========================================
   Get Help / Request Form Section
   ======================================== */
.help-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.help-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* ========================================
   Events / News Section
   ======================================== */
.news-section {
    padding: 80px 0;
}

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

.news-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-image {
    height: 180px;
    overflow: hidden;
}

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

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* ========================================
   Partners Section
   ======================================== */
.partners-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 60px;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}

.partners-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding-top: 60px;
}

.footer-grid {
    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-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

.footer-column h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

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

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

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

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

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow);
        padding: 20px;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .stats-grid,
    .services-grid,
    .stories-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }

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

    .header-donate {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Accessibility
   ======================================== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 10px 20px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 10px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #006400;
        --text-light: #333333;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   Single Post/CPT Template
   ======================================== */
.single-content {
    padding: 60px 0;
}

.single-article {
    max-width: 900px;
    margin: 0 auto;
}

.single-featured-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.single-featured-image img {
    width: 100%;
    height: auto;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.single-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.single-meta span i {
    color: var(--primary-color);
}

.single-content-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.single-content-body p {
    margin-bottom: 1.5rem;
}

.single-content-body h2,
.single-content-body h3,
.single-content-body h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Service Features */
.service-features {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.service-features h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.service-features li i {
    color: var(--primary-color);
    margin-top: 4px;
}

/* Camp/Project Status */
.camp-status,
.project-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-upcoming,
.status-planned {
    background-color: #e3f2fd;
    color: #1976d2;
}

.status-ongoing,
.status-active,
.status-in_progress {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-completed {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.status-cancelled,
.status-on_hold {
    background-color: #ffebee;
    color: #c62828;
}

/* Project Progress */
.project-progress {
    margin-bottom: 30px;
}

.project-progress h4 {
    margin-bottom: 10px;
}

.progress-bar {
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Camp Services & Project Outcomes */
.camp-services,
.project-outcomes {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.camp-services h3,
.project-outcomes h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Single CTA */
.single-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 40px 0;
}

.single-cta h3 {
    color: var(--text-white);
    margin-bottom: 10px;
}

.single-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.single-cta .btn {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.single-cta .btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

/* Post Navigation */
.single-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.single-navigation a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-navigation a:hover {
    color: var(--primary-dark);
}

.nav-previous a i {
    margin-right: 5px;
}

.nav-next a i {
    margin-left: 5px;
}

/* Responsive Single */
@media (max-width: 768px) {
    .single-meta {
        flex-direction: column;
        gap: 10px;
    }

    .single-navigation {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   Archive Pages - Additional Styles
   ======================================== */
.no-content {
    text-align: center;
    padding: 80px 20px;
}

.no-content i {
    font-size: 64px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.no-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.no-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Camps Archive Specific */
.camps-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    color: var(--primary-color);
}

.camps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.camp-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.camp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.camp-card.past {
    opacity: 0.85;
}

.camp-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.camp-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--text-white);
    font-size: 64px;
}

.camp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.upcoming-badge {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.past-badge {
    background-color: var(--text-light);
    color: var(--text-white);
}

.camp-content {
    padding: 25px;
}

.camp-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.camp-date,
.camp-location,
.camp-type {
    margin: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.camp-date i,
.camp-location i,
.camp-type i {
    color: var(--primary-color);
    width: 20px;
}

.camp-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 15px 0;
}

/* ========================================
   About Page Specific Styles
   ======================================== */
.about-mission,
.about-story,
.about-values,
.about-team {
    padding: 60px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

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

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--text-white);
    font-size: 64px;
}

.team-content {
    padding: 20px;
}

.team-content h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========================================
   Donate Page Specific Styles
   ======================================== */
.donate-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.impact-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.impact-card:hover {
    box-shadow: var(--shadow-hover);
}

.impact-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
}

.impact-description {
    flex: 1;
}

.impact-description i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.impact-description p {
    color: var(--text-dark);
    margin: 0;
}

.csr-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.csr-text h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.csr-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.csr-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.csr-benefits li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.csr-benefits i {
    color: var(--primary-color);
}

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

/* ========================================
   Contact Page Specific Styles
   ======================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
}

.contact-info-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-intro h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-form-intro p {
    color: var(--text-light);
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-social-item h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-social-item p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-action-btn {
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.quick-action-btn i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.quick-action-btn:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.map-container {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
}

/* ========================================
   Developer Credit (Footer)
   ======================================== */
.developer-credit {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.7rem;
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.6);
}

.developer-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.developer-credit a:hover {
    opacity: 0.8;
}

/* ========================================
   Responsive Updates
   ======================================== */
@media (max-width: 768px) {
    .camps-grid,
    .values-grid,
    .team-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .csr-content {
        grid-template-columns: 1fr;
    }

    .csr-image {
        display: none;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Media Galleries (Photo/Video)
   ======================================== */
.bgft-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 24px;
}

.bgft-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 999px;
    text-decoration: none;
    color: var(--text);
    background: #fff;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    font-size: 0.95rem;
}

.bgft-filter:hover {
    transform: translateY(-1px);
    border-color: rgba(0,0,0,0.2);
}

.bgft-filter.is-active {
    background: rgba(46, 125, 50, 0.1);
    border-color: rgba(46, 125, 50, 0.35);
    color: var(--primary);
}

.bgft-media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bgft-photo-card {
    position: relative;
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #f4f6f8;
    box-shadow: var(--shadow-sm);
}

.bgft-photo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.bgft-photo-card:hover img {
    transform: scale(1.04);
}

.bgft-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.bgft-photo-card:hover .bgft-photo-overlay {
    opacity: 1;
}

.bgft-photo-album {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.bgft-video-card {
    border: 0;
    padding: 0;
    text-align: left;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.bgft-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #111;
}

.bgft-video-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,0.2);
    transition: background 0.2s ease;
}

.bgft-video-play i {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    color: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.bgft-video-card:hover .bgft-video-play {
    background: rgba(0,0,0,0.35);
}

.bgft-video-info {
    display: block;
    padding: 14px 14px 16px;
}

.bgft-video-title {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.bgft-video-excerpt {
    display: block;
    color: rgba(0,0,0,0.7);
    font-size: 0.95rem;
}

/* Lightbox / Modal */
.bgft-lightbox,
.bgft-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
}

body.bgft-modal-open {
    overflow: hidden;
}

.bgft-lightbox.is-open,
.bgft-modal.is-open {
    display: flex;
}

.bgft-lightbox-inner,
.bgft-modal-inner {
    position: relative;
    width: min(980px, 100%);
    max-height: 90vh;
    overflow: auto;
    border-radius: 14px;
    background: #0b0f19;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.bgft-lightbox-image {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.bgft-lightbox-meta {
    padding: 14px 16px 16px;
    color: rgba(255,255,255,0.85);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bgft-lightbox-caption {
    font-size: 0.95rem;
    line-height: 1.4;
}

.bgft-lightbox-album {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.bgft-lightbox-close,
.bgft-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    border-radius: 999px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.bgft-modal-title {
    padding: 16px 18px 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.bgft-modal-media {
    padding: 14px 18px 18px;
}

.bgft-modal-media iframe,
.bgft-modal-media video {
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: #000;
}

/* Recognition */
.bgft-recognition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bgft-recognition-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.bgft-recognition-media {
    position: relative;
    background: #f4f6f8;
}

.bgft-recognition-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.bgft-recognition-placeholder {
    height: 220px;
    display: grid;
    place-items: center;
    color: rgba(0,0,0,0.45);
    font-size: 64px;
}

.bgft-recognition-year {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.72);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.bgft-recognition-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bgft-recognition-title {
    margin: 0;
    font-size: 1.1rem;
}

.bgft-recognition-issuer,
.bgft-recognition-category {
    margin: 0;
    color: rgba(0,0,0,0.72);
    font-size: 0.95rem;
}

.bgft-recognition-actions {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .bgft-media-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .bgft-recognition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bgft-media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bgft-recognition-grid {
        grid-template-columns: 1fr;
    }
}

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