@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap');

:root {
    --clr-bg: #0a0a0a;
    --clr-bg-alt: #111111;
    --clr-bg-card: #161616;
    --clr-border: rgba(255,255,255,0.07);
    --clr-text: #f1f1f1;
    --clr-text-muted: #9ca3af;
    --clr-primary: #e60000;
    --clr-primary-hover: #cc0000;
    --clr-navy: #1a2e4a;
    --clr-navy-hover: #243b55;
    --font-main: 'Inter', system-ui, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 0.75rem;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow: 0 4px 20px rgba(0,0,0,0.5);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.6);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent iOS form zoom (inputs must be min 16px) */
input, select, textarea { font-size: 16px !important; }

/* Better tap targets */
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', system-ui, sans-serif;
    line-height: 1.15;
    font-weight: 700;
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
h2 span { color: var(--clr-primary); }

a { text-decoration: none; color: inherit; transition: var(--transition); }

.eyebrow {
    display: inline-block;
    color: var(--clr-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.9rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--clr-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(230,0,0,0.35);
}
.btn-primary:hover {
    background: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,0,0,0.4);
}

.btn-phone {
    background: rgba(255,255,255,0.08);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-phone:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--clr-text);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.btn-nav {
    background: var(--clr-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
}
.btn-nav:hover { background: var(--clr-primary-hover); }

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
}

.nav-content-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 3rem;
}

.logo-link { display: flex; align-items: center; transition: var(--transition); }
.logo-link:hover { transform: scale(1.02); }

.site-logo { height: 90px; width: auto; display: block; transition: var(--transition); }
.navbar.scrolled .site-logo { height: 65px; }

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    white-space: nowrap;
    margin-left: -1.5rem;
    transition: var(--transition);
}
.logo-text span {
    font-weight: 300;
    color: var(--clr-primary);
    margin-left: 0.3rem;
}

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.nav-links a:hover { color: white; }

/* Dropdown */
.dropdown { position: relative; padding: 1rem 0; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #141414;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block !important;
    padding: 0.75rem 1.5rem;
    color: var(--clr-text-muted) !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}
.dropdown-menu a:hover {
    background: rgba(255,255,255,0.04);
    color: white !important;
    padding-left: 2rem;
    border-left: 3px solid var(--clr-primary);
}

.nav-actions { display: flex; gap: 0.75rem; align-items: center; }

.mobile-actions { display: none; align-items: center; gap: 0.75rem; }

.infos-trigger-mobile {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 38px; height: 38px;
    border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}
.infos-trigger-mobile:hover { background: rgba(255,255,255,0.18); }
.navbar.scrolled .infos-trigger-mobile { color: var(--clr-text); border-color: var(--clr-border); background: transparent; }

.mobile-menu-btn { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.mobile-menu-btn span { display: block; width: 25px; height: 3px; background: white; border-radius: 2px; transition: var(--transition); }

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: slowZoom 20s infinite alternate;
}
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,5,5,0.93) 0%, rgba(10,10,10,0.78) 55%, rgba(0,0,0,0.55) 100%);
    z-index: -1;
}

/* Hero 2-column layout */
.hero-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    padding: 3rem 0;
    opacity: 0;
    animation: fadeUp 0.9s 0.1s forwards ease-out;
}

/* Hero CTA Card */
.hero-cta-card {
    flex-shrink: 0;
    width: 360px;
    background: #141414;
    border: 1px solid var(--clr-border);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    opacity: 0;
    animation: fadeUp 0.9s 0.3s forwards ease-out;
}

.hero-cta-header {
    background: var(--clr-primary);
    padding: 1.75rem 2rem;
    text-align: center;
    color: white;
}
.hero-cta-header h3 { font-size: 1.4rem; color: white; margin-bottom: 0.25rem; }
.hero-cta-header p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin: 0; }

.hero-cta-form { padding: 1.5rem 2rem; }

