/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

/* Palestine Flag Color Palette */
:root {
    --palestine-red: #ce1126;
    --palestine-white: #ffffff;
    --palestine-black: #000000;
    --palestine-green: #007a3d;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--palestine-white);
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-logo i {
    color: var(--palestine-red);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--palestine-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--palestine-green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--palestine-white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    object-fit: cover;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 0, 0, 0.7), 
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4)
    );
    z-index: -1;
}

.hero-content {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--palestine-white);
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    background: linear-gradient(135deg, var(--palestine-green), var(--palestine-red));
    color: var(--palestine-white);
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.hero-btn i {
    font-size: 1.1rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.about, .donation {
    padding: 100px 0;
}

.about {
    background: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--palestine-black);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* About Section */
.about-header {
    margin-bottom: 80px;
}

.about-content {
    display: grid;
    gap: 80px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--palestine-green);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--dark-gray);
}

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

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--palestine-white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.mission-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mission-point i {
    font-size: 2rem;
    color: var(--palestine-red);
    margin-top: 5px;
}

.mission-point h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--palestine-black);
}

.mission-point p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 1rem;
}

/* Gallery */
.gallery h3, .videos-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--palestine-green);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Videos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.video-item {
    background: var(--palestine-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.video-item:hover {
    box-shadow: var(--shadow-medium);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-item h4 {
    font-size: 1.3rem;
    margin: 20px;
    color: var(--palestine-black);
}

.video-item p {
    margin: 0 20px 20px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Donation Section Modernization */
.donation {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.donation-header {
    text-align: center;
    margin-bottom: 40px;
}

.donation-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 32px auto;
}
@media (max-width: 700px) {
    .donation-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
.donation-stats .stat-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 18px 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 140px;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #e9ecef;
}
.donation-stats .stat-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    transform: translateY(-4px) scale(1.03);
}
.donation-stats .stat-icon {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: var(--palestine-green);
}
.donation-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--palestine-green);
    margin-bottom: 4px;
}
.donation-stats .stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}
.donation-stats .stat-progress {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}
.donation-stats .stat-progress .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--palestine-green), var(--palestine-red));
    border-radius: 2px;
    transition: width 2s;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f6f4;
    color: var(--palestine-green);
    padding: 7px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: none;
    border: 1px solid #e9ecef;
    transition: background 0.2s, color 0.2s;
}
.trust-badge i {
    font-size: 1rem;
}
.trust-badge:hover {
    background: var(--palestine-green);
    color: #fff;
}

