/* Sponsors 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;
}

/* Hero Section */
.sponsors-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #2c5aa0 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 90, 160, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: white;
}

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

.hero-subtitle {
    font-size: 1.5rem;
     
    margin-bottom: 1.5rem;
    color: #bfdbfe;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #dbeafe;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
     
    color: #93c5fd;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
     
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa, #4a90e2);
    color: white;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.5);
}

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

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

.hero-contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-card h3 {
    font-size: 1.5rem;
     
    margin-bottom: 0.5rem;
    color: white;
}

.contact-card p {
    color: #dbeafe;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.contact-method.whatsapp:hover {
    background: #25d366;
}

.contact-method.email:hover {
    background: #4a90e2;
}

/* Partnership Benefits Section */
.partnership-benefits {
    padding: 6rem 0;
    background: white;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
     
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #4a90e2;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2, #2c5aa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
}

.benefit-title {
    font-size: 1.3rem;
     
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.7;
}

/* Partnership Types Section */
.partnership-types {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.types-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.partnership-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.2);
    border-color: #4a90e2;
}

.partnership-card.featured {
    border: 2px solid #4a90e2;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.partnership-card.premium {
    border: 2px solid #fbbf24;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
     
    z-index: 2;
}

.premium-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2, #2c5aa0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.partnership-card:hover .card-icon {
    transform: rotate(360deg);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.3rem;
     
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.card-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partnership-features {
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.feature i {
    color: #4a90e2;
    font-size: 0.9rem;
}

.partnership-contact {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.partnership-contact p {
    color: #2c5aa0;
     
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partnership-contact p:last-child {
    margin-bottom: 0;
}

.partner-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #4a90e2, #2c5aa0);
    color: white;
    border: none;
    border-radius: 12px;
     
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.partner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #357abd, #1e3a8a);
}

.premium-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.premium-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Our Partners Section */
.our-partners {
    padding: 6rem 0;
    background: white;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 120px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #4a90e2;
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.15);
}

.partner-img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-img {
    transform: scale(1.05);
}

.partnership-cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 20px;
    margin-top: 3rem;
}

.partnership-cta-section h3 {
    font-size: 1.8rem;
     
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.partnership-cta-section p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5aa0;
     
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

/* Call to Action Section */
.sponsors-cta {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
     
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #dbeafe;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.btn-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.cta-contact p {
    margin-bottom: 1rem;
    color: #bfdbfe;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

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

.contact-btn.email:hover {
    background: #4a90e2;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Styles */
.sponsor-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
     
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-content {
    padding: 2rem;
}

.donation-amount {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 12px;
}

.amount-label {
    display: block;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.amount-value {
    font-size: 2rem;
     
    color: #2c5aa0;
}

.donation-impact {
    margin-bottom: 2rem;
}

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

.donation-impact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.donation-impact .fas {
    color: #4a90e2;
}

.contact-for-partnership {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 12px;
}

.contact-for-partnership h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.partnership-contacts p {
    color: #4b5563;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partnership-contacts p:last-child {
    margin-bottom: 0;
}

.payment-methods h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.payment-option {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.payment-header span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
     
    color: #374151;
}

.copy-btn {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: #2c5aa0;
}

.payment-details {
    padding: 1rem;
}

.payment-details p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.modal-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.contact-info {
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Animations */
@keyframes sponsorSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .cta-contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .sponsors-hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .partnership-card {
        padding: 1.5rem;
    }
    
    .sponsors-cta {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
}