/* services.css */
.services-header {
    padding: 60px 5%;
    text-align: center;
    background: var(--white);
}

.services-header h1 {
    font-size: 42px;
    color: var(--mjd-blue-dark);
    margin-bottom: 15px;
}

.services-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Grille des services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 5% 80px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Style de base des Cards */
.service-card {
    border-radius: 20px;
    padding: 35px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Dégradés spécifiques demandés */
.card-vitrine { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } /* Violet/Bleu */
.card-avanced { background: linear-gradient(135deg, #2af598 0%, #009efd 100%); } /* Vert/Bleu */
.card-boutique { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); } /* Rose/Orange */
.card-support { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); } /* Bleu clair */

.seo-badge {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-card h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-card .description {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.service-card ul li::before {
    content: "✓";
    margin-right: 10px;
    font-weight: bold;
}

.price-box {
    margin-top: auto;
}

.price-label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.btn-devis {
    background: white;
    color: #333;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-devis:hover {
    background: #f1f1f1;
}