/* Paramedic Center Support Page Styles */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f8fafc;
}

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

/* Hero Section */
.paramedic-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #9b2c2c 100%);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../assets/Appeals/paramedic/paramedic-hero-bg.jpg') center/cover;
    opacity: 0.2;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
     
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
     
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 48px;
    opacity: 0.95;
     
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 24px 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
     
    color: #fed7d7;
    margin-bottom: 4px;
}

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

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.8rem;
     
    color: #2d3748;
    margin-bottom: 24px;
    line-height: 1.2;
}

.mission-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 32px;
}

.mission-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fed7d7;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

.highlight-item i {
    color: #e53e3e;
    font-size: 1.2rem;
}

.highlight-item span {
     
    color: #2d3748;
}

.mission-visual {
    position: relative;
}

.mission-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.visual-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(229, 62, 62, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
     
    backdrop-filter: blur(10px);
}

/* Medicine Donation Section */
.medicine-donation {
    padding: 100px 0;
    background: #f7fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.8rem;
     
    color: #2d3748;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.donation-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.donation-type {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 32px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-type:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.type-content h3 {
    font-size: 1.5rem;
     
    color: #2d3748;
    margin-bottom: 12px;
}

.type-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.requirements h4 {
    font-size: 1.1rem;
     
    color: #2d3748;
    margin-bottom: 12px;
}

.requirements ul {
    list-style: none;
}

.requirements li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #4a5568;
}

.requirements li i {
    color: #48bb78;
    font-size: 0.9rem;
}

/* Impact Stories */
.impact-stories {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.8rem;
     
    color: #2d3748;
    text-align: center;
    margin-bottom: 64px;
}

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

.story-item {
    background: #f7fafc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.story-item:hover {
    transform: translateY(-8px);
}

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

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

.story-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(229, 62, 62, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.story-content {
    padding: 32px;
}

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

.story-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.story-impact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.impact-label {
     
    color: #4a5568;
}

.impact-number {
    font-size: 1.5rem;
     
    color: #e53e3e;
}

/* How to Donate Section */
.how-to-donate {
    padding: 100px 0;
    background: #f7fafc;
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.donate-info h2 {
    font-size: 2.5rem;
     
    color: #2d3748;
    margin-bottom: 20px;
}

.donate-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
}

.donation-steps {
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
     
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
     
    color: #2d3748;
    margin-bottom: 8px;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

.step-content a {
    color: #e53e3e;
    text-decoration: none;
     
}

.step-content a:hover {
    text-decoration: underline;
}

.contact-options {
    display: flex;
    gap: 16px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
     
    transition: all 0.3s ease;
}

.contact-btn.phone {
    background: #e53e3e;
    color: white;
}

.contact-btn.phone:hover {
    background: #c53030;
    transform: translateY(-2px);
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.donate-visual {
    position: relative;
}

.visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.donate-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.visual-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 32px 32px;
    color: white;
    display: flex;
    justify-content: space-around;
}

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

.stat-value {
    display: block;
    font-size: 1.8rem;
     
    margin-bottom: 4px;
}

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

/* Financial Support Section */
.financial-support {
    padding: 100px 0;
    background: white;
}

.support-header {
    text-align: center;
    margin-bottom: 64px;
}

.support-header h2 {
    font-size: 2.8rem;
     
    color: #2d3748;
    margin-bottom: 16px;
}

.support-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.support-option {
    background: #f7fafc;
    border-radius: 20px;
    padding: 32px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.support-option:hover {
    border-color: #e53e3e;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(229, 62, 62, 0.1);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.option-header i {
    font-size: 2rem;
    color: #e53e3e;
}

.option-header h3 {
    font-size: 1.4rem;
     
    color: #2d3748;
}

.support-option p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.suggested-amounts {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.amount-label {
     
    color: #4a5568;
    margin-right: 8px;
}

.amount-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #2d3748;
    padding: 8px 16px;
    border-radius: 8px;
     
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    border-color: #e53e3e;
    background: #e53e3e;
    color: white;
    transform: translateY(-1px);
}

.custom-donation {
    background: #f7fafc;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.custom-donation h3 {
    font-size: 1.5rem;
     
    color: #2d3748;
    margin-bottom: 24px;
}

.custom-input-group {
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: 0 auto 16px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.custom-input-group:focus-within {
    border-color: #e53e3e;
}

.currency-symbol {
    padding: 16px 12px 16px 20px;
     
    color: #4a5568;
    background: #f7fafc;
}

.custom-amount-input {
    flex: 1;
    padding: 16px 12px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    text-align: center;
}

.custom-donate-btn {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    border: none;
    padding: 16px 24px;
     
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-donate-btn:hover {
    background: linear-gradient(135deg, #c53030, #9b2c2c);
}

.custom-note {
    color: #718096;
    font-size: 0.9rem;
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 12px;
    text-decoration: none;
     
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #e53e3e;
    color: white;
}

.cta-btn.primary:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Modal Styles */
.paramedic-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-container {
    background: white;
    margin: 2% auto;
    border-radius: 24px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    padding: 32px;
    border-radius: 24px 24px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title h2 {
    font-size: 1.5rem;
     
    margin: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-content {
    padding: 40px;
}

.donation-summary {
    margin-bottom: 40px;
}

.summary-card {
    background: #f7fafc;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.summary-card h3 {
    font-size: 1.25rem;
     
    color: #2d3748;
    margin-bottom: 16px;
}

.amount-display {
    font-size: 2.5rem;
     
    color: #e53e3e;
    margin-bottom: 12px;
}

.summary-note {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-methods {
    margin-bottom: 32px;
}

.methods-title {
    font-size: 1.25rem;
     
    color: #2d3748;
    margin-bottom: 24px;
    text-align: center;
}

.method-card {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.method-card:hover {
    border-color: #e53e3e;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.method-header i {
    color: #e53e3e;
    font-size: 1.25rem;
}

.method-header h4 {
    font-size: 1.125rem;
     
    color: #2d3748;
}

.method-details {
    display: grid;
    gap: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.detail-row .label {
     
    color: #4a5568;
    min-width: 120px;
}

.detail-row .value {
     
    color: #2d3748;
    text-align: right;
}

.phone-link {
    color: #48bb78;
    text-decoration: none;
     
}

.phone-link:hover {
    text-decoration: underline;
}

.confirmation-section {
    border-top: 2px solid #e2e8f0;
    padding-top: 32px;
}

.confirmation-card {
    background: #f0fff4;
    border: 2px solid #9ae6b4;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.confirmation-card i {
    color: #38a169;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.confirmation-card p {
    color: #2f855a;
    margin-bottom: 24px;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
     
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

.action-btn.whatsapp {
    background: #25d366;
    color: white;
}

.action-btn.whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.action-btn.call {
    background: #e53e3e;
    color: white;
}

.action-btn.call:hover {
    background: #c53030;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .modal-container {
        margin: 5% auto;
        width: 95%;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .suggested-amounts {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title,
    .section-header h2,
    .support-header h2 {
        font-size: 2.2rem;
    }
    
    .donation-type {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .modal-header {
        padding: 24px;
    }
    
    .modal-title h2 {
        font-size: 1.25rem;
    }
    
    .custom-input-group {
        flex-direction: column;
    }
    
    .custom-donate-btn {
        border-radius: 0 0 12px 12px;
    }
}