.hero-form-group { margin-bottom: 1rem; }
.hero-form-group input,
.hero-form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: #1e1e1e;
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: var(--transition);
}
.hero-form-group select option { background: #1e1e1e; color: var(--clr-text); }
.hero-form-group input::placeholder { color: var(--clr-text-muted); }
.hero-form-group input:focus,
.hero-form-group select:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(230,0,0,0.15);
    background: #222222;
}

.hero-cta-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--clr-border);
}
.hero-cta-footer a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--clr-primary);
}
.hero-cta-footer a:hover { color: var(--clr-primary-hover); }
.hero-cta-footer span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.15;
}
.hero h1 .highlight { color: var(--clr-primary); }

.hero > .container > .hero-content > p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }

.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust span {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    font-weight: 600;
}

/* ---- VALUE STRIP ---- */
.value-strip {
    background: #0e0e0e;
    border-bottom: 1px solid var(--clr-border);
    border-top: 1px solid var(--clr-border);
    padding: 2.5rem 0;
}
.value-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.value-item { display: flex; align-items: flex-start; gap: 1rem; }
.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(230,0,0,0.12);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clr-primary);
    font-size: 1.2rem;
}
.value-item strong { display: block; font-size: 1rem; font-weight: 700; color: var(--clr-text); margin-bottom: 0.2rem; }
.value-item p { font-size: 0.875rem; color: var(--clr-text-muted); margin: 0; line-height: 1.4; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.section-header p { color: var(--clr-text-muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ---- SERVICES ---- */
.services { padding: 6rem 0; background: var(--clr-bg-alt); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid var(--clr-border);
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--clr-primary);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230,0,0,0.25);
    background: #1a1a1a;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card .icon {
    width: 52px;
    height: 52px;
    background: rgba(230,0,0,0.12);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--clr-primary);
    font-size: 1.25rem;
    transition: var(--transition);
}
.service-card:hover .icon {
    background: var(--clr-primary);
    color: white;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--clr-text); }
.service-card p { color: var(--clr-text-muted); font-size: 0.95rem; line-height: 1.6; }
.service-card .card-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--clr-primary);
}

/* ---- PROCESS ---- */
.process { padding: 6rem 0; background: var(--clr-bg); }

.process-steps { display: flex; align-items: flex-start; gap: 1rem; }

.process-step {
    flex: 1;
    background: var(--clr-bg-card);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}
.process-step:hover { border-color: rgba(230,0,0,0.3); background: #1a1a1a; }

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--clr-primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--clr-text); }
.process-step p { color: var(--clr-text-muted); font-size: 0.95rem; line-height: 1.6; }

.process-arrow { font-size: 1.75rem; color: rgba(255,255,255,0.12); margin-top: 5rem; flex-shrink: 0; }

/* ---- STATS STRIP ---- */
.stats-strip { background: #0d0d0d; border-top: 1px solid var(--clr-border); border-bottom: 1px solid var(--clr-border); padding: 4.5rem 0; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }

.stat-number { font-size: 3rem; font-weight: 900; color: white; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.9rem; color: var(--clr-text-muted); font-weight: 500; }

/* ---- ABOUT ---- */
.about { padding: 6rem 0; background: var(--clr-bg-alt); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-text h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1.5rem; }
.about-text > p { color: var(--clr-text-muted); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }

.features-list { list-style: none; display: grid; gap: 1rem; }
.features-list li {
    padding-left: 2rem;
    position: relative;
    color: var(--clr-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}
.features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--clr-primary); font-weight: 700; }
.features-list li strong { color: var(--clr-text); }

.about-cta { margin-top: 2.5rem; }

.about-visual {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 1.25rem;
    padding: 3.5rem 3rem;
    color: white;
    text-align: center;
}
.about-visual .rbq-badge {
    font-size: 0.82rem;
    font-weight: 700;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--clr-border);
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    color: var(--clr-text-muted);
    display: inline-block;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}
.about-visual h3 { font-size: 1.5rem; color: white; margin-bottom: 0.75rem; }
.about-visual > p { color: var(--clr-text-muted); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.7; }

