/* Gyan Foundation CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stripe Embed Styles */
.stripe-embed-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin: 2rem 0;
}

.stripe-iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    display: block;
}

.iframe-fallback {
    display: none;
    text-align: center;
    padding: 2rem;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.iframe-fallback p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.fallback-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ea580c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.fallback-donate-btn:hover {
    background-color: #dc2626;
    transform: translateY(-1px);
}

.donation-security-info {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0f9ff;
    border-radius: 8px;
}

.donation-security,
.donation-tax-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    margin: 0.5rem 0;
}

/* Show fallback if iframe fails to load */
.stripe-iframe:not([src]),
.stripe-iframe[src=""] {
    display: none;
}

.stripe-iframe:not([src]) ~ .iframe-fallback,
.stripe-iframe[src=""] ~ .iframe-fallback {
    display: block;
}

/* Responsive iframe */
@media (max-width: 768px) {
    .stripe-iframe {
        min-height: 500px;
    }

    .donation-security-info {
        text-align: left;
    }

    .donation-security,
    .donation-tax-info {
        justify-content: flex-start;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background-color: var(--background-color);
    color: var(--text-color);
}

.header-top {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
}

.contact-info {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-main {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo-primary {
    color: var(--primary-color);
}

.logo-secondary {
    color: var(--text-color);
}

.navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.donate-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.nav-link.donate-btn:hover {
    background-color: rgba(255, 106, 0, 0.9);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(51, 65, 85, 0.8), rgba(51, 65, 85, 0.6), rgba(51, 65, 85, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 4rem;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: rgba(255, 106, 0, 0.9);
    transform: scale(1.05);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.section-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.section-button:hover {
    background-color: rgba(255, 106, 0, 0.9);
}

/* Layout Components */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.image-container {
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #e5e7eb;
}

.section-image {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-image {
    height: 12rem;
    overflow: hidden;
}

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

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-accent {
    width: 4rem;
    height: 0.25rem;
    background-color: var(--primary-color);
    margin: 0 auto 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.card-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.card-description {
    color: #6b7280;
    line-height: 1.6;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.value-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.team-image {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 106, 0, 0.2);
}

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

.team-placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 106, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.team-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

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

.team-bio {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-subtitle {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact .contact-item i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.links-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Mission/Vision sections */
.mission-vision {
    margin-top: 2rem;
}

.mission-section,
.vision-section {
    margin-bottom: 1.5rem;
}

.subsection-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.subsection-description {
    color: #6b7280;
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Icons (using text placeholders) */
.icon-location::before { content: "📍"; }
.icon-email::before { content: "📧"; }
.icon-phone::before { content: "📞"; }
.icon-arrow-right::before { content: "→"; }
.icon-user::before { content: "👤"; }
.icon-users::before { content: "👥"; }
.icon-shield::before { content: "🛡️"; }
.icon-heart::before { content: "❤️"; }
.icon-graduation-cap::before { content: "🎓"; }
.icon-home::before { content: "🏠"; }
.icon-award::before { content: "🏆"; }
.icon-camera::before { content: "📷"; }
.icon-video::before { content: "🎬"; }
.icon-calendar::before { content: "📅"; }
.icon-check::before { content: "✓"; }
.icon-warning::before { content: "⚠️"; }
.icon-clock::before { content: "🕰️"; }
.icon-credit-card::before { content: "💳"; }
.icon-bank::before { content: "🏦"; }
.icon-paypal::before { content: "💱"; }
.icon-gift::before { content: "🎁"; }

/* Responsive Design */
@media (max-width: 768px) {
    .navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .column.image-column {
        order: 2;
    }
    
    .column.content-column {
        order: 1;
        text-align: center;
    }
    
    .three-column-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }

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

    .gallery-item-content {
        padding: 1rem;
    }

    .story-card {
        padding: 1.5rem;
    }

    .video-container {
        padding: 1rem;
    }
    .container {
        padding: 0 0.75rem;
    }
    
    .header-main {
        padding: 0.75rem 0;
    }
    
    .hero-content {
        padding: 0 0.75rem;
    }
    
    .card-content,
    .value-card,
    .team-card {
        padding: 1.5rem;
    }
}

/* Featured Causes Section */
.featured-causes-section {
    background-color: #f9fafb;
    padding: 5rem 0;
}

/* Values Section */
.values-section {
    background-color: white;
    padding: 5rem 0;
}

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

.value-card {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-description {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
}

.cta-button.primary:hover {
    background-color: rgba(255, 106, 0, 0.9);
}

.cta-button.secondary {
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 106, 0, 0.1);
}

/* Responsive adjustments for causes page */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Gallery Specific Styles */
.gallery-intro {
    background-color: white;
    padding: 5rem 0;
}

.gallery-filters {
    background-color: #f9fafb;
    padding: 2rem 0;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid #d1d5db;
    background-color: white;
    color: #1f2937;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.gallery-grid-section {
    background-color: white;
    padding: 4rem 0;
}

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

.gallery-item {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    border-color: rgba(255, 106, 0, 0.5);
    transform: scale(1.05);
}

.gallery-item-image {
    height: 16rem;
    overflow: hidden;
}

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

.gallery-placeholder {
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(255, 106, 0, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6b7280;
}

.gallery-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: rgba(255, 106, 0, 0.6);
}

.gallery-item-content {
    padding: 1.5rem;
}

.gallery-item-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.gallery-category {
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 106, 0, 0.2);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
}

.gallery-type {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-item-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.gallery-item-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gallery-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Impact Stories */
.impact-stories {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.story-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 106, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.story-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.story-role {
    color: #6b7280;
    font-size: 0.875rem;
}

.story-content {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Video Section */
.video-section {
    background-color: white;
    padding: 4rem 0;
}

.video-content {
    max-width: 64rem;
    margin: 0 auto;
}

.video-container {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(255, 106, 0, 0.1));
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-placeholder i {
    font-size: 6rem;
    color: rgba(255, 106, 0, 0.6);
    margin-bottom: 1.5rem;
}

.video-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.video-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    max-width: 32rem;
}

.video-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-play-btn:hover {
    background-color: rgba(255, 106, 0, 0.9);
}

/* Get Involved Section */
.get-involved-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.get-involved-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.get-involved-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

.get-involved-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

    .gallery-item-details {
        gap: 0.25rem;
    }

    .story-header {
        flex-direction: column;
        text-align: center;
    }

    .video-placeholder i {
        font-size: 4rem;
    }

    .video-title {
        font-size: 1.5rem;
    }
}

/* Contact Page Specific Styles */
.contact-section {
    background-color: white;
    padding: 5rem 0;
}

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

/* Contact Form Styles */
.contact-form-container {
    order: 2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: rgba(255, 106, 0, 0.9);
}

/* Alert Styles */
.alert {
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.alert-success {
    background-color: #d1fae5;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-icon {
    font-size: 1.5rem;
}

.alert-success .alert-icon {
    color: #10b981;
}

.alert-error .alert-icon {
    color: #ef4444;
}

.alert-text h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.alert-success .alert-text h3 {
    color: #065f46;
}

.alert-error .alert-text h3 {
    color: #991b1b;
}

.alert-success .alert-text p {
    color: #047857;
}

.alert-error .alert-text p {
    color: #dc2626;
}

/* Contact Info Styles */
.contact-info-container {
    order: 1;
}

.map-container {
    position: relative;
    height: 24rem;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.location-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-width: 18rem;
}

.location-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.location-address {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

.map-iframe {
    width: 100%;
    height: 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-detail-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-detail-text {
    color: #6b7280;
    line-height: 1.5;
}

.contact-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}

/* CTA Section for Contact */
.contact-section + .cta-section {
    background-color: #1f2937;
    color: white;
}

.contact-section + .cta-section .cta-title {
    color: white;
}

.contact-section + .cta-section .cta-description {
    color: #d1d5db;
}

.contact-section + .cta-section .cta-button.secondary {
    border-color: white;
    color: white;
}

.contact-section + .cta-section .cta-button.secondary:hover {
    background-color: white;
    color: #1f2937;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        order: 2;
    }

    .contact-info-container {
        order: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 20rem;
    }

    .location-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 1rem;
        max-width: none;
    }

    .contact-detail-item {
        align-items: center;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 0;
    }

    .contact-details {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 16rem;
    }

    .contact-details {
        gap: 0.75rem;
    }

    .alert {
        padding: 1rem;
    }
}

/* Donate Page Specific Styles */
.donate-hero {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Impact Statistics */
.impact-stats {
    background-color: rgba(255, 106, 0, 0.1);
    padding: 4rem 0;
}

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

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
}

/* Donation Section */
.donation-section {
    background-color: white;
    padding: 4rem 0;
}

.donation-container {
    max-width: 64rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.donation-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Donation Type Toggle */
.donation-type-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.toggle-container {
    background-color: rgba(107, 114, 128, 0.2);
    padding: 0.25rem;
    border-radius: 9999px;
    display: flex;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.toggle-btn:hover:not(.active) {
    color: #374151;
}

/* Amount Selection */
.amount-selection {
    margin-bottom: 2rem;
}

.selection-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.amount-btn:hover {
    border-color: rgba(255, 106, 0, 0.5);
}

.amount-btn.active {
    border-color: var(--primary-color);
    background-color: rgba(255, 106, 0, 0.1);
    color: var(--primary-color);
}

.amount-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.amount-btn.active .amount-value {
    color: var(--primary-color);
}

.amount-period {
    font-size: 0.875rem;
    color: #6b7280;
    display: none;
}

/* Custom Amount */
.custom-amount {
    display: flex;
    justify-content: center;
}

.custom-amount-input {
    display: flex;
    align-items: center;
    max-width: 300px;
    width: 100%;
}

.currency-symbol {
    color: #6b7280;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.custom-amount input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.custom-amount input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 2rem;
}

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

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    transition: border-color 0.3s ease;
}

.payment-method:hover {
    border-color: rgba(255, 106, 0, 0.5);
}

.payment-method i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.payment-method span {
    color: #1f2937;
    font-weight: 500;
}

/* Donate Button */
.donate-button-container {
    text-align: center;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.donate-btn:hover {
    background-color: rgba(255, 106, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.donate-btn i {
    font-size: 1.25rem;
}

.donation-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.donation-security i {
    color: var(--primary-color);
}

/* Impact Section */
.impact-section {
    background-color: rgba(255, 106, 0, 0.1);
    padding: 4rem 0;
}

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

.impact-card {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 106, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.impact-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.impact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.impact-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Other Ways Section */
.other-ways-section {
    background-color: white;
    padding: 4rem 0;
}

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

.way-card {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.way-card:hover {
    transform: translateY(-5px);
}

.way-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 106, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.way-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.way-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.way-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.way-link:hover {
    color: rgba(255, 106, 0, 0.8);
}

/* Tax Info Section */
.tax-info-section {
    background-color: rgba(255, 106, 0, 0.1);
    padding: 4rem 0;
}

.tax-info-card {
    max-width: 64rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
}

.tax-info-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tax-info-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.tax-info-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.tax-info-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tax-info-details {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Contact Questions Section */
.contact-questions-section {
    background-color: white;
    padding: 4rem 0;
}

.questions-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.questions-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

.questions-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.questions-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.questions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.questions-btn.primary:hover {
    background-color: rgba(255, 106, 0, 0.9);
}

.questions-btn.secondary {
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.questions-btn.secondary:hover {
    background-color: rgba(255, 106, 0, 0.1);
}

/* Responsive adjustments for donate page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

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

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

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

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

    .tax-info-content {
        flex-direction: column;
        text-align: center;
    }

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

    .questions-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .donation-container {
        padding: 1rem;
    }

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

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

    .stat-number {
        font-size: 2rem;
    }

    .impact-card,
    .way-card {
        padding: 1rem;
    }

    .tax-info-card {
        padding: 1rem;
    }
}
