body {
    background: #111;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header-centered {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 150px;           /* hauteur du bandeau */
    max-width: 900px;        /* largeur maximale du bandeau */
    width: 100%;
    margin: 0 auto;          /* centre le bandeau */
    border-radius: 0 0 24px 24px; /* coins arrondis en bas (optionnel) */
    box-shadow: 0 2px 16px rgba(0,0,0,0.12); /* ombre douce (optionnel) */
    padding: 0;
}

.logo-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo-img {
    max-height: 150px; /* ajuste la taille du logo */
    width: auto;
    display: block;
    margin: 0 auto;
}}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #e6b85a;
}

main {
    padding: 2rem 1rem 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.hero {
    text-align: center;
    margin-bottom: 2.5rem;
}
.hero h1 {
    font-size: 2.2rem;
    color: #e6b85a;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.btn {
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-top: 1rem;
    display: inline-block;
}
.btn-gold {
    background: #e6b85a;
    color: #111;
}
.btn-gold:hover {
    background: #fff;
    color: #e6b85a;
}
.btn-white {
    background: #fff;
    color: #111;
}
.btn-white:hover {
    background: #e6b85a;
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: #e6b85a;
    border: 2px solid #e6b85a;
}
.btn-outline:hover {
    background: #e6b85a;
    color: #111;
}

section h2 {
    color: #e6b85a;
    margin-top: 2rem;
}
section ul {
    margin: 1rem 0 2rem 1.5rem;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 18px 0 10px 0;   /* Hauteur réduite */
    margin-top: 3rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 8px;
    min-height: 32px; /* Assure la visibilité même si un SVG ne charge pas */
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #e6b85a;
    transition: color 0.18s, transform 0.18s;
    font-size: 1.7rem;
}

.footer-social a svg {
    width: 28px;
    height: 28px;
    fill: #e6b85a;
    transition: fill 0.18s, transform 0.18s;
    display: block;
}

.footer-social a:hover svg {
    fill: #fff;
    transform: scale(1.18);
}

.footer-links {
    margin-bottom: 6px;
    font-size: 0.98em;
}

.footer-links a {
    color: #e6b85a;
    text-decoration: none;
    margin: 0 4px;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.92em;
    color: #bbb;
    margin-top: 2px;
}

@media (max-width: 600px) {
    .footer-social {
        gap: 0.7rem;
    }
    footer {
        font-size: 0.95rem;
        padding: 12px 0 6px 0;
    }
}

form {
    background: #181818;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e6b85a;
    font-weight: 500;
}
form input, form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1.2rem;
    border: none;
    border-radius: 6px;
    background: #222;
    color: #fff;
    font-size: 1rem;
}
form input:focus, form textarea:focus {
    outline: 2px solid #e6b85a;
}

.contact-infos {
    margin-top: 2rem;
    text-align: center;
}
.contact-infos a {
    color: #e6b85a;
    text-decoration: none;
}
.contact-infos a:hover {
    text-decoration: underline;
}
.social-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.social-list a {
    color: #fff;
    font-weight: 500;
    transition: color 0.2s;
}
.social-list a:hover {
    color: #e6b85a;
}

@media (max-width: 700px) {
    header, main, footer {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    nav ul {
        flex-direction: column;
        gap: 0.7rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.7rem;
    }
    form {
        padding: 1rem;
    }
}

/* --- MENU HAMBURGER À GAUCHE --- */
.hamburger {
    position: fixed;
    top: 1.2rem;
    left: 1.5rem;
    z-index: 3000;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hamburger span, .hamburger span:before, .hamburger span:after {
    display: block;
    background: #fff;
    height: 4px;
    width: 28px;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
}
.hamburger span {
    position: relative;
}
.hamburger span:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
}
.hamburger span:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
}

/* --- MENU OFF-CANVAS À GAUCHE --- */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #111;
    color: #fff;
    z-index: 4000;
    box-shadow: 2px 0 12px rgba(0,0,0,0.25);
    transition: left 0.35s cubic-bezier(.4,2,.6,1);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.offcanvas-menu.open {
    left: 0;
}
.offcanvas-logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #e6b85a;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}
.offcanvas-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
    transition: color 0.2s;
}
.offcanvas-close:hover {
    color: #e6b85a;
}
.offcanvas-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.offcanvas-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: color 0.2s;
}
.offcanvas-links a:hover {
    color: #e6b85a;
}
@media (max-width: 700px) {
    .offcanvas-menu {
        width: 90vw;
        min-width: 180px;
        padding: 1.5rem 1rem 1rem 1rem;
        left: -100vw;
    }
    .offcanvas-menu.open {
        left: 0;
    }
    .hamburger {
        left: 1rem;
        top: 1rem;
        right: auto;
    }
}
body.menu-open {
    overflow: hidden;
}

.expertises-cards {
    margin: 3rem 0 2rem 0;
    text-align: center;
}
.cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}
.expertise-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background: #181818;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    padding: 1.5rem 2rem;
    width: 520px;
    max-width: 95vw;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    gap: 1.5rem;
}
.expertise-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(230,184,90,0.18);
}
.icon-expertise {
    flex-shrink: 0;
    margin-right: 1.5rem;
    margin-bottom: 0;
    transition: filter 0.2s, transform 0.2s;
    filter: drop-shadow(0 0 0 #e6b85a);
    display: flex;
    align-items: center;
    justify-content: center;
}
.expertise-card:hover .icon-expertise {
    filter: drop-shadow(0 0 8px #e6b85a);
    animation: pulse 0.7s;
}
.expertise-text {
    text-align: left;
    flex: 1;
}
.expertise-card h3 {
    color: #e6b85a;
    font-size: 1.18rem;
    margin-bottom: 0.7rem;
    margin-top: 0;
}
.expertise-card p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}
@media (max-width: 700px) {
    .cards-container {
        gap: 1.2rem;
    }
    .expertise-card {
        flex-direction: column !important;
        align-items: center !important;
        width: 95vw;
        max-width: 350px;
        padding: 1.2rem 1rem;
        gap: 0.7rem;
    }
    .icon-expertise {
        margin-right: 0;
        margin-bottom: 0.7rem;
    }
    .expertise-text {
        text-align: center;
    }
.cookie-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s;
}
.cookie-popup-content {
    background: #181818;
    color: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(230,184,90,0.18), 0 2px 16px rgba(0,0,0,0.18);
    padding: 2.2rem 2rem 1.5rem 2rem;
    max-width: 95vw;
    width: 400px;
    text-align: center;
    border: 2px solid #e6b85a;
}
.cookie-popup-content h3 {
    margin-top: 0;
    color: #e6b85a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.cookie-popup-actions {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.cookie-popup-actions button {
    background: #e6b85a;
    color: #222;
    border: none;
    border-radius: 20px;
    padding: 0.6rem 1.7rem;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.cookie-popup-actions button:hover {
    background: #fff;
    color: #e6b85a;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
/* Style moderne pour le select */
select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0b100;
  border-radius: 8px;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='gold' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center/24px 24px;
  font-size: 1.1em;
  color: #222;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border 0.2s;
  box-shadow: 0 2px 8px rgba(224, 177, 0, 0.05);
}

select:focus {
  border-color: #e0b100;
  outline: none;
  box-shadow: 0 0 0 2px #ffe06655;
}