/* Hero Section */
.donate-hero {
    position: relative;
    margin-top: -100px;
    background-image: url("../images/hdf1.eee322a4ae8d.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    margin-bottom: 5rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(184, 84, 80, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

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

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-orange);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Section Title */
.section-title-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-center h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.section-title-center p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Impact Section */
.impact-section {
    padding: 5rem 0;
    background: white;
}

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

.impact-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.impact-card.featured {
    border: 3px solid var(--accent-orange);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    color: white;
    padding: 8px 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.impact-image {
    height: 200px;
    overflow: hidden;
}

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

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

.impact-content {
    padding: 2rem;
}

.impact-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.impact-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.impact-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.impact-list li i {
    color: var(--accent-orange);
    font-size: 1rem;
}

/* Donation Form Section */
.donation-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.donation-form-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.donation-form-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: block;
}

.section-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e8f4f8;
}

/* Donation Type Tabs */
.donation-type-tabs {
    display: flex;
    gap: 1rem;
}

.type-tab {
    flex: 1;
    padding: 1.2rem;
    border: 2px solid #e8f4f8;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.type-tab:hover {
    border-color: var(--accent-orange);
    background: #fff5f0;
}

.type-tab.active {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    color: white;
    border-color: var(--accent-orange);
}

.type-tab i {
    font-size: 1.2rem;
}

/* Amount Options */
.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.amount-btn {
    padding: 1.2rem;
    border: 2px solid #e8f4f8;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    border-color: var(--accent-orange);
    background: #fff5f0;
    transform: translateY(-2px);
}

.amount-btn.active {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    color: white;
    border-color: var(--accent-orange);
}

.custom-amount-input {
    margin-top: 1rem;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-method {
    flex: 1;
    padding: 1.2rem;
    border: 2px solid #e8f4f8;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-method:hover {
    border-color: var(--accent-orange);
    background: #fff5f0;
}

.payment-method.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-color: var(--primary-blue);
}

.payment-method i {
    font-size: 1.5rem;
}

/* Form Controls */
.form-control,
.form-select {
    padding: 0.875rem 1rem;
    border: 2px solid #e8f4f8;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

/* Donate Button */
.btn-donate {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Sidebar */
.donation-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.sidebar-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.why-donate-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-donate-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid #f0f8ff;
}

.why-donate-list li:last-child {
    border-bottom: none;
}

.why-donate-list li i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.other-ways {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.way-item i {
    font-size: 2rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.way-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.way-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.contact-card {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 100%);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 0.75rem 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.contact-link i {
    font-size: 1.1rem;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: white;
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-item i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .donation-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .donation-form-card {
        padding: 2rem 1.5rem;
    }

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

    .payment-methods {
        flex-direction: column;
    }

    .donation-type-tabs {
        flex-direction: column;
    }
}