/* Root Variables - Dark Theme Only */
:root {
    --primary-red: #FF6B6B;
    --primary-blue: #66d0ef;
    --dark-blue: #5A8FD8;
    --accent-orange: #FFB347;
    --coral: #FF9999;
    --white: #FFFFFF;
    
    /* Dark Theme Variables */
    --bg-primary: #0F1419;
    --bg-secondary: #1A1F2E;
    --bg-tertiary: #252B3A;
    --text-primary: #E2E8F0;
    --text-secondary: #A0AEC0;
    --text-tertiary: #718096;
    --border-color: #2D3748;
    --card-bg: #1A1F2E;
    --nav-bg: rgba(15, 20, 25, 0.95);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.4);

    /* Dark Gray Scale */
    --gray-100: #252B3A;
    --gray-200: #2D3748;
    --gray-300: #4A5568;
    --gray-400: #718096;
    --gray-500: #A0AEC0;
    --gray-600: #CBD5E0;
    --gray-700: #E2E8F0;
    --gray-800: #F7FAFC;
    --gray-900: #FFFFFF;
    --dark-bg: #1A1A1A;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Global Heading Styles */
h1, h2, h3 {
    color: var(--primary-red);
}

/* Theme Toggle Button */
.theme-toggle {
    display: none; /* Hidden since we only have dark theme now */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.donate-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.donate-btn:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 87, 87, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-video-section {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.video-container {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder i:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-primary);
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.stat p {
    color: var(--primary-blue);
    font-weight: 600;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.programs h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.program-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Get Involved Section */
.get-involved {
    padding: 100px 0;
    background: var(--bg-primary);
}

.get-involved h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.option-card {
    background: var(--bg-tertiary);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.option-card:hover {
    transform: translateY(-5px);
    background: var(--card-bg);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.option-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.option-card p {
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Videos Section */
.videos {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.videos h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.video-item {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-red);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--accent-orange);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h3 {
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.partners h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.partners-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.partners-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.partner-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.featured-partner {
    border: 2px solid var(--primary-red);
    position: relative;
}

.featured-partner::before {
    content: 'Featured Partner';
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 2rem;
}

.partner-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.partner-location {
    color: #A0AEC0;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.partner-description {
    color: var(--primary-blue);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.partner-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.service-tag {
    background: var(--bg-tertiary);
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.partner-contact {
    background: var(--bg-tertiary);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.partner-contact p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.partner-contact p:first-child {
    color: var(--text-primary);
    font-weight: 600;
}

.partner-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.partner-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.partner-opportunities {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    text-align: center;
}

.partner-opportunities h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.partner-opportunities h3 i {
    color: var(--primary-red);
}

.partner-opportunities p {
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.6;
}

.partnership-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.partnership-benefits li {
    padding: 10px 0;
    color: var(--primary-blue);
    position: relative;
    padding-left: 30px;
}

.partnership-benefits li::before {
    content: '🤝';
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-primary);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-item:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    width: 30px;
    text-align: center;
}

.contact-item:hover i {
    color: var(--white);
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item:hover h3 {
    color: var(--white);
}

.contact-item p {
    color: var(--primary-blue);
}

.contact-item:hover p {
    color: var(--white);
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.contact-item:hover a {
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: var(--card-bg);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--primary-blue);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Visually hidden class for honeypot and accessibility helpers */
.hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap; /* added line */
}

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    left: -999px;
    top: -999px;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 3000;
}
.skip-link:focus {
    left: 10px;
    top: 10px;
}

/* Stay Connected Section */
.stay-connected {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    text-align: center;
}

.connected-content {
    max-width: 700px;
    margin: 0 auto;
}

.connected-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.stay-connected h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--coral);
    margin-bottom: 20px;
}

.stay-connected p {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
    line-height: 1.6;
}

.social-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-facebook {
    background: #1877F2;
    color: var(--white);
    border: 2px solid #1877F2;
}

.btn-facebook:hover {
    background: #145dbf;
    border-color: #145dbf;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.btn-instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F56040);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #6b2d94, #c72759, #d14e36);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}

.btn-social i {
    font-size: 1.3rem;
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 20px;
    text-align: center;
    color: var(--primary-blue);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--card-bg);
    margin: 10% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    border: 1px solid var(--border-color);
    color: var(--primary-blue);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-tertiary);
}

.close:hover {
    color: var(--primary-red);
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.donation-btn {
    padding: 15px;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-btn:hover,
.donation-btn.active {
    background: var(--primary-red);
    color: var(--white);
}

.custom-amount input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    margin-top: 15px;
    background: var(--card-bg);
    color: var(--text-primary);
}

/* Success Page Styles */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-primary);
    padding: 2rem;
}

.success-content {
    text-align: center;
    max-width: 500px;
}

.success-icon {
    font-size: 4rem;
    color: var(--coral);
    margin-bottom: 1rem;
}

.success-content h1 {
    color: var(--coral);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: var(--nav-bg);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow-color);
        padding: 20px 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .involvement-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .about h2,
    .programs h2,
    .get-involved h2,
    .videos h2,
    .contact h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    
    .logo-text {
        display: block;
    }
    
    .logo-text h1 {
        font-size: 0.9rem;
        line-height: 1.1;
        margin-bottom: 2px;
    }
    
    .logo-text p {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    .donation-amounts {
        grid-template-columns: 1fr;
    }

    /* Reduce hero and image heights on small screens */
    .hero-image img,
    .about-image img {
        height: 260px;
    }
    
    /* Fix container padding on mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Hero buttons stack better */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Contact form improvements */
    .contact-content {
        gap: 30px;
    }
    
    .contact-item {
        padding: 15px;
        gap: 15px;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    /* Stats responsive */
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* Program cards mobile spacing */
    .program-card {
        padding: 20px;
    }
    
    .program-card h3 {
        font-size: 1.3rem;
    }
    
    /* Partner section mobile */
    .partner-card {
        padding: 20px;
    }
    
    .partner-services {
        gap: 8px;
    }
    
    .service-tag {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    /* Footer mobile spacing */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


/* Dark theme specific adjustments */
.hero-image img,
.about-image img {
    opacity: 0.9;
}

.video-placeholder i {
    background: rgba(255, 107, 107, 0.2);
}

.social-links a {
    background: var(--bg-tertiary);
}

.social-links a:hover {
    background: var(--primary-red);
}

/* Enhanced shadow for dark theme */
.program-card:hover,
.video-item:hover,
.option-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Scroll-to-top button */
.scroll-to-top {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

/* Theme toggle responsive positioning */
@media (max-width: 768px) {
    .theme-toggle {
        top: auto;
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        z-index: 3000;
        box-shadow: 0 6px 20px var(--shadow-hover);
    }
    
    .theme-toggle i {
        font-size: 1.1rem;
    }
    
    .theme-toggle:hover {
        transform: translateY(-3px) scale(1.08);
        box-shadow: 0 8px 25px var(--shadow-hover);
    }
}

/* Training Page Specific Styles */
.training-hero {
    margin-top: 100px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.training-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.training-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1.1;
}

.training-hero p {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image-training {
    margin-top: 40px;
}

.hero-image-training img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-color);
}

.training-programs {
    padding: 80px 0;
    background: var(--bg-primary);
}

.training-module {
    margin-bottom: 80px;
    padding: 40px 0;
}

.training-module:last-child {
    margin-bottom: 0;
}

.module-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.training-module.reverse .module-content {
    grid-template-columns: 1fr 1fr;
}

.module-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.module-text h2 i {
    color: var(--primary-red);
    font-size: 2rem;
}

.module-text p {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.6;
}

.training-list {
    list-style: none;
    padding: 0;
}

.training-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--primary-blue);
    position: relative;
    padding-left: 30px;
}

.training-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.1rem;
}

.module-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px var(--shadow-color);
    transition: transform 0.3s ease;
}

.module-image img:hover {
    transform: translateY(-5px);
}

.training-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-red);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

/* Programs Banner Styles */
.programs-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.programs-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.banner-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.highlight-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.highlight-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.highlight-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.banner-cta {
    margin-top: 50px;
}

.banner-cta .btn {
    font-size: 1.2rem;
    padding: 18px 40px;
    margin: 0 10px;
}

.banner-cta .btn-primary {
    background: var(--white);
    color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.banner-cta .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.banner-cta .btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.banner-cta .btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--text-primary);
}

/* Responsive Design for Training Pages */
@media (max-width: 768px) {
    .training-hero h1 {
        font-size: 2.5rem;
    }
    
    /* Make modules stack with image first, then text for consistency */
    .module-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .training-module.reverse .module-content {
        display: flex;
        flex-direction: column;
    }
    
    .module-image { order: 1; }
    .module-text { order: 2; }
    
    .module-text h2 {
        font-size: 2rem;
        justify-content: center;
    }
    
    .banner-content h2 {
        font-size: 2.5rem;
    }
    
    .banner-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile specific styles */
@media (max-width: 480px) {
    .banner-highlights {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-item h3 {
        font-size: 1.1rem;
    }
    
    .cta-buttons,
    .banner-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn,
    .banner-cta .btn {
        margin: 5px 0;
        width: 100%;
        max-width: 280px;
    }
    
    .social-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-social {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stay-connected h2 {
        font-size: 2rem;
    }
    
    .stay-connected p {
        font-size: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Training module image height on small screens */
    .module-image img {
        height: auto;
    }
    

/* Normalize image aspect on mobile to avoid vertical/horizontal mismatch */
@media (max-width: 768px) {
    .hero-image img,
    .about-image img,
    .hero-image-training img,
    .module-image img {
        width: 100%;
        height: auto !important;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        object-position: center;
    }
}
    .partner-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .partner-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    /* Navigation mobile improvements */
    .nav-menu {
        top: 80px;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    /* Form mobile improvements */
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    /* Training banner mobile */
    .banner-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .banner-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Partner Spotlight Section */
.partner-spotlight {
    padding: 80px 0;
    background: var(--bg-tertiary);
}

.spotlight-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.spotlight-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.spotlight-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.spotlight-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.spotlight-services {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.spotlight-services h4 {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.spotlight-services ul {
    list-style: none;
    padding: 0;
}

.spotlight-services li {
    padding: 8px 0;
    color: var(--primary-blue);
    position: relative;
    padding-left: 25px;
}

.spotlight-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.spotlight-cta {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--primary-red);
}

.spotlight-cta p {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
}

.spotlight-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.spotlight-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.spotlight-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotlight-logo {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px var(--shadow-color);
    border: 2px solid var(--primary-red);
    width: 100%;
}

.spotlight-logo i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.spotlight-logo h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.spotlight-logo p {
    color: var(--primary-blue);
    font-size: 1rem;
    margin: 0;
}

/* Responsive for Partner Spotlight */
@media (max-width: 768px) {
    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .spotlight-buttons {
        justify-content: center;
    }
    
    .spotlight-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .spotlight-text h2 {
        font-size: 2rem;
    }
    
    .spotlight-text h3 {
        font-size: 1.5rem;
    }
}