/* Styles spécifiques à la page Services */
.services-container {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-section {
    margin-bottom: 4rem;
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.lottie-animation {
    width: 100%;
    height: 100%;
}

.service-content h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
}

.service-features li i.fa-info-circle {
    color: #ffd700;
}

/* Tabs de navigation */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 1rem 2rem;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(45deg, var(--primary-color), #FF9248);
    box-shadow: 0 4px 15px rgba(255, 177, 122, 0.3);
}

/* Style du switch */
.switch-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.switch-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
}

.switch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.switch-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(0);
}

.section-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.section-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Style des formules */
.formule-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.formule-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.formule-card.featured {
    border: 2px solid var(--primary-color);
}

.formule-card .popular-tag {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
}

.formule-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.formule-icon i {
    font-size: 2rem;
    color: white;
}

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

.formule-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.formule-features li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.formule-features i {
    color: var(--primary-color);
    margin-right: 1rem;
}

.formule-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.formule-card p {
    color: rgba(255, 255, 255, 0.8);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        padding: 4rem 1rem;
    }

    .service-header h1 {
        font-size: 2.5rem;
    }

    .service-header p {
        font-size: 1rem;
    }

    .tab-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card, .pricing-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 992px) {
    .col-md-4 {
        margin-bottom: 2rem;
    }
}
