.services-container {
    padding: 240px 5% 50px;
    min-height: calc(100vh - 100px);
    background: var(--background);
    position: relative;
}

.services-header {
    position: sticky;
    top: 120px; /* sous le header fixe principal */
    z-index: 10;
    background: rgba(26, 26, 46, 0.92);
    padding: 1.5rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    scroll-margin-top: 140px;
    margin-bottom: 2rem;
}

.services-grid {
    margin-top: 1.5rem;
    grid-auto-rows: minmax(120px, auto);
}

.services-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;  /* Taille ajustable selon vos besoins */
    height: 800px; /* Taille ajustable selon vos besoins */
    background: url('assets/elithea-face.png') center/contain no-repeat;
    opacity: 0.05;
    pointer-events: none;
    filter: blur(2px);
}

.services-grid {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
    padding: 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.services-header h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.services-header p {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.9;
}

.central-logo {
    display: none;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-item h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Mise à jour des media queries */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .services-container::before {
        width: 100%;
        height: 100%;
        opacity: 0.03;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-container::before {
        opacity: 0.02;
    }
} 