.donation-grid {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
@media (max-width: 1000px) {
    .donation-grid {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
}
.donation-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    flex: 1 1 320px;
    min-width: 320px;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 1.5px solid #e9ecef;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.donation-card.featured {
    border: 2px solid var(--palestine-green);
    box-shadow: 0 4px 18px rgba(0,122,61,0.10);
}
.donation-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-6px) scale(1.02);
    z-index: 2;
}
.card-header {
    padding: 22px 22px 10px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--palestine-green), var(--palestine-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon i {
    font-size: 1.4rem;
    color: #fff;
}
.card-info {
    flex: 1;
}
.card-info h3 {
    font-size: 1.1rem;
    color: var(--palestine-green);
    margin-bottom: 6px;
    font-weight: 600;
}
.card-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.card-features {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.feature-tag {
    background: rgba(0, 122, 61, 0.08);
    color: var(--palestine-green);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
}
.card-body {
    padding: 0 22px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Add more whitespace between sections */
.donation-impact, .donation-cta {
    margin-top: 60px;
}

/* Consistent border radii and shadows for all cards */
.donation-card, .stat-card, .impact-item {
    border-radius: 18px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Responsive donation cards */
@media (max-width: 700px) {
    .donation-card {
        min-width: 100%;
        max-width: 100%;
    }
    .donation-grid {
        flex-direction: column;
        gap: 14px;
    }
}

/* Donation Notes */
.donation-note,
.transfer-note,
.crypto-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: rgba(0, 122, 61, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--palestine-green);
    margin-top: 15px;
}

.donation-note i,
.transfer-note i,
.crypto-note i {
    font-size: 1rem;
}

/* Bank Details */
.bank-details {
    margin-bottom: 20px;
}

.bank-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.bank-field:last-child {
    border-bottom: none;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.field-label i {
    color: var(--palestine-green);
    font-size: 1rem;
}

.field-value {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
    background: var(--light-gray);
    padding: 8px 12px;
    border-radius: 8px;
}

/* Copy Button */
.copy-btn {
    background: var(--palestine-green);
    color: var(--palestine-white);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.copy-btn:hover {
    background: var(--palestine-red);
    transform: translateY(-2px);
}

/* Crypto Details */
.crypto-details {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.qr-code {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 122, 61, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.qr-overlay i {
    font-size: 2rem;
    color: var(--palestine-white);
}

.qr-code:hover .qr-overlay {
    opacity: 1;
}

.wallet-info {
    flex: 1;
}

.wallet-field {
    margin-bottom: 15px;
}

.wallet-field .field-label {
    margin-bottom: 8px;
}

.wallet-field .field-value {
    display: block;
    word-break: break-all;
    font-size: 0.85rem;
}

/* Donation Impact */
.donation-impact {
    margin-top: 80px;
}

.impact-header {
    text-align: center;
    margin-bottom: 50px;
}

.impact-header h3 {
    font-size: 2rem;
    color: var(--palestine-green);
    margin-bottom: 15px;
}

.impact-header p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.donation-impact .impact-item {
    background: var(--palestine-white);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.donation-impact .impact-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--palestine-green);
}

.donation-impact .impact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.impact-content h4 {
    font-size: 1.8rem;
    color: var(--palestine-green);
    margin-bottom: 10px;
    font-weight: 700;
}

.impact-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.impact-progress {
    margin-top: 20px;
}

.impact-progress .progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.impact-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--palestine-green), var(--palestine-red));
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
    animation: progressFill 1.5s ease-out forwards;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Donation CTA */
.donation-cta {
    background: linear-gradient(135deg, var(--palestine-green), var(--palestine-black));
    color: var(--palestine-white);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.donation-cta::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="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--palestine-white);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    border: none;
}

.cta-btn.primary {
    background: var(--palestine-red);
    color: var(--palestine-white);
}

.cta-btn.primary:hover {
    background: var(--palestine-white);
    color: var(--palestine-black);
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--palestine-white);
    border: 2px solid var(--palestine-white);
}

.cta-btn.secondary:hover {
    background: var(--palestine-white);
    color: var(--palestine-black);
    transform: translateY(-3px);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.cta-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--palestine-red);
    margin-bottom: 5px;
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Background Elements */
.donation-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.donation-bg-elements .bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 122, 61, 0.1);
    animation: float 8s ease-in-out infinite;
}

.donation-bg-elements .bg-element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.donation-bg-elements .bg-element-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.donation-bg-elements .bg-element-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 15%;
    animation-delay: 6s;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-gray);
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--palestine-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin: 0 0 5px 0;
    color: var(--palestine-black);
    font-size: 1.1rem;
}

.testimonial-role {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.testimonial-card blockquote {
    margin: 0 0 20px 0;
    padding: 0;
    color: var(--dark-gray);
    line-height: 1.7;
    font-style: italic;
    border-left: 4px solid var(--palestine-green);
    padding-left: 20px;
}

.testimonial-footer {
    border-top: 1px solid var(--light-gray);
    padding-top: 15px;
}

.testimonial-location {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.impact::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e8e8e8" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

/* Impact Statistics */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: var(--palestine-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--palestine-green), var(--palestine-red));
}

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

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--palestine-green);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.stat-progress {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.stat-progress .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--palestine-green), var(--palestine-red));
    border-radius: 3px;
    transition: width 2s ease-in-out;
    animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: var(--progress-width); }
}

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

