/* Donate Page Specific Styles */

/* Hero Section */
.donate-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f5f0 0%, #e8e1d4 100%);
    position: relative;
    overflow: hidden;
}

.donate-hero .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.donate-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.donate-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.donate-hero .hero-content p {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 30px;
    line-height: 1.6;
}

.donate-hero .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.donate-hero .hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.donate-hero .hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.donate-hero .floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.donate-hero .floating-icon {
    position: absolute;
    font-size: 2rem;
    color: #e74c3c;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.donate-hero .icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.donate-hero .icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.donate-hero .icon-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
}

.donate-hero .icon-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 4.5s;
}

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

/* Impact Stats Section */
.impact-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

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

/* Donation Options Section */
.donation-options {
    padding: 100px 0;
    background-color: #fff;
}

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

.donation-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid #f1f2f6;
    transition: all 0.3s ease;
    position: relative;
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.donation-card.popular {
    border-color: #3498db;
    transform: scale(1.05);
}

.donation-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.donation-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f2f6;
}

.donation-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.donation-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
}

.donation-description {
    margin-bottom: 25px;
}

.donation-description p {
    color: #5d6d7e;
    line-height: 1.6;
}

.donation-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.donation-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.donation-features i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Custom Donation Section */
.custom-donation {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.custom-donation-header {
    margin-bottom: 30px;
}

.custom-donation-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.custom-donation-header p {
    color: #5d6d7e;
}

.custom-amount-input {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.currency-symbol {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-right: 10px;
}

#custom-amount {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
}

#custom-amount:focus {
    border-color: #3498db;
    outline: none;
}

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

.donation-form-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    padding: 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.donation-summary {
    padding: 25px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #5d6d7e;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
}

.donation-form {
    padding: 30px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f2f6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #3498db;
    outline: none;
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    color: #5d6d7e;
    line-height: 1.4;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-donate-submit {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.security-note {
    margin-top: 15px;
    color: #5d6d7e;
    font-size: 0.9rem;
}

.security-note i {
    color: #27ae60;
    margin-right: 5px;
}

/* Impact Stories Section */
.impact-stories {
    padding: 100px 0;
    background-color: #fff;
}

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

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

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

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

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.story-content p {
    color: #5d6d7e;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-meta {
    display: flex;
    gap: 15px;
}

.story-pet, .story-outcome {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3498db;
}

/* Programs Section */
.donation-programs {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.program-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.program-card p {
    color: #5d6d7e;
    line-height: 1.6;
}

/* FAQ Section */
.donate-faq {
    padding: 100px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #5d6d7e;
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-logo {
    max-width: 150px;
    margin-bottom: 30px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

.modal-body h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.modal-body p {
    color: #5d6d7e;
    margin-bottom: 15px;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .donate-hero .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .donate-hero .hero-content {
        max-width: 100%;
    }
    
    .donate-hero .hero-buttons {
        justify-content: center;
    }
    
    .donation-card.popular {
        transform: none;
    }
    
    .donation-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .donate-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donation-cards {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .donate-hero {
        padding: 100px 0 60px;
    }
    
    .donate-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-donation {
        padding: 30px 20px;
    }
    
    .donation-form {
        padding: 25px 20px;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}