/* ---- REVIEWS ---- */
.reviews-section { padding: 6rem 0; background: var(--clr-bg); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}
.review-card:hover { border-color: rgba(230,0,0,0.25); transform: translateY(-4px); background: #1a1a1a; }

.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-style: italic; color: var(--clr-text-muted); margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.7; }
.review-author { font-weight: 700; color: var(--clr-text); font-size: 0.9rem; }
.reviews-action { text-align: center; }

/* ---- RÉALISATIONS ---- */
.realisations-section {
    padding: 6rem 0;
    background: var(--clr-bg-alt);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 0.75rem;
}

.real-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #1a1a1a;
    cursor: pointer;
}

.real-item.real-large {
    grid-column: span 2;
}

.real-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.real-item:hover img {
    transform: scale(1.06);
}

.real-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.real-item:hover .real-overlay {
    opacity: 1;
}

.real-overlay span {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-left: 3px solid var(--clr-primary);
    padding-left: 0.75rem;
}

.realisations-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .realisations-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .real-item { height: 200px; }
    .real-item.real-large { grid-column: span 2; }
    .real-overlay { opacity: 1; }
}

@media (max-width: 480px) {
    .realisations-grid { grid-template-columns: 1fr; }
    .real-item.real-large { grid-column: span 1; }
    .real-item { height: 220px; }
}

/* ---- MAP ---- */
.map-section { padding: 6rem 0 0; background: var(--clr-bg-alt); }

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-top: 3rem;
    border-radius: 1.25rem 1.25rem 0 0;
}
.map-container iframe {
    width: 100%;
    height: calc(100% + 65px);
    margin-top: -60px;
    border: none;
}

/* ---- FOOTER ---- */
.footer { padding: 5rem 0 2rem; background: #050505; border-top: 1px solid var(--clr-border); color: white; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo { height: 110px; width: auto; margin-bottom: 1rem; display: block; }
.brand-col p { color: var(--clr-text-muted); font-size: 0.95rem; line-height: 1.7; }

.footer-col h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.footer-col p { color: var(--clr-text-muted); margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-col a { color: var(--clr-text-muted); }
.footer-col a:hover { color: var(--clr-primary); }
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.95rem; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
    color: rgba(255,255,255,0.25);
    font-size: 0.85rem;
}

/* ---- SERVICE PAGES ---- */
.service-hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    background: #0a0a0a;
}
.service-hero .svc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.service-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5,5,5,0.82);
    z-index: 1;
}
.service-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}
.service-hero .hero-content h1 { color: white; }

.service-details { padding: 6rem 0; }

.details-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    background: var(--clr-bg-card);
}
.details-content h2 { font-size: 2rem; margin-bottom: 2rem; }
.details-content p, .details-content ul {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.details-content ul { padding-left: 2rem; }
.details-content ul li { margin-bottom: 0.5rem; }

.service-actions { margin-top: 4rem; text-align: center; }

/* ---- SERVICE PAGE REDESIGN ---- */

/* Main 2-col content section */
.svc-content-section {
    padding: 6rem 0;
    background: var(--clr-bg);
}
.svc-content-section.alt {
    background: var(--clr-bg-alt);
}

.svc-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.svc-content-grid.reversed .svc-image { order: -1; }

.svc-text .eyebrow { margin-bottom: 0.75rem; }

.svc-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.svc-text p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.svc-quote {
    border-left: 4px solid var(--clr-primary);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: var(--clr-bg-card);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--clr-text);
    line-height: 1.7;
}

.svc-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #1a1a1a;
}
.svc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Features grid */
.svc-features-section {
    padding: 5rem 0;
    background: var(--clr-bg-alt);
}

.svc-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.svc-feature {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.svc-feature:hover {
    border-color: rgba(230,0,0,0.3);
    transform: translateY(-4px);
}

.svc-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(230,0,0,0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--clr-primary);
    font-size: 1.4rem;
    transition: var(--transition);
}
.svc-feature:hover .svc-feature-icon {
    background: var(--clr-primary);
    color: white;
}

