/* Styles pour la page Services */

.services-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    margin: -2rem -2rem 3rem -2rem;
    border-radius: 0 0 20px 20px;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin: 0;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section,
.pricing-section,
.technical-section,
.features-section,
.membership-section,
.cta-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-section:hover,
.pricing-section:hover,
.technical-section:hover,
.features-section:hover,
.membership-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.intro-section h2,
.pricing-section h2,
.technical-section h2,
.features-section h2,
.membership-section h2,
.cta-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #27ae60;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    text-align: justify;
}

/* Section Tarification */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid #27ae60;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.setup-fees {
    border-left-color: #3498db;
}

.annual-fee {
    border-left-color: #e74c3c;
}

.pricing-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-option {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #3498db;
    transition: transform 0.2s ease;
}

.pricing-option:hover {
    transform: translateX(5px);
}

.option-name {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.option-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.option-description {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.annual-pricing {
    text-align: center;
}

.main-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-right: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
}

.period {
    font-size: 1rem;
    color: #7f8c8d;
    margin-left: 0.5rem;
}

.included-features {
    background: rgba(231, 76, 60, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
}

.included-features h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.included-features li {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Section Fonctionnalités */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Section Technique */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-card {
    background: linear-gradient(135deg, #e8f4fd 0%, #c3e5fc 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2196f3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2);
}

.tech-card h3 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.tech-card p {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tech-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-card li {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.tech-card li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #2196f3;
    font-weight: bold;
}

.tech-card strong {
    color: #1976d2;
    font-weight: 600;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Section Adhésion */
.membership-card {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ff9800;
}

.membership-card h3 {
    color: #e65100;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.membership-card p {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.membership-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #ff9800;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #e65100;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #2c3e50;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Section CTA */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-section h2 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 160px;
    text-align: center;
}

.btn-primary {
    background: #fff;
    color: #764ba2;
    border-color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: #fff;
    color: #764ba2;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-section,
.pricing-section,
.features-section,
.membership-section,
.cta-section {
    animation: fadeInUp 0.8s ease forwards;
}

.intro-section {
    animation-delay: 0.1s;
}

.pricing-section {
    animation-delay: 0.2s;
}

.features-section {
    animation-delay: 0.3s;
}

.membership-section {
    animation-delay: 0.4s;
}

.cta-section {
    animation-delay: 0.5s;
}

/* Responsive design */
@media (max-width: 768px) {
    .services-hero {
        padding: 2rem 1rem;
        margin: -1rem -1rem 2rem -1rem;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-content {
        padding: 0 1rem;
    }

    .intro-section,
    .pricing-section,
    .technical-section,
    .features-section,
    .membership-section,
    .cta-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .intro-section h2,
    .pricing-section h2,
    .technical-section h2,
    .features-section h2,
    .membership-section h2,
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .membership-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .main-price {
        flex-direction: column;
        align-items: center;
    }

    .currency,
    .period {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 1rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }
}