.impact-story {
    background: var(--palestine-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.impact-story:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

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

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

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 122, 61, 0.8), rgba(206, 17, 38, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.story-overlay i {
    font-size: 3rem;
    color: var(--palestine-white);
}

.impact-story:hover .story-overlay {
    opacity: 1;
}

.impact-story:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 30px;
}

.story-category {
    display: inline-block;
    background: linear-gradient(45deg, var(--palestine-green), var(--palestine-red));
    color: var(--palestine-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.story-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--palestine-green);
}

.story-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.story-stats .stat {
    background: var(--palestine-green);
    color: var(--palestine-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.story-progress {
    margin-top: 20px;
}

.progress-item {
    margin-bottom: 15px;
}

.progress-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 8px;
}

.progress-item .progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-item .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--palestine-green), var(--palestine-red));
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
    animation: progressFill 1.5s ease-out forwards;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: var(--palestine-white);
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--palestine-green), transparent);
}

/* Partners Intro */
.partners-intro {
    margin-bottom: 60px;
}

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

.partnership-stat {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--light-gray), #f8f9fa);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.partnership-stat:hover {
    border-color: var(--palestine-green);
    transform: translateY(-5px);
}

.partnership-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--palestine-green);
    margin-bottom: 10px;
    display: block;
}

.partnership-stat .stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.partner-card {
    background: var(--palestine-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--palestine-green), var(--palestine-red));
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--palestine-green);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.partner-card:hover .partner-logo {
    background: linear-gradient(135deg, var(--light-gray), #e8f5e8);
}

.partner-logo img {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-info h4 {
    font-size: 1.2rem;
    color: var(--palestine-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.partner-info p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.partner-achievements {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.achievement-badge {
    background: linear-gradient(45deg, var(--palestine-green), var(--palestine-red));
    color: var(--palestine-white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Partnership CTA */
.partnership-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray), #f8f9fa);
    padding: 50px 30px;
    border-radius: 20px;
    border: 2px dashed var(--palestine-green);
}

.partnership-cta h3 {
    font-size: 2rem;
    color: var(--palestine-green);
    margin-bottom: 15px;
}

.partnership-cta p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partner-btn {
    background: linear-gradient(45deg, var(--palestine-green), var(--palestine-red));
    color: var(--palestine-white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.partner-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--palestine-green), var(--palestine-black));
    color: var(--palestine-white);
    position: relative;
    overflow: hidden;
}

.newsletter-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.bg-element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bg-element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bg-element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text {
    position: relative;
    z-index: 2;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--palestine-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.newsletter-badge i {
    color: var(--palestine-red);
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--palestine-white);
}

.newsletter-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--palestine-red);
    font-size: 1.2rem;
}

.benefit-item span {
    font-weight: 500;
    color: var(--palestine-white);
}

.newsletter-social-proof {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.subscriber-count {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.count-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--palestine-red);
    margin-bottom: 5px;
}

.count-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.subscriber-testimonial {
    flex: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
}

.subscriber-testimonial i {
    color: var(--palestine-red);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.subscriber-testimonial p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.newsletter-form-container {
    position: relative;
    z-index: 2;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form h3 {
    font-size: 1.8rem;
    color: var(--palestine-white);
    margin-bottom: 10px;
    text-align: center;
}

.newsletter-form > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    z-index: 1;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px 15px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: var(--palestine-white);
    transition: var(--transition);
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    background: var(--palestine-red);
    color: var(--palestine-white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--palestine-white);
    color: var(--palestine-black);
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature i {
    color: var(--palestine-red);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--palestine-black);
    color: var(--palestine-white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    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="footer-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23333" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--palestine-white);
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--palestine-red);
    font-size: 2rem;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: var(--palestine-white);
    font-size: 1.3rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--palestine-green), var(--palestine-red));
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--palestine-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--palestine-green), var(--palestine-red));
    transition: var(--transition);
    z-index: -1;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--palestine-green), var(--palestine-red));
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--palestine-white);
    font-size: 1rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details a,
