/* Force tous les titres à utiliser The Seasons */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-seasons) !important;
}


/* Hero Section - Style moderne */
.hero {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 50%, #7F1D1D 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pack-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23pack-pattern)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Tektur', sans-serif;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

.title-line.highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    font-family: 'Tektur', sans-serif;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Hero Trust Badges */
.hero-trust {
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
    opacity: 0;
}

.trust-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.trust-item i {
    color: #22C55E;
    font-size: 1.1rem;
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.4s forwards;
    opacity: 0;
}

.visual-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(15deg) rotateX(5deg);
    transition: all 0.3s ease;
    max-width: 450px;
    width: 100%;
}

.visual-card:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(2deg);
}

.card-header {
    background: linear-gradient(135deg, #1F2937, #374151);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
}

.card-header i {
    font-size: 1.5rem;
    color: #FFD700;
}

.card-content {
    padding: 30px;
    background: white;
    color: #1F2937;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-item i {
    color: #22C55E;
    font-size: 1.2rem;
}

.card-badge {
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
}

.card-badge i {
    color: #FFD700;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Packs Section */
.packs-section {
    padding: 100px 0;
    background: #f9fafb;
}

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

.pack-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pack-card.featured {
    border: 3px solid #DC2626;
    transform: scale(1.05);
}

.pack-card.premium {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pack-card.premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.pack-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pack-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pack-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.pack-card.premium .pack-icon {
    background: linear-gradient(135deg, #DC2626, #FCD34D);
}

.pack-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pack-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
}

.pack-card.premium .pack-subtitle {
    color: #D1D5DB;
}

.pack-price {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: #f9fafb;
    border-radius: 12px;
}

.pack-card.premium .pack-price {
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.pack-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: #DC2626;
    display: block;
}

.pack-card.premium .pack-price .price {
    color: #FCD34D;
}

.pack-price .old-price {
    font-size: 1.3rem;
    color: #9CA3AF;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.pack-price .price-period {
    font-size: 0.9rem;
    color: #6B7280;
    display: block;
    margin-top: 10px;
}

.pack-card.premium .pack-price .price-period {
    color: #D1D5DB;
}

.pack-price .discount {
    font-size: 0.95rem;
    color: #059669;
    font-weight: 600;
    display: block;
    margin-top: 8px;
}

.pack-content {
    flex: 1;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.pack-content h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #000;
}

.pack-card.premium .pack-content h4 {
    color: white;
}

.pack-features {
    list-style: none;
    padding: 0;
}

.pack-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.pack-card.premium .pack-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: #E5E7EB;
}

.pack-features li:last-child {
    border-bottom: none;
}

.pack-features i {
    color: #DC2626;
    font-size: 0.9rem;
}

.pack-card.premium .pack-features i {
    color: #FCD34D;
}

.btn-pack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.btn-pack:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

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

.benefit-card {
    background: #f9fafb;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.benefit-card p {
    color: #6B7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1F2937 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

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

.btn-large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

/* Pack Actions */
.pack-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    padding-top: 30px;
}

.pack-actions .btn-primary,
.pack-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pack-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.pack-actions .btn-secondary:hover {
    background-color: #DC2626;
    color: white;
    transform: translateY(-2px);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

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

.modal-header h2 {
    font-size: 1.5rem;
    color: #1F2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h2 i {
    color: #DC2626;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6B7280;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #DC2626;
    background: #FEE2E2;
}

/* Payment Modal */
.payment-content {
    padding: 30px;
}

.service-summary {
    background: #F9FAFB;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.summary-header h3 {
    font-size: 1.1rem;
    color: #1F2937;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #6B7280;
}

.summary-value {
    text-align: right;
    color: #1F2937;
    font-weight: 500;
}

.summary-value.small {
    font-size: 0.9rem;
    max-width: 60%;
}

.summary-divider {
    height: 1px;
    background: #E5E7EB;
    margin: 15px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.total-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F2937;
}

.total-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #DC2626;
}

/* Payment Form */
.payment-form-section {
    margin-top: 20px;
}

.payment-form-title {
    font-size: 1.1rem;
    color: #1F2937;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-input-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1F2937;
}

#card-element {
    padding: 15px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    background: white;
    transition: border-color 0.3s ease;
}

#card-element:focus-within {
    border-color: #DC2626;
    outline: none;
}

.card-input-help {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #6B7280;
}

#card-errors {
    color: #DC2626;
    font-size: 0.9rem;
    margin-top: 10px;
    display: none;
}

.payment-security {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: #F0FDF4;
    border-radius: 8px;
    color: #166534;
}

.payment-security i {
    color: #22C55E;
}

.payment-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.payment-actions button {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Confirmation Modal */
.confirmation-content {
    padding: 40px 30px;
    text-align: center;
}

.success-animation {
    font-size: 4rem;
    color: #22C55E;
    margin-bottom: 20px;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-content h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin: 0 0 15px 0;
}

.confirmation-content p {
    color: #6B7280;
    margin: 10px 0;
    line-height: 1.6;
}

.confirmation-details {
    background: #F9FAFB;
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #1F2937;
}

.detail-item i {
    color: #DC2626;
}

.confirmation-actions {
    padding: 0 30px 30px;
}

.confirmation-actions button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.loading-spinner i {
    font-size: 3rem;
    color: #DC2626;
    margin-bottom: 20px;
}

.loading-spinner p {
    font-size: 1.2rem;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .hero-content .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-stats {
        gap: 20px;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .visual-card {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .visual-card:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .hero-packs .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-packs .title-main {
        font-size: 2.5rem;
    }
    
    .packs-grid {
        grid-template-columns: 1fr;
    }
    
    .pack-card.featured {
        transform: scale(1);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-large {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

