* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background: #f8f9fa;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #0f172a;
    color: white;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.phone {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.2s, opacity 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-call {
    background: white;
    color: #0f172a;
}

/* Services - avec photo en fond */
.services {
    padding: 80px 0;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.40), rgba(15, 23, 42, 0.45)),
        url('images/recharge-clim.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: white;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: white;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    border: none;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.card p {
    color: #475569;
}

/* Contact */
.contact {
    background: #0f172a;
    color: white;
    padding: 70px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.big-phone {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 20px 0 10px;
    letter-spacing: 1px;
}

.horaires {
    margin: 28px 0;
    font-size: 1.15rem;
    line-height: 1.8;
}

.horaires p {
    margin: 6px 0;
    opacity: 0.95;
}

.contact > .container > p {
    opacity: 0.85;
    margin-bottom: 28px;
}

/* Footer */
footer {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 24px 0;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    .big-phone {
        font-size: 1.7rem;
    }
    header .container {
        flex-direction: column;
        gap: 12px;
    }
    .logo img {
        height: 38px;
    }
}
