/* Modern Gallery Styles */
.gallery-area {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-title-modern .display-4 {
    font-weight: 700;
    color: #302c51;
}

.gallery-item-modern {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-modern:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(255, 193, 7, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.gallery-item-modern:hover .gallery-overlay-modern {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
}

.gallery-content h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.gallery-btn-more {
    margin-top: 30px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #ff6b6b, #ffc107);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-btn-more:hover {
    background: linear-gradient(135deg, #ff5252, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Modern Contact Styles */
.contact-modern-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.section-title-modern .display-4 {
    color: #fff;
    font-weight: 700;
}

.section-title-modern .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.contact-form-modern {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header h3 {
    color: white;
    font-weight: 700;
}

.form-group-modern .input-group-text {
    background: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 10px 0 0 10px;
}

.form-group-modern .form-control {
    border: 2px solid #f0f0f0;
    border-radius: 0 10px 10px 0;
    padding: 15px;
    transition: all 0.3s ease;
}

.form-group-modern .form-control:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.form-check-modern {
    position: relative;
    padding-left: 35px;
}

.form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-check-label {
    cursor: pointer;
    font-size: 15px;
    color: #666;
    user-select: none;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 22px;
    width: 22px;
    background-color: #f0f0f0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-check-input:checked ~ .checkmark {
    background-color: #ff6b6b;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Video Banner Styles */
.video-banner-section {
    position: relative;
    width: 100%;
    background: #000;
    margin-top: 0;
    padding-top: 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

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

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 30px;
    color: #ff6b6b;
    margin-left: 3px;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.video-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-control-btn i {
    font-size: 16px;
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 991px) {
    .video-banner-section {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 20px;
    }
    
    .video-banner-section {
        margin-top: 0;
    }
    
    .video-controls {
        bottom: 10px;
        right: 10px;
        gap: 5px;
    }
    
    .video-control-btn {
        width: 35px;
        height: 35px;
    }
    
    .video-control-btn i {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 20px;
    }
}

.form-check-input:checked ~ .checkmark:after {
    display: block;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.contact-info-modern {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.contact-method-item .icon {
    width: 50px;
    height: 50px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-item .icon i {
    font-size: 20px;
    color: #fff;
}

.contact-method-item .content h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-method-item .content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.link-modern {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-modern:hover {
    color: #ff8e8e;
    text-decoration: underline;
}

.map-container-modern {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container-modern #global-user-map {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.map-container-modern:hover {
    transform: translateY(-2px);
}

/* Map popup styling */
.map-popup {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
}

.map-popup h6 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.map-popup p {
    margin: 0 0 4px 0;
    color: #666;
    font-size: 13px;
}

.map-popup small {
    color: #888;
    font-size: 11px;
}

/* Leaflet popup styling override */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-tip {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.total-users-display {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: #333;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
/* About Page Styles */
.hero-about-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-about-area::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 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
    background-size: cover;
}

.hero-about-img {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ffc107);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Timeline Styles */
.journey-timeline-area {
    position: relative;
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b6b, #ffc107);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 150px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-date .year {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ff6b6b;
}

.timeline-date .event {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 20px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-right-color: white;
}

.timeline-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Impact Cards */
.impact-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.impact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff6b6b, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.impact-card-modern h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.impact-card-modern p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.impact-amount .amount {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ff6b6b;
}

.impact-amount .label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Final CTA */
.final-cta-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-card-final {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content-final h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-content-final p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions-final {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary {
    background: #ff6b6b;
    color: white;
    border: 2px solid #ff6b6b;
}

.btn-cta-primary:hover {
    background: #ff5252;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

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

.btn-cta-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Donation Page Styles */
.donation-hero-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffc107 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donation-hero-section::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 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
    background-size: cover;
}

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

.donation-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.donation-hero-content p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.donation-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

.donation-stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.donation-stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Donation Form Modern */
.donation-form-modern {
    padding: 100px 0;
    background: #f8f9fa;
}

.donation-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.donation-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.donation-info-card .section-title-modern {
    margin-bottom: 30px;
}

.donation-info-card h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
}

.donation-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.donation-impact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.donation-impact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.donation-impact-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.donation-impact-list li i {
    color: #ff6b6b;
    margin-right: 15px;
    font-size: 20px;
}

.donation-photo {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.donation-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Progress Bar Modern */
.progress-modern {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.progress-info-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-amount {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b6b;
}

.progress-goal {
    font-size: 16px;
    color: #666;
}

.progress-bar-modern {
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ffc107);
    border-radius: 6px;
    transition: width 1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Form Styling */
.donation-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group-modern {
    margin-bottom: 25px;
}

.form-group-modern label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.form-group-modern .required {
    color: #ff6b6b;
}

.form-control-modern {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control-modern:focus {
    outline: none;
    border-color: #ff6b6b;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Amount Selection */
.donation-amount-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.donation-amount-item {
    position: relative;
}

.donation-amount-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.donation-amount-item label {
    display: block;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-amount-item input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #ff6b6b, #ffc107);
    color: white;
    border-color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.donation-amount-item label:hover {
    border-color: #ff6b6b;
    transform: translateY(-1px);
}

.custom-amount-modern {
    margin-top: 15px;
    display: none;
}

.custom-amount-modern.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Payment Methods */
.payment-methods-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.payment-method-item {
    position: relative;
}

.payment-method-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-method-item label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-method-item label i {
    font-size: 24px;
    margin-right: 10px;
    color: #666;
}

.payment-method-item input[type="radio"]:checked + label {
    background: #e3f2fd;
    border-color: #2196f3;
    color: #1976d2;
}

.payment-method-item input[type="radio"]:checked + label i {
    color: #1976d2;
}

/* Form Check Modern */
.form-check-modern {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-check-modern input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.form-check-modern label {
    margin: 0;
    cursor: pointer;
    color: #666;
}

/* Submit Button */
.btn-donate-modern {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff6b6b, #ffc107);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-donate-modern:hover {
    background: linear-gradient(135deg, #ff5252, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.btn-donate-modern:active {
    transform: translateY(0);
}

/* Success Message */
.donation-success-modern {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.donation-success-modern h4 {
    font-size: 28px;
    margin-bottom: 15px;
}

.donation-success-modern p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-success-modern {
    background: white;
    color: #4caf50;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-success-modern:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Donation Dark Theme */
.donation-impact-list {
    background: #2c2c2c;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

.donation-impact-list li {
    background: #3a3a3a;
    color: #e0e0e0;
    border-left: 4px solid #ff6b6b;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.donation-impact-list li:hover {
    background: #4a4a4a;
    transform: translateX(5px);
}

.donation-impact-list li::before {
    color: #ff6b6b;
}

/* Responsive */
@media (max-width: 992px) {
    .timeline-wrapper::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .timeline-date {
        flex: none;
        margin-bottom: 20px;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 60px;
    }
    
    .timeline-content::before {
        left: -20px !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .about-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .cta-actions-final {
        justify-content: center;
        margin-top: 30px;
    }
    
    .donation-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .donation-hero-content h1 {
        font-size: 36px;
    }
    
    .donation-stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-modern,
    .contact-info-modern {
        padding: 30px 20px;
    }
    
    .contact-method-item {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .contact-section,
    .gallery-modern {
        padding: 50px 0;
    }
    
    .contact-info-card,
    .impact-card-modern {
        margin-bottom: 30px;
    }
    
    .gallery-item-modern {
        margin-bottom: 20px;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-card-final {
        padding: 40px 20px;
    }
    
    .donation-hero-section {
        padding: 60px 0;
    }
    
    .donation-form-modern {
        padding: 60px 0;
    }
    
    .donation-form-container {
        display: flex;
        flex-direction: column;
        padding: 0 15px;
        gap: 30px;
    }
    
    .donation-amount-modern {
        grid-template-columns: 1fr 1fr;
    }
    
    .payment-methods-modern {
        grid-template-columns: 1fr;
    }
    
    .donation-info-card {
        margin-bottom: 30px;
        position: static;
    }
    
    /* Mobile Sticky Donation Info */
    .donation-info-card {
        position: relative;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        width: 100%;
    }
}