/* ============================================================
   YOAN MÉCANO — Site public (côté client)
   ============================================================ */

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

:root {
    --bg: #04060d;
    --bg2: #070d1c;
    --bg3: #0a1530;
    --bg-card: #0d1525;
    --blue: #1d6dff;
    --blue-light: #4ea3ff;
    --blue-dark: #0a3a99;
    --white: #e6ecf5;
    --gray: #94a3b8;
    --green: #6fd690;
    --red: #ff8a8a;
    --orange: #ffc857;
    --border: rgba(80, 150, 255, 0.15);
}

html, body {
    background: var(--bg);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: var(--blue-light); text-decoration: none; }
a:hover { color: var(--blue); }
img { max-width: 100%; display: block; }

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(4, 6, 13, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 14px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(80, 150, 255, 0.4);
}
.brand-name {
    font-weight: 800;
    color: white;
    line-height: 1;
    font-size: 18px;
    letter-spacing: 0.04em;
}
.brand-sub {
    font-size: 11px;
    color: var(--blue-light);
    letter-spacing: 0.2em;
    margin-top: 4px;
    text-transform: uppercase;
}
.site-nav {
    display: flex;
    gap: 22px;
    align-items: center;
}
.site-nav a:not(.btn) {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.site-nav a:not(.btn):hover { color: var(--blue-light); }
.site-nav .btn {
    background: var(--blue);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 30px -8px rgba(30, 110, 255, 0.6);
}
.site-nav .btn:hover {
    background: var(--blue-light);
    color: white;
}

@media (max-width: 700px) {
    .site-nav a:not(.btn) { display: none; }
    .brand-sub { display: none; }
}

/* === HERO === */
.hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(30, 110, 255, 0.15), transparent 50%),
        radial-gradient(circle at bottom left, rgba(10, 58, 153, 0.2), transparent 50%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(60, 120, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(60, 120, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}
.hero-piston { left: -40px; top: 80px; width: 220px; opacity: 0.7; }
.hero-wrench { right: -30px; bottom: 60px; width: 240px; opacity: 0.6; transform: rotate(-15deg); }
.hero-crossed { left: 50%; top: 30px; transform: translateX(-50%); width: 180px; opacity: 0.5; }
@media (max-width: 768px) {
    .hero-piston { width: 130px; left: -30px; opacity: 0.5; }
    .hero-wrench { width: 140px; right: -30px; opacity: 0.5; }
    .hero-crossed { width: 120px; opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0 30px;
}
.hero-pills {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(30, 110, 255, 0.08);
    border: 1px solid rgba(30, 110, 255, 0.3);
    border-radius: 20px;
    font-size: 11px;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
}
.pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-light); }
.hero-yoan {
    display: block;
    margin: 0 auto 12px;
    max-width: 90%;
    width: 600px;
    filter: drop-shadow(0 10px 30px rgba(30, 110, 255, 0.4));
}
.hero-sub {
    font-family: -apple-system, "Segoe UI", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-light);
    letter-spacing: 0.18em;
    margin-bottom: 24px;
    text-transform: uppercase;
}
@media (max-width: 700px) { .hero-sub { font-size: 18px; } }
.hero-desc {
    max-width: 580px;
    margin: 0 auto 36px;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}
.hero-cta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.btn-big {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: transform 0.15s, background 0.15s;
}
.btn-big-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 0 60px -10px rgba(30, 110, 255, 0.7);
}
.btn-big-primary:hover { background: var(--blue-light); color: white; transform: translateY(-2px); }
.btn-big-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
}
.btn-big-secondary:hover { border-color: var(--blue-light); color: var(--blue-light); }

/* === HIGHLIGHTS / 4 cards === */
.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}
@media (max-width: 800px) { .highlights { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .highlights { grid-template-columns: 1fr; } }
.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    transition: border-color 0.15s, transform 0.15s;
}
.highlight-card:hover { border-color: rgba(80, 150, 255, 0.4); transform: translateY(-2px); }
.highlight-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: rgba(30, 110, 255, 0.15);
    border: 1px solid rgba(30, 110, 255, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.highlight-icon svg { width: 24px; height: 24px; color: var(--blue-light); }
.highlight-card .title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 6px;
}
.highlight-card .desc {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
}

