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


/* CSS Services - Nouvelle version */

/* 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="services-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(%23services-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: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1F2937;
}

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

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

.card-badge i {
    color: #1F2937;
}

/* Animations */
@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);
    }
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #F5F5F5 100%);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grille 3x2 pour 6 services */
.services-container .service-card {
    grid-column: span 1;
    justify-self: stretch;
    max-width: none;
    width: 100%;
    transform: none;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
}

.service-card.urgence {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: var(--white);
}

.service-card.urgence .service-title,
.service-card.urgence .service-description {
    color: var(--white);
}

.service-card.urgence:hover {
    border-color: #FFD700;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: var(--transition);
}

.service-card.urgence .service-icon {
    background: var(--white);
    color: #FF6B35;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
}

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

.service-card.urgence .btn-service {
    background: var(--white);
    color: #FF6B35;
    border-color: var(--white);
}

.service-card.urgence .btn-service:hover {
    background: #FFD700;
    color: var(--black);
    border-color: #FFD700;
}

/* Service Card Featured */
.service-card.featured {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.02));
    border-color: var(--primary-red);
    position: relative;
}

.service-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
}

.service-card.featured:hover {
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.25);
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-red);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    z-index: 10;
}

.service-badge i {
    font-size: 0.7rem;
}

/* Section Création Société Détaillée */
.creation-societe-detail {
    padding: 80px 0;
    background: var(--white);
}

.detail-content {
    display: grid;
    grid-template-columns: 10fr 0fr;
    align-items: start;
}
.service-features-row {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 60px;
    align-items: start;
}

.detail-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.service-features {
    margin-bottom: 40px;
}

.service-features h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 25px;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid #4CAF50;
    transition: var(--transition);
}

.features-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.features-list i {
    color: #4CAF50;
    font-size: 1.3rem;
    margin-top: 3px;
    min-width: 20px;
}

.features-list span {
    line-height: 1.6;
    color: var(--dark-gray);
}

.why-us {
    margin-bottom: 40px;
}

.why-us h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 25px;
}

.advantages {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-radius: 12px;
    border-left: 4px solid #2196F3;
    font-weight: 600;
    transition: var(--transition);
}

.advantage:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.2);
}

.advantage-icon {
    font-size: 1.2rem;
    min-width: 30px;
}

.action-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8B0000 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.action-section h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.action-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.action-cta {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

/* Services Extra Détaillé */
.services-extra-detail {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, var(--light-gray) 100%);
}

.extra-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.extra-content {
    max-width: 1000px;
    margin: 0 auto;
}

.extra-benefits {
    margin: 50px 0;
}

.extra-benefits h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 40px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.extra-conclusion {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.conclusion-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

/* Call to Action Final */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black) 0%, #2C2C2C 100%);
    color: var(--white);
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--white) 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .visual-card {
        transform: none;
    }
    
    .visual-card:hover {
        transform: none;
    }
    
    .detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    
    .service-card {
        padding: 30px 20px;
    }
    
    .detail-title {
        font-size: 2.2rem;
    }
    
    .extra-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-services {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid,
    .creation-societe-detail,
    .services-extra-detail,
    .final-cta {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .features-list li,
    .advantage {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .action-section {
        padding: 30px 20px;
    }
    
    .extra-conclusion {
        padding: 30px 20px;
    }
}

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

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

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

.service-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.features-list li {
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.features-list li:nth-child(1) { animation-delay: 0.1s; }
.features-list li:nth-child(2) { animation-delay: 0.2s; }
.features-list li:nth-child(3) { animation-delay: 0.3s; }
.features-list li:nth-child(4) { animation-delay: 0.4s; }

.advantage {
    opacity: 0;
    animation: slideInRight 0.6s ease forwards;
}

.advantage:nth-child(1) { animation-delay: 0.1s; }
.advantage:nth-child(2) { animation-delay: 0.2s; }
.advantage:nth-child(3) { animation-delay: 0.3s; }

.benefit-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }