@font-face {
    font-family: "Coolvetica";
    src: url("../fonts/Coolvetica.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins.ttf") format("truetype");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Gacor";
    src: url("../fonts/Gacor.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Gendy";
    src: url("../fonts/Gendy.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Holgada";
    src: url("../fonts/Holgada.otf") format("opentype");
    font-display: swap;
}

:root {
    /* Palette orange/gris/blanc inspirée de l'image */
    --color-background: #FFFFFF;
    --color-white: #FFFFFF;
    --color-text: #2C2C2C;
    --color-text-light: #666666;
    
    /* Orange (couleur principale) */
    --color-orange: #FF6B35;
    --color-orange-light: rgba(255, 107, 53, 0.15);
    --color-orange-medium: rgba(255, 107, 53, 0.3);
    --color-orange-dark: rgba(255, 107, 53, 0.6);
    --color-orange-darker: #d45525;
    
    /* Gris (remplace les noirs/violets) */
    --color-grey: #6B6B6B;
    --color-grey-light: #E5E5E5;
    --color-grey-medium: #9B9B9B;
    --color-grey-dark: #3C3C3C;
    --color-grey-darker: #2C2C2C;
    
    /* Backgrounds */
    --color-nav-bg: rgba(60, 60, 60, 0.95);
    --color-dark-bg: #4A4A4A;
    --color-section-bg: #F5F5F5;
    --color-section-light: #FAFAFA;
    
    /* Accents et gradients */
    --color-secondary: #FF6B35;
    --color-accent: #FF6B35;
    --color-gradient-start: #FF6B35;
    --color-gradient-end: #ff8c5a;
    --color-gradient-grey: linear-gradient(135deg, #6B6B6B, #9B9B9B);

    --font-heading: "Coolvetica", "Poppins", Arial, sans-serif;
    --font-body: "Poppins", "Holgada", "Gacor", "Gendy", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: #F5F5F5;
    /* Motif global subtil (grain/grille) + bandes latérales très légères */
    background-image:
        linear-gradient(90deg, rgba(0,0,0,0.035), rgba(0,0,0,0.035)), /* bandes latérales plus visibles */
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.04) 1px, transparent 0),
        radial-gradient(circle at 3px 3px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size:
        100% 100%,
        40px 40px,
        40px 40px;
    background-position:
        center,
        0 0,
        20px 20px;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Styles généraux avec palette orange/gris/blanc */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-text);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1100px, 90vw);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation latérale (cachée, remplacée par navigation horizontale) */
.side-nav {
    display: none;
}

/* Navigation horizontale moderne en haut (style Caroline B) - Orange/Gris/Blanc */
@keyframes slideDownFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(60, 60, 60, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 20px rgba(60, 60, 60, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    animation: slideDownFromTop 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.top-nav__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.top-nav__logo {
    display: flex;
    align-items: center;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.top-nav__logo:hover {
    transform: scale(1.05);
}

.top-nav__logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.top-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.top-nav__toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.top-nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.top-nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.top-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.top-nav__menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-nav__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.top-nav__link svg {
    width: 18px;
    height: 18px;
}

.top-nav__link:hover,
.top-nav__link:focus-visible {
    background: rgba(255, 107, 53, 0.2);
    color: var(--color-orange);
    transform: translateY(-2px);
}

.top-nav__link.is-active {
    color: var(--color-orange);
}

.top-nav__dropdown {
    position: relative;
}

.top-nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: rgba(60, 60, 60, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(60, 60, 60, 0.3);
}

.top-nav__dropdown:hover .top-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-nav__dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.top-nav__dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.2);
    color: var(--color-orange);
}

.top-nav__socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.top-nav__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.top-nav__socials a:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.top-nav__socials img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.side-nav--hidden {
    transform: translate(-140%, -50%);
    opacity: 0;
    pointer-events: none;
}

.side-nav--visible {
    transform: translate(0, -50%);
    opacity: 1;
    pointer-events: auto;
}

.side-nav__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 1.6rem 0.9rem;
    border-radius: 2.2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 30px 60px rgba(60, 60, 60, 0.18);
    backdrop-filter: blur(16px);
}

.side-nav__logo {
    width: 64px;
    height: 64px;
    border-radius: 1.4rem;
    display: grid;
    place-items: center;
    margin-bottom: 0.5rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.side-nav__logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.side-nav__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.side-nav__avatar {
    width: 48px;
    height: 48px;
    border-radius: 1.4rem;
    background: linear-gradient(130deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.7));
    display: grid;
    place-items: center;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-text);
    text-transform: uppercase;
}

.side-nav__item {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 1.1rem;
    display: grid;
    place-items: center;
    color: rgba(60, 60, 60, 0.75);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.side-nav__item:hover,
.side-nav__item:focus-visible {
    background-color: rgba(255, 107, 53, 0.2);
    color: var(--color-text);
    transform: translateX(2px);
}

.side-nav__item.is-active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 255, 255, 0.9));
    color: var(--color-text);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.3);
}

.side-nav__icon svg {
    width: 22px;
    height: 22px;
}