/* === SECTION GENERIC === */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 700;
    margin-bottom: 14px;
}
.section-eyebrow .line { width: 30px; height: 1px; background: var(--blue); }
.section-title {
    font-size: 42px;
    line-height: 1.05;
    color: white;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.section-title .accent { color: var(--blue); }
@media (max-width: 600px) { .section-title { font-size: 28px; } }
.section-intro {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 50px;
}

/* === SERVICES === */
.services-deco-piston { position: absolute; right: -50px; top: 100px; width: 200px; opacity: 0.2; pointer-events: none; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: border-color 0.15s;
}
.service-card:hover { border-color: rgba(80, 150, 255, 0.4); }
.service-card .num {
    font-family: -apple-system, "Segoe UI", sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: rgba(30, 110, 255, 0.2);
    line-height: 1;
    margin-bottom: 14px;
}
.service-card h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* === CTA BAND === */
.cta-band {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.cta-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.cta-band h2 {
    font-size: 32px;
    color: white;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.01em;
}
@media (max-width: 600px) { .cta-band h2 { font-size: 22px; } }
.cta-band .btn-big {
    background: var(--bg);
    color: white;
}
.cta-band .btn-big:hover { background: black; color: white; }
.cta-deco {
    position: absolute;
    pointer-events: none;
    right: -30px;
    bottom: -20px;
    width: 200px;
    opacity: 0.2;
}

/* === FORM === */
.form-page {
    padding: 50px 0;
    background: radial-gradient(circle at top, rgba(30, 110, 255, 0.08), transparent 60%);
    min-height: 100vh;
}
.form-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}
@media (max-width: 600px) { .form-card { padding: 28px 22px; border-radius: 12px; } }
.form-header {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.form-header h1 {
    font-size: 28px;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.form-header .subtitle {
    color: var(--gray);
    font-size: 14px;
}
.form-step {
    margin-bottom: 32px;
}
.form-step h2 {
    font-size: 14px;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(80, 150, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-step h2 .num {
    background: var(--blue);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.field {
    margin-bottom: 18px;
}
.field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-light);
    margin-bottom: 8px;
}
.field label .req { color: var(--red); }
.field .help {
    font-size: 12px;
    color: var(--gray);
    margin-top: 6px;
    line-height: 1.4;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30, 110, 255, 0.15);
}
textarea { min-height: 110px; resize: vertical; }

/* File upload custom */
.file-upload {
    position: relative;
    background: var(--bg);
    border: 2px dashed rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.file-upload:hover {
    border-color: var(--blue);
    background: rgba(30, 110, 255, 0.05);
}
.file-upload.has-file {
    border-color: var(--green);
    background: rgba(50, 200, 100, 0.05);
    border-style: solid;
}
.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.file-upload .icon {
    font-size: 36px;
    margin-bottom: 10px;
    opacity: 0.7;
}
.file-upload .label {
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}
.file-upload .sublabel {
    font-size: 12px;
    color: var(--gray);
}
.file-preview {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(30, 110, 255, 0.08);
    border: 1px solid rgba(30, 110, 255, 0.3);
    border-radius: 8px;
}
.file-preview img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 600px) {
    .row-2, .row-3 { grid-template-columns: 1fr; }
}

/* Vehicle type selector */
.vehicle-type {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
@media (max-width: 600px) { .vehicle-type { grid-template-columns: 1fr 1fr; } }
.vehicle-type label {
    cursor: pointer;
    margin: 0;
    text-align: center;
    text-transform: none;
    letter-spacing: 0;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 18px 10px;
    background: var(--bg);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: border-color 0.15s, background 0.15s;
}
.vehicle-type input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.vehicle-type input[type="radio"]:checked + label {
    border-color: var(--blue);
    background: rgba(30, 110, 255, 0.1);
    color: var(--blue-light);
}
.vehicle-type .v-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 6px;
}

/* Honeypot field (anti-spam) */
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.btn-submit {
    width: 100%;
    background: var(--blue);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    box-shadow: 0 0 60px -10px rgba(30, 110, 255, 0.7);
    transition: background 0.15s, transform 0.1s;
    font-family: inherit;
}
.btn-submit:hover { background: var(--blue-light); }
.btn-submit:active { transform: translateY(1px); }
.btn-submit:disabled {
    background: var(--gray);
    cursor: not-allowed;
    box-shadow: none;
}

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}
.alert-error { background: rgba(220, 40, 40, 0.12); border: 1px solid rgba(220, 40, 40, 0.4); color: var(--red); }
.alert-success { background: rgba(50, 200, 100, 0.1); border: 1px solid rgba(50, 200, 100, 0.4); color: var(--green); }
.alert-info { background: rgba(30, 110, 255, 0.1); border: 1px solid rgba(30, 110, 255, 0.4); color: var(--blue-light); }

/* Confirmation page */
.confirm-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 22px;
}
.confirm-card {
    max-width: 600px;
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.confirm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(50, 200, 100, 0.15);
    border: 2px solid rgba(50, 200, 100, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}
.confirm-card h1 {
    font-size: 28px;
    color: white;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.confirm-card .num {
    font-size: 14px;
    color: var(--blue-light);
    background: rgba(30, 110, 255, 0.1);
    border: 1px solid rgba(30, 110, 255, 0.3);
    border-radius: 6px;
    padding: 8px 16px;
    display: inline-block;
    margin: 16px 0;
    font-family: "SF Mono", Monaco, Consolas, monospace;
    letter-spacing: 0.1em;
}
.confirm-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
    line-height: 1.6;
}

/* === FOOTER === */
.site-footer {
    background: #02040a;
    border-top: 1px solid var(--border);
    padding: 50px 0 24px;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 30px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand-block { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.footer-brand-block img { width: 56px; height: 56px; border-radius: 50%; }
.footer-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.6;
}
.footer-grid h4 {
    font-size: 11px;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
    font-weight: 700;
}
.footer-grid ul {
    list-style: none;
}
.footer-grid li {
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-grid a { color: rgba(255, 255, 255, 0.65); }
.footer-grid a:hover { color: var(--blue-light); }
.footer-bot {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--gray);
}

/* iOS safe areas */
@supports (padding: max(0px)) {
    .wrap, .form-card, .confirm-card {
        padding-left: max(22px, env(safe-area-inset-left));
        padding-right: max(22px, env(safe-area-inset-right));
    }
}
/* ============================================================
   YOAN MÉCANO — Module 2.5 (additions au public.css)
   ============================================================
   À AJOUTER À LA FIN du fichier css/public.css existant.
   ============================================================ */

/* Section variant fond plus foncé */
.section-dark {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* === RÉALISATIONS === */
.realisations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}
@media (max-width: 900px) { .realisations-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .realisations-grid { grid-template-columns: 1fr; } }

.realisation-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.15s, transform 0.15s;
}
.realisation-card:hover {
    border-color: rgba(80, 150, 255, 0.4);
    transform: translateY(-3px);
}
.realisation-photo {
    aspect-ratio: 4 / 3;
    background: var(--bg);
    overflow: hidden;
}
.realisation-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.realisation-card:hover .realisation-photo img { transform: scale(1.04); }

.realisation-body { padding: 20px 22px 22px; }
.realisation-body h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.realisation-body p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.55;
}

/* === DOCUMENTS === */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}
@media (max-width: 700px) { .documents-grid { grid-template-columns: 1fr; } }

.document-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-decoration: none;
    transition: border-color 0.15s, transform 0.15s;
}
.document-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    color: white;
}
.document-icon {
    flex-shrink: 0;
    font-size: 32px;
    width: 56px;
    height: 56px;
    background: rgba(30, 110, 255, 0.12);
    border: 1px solid rgba(30, 110, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.document-body { flex: 1; min-width: 0; }
.document-body h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 6px;
    font-weight: 700;
}
.document-body p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}
.document-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--gray);
}
.document-action { color: var(--blue-light); font-weight: 600; }

/* === RÉSEAUX SOCIAUX === */
.reseaux-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 50px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.reseaux-label {
    color: var(--gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
}
.reseaux-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.reseau-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
    transition: all 0.15s;
}
.reseau-icon:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    transform: translateY(-2px);
}
.reseau-icon svg { width: 20px; height: 20px; }

/* Footer reseaux */
.footer-reseaux {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.footer-reseau {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.15s;
}
.footer-reseau:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}
.footer-reseau svg { width: 16px; height: 16px; }

/* === GOOGLE MAPS === */
.maps-container {
    margin-top: 30px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16 / 7;
    background: var(--bg-card);
}
.maps-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: invert(0.92) hue-rotate(180deg) saturate(0.85) brightness(0.95);
}
@media (max-width: 700px) {
    .maps-container { aspect-ratio: 4 / 5; }
}

/* === Mobile: contact cards en colonne === */
@media (max-width: 700px) {
    .contact-cards { grid-template-columns: 1fr !important; }
}
