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


/* Hero Section - Style moderne inspiré de création-site-web */
.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="business-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="8" height="8" fill="rgba(255,255,255,0.03)"/><rect x="10" y="10" width="8" height="8" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23business-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);
    }
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-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;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 2px solid #f0f0f0;
}

.service-card.highlight {
    border: 2px solid #DC2626;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

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

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    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;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.service-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;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.service-description {
    font-size: 1.05rem;
    color: #6B7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

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

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

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

.service-price {
    margin: 0;
    margin-bottom: 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.service-price .price {
    font-size: 2rem;
    font-weight: 800;
    color: #DC2626;
    display: block;
}

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

.service-price .discount {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

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

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

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

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

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

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

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

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.advantage-card {
    padding: 35px 25px;
    background: #f9fafb;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

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

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

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    margin-top: 15px;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #DC2626, #B91C1C);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.step-content p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 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;
}

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

/* 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 {
        padding: 80px 0 60px;
    }

    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        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);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-timeline::before {
        left: 35px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 90px;
    }
    
    .step-number {
        position: absolute;
        left: 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-content {
        max-width: 95%;
    }

    .payment-actions {
        flex-direction: column;
    }

    .summary-value.small {
        max-width: 100%;
    }
}