.side-nav__item::after {
    content: attr(data-label);
    position: absolute;
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(60, 60, 60, 0.9);
    color: #fff;
    padding: 0.35rem 0.6rem;
    border-radius: 0.6rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.side-nav__item:hover::after,
.side-nav__item:focus-visible::after {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

.side-nav__item:focus-visible {
    outline: 2px solid rgba(255, 107, 53, 0.6);
    outline-offset: 3px;
}

.mobile-nav-toggle {
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 400;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(60, 60, 60, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1200px) {
    .side-nav {
        left: 0.8rem;
    }
}

@media (max-width: 900px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .side-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        height: 100vh;
        width: min(240px, 75vw);
        border-radius: 0;
        padding: 1.5rem;
        background: transparent;
        box-shadow: none;
        transform: translateX(110%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .side-nav.side-nav--mobile-open {
        transform: translateX(0);
    }

    .side-nav__inner {
        gap: 1.1rem;
        padding: 3.4rem 1.1rem 2.4rem;
        margin-top: 3.8rem;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 1.8rem;
        border: 1px solid rgba(255, 107, 53, 0.3);
        box-shadow: -16px 16px 45px rgba(60, 60, 60, 0.18);
    }

    .side-nav__item {
        width: 100%;
        height: auto;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        padding: 0.75rem 1rem;
    }

    .side-nav__item::after {
        position: static;
        background: transparent;
        color: var(--color-text);
        padding: 0;
        opacity: 1;
        transform: none;
        text-transform: none;
        letter-spacing: 0.04em;
    }

    .side-nav__item:hover,
    .side-nav__item:focus-visible,
    .side-nav__item.is-active {
        background-color: rgba(255, 107, 53, 0.15);
        transform: none;
    }

    .side-nav__logo {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
}

/* Hero Section style Caroline B - Layout gauche/droite avec image semi-circulaire - Orange/Gris/Blanc */
.hero {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    color: var(--color-white);
    overflow: hidden;
    padding-top: 70px;
}

.hero__background-pattern {
    display: none;
}

.hero__left {
    flex: 1;
    position: relative;
    z-index: 3;
    padding: 4rem 2rem 4rem 4rem;
    max-width: 600px;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% + 70px);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 15%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.2) 85%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--color-white);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.hero__title-white {
    color: var(--color-white);
}

.hero__title-orange {
    color: var(--color-orange);
}

.hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: var(--color-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__subtitle-orange {
    color: var(--color-orange);
}

.hero__description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    margin: 0 0 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__recruitment {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
}

.hero__recruitment-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-orange);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.hero__recruitment-link {
    font-size: 0.95rem;
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.hero__recruitment-link:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.hero__recruitment-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--color-orange), transparent);
    max-width: 200px;
}

.hero__right {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.hero__decorative-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25), rgba(107, 107, 107, 0.1), transparent);
    top: 20%;
    right: 10%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.btn--secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 0.9rem 2.8rem;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    font-family: var(--font-heading);
    font-weight: 400;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-orange);
    color: var(--color-orange);
    transform: translateY(-2px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.8rem;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    cursor: pointer;
}

.btn--primary {
    font-family: var(--font-heading);
    font-weight: 400;
    background: linear-gradient(135deg, var(--color-secondary), #ff8c5a);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 15px 25px rgba(60, 60, 60, 0.18), 0 0 20px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s ease-in-out infinite;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn--primary:hover::before,
.btn--primary:focus-visible::before {
    left: 100%;
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: linear-gradient(135deg, #ff8c5a, var(--color-secondary));
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 107, 53, 0.3);
    transform: translateY(-4px) scale(1.05);
    animation: buttonPulseHover 1.5s ease-in-out infinite;
}

.btn--primary:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 15px 25px rgba(60, 60, 60, 0.18), 0 0 20px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 15px 25px rgba(60, 60, 60, 0.18), 0 0 30px rgba(255, 107, 53, 0.35);
    }
}

@keyframes buttonPulseHover {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 20px 40px rgba(255, 107, 53, 0.5), 0 0 40px rgba(255, 107, 53, 0.4);
    }
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.section--light {
    background-color: #F5F5F5;
}

.section--about {
    background-color: #F5F5F5;
}

.section--services {
    background: linear-gradient(180deg, #F3F3F3 0%, #EDEDED 100%);
}

.section--reviews {
    background: 
        linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 100%),
        radial-gradient(ellipse 1000px 800px at 80% 10%, rgba(255, 107, 53, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 1200px 900px at 15% 100%, rgba(107, 107, 107, 0.12) 0%, rgba(107, 107, 107, 0.06) 35%, transparent 65%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: visible;
    padding-bottom: clamp(10rem, 15vw, 15rem);
}

.section--reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(0, 0, 0, 0.02) 50px, rgba(0, 0, 0, 0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 0, 0, 0.02) 50px, rgba(0, 0, 0, 0.02) 51px);
    z-index: 0;
    pointer-events: none;
}

.section--reviews::after {
    display: none;
}

.section--reviews > .container {
    position: relative;
    z-index: 1;
    padding-bottom: 3rem;
}

.section--reviews .section__heading {
    color: var(--color-text);
}

.section--reviews .section__tag {
    color: var(--color-orange);
}

.section--reviews .section__title {
    color: var(--color-text);
}

.section--reviews .google-rating__score {
    color: var(--color-text);
}

.section--reviews .google-rating__count {
    color: rgba(60, 60, 60, 0.7);
}

.section--reviews .google-rating__verified {
    color: rgba(60, 60, 60, 0.6);
}

/* Galerie par catégories (8 catégories en grille 4x2) - Orange/Gris/Blanc */
.gallery-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-category {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 107, 53, 0.03), rgba(245, 245, 245, 0.98));
    border: 2px solid var(--color-grey-light);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(107, 107, 107, 0.12);
}

.gallery-category::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(107, 107, 107, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-category:hover {
    transform: translateY(-10px);
    border-color: var(--color-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.25), 0 8px 16px rgba(107, 107, 107, 0.15);
}

.gallery-category:hover::before {
    opacity: 1;
}

.gallery-category__icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF; /* Fond blanc */
    border-radius: 50%;
    transition: all 0.4s ease;
}