.contact-details span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--palestine-red);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.footer-links a:hover {
    color: var(--palestine-red);
    transform: translateX(5px);
}

.footer-links a i {
    color: var(--palestine-green);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    margin-top: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--palestine-white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--palestine-green);
    background: rgba(255, 255, 255, 0.1);
}

.contact-btn {
    background: linear-gradient(45deg, var(--palestine-green), var(--palestine-red));
    color: var(--palestine-white);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.badge i {
    color: var(--palestine-green);
    font-size: 0.9rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--palestine-green);
    color: var(--palestine-white);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    transform: translateX(400px);
    transition: var(--transition);
    z-index: 1001;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-content i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .donation-methods {
        grid-template-columns: 1fr;
    }

    .mission-points {
        grid-template-columns: 1fr;
    }

    .transparency-note {
        padding: 20px;
    }

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

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

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

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

    /* Enhanced sections mobile styles */
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

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

    .stat-label {
        font-size: 1rem;
    }

    .partnership-stat {
        padding: 25px 20px;
    }

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

    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .newsletter-social-proof {
        flex-direction: column;
        gap: 20px;
    }

    .subscriber-count {
        padding: 15px;
    }

    .count-number {
        font-size: 1.5rem;
    }

    .newsletter-form {
        padding: 30px 20px;
    }

    .newsletter-form h3 {
        font-size: 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-badges {
        justify-content: center;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .social-links {
        justify-content: center;
    }

    /* Enhanced donation sections mobile styles */
    .donation-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .donation-stats .stat-card {
        padding: 25px 20px;
    }

    .donation-stats .stat-icon {
        font-size: 2rem;
    }

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

    .trust-badges {
        gap: 15px;
        margin-bottom: 40px;
    }

    .trust-badge {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .donation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .donation-card.featured {
        transform: none;
    }

    .card-header {
        padding: 25px 25px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .card-features {
        justify-content: center;
    }

    .card-body {
        padding: 0 25px 25px;
    }

    .quick-amounts {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .amount-btn {
        padding: 12px 10px;
    }

    .amount-btn .amount {
        font-size: 1rem;
    }

    .amount-btn .impact {
        font-size: 0.75rem;
    }

    .crypto-details {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .qr-code {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .donation-impact .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .donation-impact .impact-item {
        padding: 25px 20px;
    }

    .donation-impact .impact-icon {
        font-size: 2.5rem;
    }

    .impact-content h4 {
        font-size: 1.5rem;
    }

    .donation-cta {
        padding: 40px 25px;
        margin-top: 40px;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-stats {
        gap: 30px;
    }

    .cta-stat .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .donation-method {
        padding: 20px;
    }

    .about, .donation {
        padding: 60px 0;
    }

    /* Enhanced sections small mobile styles */
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

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

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

    .stat-label {
        font-size: 1rem;
    }

    .partnership-stat {
        padding: 20px 15px;
    }

    .partnership-stat .stat-number {
        font-size: 1.8rem;
    }

    .newsletter-form {
        padding: 25px 15px;
    }

    .newsletter-form h3 {
        font-size: 1.3rem;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

    .benefit-item {
        padding: 12px;
    }

    .benefit-item i {
        font-size: 1rem;
    }

    .subscriber-testimonial {
        padding: 15px;
    }

    .subscriber-testimonial p {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-logo i {
        font-size: 1.7rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* Enhanced donation sections small mobile styles */
.donation-stats {
    grid-template-columns: 1fr;
    gap: 15px;
}

.donation-stats .stat-card {
    padding: 20px 15px;
}

.donation-stats .stat-icon {
    font-size: 1.8rem;
}

.donation-stats .stat-number {
    font-size: 1.8rem;
}

.donation-stats .stat-label {
    font-size: 0.9rem;
}

.trust-badges {
    gap: 10px;
}

.trust-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
}

.donation-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
}

.card-header {
    padding: 20px 20px 10px;
}

.card-icon {
    width: 45px;
    height: 45px;
}

.card-icon i {
    font-size: 1.3rem;
}

.card-info h3 {
    font-size: 1.2rem;
}

.card-info p {
    font-size: 0.9rem;
}

.card-body {
    padding: 0 20px 20px;
}

.custom-amount-section label {
    font-size: 0.9rem;
}

.currency-symbol {
    padding: 12px 10px;
    font-size: 0.9rem;
}

#custom-amount {
    padding: 12px;
    font-size: 0.9rem;
}

.custom-donate-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
}

.amount-btn {
    padding: 10px 8px;
}

.amount-btn .amount {
    font-size: 0.9rem;
}

.amount-btn .impact {
    font-size: 0.7rem;
}

.donation-note,
.transfer-note,
.crypto-note {
    padding: 10px 12px;
    font-size: 0.8rem;
}

.bank-field {
    padding: 12px 0;
}

.field-label {
    font-size: 0.8rem;
}

.field-value {
    font-size: 0.8rem;
    padding: 6px 10px;
}

.copy-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
}

.qr-code {
    width: 80px;
    height: 80px;
}

.wallet-field .field-value {
    font-size: 0.75rem;
}

.donation-impact {
    margin-top: 60px;
}

.impact-header h3 {
    font-size: 1.6rem;
}

.impact-header p {
    font-size: 0.95rem;
}

.donation-impact .impact-item {
    padding: 20px 15px;
}

.donation-impact .impact-icon {
    font-size: 2rem;
}

.impact-content h4 {
    font-size: 1.3rem;
}

.impact-content p {
    font-size: 0.9rem;
}

.donation-cta {
    padding: 30px 20px;
    margin-top: 30px;
}

.cta-content h3 {
    font-size: 1.6rem;
}

.cta-content p {
    font-size: 0.9rem;
}

.cta-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
}

.cta-stats {
    gap: 20px;
}

.cta-stat .stat-number {
    font-size: 1.3rem;
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --palestine-green: #006b3c;
        --palestine-red: #d41e38;
        --medium-gray: #555;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
.nav-link:focus {
    outline: 2px solid var(--palestine-green);
    outline-offset: 2px;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--palestine-white);
    color: var(--palestine-black);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
    border-left: 4px solid var(--palestine-green);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: var(--palestine-green);
}

.notification-error {
    border-left-color: var(--palestine-red);
}

.notification-info {
    border-left-color: var(--palestine-black);
}

.notification i {
    font-size: 1.2rem;
}

.notification-success i {
    color: var(--palestine-green);
}

.notification-error i {
    color: var(--palestine-red);
}

.notification-info i {
    color: var(--palestine-black);
}

.notification span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: var(--target-width);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* 3D Card Effect for Donation Cards */
.donation-card.paypal-3d, .donation-card.featured, .donation-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
    border: 1.5px solid #e9ecef;
    transition: box-shadow 0.25s, transform 0.18s;
    position: relative;
}
.donation-card.paypal-3d:hover, .donation-card.featured:hover, .donation-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
    transform: translateY(-8px) scale(1.025);
    z-index: 3;
}

/* Pill-shaped Quick Amount Buttons (3D) */
.quick-amounts-3d {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin: 18px 0 10px 0;
    flex-wrap: wrap;
}
.amount-btn-3d {
    background: linear-gradient(135deg, #f8f9fa 60%, #e9ecef 100%);
    color: var(--palestine-green);
    border: none;
    border-radius: 999px;
    padding: 13px 26px;
    font-size: 1.08rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    cursor: pointer;
    position: relative;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
    outline: none;
}
.amount-btn-3d.active, .amount-btn-3d:focus, .amount-btn-3d:hover {
    background: linear-gradient(135deg, var(--palestine-green) 60%, var(--palestine-red) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,122,61,0.13);
    transform: translateY(-2px) scale(1.04);
}

/* Tooltip for Impact Text */
.amount-btn-3d::after {
    content: attr(data-impact);
    position: absolute;
    left: 50%;
    bottom: -38px;
    transform: translateX(-50%) scale(0.95);
    background: #222;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    transition: opacity 0.18s, transform 0.18s;
    z-index: 10;
}
.amount-btn-3d:hover::after, .amount-btn-3d:focus::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Remove old .amount-btn and .quick-amounts styles if present */
.amount-btn, .quick-amounts { display: none !important; }

/* Enhanced PayPal Donate Now Button */
.paypal-3d .custom-donate-btn {
    background: linear-gradient(90deg, var(--palestine-green) 0%, var(--palestine-red) 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 16px 38px;
    font-size: 1.18rem;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(0,122,61,0.13), 0 1.5px 6px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s, transform 0.13s, filter 0.18s;
    outline: none;
    margin-top: 10px;
    position: relative;
    letter-spacing: 0.01em;
}
.paypal-3d .custom-donate-btn i.fab.fa-paypal {
    font-size: 1.3em;
    margin-right: 6px;
    color: #fff;
}
.paypal-3d .custom-donate-btn:hover, .paypal-3d .custom-donate-btn:focus {
    background: linear-gradient(90deg, var(--palestine-red) 0%, var(--palestine-green) 100%);
    box-shadow: 0 8px 32px rgba(0,122,61,0.18), 0 2px 8px rgba(0,0,0,0.10);
    transform: translateY(-2px) scale(1.04);
    filter: brightness(1.08) drop-shadow(0 0 8px #008c45cc);
}

/* Inline Donate Now Button (PayPal) */
.paypal-3d .amount-input-group {
    display: flex;
    align-items: center;
    gap: 0;
}
.paypal-3d .currency-symbol {
    border-radius: 999px 0 0 999px;
    border-right: none;
    padding: 12px 14px;
    font-size: 1rem;
}
.paypal-3d #custom-amount {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 12px 14px;
    font-size: 1rem;
    width: 80px;
    min-width: 0;
    text-align: left;
}
.paypal-3d .custom-donate-btn {
    border-radius: 0 999px 999px 0;
    margin-top: 0;
    padding: 12px 22px;
    font-size: 1rem;
    min-width: 0;
    white-space: nowrap;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 500px) {
    .paypal-3d .custom-donate-btn {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    .paypal-3d #custom-amount {
        width: 60px;
        padding: 10px 8px;
    }
}

/* Perfect alignment for amount input group */
.paypal-3d .amount-input-group {
    display: flex;
    align-items: stretch;
    background: #f6f8f7;
    border-radius: 999px;
    box-shadow: 0 1.5px 6px rgba(0,0,0,0.04);
    border: 1.5px solid #e0e4e3;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 10px;
}
.paypal-3d .currency-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 999px 0 0 999px;
    padding: 0 16px;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--palestine-green);
    height: 46px;
}
.paypal-3d #custom-amount {
    border: none;
    outline: none;
    background: transparent;
    padding: 0 16px;
    font-size: 1.08rem;
    width: 90px;
    min-width: 0;
    text-align: left;
    height: 46px;
    color: #222;
    font-weight: 600;
    box-shadow: none;
}
.paypal-3d #custom-amount:focus {
    background: #eef6f2;
}
.paypal-3d .custom-donate-btn {
    border-radius: 0 999px 999px 0;
    margin-top: 0;
    padding: 0 28px;
    font-size: 1.08rem;
    min-width: 0;
    white-space: nowrap;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}
@media (max-width: 500px) {
    .paypal-3d .amount-input-group {
        width: 100%;
    }
    .paypal-3d #custom-amount {
        width: 60px;
        padding: 0 8px;
    }
    .paypal-3d .custom-donate-btn {
        padding: 0 12px;
        font-size: 0.98rem;
    }
}

/* Unified Stats Card Style for Mission & Impact */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 0 auto 40px auto;
    max-width: 1200px;
}
@media (max-width: 1000px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
.stats-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 18px 28px 18px;
    position: relative;
    min-width: 0;
    min-height: 210px;
    transition: box-shadow 0.18s, transform 0.18s;
}
.stats-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-6px) scale(1.03);
}
.stats-card .stats-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: block;
}
.stats-card .stats-number {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--palestine-green);
    margin-bottom: 8px;
    text-align: center;
}
.stats-card .stats-label {
    font-size: 1.08rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
}
.stats-card .stats-top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, var(--palestine-green), var(--palestine-red));
}
.stats-card .stats-progress {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 5px;
    border-radius: 3px;
    background: #e9ecef;
    overflow: hidden;
}
.stats-card .stats-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--palestine-green), var(--palestine-red));
    border-radius: 3px;
    transition: width 1.5s;
}

