/* Design Premium Datacenter - Version Claire */
:root {
    --accent-color: #2da1d0; /* Le bleu de votre logo */
    --dark-color: #1a1d21;
    --card-bg: #ffffff; /* Fond des cartes blanc pour le contraste */
    --text-main: #333333;
    --text-dim: #666666;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
    
    /* --- AJOUT DE L'IMAGE DE FOND DATACENTER --- */
    /* L'image est centrée, fixe (ne défile pas), et couvre tout l'écran */
    background: 
        /* Un voile clair dégradé pour adoucir l'image et améliorer la lisibilité */
        linear-gradient(rgba(240, 244, 248, 0.9), rgba(240, 244, 248, 0.95)),
        url('datacenter.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Header Agence Clair */
header {
    padding: 60px 20px;
    text-align: center;
    /* Un fond très légèrement bleuté pour le détacher du corps */
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #eaeaea;
}

header img.logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 30px;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
}

/* Grille de services */
.container {
    max-width: 1100px;
    margin: 40px auto; /* Ajustement des marges car le fond est clair */
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 4px;
    border: 1px solid #eaeaea; /* Bordure plus discrète */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Légère ombre pour le relief */
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 161, 208, 0.1);
}

.icon { font-size: 2rem; margin-bottom: 15px; }

h2 {
    font-size: 1.4rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

ul { list-style: none; padding: 0; margin-top: 15px; }

li {
    color: var(--text-dim);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Formulaire Clair */
.contact-section {
    max-width: 600px;
    margin: 60px auto 100px auto;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 4px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: #fdfdfd; /* Fond d'input très clair */
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--text-main);
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
}

.btn-submit {
    background: var(--accent-color);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #238ab3;
}

/* Footer Sombre pour le contraste final */
footer {
    background: #111111;
    color: #eeeeee;
    padding: 40px 20px;
    text-align: center;
}

.footer-inner h3 { color: #fff; }

.legal { font-size: 0.8rem; color: #555; margin-top: 20px; }

/* Mobile */
@media (max-width: 600px) {
    .container { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 1.6rem; }
}