.svc-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--clr-text);
}
.svc-feature p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* Advantages list */
.svc-advantages-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin: 1.5rem 0 2rem;
}
.svc-advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}
.svc-advantages-list li i {
    color: var(--clr-primary);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.svc-advantages-list li strong { color: var(--clr-text); }

/* CTA Banner */
.svc-cta-banner {
    padding: 5rem 0;
    background: #0d0d0d;
    border-top: 1px solid var(--clr-border);
    text-align: center;
}
.svc-cta-banner h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}
.svc-cta-banner p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 540px;
    margin-inline: auto;
    line-height: 1.7;
}
.svc-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .svc-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .svc-content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .svc-content-grid.reversed .svc-image { order: 0; }
    .svc-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .svc-features-grid { grid-template-columns: 1fr; }
}

/* ---- SERVICE GALLERY ---- */
.service-gallery {
    padding: 0 0 6rem;
    background: var(--clr-bg);
}
.svc-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.svc-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #1a1a1a;
}
.svc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.svc-gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 600px) {
    .svc-gallery-grid { grid-template-columns: 1fr; }
}

/* Legacy compatibility for service pages */
.glass-panel {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--clr-border);
    border-radius: 1rem;
}
.dark-glass { background: rgba(0,0,0,0.4); }
.glass-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
}

/* ---- INFOS UTILES PANEL ---- */
.infos-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    white-space: nowrap;
}
.infos-trigger:hover { background: rgba(255,255,255,0.12); }
.navbar.scrolled .infos-trigger { color: var(--clr-text); border-color: var(--clr-border); background: transparent; }
.navbar.scrolled .infos-trigger:hover { background: rgba(255,255,255,0.05); }

.infos-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}
.infos-overlay.active { opacity: 1; visibility: visible; }

.infos-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: #141414;
    border-left: 1px solid var(--clr-border);
    z-index: 1200;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.infos-panel.active { right: 0; }

.infos-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    position: sticky;
    top: 0;
    background: #141414;
    z-index: 1;
}
.infos-panel-header span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--clr-primary);
    padding-bottom: 2px;
}
.infos-close {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    padding: 0.4rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}
.infos-close:hover { color: white; background: rgba(255,255,255,0.1); }

.infos-panel-body { padding: 0; flex: 1; }

.infos-block { padding: 1.5rem; }

.infos-logo {
    height: 70px;
    width: auto;
    margin-bottom: 0.75rem;
    display: block;
}
.infos-block h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}
.infos-block > p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.infos-cta {
    width: 100%;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    justify-content: center;
}

.infos-divider { height: 1px; background: var(--clr-border); margin: 0; }

.infos-block h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
}

.infos-socials { display: flex; gap: 0.75rem; }
.infos-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    transition: var(--transition);
}
.infos-social-btn.facebook { background: #1877f2; }
.infos-social-btn.google { background: #4285f4; }
.infos-social-btn:hover { transform: translateY(-2px); opacity: 0.85; }

.infos-company {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--clr-text);
    margin-bottom: 0.75rem !important;
}

.infos-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.6rem;
}
.infos-detail i { color: var(--clr-primary); width: 14px; text-align: center; flex-shrink: 0; }
.infos-detail a { color: var(--clr-text); font-weight: 600; }
.infos-detail a:hover { color: var(--clr-primary); }