.gallery-category:hover .gallery-category__icon {
    background: #FFFFFF; /* Fond blanc maintenu au survol */
    transform: scale(1.1);
}

.gallery-category__icon img,
.gallery-category__icon svg {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.gallery-category__icon img {
    /* Filtre retiré pour permettre l'affichage des images PNG */
    /* Si les images sont déjà en orange, le filtre n'est pas nécessaire */
}

.gallery-category__icon svg {
    color: var(--color-orange);
    stroke: var(--color-orange);
    filter: none; /* Pas de filtre pour les SVG, on utilise currentColor */
}

.gallery-category__icon--black svg {
    color: var(--color-text);
    stroke: var(--color-text);
}

.gallery-category__title {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--color-text);
}

.gallery-category__count {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.gallery-subcategory {
    display: none;
    margin-top: 3rem;
}

.gallery-subcategory.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-subcategory__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 999px;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-subcategory__back:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.gallery-subcategory__back svg {
    width: 20px;
    height: 20px;
}

.gallery-subcategory__title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 2rem;
    color: var(--color-text);
}

.gallery-categories.hidden {
    display: none;
}

.section--gallery {
    background: linear-gradient(180deg, #FDFDFD 0%, #F2F2F2 100%);
    position: relative;
    overflow: hidden;
}

.section--gallery::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12), rgba(107, 107, 107, 0.08), transparent);
    z-index: 0;
}

.section--gallery .container {
    position: relative;
    z-index: 1;
}

/* Section Collaborateur - Orange/Gris/Blanc */
.section--collaborateur {
    background-color: #F5F5F5;
    position: relative;
    overflow: hidden;
}

/* Image de fond metal_fond.png - Prend toute la largeur de la page */
.section--collaborateur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url('../images/metal_fond.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
    transform: translateZ(0); /* Force GPU acceleration */
    backface-visibility: hidden; /* Optimisation performance */
}

/* Overlay pour améliorer la lisibilité */
.section--collaborateur::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(245, 245, 245, 0.90) 100%);
    z-index: 1;
}

.section--collaborateur .container {
    position: relative;
    z-index: 2;
}

.collaborateur__content {
    max-width: 900px;
    margin: 0 auto;
}

.collaborateur__services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collaborateur__service-item {
    background: var(--color-white);
    border: 2px solid var(--color-grey-light);
    border-radius: 1.5rem;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 107, 107, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateZ(0); /* Force GPU acceleration */
    will-change: transform;
}

.collaborateur__service-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(107, 107, 107, 0.05));
    transform: translateZ(0); /* Force GPU acceleration */
}

.collaborateur__service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: grayscale(20%) brightness(1.05);
    transform: translateZ(0); /* Force GPU acceleration */
    will-change: transform;
}

.collaborateur__service-item:hover .collaborateur__service-image img {
    transform: scale(1.08) translateZ(0);
    filter: grayscale(0%) brightness(1.05);
}

.collaborateur__service-item h3 {
    padding: 1.5rem 2rem 0.75rem;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
}

.collaborateur__service-item p {
    padding: 0 2rem 2rem;
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
}

.collaborateur__service-item:hover {
    transform: translateY(-6px) translateZ(0);
    border-color: var(--color-orange);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2), 0 6px 12px rgba(107, 107, 107, 0.12);
}

/* Images décoratives flottantes */
.collaborateur__decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.collaborateur__decoration-image {
    position: absolute;
    opacity: 0.06;
    filter: blur(3px);
    object-fit: cover;
    transform: translateZ(0); /* Force GPU acceleration */
    will-change: auto; /* Pas d'animation automatique pour éviter les lags */
    pointer-events: none;
}

.collaborateur__decoration-image--1 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 5%;
    border-radius: 50%;
    transform: rotate(-15deg) translateZ(0);
}

.collaborateur__decoration-image--2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 8%;
    border-radius: 40%;
    transform: rotate(20deg) translateZ(0);
}

/* Désactiver les animations au hover pour éviter les lags */
.section--collaborateur:hover .collaborateur__decoration-image--1,
.section--collaborateur:hover .collaborateur__decoration-image--2 {
    transform: translateZ(0); /* Pas d'animation */
}

/* Responsive - Collaborateur */
@media (max-width: 1024px) {
    .collaborateur__services {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .collaborateur__service-image {
        height: 180px;
    }
    
    .collaborateur__decoration-image--1,
    .collaborateur__decoration-image--2 {
        opacity: 0.05;
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .collaborateur__services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .collaborateur__service-image {
        height: 160px;
    }
    
    .collaborateur__service-item h3 {
        font-size: 1.2rem;
        padding: 1.25rem 1.5rem 0.5rem;
    }
    
    .collaborateur__service-item p {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .collaborateur__decoration-image--1,
    .collaborateur__decoration-image--2 {
        display: none;
    }
}

/* Section Partenaires avec logos qui défilent - Orange/Gris/Blanc */
.section--partners {
    background: linear-gradient(180deg, #F4F4F4 0%, #EAEAEA 100%);
    padding: 4rem 0 3rem;
    overflow: hidden;
}

.section--partners .section__heading--center {
    text-align: center;
}

.section--partners .section__title {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partners__slider {
    overflow: hidden;
    position: relative;
    margin-top: 2.5rem;
    width: 100%;
    padding: 1rem 0;
}

.partners__track {
    display: flex;
    gap: 2.5rem;
    animation: slidePartners 40s linear infinite;
    will-change: transform;
    width: fit-content;
    /* Assurer une boucle infinie sans espace - largeur minimale importante */
    min-width: 400%;
}

.partners__logo {
    flex-shrink: 0;
    width: 180px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 3px solid var(--color-grey-light);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 107, 107, 0.12);
    position: relative;
    z-index: 1;
}

.partners__logo:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--color-orange);
    border-width: 3px;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3), 0 8px 16px rgba(107, 107, 107, 0.2);
    z-index: 10;
}

.partners__logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.partners__logo-text {
    display: none; /* Masqué - on utilise maintenant les images */
}

.partners__logo-placeholder {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-align: center;
}

/* Animation définie dynamiquement par JavaScript pour une boucle infinie précise */
@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section--contact {
    background: linear-gradient(180deg, #FDFDFD 0%, #F1F1F1 100%);
}

.section--accent {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), var(--color-section-light));
}

