/* ===================================
   PACKAGES SPONSOR
   Styles pour packages-sponsor.html
   =================================== */

/* Hero */
.packages-hero {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    padding: 60px 0 40px;
    color: white;
    margin-top: 50px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 800px;
}

/* Packages Section */
.packages-section {
    padding: 50px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    padding: 20px 0;
}

/* Package Card */
.package-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.package-gold {
    border-color: transparent;
}

.package-gold:hover {
    border-color: #FFD700;
}

.package-silver:hover {
    border-color: #C0C0C0;
}

.package-bronze:hover {
    border-color: #CD7F32;
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-badge i {
    font-size: 1rem;
}

/* Package Header */
.package-header {
    padding: 50px 35px 35px;
    text-align: center;
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.package-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.package-silver .package-icon {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.3);
}

.package-bronze .package-icon {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    box-shadow: 0 8px 25px rgba(205, 127, 50, 0.3);
}

.package-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
    margin-top: 20px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-top: 40px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-silver .price-amount {
    background: linear-gradient(135deg, #708090, #A9A9A9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-bronze .price-amount {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    font-size: 1rem;
    color: #999;
    font-weight: 600;
}

/* Package Content */
.package-content {
    padding: 0 35px 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    padding: 0 35px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    padding: 14px 12px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.package-features li:hover {
    background: #f8f9fa;
}

.package-features i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-gold .package-features i {
    color: #FFD700;
}

.package-silver .package-features i {
    color: #A9A9A9;
}

.package-bronze .package-features i {
    color: #CD7F32;
}

/* Package Buttons */
.btn-package {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 32px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
}

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

.btn-silver {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
    color: white;
}

.btn-silver:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.4);
}

.btn-bronze {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    color: white;
}

.btn-bronze:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.4);
}

/* Comparison Section */
.comparison-section {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.comparison-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.comparison-table th {
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-table td {
    font-size: 1rem;
}

.gold-column {
    background: rgba(255, 215, 0, 0.05);
}

.silver-column {
    background: rgba(192, 192, 192, 0.05);
}

.bronze-column {
    background: rgba(205, 127, 50, 0.05);
}

.comparison-table tbody tr:hover {
    background: rgba(230, 126, 34, 0.05);
}

.text-gold {
    color: #FFD700;
    font-size: 1.5rem;
}

.text-silver {
    color: #A9A9A9;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #e67e22;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item h3 i {
    color: #e67e22;
    font-size: 1.4rem;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.sponsor-cta {
    text-align: center;
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    padding: 50px 40px;
    border-radius: 24px;
    color: white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

.sponsor-cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

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

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

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

.btn-cta-secondary:hover {
    background: white;
    color: #e67e22;
    transform: translateY(-5px);
}

.cta-note {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 20px;
}

.cta-note i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .comparison-section,
    .sponsor-cta {
        padding: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .packages-hero {
        padding: 50px 0 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .package-header {
        padding: 40px 24px 24px;
    }
    
    .package-content {
        padding: 24px;
    }
    
    .comparison-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .sponsor-cta h2 {
        font-size: 2rem;
    }
    
    .sponsor-cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