.infos-hours { display: grid; gap: 0.6rem; }
.infos-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}
.hours-day { color: var(--clr-text-muted); font-weight: 600; }
.hours-time { font-weight: 700; }
.hours-time.open { color: #22c55e; }
.hours-time.closed { color: var(--clr-primary); }

.infos-btns { display: flex; gap: 0.75rem; }
.btn-infos-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-infos-action:hover { background: rgba(255,255,255,0.1); color: white; }

@media (max-width: 768px) {
    .infos-trigger span { display: none; }
    .infos-panel { width: 100%; right: -100%; }
    .infos-panel.active { right: 0; }
}

/* ---- POPUP ---- */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.popup-overlay.show { opacity: 1; visibility: visible; }

.popup-content {
    position: relative;
    max-width: 460px;
    width: 90%;
    padding: 3rem 2.5rem;
    text-align: center;
    background: #141414;
    border: 1px solid var(--clr-border);
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.popup-overlay.show .popup-content { transform: translateY(0) scale(1); }

.popup-close {
    position: absolute;
    top: 1rem; right: 1.25rem;
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}
.popup-close:hover { color: var(--clr-primary); }

.popup-content {
    display: flex;
    gap: 0;
    max-width: 780px;
}

.popup-left {
    flex: 1.1;
    padding: 2.5rem;
    border-right: 1px solid var(--clr-border);
}

.popup-tag {
    display: inline-block;
    background: rgba(230,0,0,0.15);
    color: var(--clr-primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}

.popup-left h2 {
    font-size: 1.6rem;
    color: var(--clr-text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.popup-left p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup-trust {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}
.popup-trust li {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.popup-trust li i { color: var(--clr-primary); font-size: 0.8rem; }

.popup-right {
    flex: 0.9;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
}

.popup-right-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-text-muted);
    margin-bottom: 1.25rem;
}

.popup-btn {
    width: 100%;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
}

.popup-divider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0;
    color: var(--clr-border);
}
.popup-divider::before, .popup-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--clr-border);
}
.popup-divider span {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.popup-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}
.popup-phone i { color: var(--clr-primary); }
.popup-phone:hover { color: var(--clr-primary); }

.popup-note {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin: 0;
}

@media (max-width: 600px) {
    .popup-content { flex-direction: column; max-width: 95%; }
    .popup-left { border-right: none; border-bottom: 1px solid var(--clr-border); padding: 1.75rem 1.5rem; }
    .popup-right { padding: 1.5rem; }
}

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 6rem 0; background: var(--clr-bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.contact-info p { color: var(--clr-text-muted); font-size: 1.05rem; margin-bottom: 2rem; }
.contact-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}
.contact-card:hover { border-color: rgba(230,0,0,0.25); transform: translateY(-4px); }
.contact-form {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--clr-text); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--clr-text-muted); }
.form-group select option { background: #1e1e1e; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(230,0,0,0.12);
    background: #222222;
}

/* ---- QUOTE SECTION ---- */
.quote-section {
    padding: 7rem 0;
    background: #0d0d0d;
    border-top: 1px solid var(--clr-border);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
}