.section--profile {
    position: relative;
    background: linear-gradient(180deg, #F2F2F2 0%, #FFFFFF 100%);
    isolation: isolate;
}

.section--profile::before,
.section--profile::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0;
    z-index: -2;
}

.section--profile::before {
    background: url("../images/menuisier2.png") center/cover no-repeat;
    background-attachment: fixed;
    opacity: 0.24;
}

.section--profile::after {
    z-index: -1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(245, 245, 245, 0.45));
}

.section--profile .container {
    position: relative;
    z-index: 1;
}

.section__heading {
    margin-bottom: 2rem;
}

.section__heading--center {
    text-align: center;
}

.section__heading--center .section__title {
    margin-left: auto;
    margin-right: auto;
}

.section__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: rgba(255, 107, 53, 0.15);
    color: var(--color-text);
}

.section__tag::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--color-accent);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: 0.01em;
    margin-bottom: 0;
}

.section__subtitle {
    max-width: 640px;
    margin: 0.8rem auto 0;
    color: rgba(60, 60, 60, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section__title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section__google-rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.google-rating__stars {
    color: #fbbc04;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1;
}

.google-rating__score {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    font-family: var(--font-heading);
}

.google-rating__count {
    font-size: 1rem;
    color: rgba(60, 60, 60, 0.7);
}

.google-rating__logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.google-rating__verified {
    font-size: 0.85rem;
    color: rgba(60, 60, 60, 0.6);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.google-rating__verified::before {
    content: "✓";
    color: #34a853;
    font-weight: 600;
    font-size: 1rem;
}

.section__content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

/* Section Profile - Design simple */
.section--profile {
    background-color: #F5F5F5;
    position: relative;
    overflow: hidden;
}

.profile-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 2rem auto 0;
}

/* Card principale orange avec photo et nom */
.profile-main-card {
    background: linear-gradient(135deg, var(--color-orange), #ff8c42);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    color: var(--color-white);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3), 0 5px 15px rgba(255, 107, 53, 0.2);
    min-width: 280px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    height: 100%;
}

.profile-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 107, 53, 0.4), 0 8px 20px rgba(255, 107, 53, 0.3);
}

.profile-main-card__image {
    margin-bottom: 1.5rem;
}

.profile-main-card__photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
    flex-shrink: 0;
}

.profile-main-card__name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.profile-main-card__badge {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
}

/* Cards des détails */
.profile-details-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    align-self: stretch;
    height: 100%;
}

.profile-detail-card {
    background: var(--color-white);
    border-radius: 1.2rem;
    padding: 1.75rem;
    border: 2px solid var(--color-grey-light);
    box-shadow: 0 4px 15px rgba(107, 107, 107, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: 100%;
}

.profile-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-orange);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.15), 0 4px 10px rgba(107, 107, 107, 0.1);
}

.profile-detail-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(107, 107, 107, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.profile-detail-card__icon svg {
    width: 24px;
    height: 24px;
}

.profile-detail-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.profile-detail-card__text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin: 0;
    flex: 1;
}

/* Citation */
.profile-quote {
    max-width: 800px;
    margin: 2.5rem auto 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(107, 107, 107, 0.03));
    border-radius: 1.2rem;
    border-left: 4px solid var(--color-orange);
}