/* Enhanced About Section Styles */
.enhanced-about {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 90px 0 60px 0;
    overflow: hidden;
}
.about-hero {
    text-align: center;
    margin-bottom: 48px;
}
.about-hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--palestine-black);
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.about-hero-title .highlight {
    color: var(--palestine-red);
    background: linear-gradient(90deg, var(--palestine-green), var(--palestine-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-hero-mission {
    font-size: 1.25rem;
    color: #444;
    background: rgba(0,122,61,0.07);
    border-radius: 16px;
    padding: 18px 28px;
    display: inline-block;
    margin: 0 auto 0 auto;
    font-weight: 500;
    max-width: 700px;
}
.about-hero-mission .highlight {
    color: var(--palestine-green);
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: unset;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 48px auto 36px auto;
    max-width: 1200px;
}
@media (max-width: 1000px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
.about-value-card {
    background: rgba(255,255,255,0.85);
    border-radius: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1.5px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 18px 28px 18px;
    position: relative;
    min-width: 0;
    min-height: 180px;
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
    overflow: hidden;
    backdrop-filter: blur(2px);
}
.about-value-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-6px) scale(1.03);
    background: rgba(255,255,255,0.97);
}
.about-value-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--palestine-green);
    background: linear-gradient(135deg, #e9ecef 60%, #f8f9fa 100%);
    border-radius: 50%;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,122,61,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-value-card h4 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--palestine-black);
    margin-bottom: 8px;
    text-align: center;
}
.about-value-card p {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 0;
}