/* Left info */
.quote-badge {
    display: inline-block;
    border: 1.5px solid var(--clr-primary);
    color: var(--clr-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.75rem;
}

.quote-title {
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.quote-desc {
    color: var(--clr-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.quote-details {
    list-style: none;
    display: grid;
    gap: 1.1rem;
}
.quote-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text);
}
.quote-details li i {
    color: var(--clr-primary);
    font-size: 1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.quote-details li a {
    color: var(--clr-primary);
    font-weight: 700;
}
.quote-details li a:hover { color: var(--clr-primary-hover); }

/* Right form */
.quote-form-wrap {
    background: #141414;
    border: 1px solid var(--clr-border);
    border-radius: 1.25rem;
    padding: 2.5rem;
}

.quote-form { display: flex; flex-direction: column; gap: 1.25rem; }

.qf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.qf-group { display: flex; flex-direction: column; gap: 0.4rem; }

.qf-group label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
}
.qf-group label span { color: var(--clr-primary); }

.qf-group input,
.qf-group select,
.qf-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
    resize: vertical;
}
.qf-group input::placeholder,
.qf-group textarea::placeholder { color: rgba(255,255,255,0.2); font-style: italic; }
.qf-group select option { background: #1e1e1e; }

.qf-group input:focus,
.qf-group select:focus,
.qf-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(230,0,0,0.12);
    background: #222222;
}

.qf-submit {
    width: 100%;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    margin-top: 0.25rem;
}

.qf-privacy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
    text-align: center;
    margin: 0;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- HELPERS ---- */
.text-center { text-align: center; }
.section { padding: 6rem 0; }

/* ==============================
   RESPONSIVE — TABLET (≤1024px)
   ============================== */
@media (max-width: 1024px) {
    .nav-content-fluid { padding: 0 1.5rem; }
    .logo-text { font-size: 1.2rem; }
    .hero-layout { gap: 2.5rem; }
    .hero-cta-card { width: 310px; }
    .value-items { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .process-steps { flex-direction: column; gap: 1.5rem; }
    .process-arrow { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .quote-grid { grid-template-columns: 1fr; gap: 3rem; }
    .svc-content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .svc-content-grid.reversed .svc-image { order: 0; }
    .svc-features-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-cta-btns { flex-direction: column; align-items: center; }
    .svc-cta-btns .btn { width: 100%; max-width: 360px; }
    .realisations-grid { grid-template-rows: 220px 220px; }
}

/* ==============================
   RESPONSIVE — MOBILE (≤768px)
   ============================== */
@media (max-width: 768px) {

    /* Global */
    .container { padding: 0 1.25rem; }
    body.no-scroll { overflow: hidden; position: fixed; width: 100%; }

    /* Reduce all section paddings */
    .services, .process, .about, .reviews-section,
    .realisations-section, .svc-content-section,
    .svc-features-section, .svc-cta-banner,
    .quote-section { padding-top: 3rem; padding-bottom: 3rem; }
    .stats-strip { padding: 2.5rem 0; }
    .map-section { padding-top: 3rem; }
    .value-strip { padding: 2rem 0; }

    /* ---- NAVBAR ---- */
    .nav-actions { display: none; }
    .infos-trigger { display: flex; padding: 0.45rem 0.75rem; font-size: 0.8rem; }
    .infos-trigger span { display: none; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 100%;
        height: 100%;
        height: -webkit-fill-available;
        background: rgba(10,10,10,0.99);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 900;
        transition: right 0.35s ease-in-out;
        display: flex;
        padding: 5rem 2rem 2rem;
        list-style: none;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.active { right: 0; }
    .nav-links > li { width: 100%; text-align: center; margin-bottom: 1rem; }
    .nav-links a {
        font-size: 1.25rem;
        color: rgba(255,255,255,0.85) !important;
        padding: 0.5rem 0;
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-links .dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        transform: none; background: transparent;
        border: none; box-shadow: none; padding: 0.25rem 0 0;
    }
    .nav-links .dropdown-menu a {
        font-size: 0.9rem !important;
        color: var(--clr-text-muted) !important;
        min-height: 40px;
        padding: 0.35rem 0 !important;
    }
    .nav-links .dropdown-menu a:hover {
        border-left: none; color: var(--clr-primary) !important;
        background: transparent; padding-left: 0 !important;
    }

    .mobile-actions { display: flex; z-index: 1000; position: relative; align-items: center; gap: 0.75rem; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* ---- LOGO ---- */
    .site-logo { height: 60px; }
    .navbar.scrolled .site-logo { height: 48px; }
    .logo-text { font-size: 1rem; margin-left: -0.75rem; }

    /* ---- HERO ---- */
    .hero { min-height: auto; padding-top: 70px; padding-bottom: 3rem; }
    .hero-layout { flex-direction: column; gap: 2rem; }
    .hero-content { padding: 2rem 0 0; }
    .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .hero > .container > .hero-content > p { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .hero-actions .btn { width: 100%; justify-content: center; min-height: 50px; }
    .hero-trust { gap: 0.6rem; }
    .hero-trust span { font-size: 0.78rem; }
    .hero-cta-card { width: 100%; }
    .hero-cta-header { padding: 1.25rem 1.5rem; }
    .hero-cta-form { padding: 1.25rem 1.5rem; }
    .hero-cta-footer { flex-direction: column; gap: 0.4rem; text-align: center; padding: 0.75rem 1.5rem 1.25rem; }

    /* ---- VALUE STRIP ---- */
    .value-items { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .value-item { flex-direction: column; gap: 0.4rem; align-items: flex-start; }
    .value-icon { width: 40px; height: 40px; font-size: 1rem; }
    .value-item strong { font-size: 0.9rem; }
    .value-item p { font-size: 0.8rem; }

    /* ---- SECTIONS HEADERS ---- */
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
    .section-header p { font-size: 0.95rem; }

    /* ---- SERVICES ---- */
    .services-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .service-card { padding: 1.5rem; }
    .service-card .icon { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 1rem; }
    .service-card h3 { font-size: 1.05rem; }

    /* ---- PROCESS ---- */
    .process-steps { flex-direction: column; gap: 0.75rem; }
    .process-step { padding: 1.5rem 1.25rem; }
    .step-number { font-size: 2.5rem; margin-bottom: 0.75rem; }

    /* ---- STATS ---- */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.8rem; }

    /* ---- ABOUT ---- */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-text h2 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
    .about-visual { padding: 2rem 1.5rem; }
    .about-visual h3 { font-size: 1.25rem; }

    /* ---- REVIEWS ---- */
    .reviews-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .review-card { padding: 1.5rem; }

    /* ---- REALISATIONS ---- */
    .realisations-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 0.5rem; }
    .real-item { height: 200px; }
    .real-item.real-large { grid-column: span 1; height: 240px; }
    .real-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); }

    /* ---- QUOTE SECTION ---- */
    .quote-grid { grid-template-columns: 1fr; gap: 2rem; }
    .quote-title { font-size: clamp(1.5rem, 5vw, 2rem); }
    .quote-form-wrap { padding: 1.5rem 1.25rem; }
    .qf-row { grid-template-columns: 1fr; }
    .quote-details { gap: 0.75rem; }

    /* ---- FOOTER ---- */
    .footer { padding: 3rem 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .footer-logo { height: 75px; }
    .footer-col h3 { margin-bottom: 0.75rem; }

    /* ---- SERVICE PAGES ---- */
    .service-hero { padding: 6rem 0 3rem; }
    .service-hero .hero-content { padding: 1.25rem 1.5rem; }
    .service-hero .hero-content h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .service-hero .hero-content p { font-size: 0.95rem; }

    .svc-content-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .svc-content-grid.reversed .svc-image { order: 0; }
    .svc-image { aspect-ratio: 16/9; border-radius: 0.75rem; }
    .svc-text h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .svc-quote { padding: 1rem 1.25rem; font-size: 0.9rem; margin: 1.25rem 0; }
    .svc-text p { font-size: 0.95rem; }

    .svc-features-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .svc-feature { padding: 1.25rem 1rem; }
    .svc-feature-icon { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 1rem; }
    .svc-feature h3 { font-size: 0.9rem; }
    .svc-feature p { font-size: 0.8rem; }

    .svc-cta-banner h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .svc-cta-banner p { font-size: 0.95rem; }
    .svc-cta-btns { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .svc-cta-btns .btn { width: 100%; justify-content: center; min-height: 50px; }

    .details-content { padding: 1.75rem 1.25rem; }
    .service-gallery { padding-bottom: 3rem; }
    .svc-gallery-grid { grid-template-columns: 1fr; }

    /* ---- INFOS PANEL ---- */
    .infos-panel { width: 100%; right: -100%; }
    .infos-panel.active { right: 0; }

    /* ---- POPUP ---- */
    .popup-content { flex-direction: column; max-width: 95vw; border-radius: 1rem; }
    .popup-left { border-right: none; border-bottom: 1px solid var(--clr-border); padding: 1.5rem; }
    .popup-right { padding: 1.5rem; }
    .popup-left h2 { font-size: 1.35rem; }
    .popup-btn { min-height: 50px; }

    /* ---- BUTTONS — min touch target ---- */
    .btn { min-height: 48px; }
    .btn-outline, .btn-nav { min-height: 40px; }
}

/* ==============================
   RESPONSIVE — SMALL (≤480px)
   ============================== */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .value-items { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .svc-features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.6rem; }
}

/* ==============================
   iOS SAFE AREA (NOTCH/HOME BAR)
   ============================== */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
    .nav-links { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
}