.profile-quote__text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* Responsive Profile */
@media (max-width: 1024px) {
    .profile-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 800px;
        justify-items: center;
    }
    
    .profile-main-card {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
    
    .profile-details-cards {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .profile-wrapper {
        gap: 1.5rem;
        margin-top: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .profile-main-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .profile-main-card__photo {
        width: 120px;
        height: 120px;
    }
    
    .profile-main-card__name {
        font-size: 1.5rem;
    }
    
    .profile-details-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
    }
    
    .profile-detail-card {
        padding: 1.25rem;
        width: 100%;
    }
    
    .profile-quote {
        margin-top: 2rem;
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .profile-quote__text {
        font-size: 1rem;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    row-gap: 1.5rem;
    margin-top: clamp(2.5rem, 6vw, 3.5rem);
    position: relative;
}

/* Animation du camion entre les cartes - traverse de droite à gauche selon le scroll */
.services-van-wrapper {
    grid-column: 1 / -1; /* Prend toute la largeur de la grille */
    position: relative;
    height: 220px;
    margin: 5rem 0;
    overflow: visible; /* Changé de hidden à visible pour permettre au camion de sortir */
    background: transparent; /* Supprimé le fond blanc */
    border-radius: 0; /* Supprimé le border-radius */
    border: none; /* Supprimé la bordure */
    box-shadow: none; /* Supprimé l'ombre */
    width: 100vw; /* Prend toute la largeur de la fenêtre */
    margin-left: calc(50% - 50vw); /* Ajuste pour prendre toute la largeur depuis le bord gauche */
    margin-right: calc(50% - 50vw); /* Ajuste pour prendre toute la largeur jusqu'au bord droit */
}

.services-van-track {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.services-van {
    width: 450px; /* Augmenté de 320px à 450px */
    height: auto;
    object-fit: contain;
    transform: translateX(var(--van-x, 100%)) translateY(0);
    filter: drop-shadow(0 15px 35px rgba(60, 60, 60, 0.4));
    will-change: transform;
    transition: transform 0.08s linear;
    position: relative;
}

.services-van-wrapper::before {
    display: none; /* Ligne supprimée */
}

.service-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 1.2rem 1.4rem;
    box-shadow: 0 25px 45px rgba(60, 60, 60, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    transform: translateY(0) !important;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out, border-color 0.4s ease-out !important;
    overflow: hidden;
    will-change: transform;
}


.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.service-card.reveal.visible:hover,
.service-card.reveal:hover,
.service-card:hover,
.service-card:focus-within {
    transform: translateY(-15px) !important;
    box-shadow: 0 35px 80px rgba(255, 107, 53, 0.3),
                0 15px 35px rgba(60, 60, 60, 0.15);
    border-color: rgba(255, 107, 53, 0.7);
    background-color: rgba(255, 255, 255, 1);
}

.service-card.reveal.visible:hover::before,
.service-card.reveal:hover::before,
.service-card:hover::before,
.service-card:focus-within::before {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-card__icon {
    transform: scale(1.12) translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 107, 53, 0.18) 100%);
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--color-text);
    line-height: 1.3;
}

.service-card__description {
    display: none;
}

.service-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
    margin-top: auto;
}

.service-card__list li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.85rem;
    color: rgba(60, 60, 60, 0.85);
    line-height: 1.4;
}

.service-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.services-cta {
    margin-top: clamp(3rem, 6vw, 4rem);
    text-align: center;
}

.comparatif {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: clamp(2.5rem, 6vw, 3.5rem);
}

.comparatif-card {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 2.2rem;
    box-shadow: 0 25px 45px rgba(60, 60, 60, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.comparatif-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: -1;
}

.comparatif-card:hover,
.comparatif-card:focus-within {
    transform: translateY(-18px) scale(1.02);
    box-shadow: 0 40px 70px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
}

.comparatif-card:hover::before,
.comparatif-card:focus-within::before {
    opacity: 1;
}

.comparatif-card h3 {
    font-size: 1.35rem;
    margin: 0;
}

.comparatif-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: rgba(60, 60, 60, 0.85);
    font-size: 1rem;
}

.comparatif-card ul li::before {
    content: "•";
    margin-right: 0.4rem;
    color: var(--color-accent);
}

.comparatif-card--highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 107, 53, 0.15));
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 35px 60px rgba(255, 107, 53, 0.25);
}

.comparatif-card--highlight:hover,
.comparatif-card--highlight:focus-within {
    transform: translateY(-22px) scale(1.06);
}

.comparatif-card__cta {
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    width: 100%;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    background-color: var(--color-grey-light);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 4 / 3;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    cursor: pointer;
    opacity: 1;
    animation: none;
}


.gallery__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
    z-index: 1;
}

.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(60, 60, 60, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery__item figcaption {
    display: none;
}

.gallery__item:hover,
.gallery__item:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(60, 60, 60, 0.25);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item:hover::after {
    opacity: 1;
}


/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 60, 60, 0.95);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}