.about-impact-cta {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 36px;
}
.about-cta-btn {
    background: linear-gradient(90deg, var(--palestine-green) 0%, var(--palestine-red) 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 15px 38px;
    font-size: 1.08rem;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(0,122,61,0.13), 0 1.5px 6px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s, transform 0.13s, filter 0.18s;
    outline: none;
    min-width: 0;
    white-space: nowrap;
    text-decoration: none;
}
.about-cta-btn.secondary {
    background: #fff;
    color: var(--palestine-green);
    border: 2px solid var(--palestine-green);
    box-shadow: none;
}
.about-cta-btn:hover, .about-cta-btn:focus {
    background: linear-gradient(90deg, var(--palestine-red) 0%, var(--palestine-green) 100%);
    box-shadow: 0 8px 32px rgba(0,122,61,0.18), 0 2px 8px rgba(0,0,0,0.10);
    transform: translateY(-2px) scale(1.04);
    filter: brightness(1.08) drop-shadow(0 0 8px #008c45cc);
    color: #fff;
}
.about-cta-btn.secondary:hover, .about-cta-btn.secondary:focus {
    background: var(--palestine-green);
    color: #fff;
    border-color: var(--palestine-green);
}

.about-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="aboutpattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23008c45" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutpattern)"/></svg>');
    opacity: 0.7;
}