.gallery-modal__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.gallery-modal__image {
    width: auto;
    height: 70vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.gallery-modal__caption {
    display: none;
}

.gallery-modal__counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery-modal__close {
    position: absolute;
    top: 5rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 1002;
    will-change: transform, background;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-modal__close svg {
    width: 24px;
    height: 24px;
}

.gallery-modal__close:hover {
    background: rgba(255, 107, 53, 0.9);
    transform: scale(1.1);
}

.gallery-modal__close:active {
    transform: scale(0.95);
}

.gallery-modal__prev,
.gallery-modal__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 1001;
    will-change: transform, background;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-modal__prev svg,
.gallery-modal__next svg {
    width: 28px;
    height: 28px;
}

.gallery-modal__prev {
    left: 2rem;
}

.gallery-modal__next {
    right: 2rem;
}

.gallery-modal__prev:hover,
.gallery-modal__next:hover {
    background: rgba(255, 107, 53, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal__prev:active,
.gallery-modal__next:active {
    transform: translateY(-50%) scale(0.95);
}

@media (max-width: 768px) {
    .gallery-modal__content {
        max-width: 95vw;
        max-height: 95vh;
        gap: 1rem;
    }

    .gallery-modal__image {
        height: 65vh;
        max-width: 95vw;
        border-radius: 0.5rem;
    }
    
    .gallery-modal__close {
        top: 4.5rem;
        right: 1rem;
    }

    .gallery-modal__prev,
    .gallery-modal__next {
        width: 50px;
        height: 50px;
        transition: background 0.15s ease, transform 0.15s ease;
    }

    .gallery-modal__prev svg,
    .gallery-modal__next svg {
        width: 24px;
        height: 24px;
    }

    .gallery-modal__prev {
        left: 0.75rem;
        right: auto;
    }

    .gallery-modal__next {
        right: 0.75rem;
        left: auto;
    }

    .gallery-modal__close {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        z-index: 1003;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: background 0.15s ease, transform 0.15s ease;
    }

    .gallery-modal__close svg {
        width: 24px;
        height: 24px;
        stroke-width: 3;
    }

    .gallery-modal__close:hover {
        background: rgba(255, 107, 53, 0.9);
        border-color: rgba(255, 107, 53, 0.9);
    }

    .gallery-modal__caption {
        font-size: 0.95rem;
        padding: 0 1rem;
        max-width: 90vw;
    }

    .gallery-modal__counter {
        font-size: 0.85rem;
    }

    .gallery-modal__prev:active,
    .gallery-modal__next:active {
        transform: translateY(-50%) scale(0.9);
    }

    .gallery-modal__close:active {
        transform: scale(0.9);
    }
}

.reviews {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.reviews__viewport {
    overflow: hidden;
    width: 100%;
}

.reviews__track {
    display: flex;
    gap: 0;
    padding: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    align-items: stretch;
    width: 100%;
}

.google-review {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1.8rem clamp(1rem, 3vw, 2.4rem);
    box-sizing: border-box;
}

.google-review__card {
    background-color: var(--color-white);
    border-radius: 1.2rem;
    border: 1px solid var(--color-grey-light);
    box-shadow: none;
    padding: clamp(1.6rem, 3vw, 2.2rem);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1.2rem;
    width: 100%;
    max-width: 500px;
}

.google-review__top {
    display: contents;
}

.google-review__identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.google-review__identity > div:not(.google-review__avatar) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.google-review__avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    max-width: 52px;
    max-height: 52px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1.2rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: linear-gradient(140deg, rgba(255, 107, 53, 0.9), rgba(255, 107, 53, 0.7));
    flex-shrink: 0;
    box-sizing: border-box;
}

.google-review__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.google-review__avatar--orange {
    background: #fbbc04;
}

.google-review__avatar--green {
    background: #34a853;
}

.google-review__avatar--amber {
    background: #ea4335;
}

.google-review__avatar--teal {
    background: #1a73e8;
}

.google-review__name {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.google-review__meta {
    margin: 0.15rem 0 0;
    font-size: 0.95rem;
    color: rgba(60, 60, 60, 0.65);
}

.google-review__logo {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.google-review__rating {
    display: grid;
    gap: 0.35rem;
    font-size: 1rem;
    color: rgba(60, 60, 60, 0.9);
}

.google-review__stars {
    color: #fbbc04;
    letter-spacing: 0.18em;
    font-size: 1.2rem;
}

.google-review__rating strong {
    color: var(--color-text);
    font-weight: 600;
}

.google-review__visit {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(60, 60, 60, 0.6);
    grid-column: 1 / -1;
}

.reviews__control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(60, 60, 60, 0.15);
    background-color: var(--color-white);
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.reviews__control:hover,
.reviews__control:focus-visible {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.reviews__control:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
        background-color: rgba(255, 255, 255, 0.8);
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.contact__details {
    list-style: none;
    padding: 0;
    margin: 2rem 0 2.5rem;
    display: grid;
    gap: 1rem;
    font-size: 1.05rem;
}

.contact__hours {
    list-style: none;
    padding: 0.75rem 0 0 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: rgba(60, 60, 60, 0.75);
}

.contact__icon {
    font-size: 1.5rem;
    margin-right: 0.8rem;
}

/* Map Section - Full Width */
.section--map {
    padding: 0;
    margin: 0;
}

.map-container {
    width: 100%;
    aspect-ratio: 16 / 6;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.contact__form {
    display: flex;
    flex-direction: column;
}

.form {
    background-color: var(--color-white);
    padding: clamp(2.4rem, 4vw, 3.4rem);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(60, 60, 60, 0.18);
    position: relative;
    display: flex;
    flex-direction: column;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.form__group:last-of-type {
    margin-bottom: 1.5rem;
}

.form button {
    margin-top: 0;
}

.form__group label {
    font-weight: 600;
    letter-spacing: 0.04em;
}

.form__group input,
.form__group textarea {
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(60, 60, 60, 0.15);
    background-color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.25);
}

.form__group--textarea {
    display: flex;
    flex-direction: column;
}

.form__group--textarea textarea {
    min-height: 120px;
    resize: none;
}

.form__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.alert {
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    font-weight: 500;
}

.alert--success {
    background-color: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    color: var(--color-text);
}

.alert--error {
    background-color: rgba(255, 99, 71, 0.1);
    border-color: rgba(255, 99, 71, 0.3);
    color: #b33a3a;
}

.alert--error ul {
    margin: 0.8rem 0 0;
}

.footer {
    background: #1a1a1a; /* fond noir */
    color: var(--color-white);
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer::before { display: none; }

.footer > .container { position: relative; z-index: 1; }

.footer__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer__brand-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.02em;
}

.footer__brand-name--white {
    color: var(--color-white);
}

.footer__brand-name--orange {
    color: var(--color-orange);
}

.footer__brand-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__brand-tagline--orange {
    color: var(--color-orange);
}

.footer__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer__phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__phone:hover {
    opacity: 0.8;
}

.footer__location {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer__socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: var(--color-white);
}

.footer__socials svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.footer__socials a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer__socials a:hover svg {
    transform: scale(1.1);
}

.footer__copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__credit {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0.5rem 0 0;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer__credit:hover {
    opacity: 0.8;
}

.footer__credit-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__credit-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(60, 60, 60, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.5rem;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-nav__item:active {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
}

.mobile-bottom-nav__icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.mobile-bottom-nav__text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
}

@media (max-width: 900px) {
    .mobile-bottom-nav {
        display: grid;
    }

    body {
        padding-bottom: 70px;
    }
}

/* Animation reveal par défaut - slide depuis le bas */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

/* Slide depuis la gauche */
.reveal[data-side="left"] {
    transform: translateX(-150px);
}

/* Slide depuis la droite */
.reveal[data-side="right"] {
    transform: translateX(80px);
}

/* Slide depuis le haut */
.reveal[data-side="top"] {
    transform: translateY(-60px);
}

/* Slide depuis le bas (défaut) */
.reveal[data-side="bottom"] {
    transform: translateY(60px);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
    will-change: auto;
}

@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery__item {
        padding-bottom: 75%; /* Garde le ratio 4:3 sur tablette */
    }

    .profile {
        grid-template-columns: 1fr;
    }

    .comparatif {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    /* Navigation horizontale responsive */
    .top-nav {
        z-index: 9999;
    }
    
    .top-nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(60, 60, 60, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        overflow-y: auto;
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        box-shadow: -4px 0 20px rgba(60, 60, 60, 0.3);
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
    }

    .top-nav__menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .top-nav__toggle {
        display: flex;
        z-index: 10001;
        position: relative;
    }
    
    body.menu-open {
        overflow: hidden;
    }

    .top-nav__link {
        width: 100%;
        padding: 1rem;
        justify-content: flex-start;
        font-size: 1rem;
    }
    
    .top-nav__link svg {
        width: 20px;
        height: 20px;
    }

    .top-nav__dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 2rem;
        margin-top: 0.5rem;
    }

    .top-nav__socials {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 1rem;
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .top-nav__socials a {
        width: 40px;
        height: 40px;
    }

    /* Hero section responsive */
    .hero {
        flex-direction: column;
        min-height: 100vh;
        height: 100vh;
        padding-top: 70px;
        justify-content: center;
        align-items: center;
    }

    .hero__left {
        flex: 1;
        width: 100%;
        padding: 2rem 1.5rem;
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: calc(100vh - 70px);
    }

    .hero__content {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero__title {
        font-size: clamp(3.5rem, 14vw, 6rem);
        margin: 0 0 1rem;
        line-height: 1;
        text-align: center;
    }

    .hero__subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero__description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: 2rem;
        text-align: center;
        max-width: 100%;
    }

    .hero__buttons {
        flex-direction: row;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .hero__buttons .btn {
        flex: 1;
        min-width: 140px;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        max-width: 200px;
    }

    .hero__recruitment {
        margin-top: 1.5rem;
        justify-content: center;
    }

    .hero::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 20%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.3) 80%, transparent 100%);
    }

    .hero__right {
        position: fixed;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        top: 0;
        left: 0;
        right: 0;
    }

    .hero__image {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        right: 0;
        object-fit: cover;
        object-position: center;
    }
    
    .hero__background-pattern {
        position: fixed;
        width: 100%;
        height: 100vh;
    }

    /* Galerie par catégories responsive */
    .gallery-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .gallery-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .gallery-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Camion responsive */
    .services-van-wrapper {
        margin: 3rem 0;
        height: 180px;
    }

    .services-van {
        width: 250px;
    }

    /* Profile responsive */
    .profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile__image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100vw;
    }

    .hero {
        min-height: 100vh;
    }

    .hero__left {
        padding: 2rem 1.5rem 2rem;
    }

    .hero__title {
        font-size: clamp(3.5rem, 14vw, 6rem);
        margin: 0 0 1rem;
        line-height: 1;
    }

    .hero__subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 1rem;
    }

    .hero__description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: 2rem;
    }

    .hero__buttons {
        flex-direction: row;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .hero__buttons .btn {
        flex: 1;
        min-width: 140px;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero__recruitment {
        margin-top: 1.5rem;
    }

    .hero__content {
        padding: 0;
    }

    /* Changement d'image de fond sur mobile */
    .hero__image {
        display: none; /* Cache l'image fond.png sur mobile */
    }

    .hero__image-wrapper {
        background-image: url('../images/salle_de_bain_fond.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* Services grid mobile - 2 colonnes */
    .section--services .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem; /* Gap réduit pour un meilleur centrage */
        row-gap: 1.5rem;
        justify-items: stretch;
        width: 100%;
        max-width: 100%;
        margin: 0 auto; /* Centre la grille */
        padding: 0;
        box-sizing: border-box;
    }
    
    .service-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        min-width: 0; /* Permet aux cartes de rétrécir si nécessaire */
    }

    .services-van-wrapper {
        margin: 3rem 0;
        height: 180px; /* Augmenté pour accommoder le camion plus grand */
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .services-van {
        width: 300px; /* Augmenté de 200px à 300px pour mobile */
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .gallery__item {
        margin: 0;
        width: 100%;
        max-width: 100%;
        padding-bottom: 75%; /* Garde le ratio 4:3 sur mobile aussi */
    }

    .profile__details {
        padding: 2rem;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .comparatif {
        grid-template-columns: 1fr;
    }


    .service-card {
        padding: 1.5rem;
    }

    .section__title-wrapper {
        gap: 1rem;
    }

    .google-rating {
        gap: 0.5rem;
    }

    .google-rating__stars {
        font-size: 1.2rem;
    }

    .google-rating__score {
        font-size: 1.3rem;
    }

    .google-rating__count {
        font-size: 0.9rem;
    }

    .reviews {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0.75rem;
        align-items: center;
    }

    .reviews__track {
        gap: 0;
    }

    .google-review {
        padding: 0.25rem;
        max-width: 100%;
        width: 100%;
    }

    .google-review__card {
        grid-template-columns: auto 1fr;
        gap: 0.3rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 0.4rem;
        box-shadow: none;
        box-sizing: border-box;
        align-items: start;
    }

    .google-review__logo {
        width: 16px;
        height: 16px;
        min-width: 16px;
        min-height: 16px;
        max-width: 16px;
        max-height: 16px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .google-review__top {
        flex-wrap: nowrap;
        margin-bottom: 0.1rem;
    }

    .google-review__avatar {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
        max-width: 26px;
        max-height: 26px;
        aspect-ratio: 1 / 1;
        font-size: 0.6rem;
    }

    .google-review__identity {
        gap: 0.35rem;
    }

    .google-review__name {
        font-size: 0.7rem;
        line-height: 1;
        margin: 0;
    }

    .google-review__meta {
        font-size: 0.55rem;
        margin: 0;
        line-height: 1.1;
    }

    .google-review__rating {
        font-size: 0.6rem;
        gap: 0.03rem;
        margin-top: 0.05rem;
    }

    .google-review__stars {
        font-size: 0.65rem;
        letter-spacing: 0.02em;
        line-height: 1;
        margin-bottom: 0.03rem;
    }

    .google-review__visit {
        font-size: 0.55rem;
        margin: 0.1rem 0 0;
    }

    .google-review__card span {
        font-size: 0.65rem;
        line-height: 1.15;
        display: block;
    }

    .reviews__control {
        display: inline-flex;
    }

    .comparatif-card {
        padding: 2rem;
    }

    .google-review__actions {
        justify-content: center;
    }

    .hero {
        background-attachment: scroll;
    }

    /* Footer responsive */
    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer__brand,
    .footer__info,
    .footer__contact {
        align-items: center;
    }

    .footer__brand-name {
        font-size: 1.75rem;
    }

    .footer__brand-tagline {
        font-size: 0.9rem;
    }

    .footer__phone {
        font-size: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .service-card {
        transition-duration: 0.4s !important;
    }
    
    .service-card:hover,
    .service-card:focus-within {
        transform: translateY(-15px) !important;
    }
}

.btn,
.comparatif-card__cta,
.nav__cta,
.site-nav__cta,
.cta,
.contact__form button,
.reviews__control,
.footer__socials a,
.form button,
.side-nav__item,
.gallery__item,
.google-review__cta {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.btn:hover,
.btn:focus-visible,
.comparatif-card__cta:hover,
.comparatif-card__cta:focus-visible,
.nav__cta:hover,
.nav__cta:focus-visible,
.cta:hover,
.cta:focus-visible,
.contact__form button:hover,
.contact__form button:focus-visible,
.reviews__control:hover,
.reviews__control:focus-visible,
.footer__socials a:hover,
.footer__socials a:focus-visible,
.form button:hover,
.form button:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.btn:active,
.comparatif-card__cta:active,
.nav__cta:active,
.cta:active,
.contact__form button:active,
.reviews__control:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.25);
}

.contact__intro {
    max-width: 540px;
    margin: 0 0 2rem;
    color: rgba(60, 60, 60, 0.75);
    font-size: 1.05rem;
}

.contact__cards {
    display: grid;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 107, 53, 0.25);
    box-shadow: 0 18px 36px rgba(60, 60, 60, 0.12);
    backdrop-filter: blur(12px);
}

.contact-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.25));
    flex-shrink: 0;
}

.contact-card__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(54%) sepia(95%) saturate(2599%) hue-rotate(348deg) brightness(102%) contrast(101%);
}

.contact-card__content {
    display: grid;
    gap: 0.35rem;
    font-size: 0.98rem;
    color: rgba(60, 60, 60, 0.85);
}

.contact-card__label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: rgba(60, 60, 60, 0.6);
}

.contact-card--hours .contact__hours {
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.95rem;
}

.contact-card--hours .contact__hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    min-height: 1.5rem;
}

.contact__hours-day {
    font-weight: 600;
    color: var(--color-text);
    min-width: 100px;
    flex-shrink: 0;
}

.contact__hours-time {
    color: rgba(60, 60, 60, 0.85);
    font-weight: 400;
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.contact-card--hours .contact__hours .is-closed {
    color: #b75e5e;
    font-weight: 500;
}

.contact__hours-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    will-change: auto;
    transform: none !important;
    opacity: 1 !important;
}

/* Prevent reveal animation from affecting hours status */
.contact__hours-status.reveal,
.contact__hours-status.reveal.visible {
    opacity: 1 !important;
    transform: none !important;
}

.contact__hours-status--open {
    background-color: rgba(52, 168, 83, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(52, 168, 83, 0.3);
}

.contact__hours-status--closed {
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.contact__hours-status-text {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.contact__hours-status-text::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.contact__hours-status--open .contact__hours-status-text::before {
    background-color: #2e7d32;
}

.contact__hours-status--closed .contact__hours-status-text::before {
    background-color: #c62828;
}

@media (max-width: 1024px) {
    .map-container {
        aspect-ratio: 16 / 8;
        min-height: 300px;
    }

    /* Footer responsive tablette */
    .footer__content {
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .contact-card {
        grid-template-columns: auto 1fr;
        padding: 1rem 1.2rem;
    }

    .contact-card__icon {
        width: 38px;
        height: 38px;
    }

    .map-container {
        aspect-ratio: 16 / 9;
        min-height: 250px;
    }

    .contact__cards {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.12), transparent);
    pointer-events: none;
}

