/* --- Thème identité logo AR'odrone --- */
:root {
    --navy: #0d1b2a;
    --navy-light: #1a2d47;
    --gold: #c9a227;
    --gold-light: #e5c76b;
    --gold-dark: #a68520;
    --neutral: #e8e6e1;
    --neutral-dark: #6b6b6b;
    --header-logo-size: clamp(68px, 9vw, 120px);
    --header-min-height: clamp(84px, 10vw, 110px);
}

/* --- General rules --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: #fff;
    -webkit-tap-highlight-color: rgba(201, 162, 39, 0.25);
}

/* --- Boutons (accent or) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    touch-action: manipulation;
    border-radius: 999px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: background-color .15s linear, border-color .15s linear, color .15s linear, transform .15s linear;
}

.btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* --- Header rules --- */
header {
    font-size:large;
}

    header .logo {
    padding-left: 2rem;
    display: flex;
    align-items: center;
    }
    header .logo img {
    height: var(--header-logo-size);
    width: auto;
    display: block;
    }

/* --- Nav bar (bleu marine) --- */
.navbar {
    min-height: var(--header-min-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.25rem, 0.8vw, 0.5rem) 1rem;
    position: fixed;
    background: var(--navy);
    backdrop-filter: blur(10px);
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

    .navbar .links {
        list-style: none;
        display: flex;
        gap: 1rem;
        padding-right: 3rem;
        padding-left: 0rem;
    }

    .navbar .links li {
        position: relative;
        display: flex;
        align-items: center;
    }

    .navbar .links li + li::before {
        content: "";
        width: 1px;
        height: 18px;
        background: var(--gold);
        opacity: 0.7;
        margin-right: 1rem;
    }

        .navbar .links a {
            text-decoration: none;
            font-weight: 600;
            color: #fff;
            opacity: 0.95;
        }

        .navbar .links .link:hover {
            color: var(--gold-light);
            opacity: 1;
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-offset: 6px;
            transition: all .15s linear;
        }

/* --- Toggle button & overlay menu rules --- */
.toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem 3rem 0.5rem 0.75rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}
    .toggle:hover{
        color: var(--gold-light);
        transition: all .15s linear;
    }

#overlay-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    background: var(--navy);
    overflow-x: hidden;
    transition: 0.4s;
}

    #overlay-menu .close-btn {
        position: absolute;
        top: 20px;
        right: 40px;
        font-size: 3rem;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
    }
        #overlay-menu .close-btn:hover{
            color: var(--gold);
            transition: all .15s linear;
        }

    #overlay-menu .overlay-content {
        position: relative;
        top: 30%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
        #overlay-menu .overlay-content a {
            font-size: 1.5rem;
            color: #fff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0.35rem 1rem;
            touch-action: manipulation;
        }
        #overlay-menu .overlay-content .link:hover {
            color: var(--gold);
            transition: all .15s linear;
        }
        #overlay-menu .overlay-content .link-green:hover {
            color: var(--gold);
            transition: all .15s linear;
        }

/* --- Main section --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: white;
    padding: 0 2rem;
    background: url('../pix/hero-drone.png') center/cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Pas de voile sur l'image : on veut afficher le fichier tel quel */
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Un léger ombrage pour la lisibilité sans “effacer” l'image */
    text-shadow: 0 2px 18px rgba(13, 27, 42, 0.35);
}

.hero.hero--short {
    height: 48vh;
    min-height: 460px;
    background: url('../pix/hero-drone.png') center/cover no-repeat;
}

/* Bandeau hero inspection : même format que photogrammétrie (cover), via <img> pour srcset HD.
   Sans fichier HD, l’image 1024px est étirée en plein écran → flou (limite physique du fichier). */
.hero.hero--short.hero--inspection {
    background: none;
    overflow: hidden;
}

.hero-inspection__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    /* Lissage navigateur un peu plus stable sur certains écrans Retina */
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Bandeau hero photogrammétrie */
.hero.hero--short.hero--photogrammetrie {
    background: url('../pix/photogrammetrie-hero.jpg') center/cover no-repeat;
}

/* Bandeau prêt à recevoir ta photo vidéo */
.hero.hero--short.hero--video {
    background: url('../pix/video-hero.jpg') center/cover no-repeat;
}

/* Bandeau hero contact/devis */
.hero.hero--short.hero--contact {
    background: url('../pix/contact-hero.jpg') center/cover no-repeat;
}

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        font-weight: normal;
    }
    .hero--short .hero-content h1 {
        font-size: 2rem;
    }

.container {
    max-width: 1000px;
    margin: auto;
}

section {
    padding: 5rem 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size:large;
}
    section h2 {
        text-align: center;
        margin-bottom: 2rem;
        color: inherit;
    }
    section ul {
        list-style: none;
    }
    section strong {
        color: var(--gold);
        white-space: nowrap;
    }

    section em {
        color: var(--gold);
        font-style: normal;
        font-weight: bold;
    }

    section .title-icon {
        padding-right: 1.5rem;
        color: var(--gold);
    }

.section-pair {
    background: var(--neutral);
    color: var(--navy);
}
.section-impair {
    background: var(--navy);
}

.section-pair .btn {
    border-color: var(--gold);
    background: transparent;
    color: var(--navy);
}

.method-image {
    width: 100%;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    display: block;
}

/* --- Domaines radial (graphique) --- */
.domaines-section .container {
    max-width: 720px;
}

.domaines-radial {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domaines-radial__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(201, 162, 39, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    padding: 0.75rem;
}

.domaines-radial__center-label {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    color: var(--gold);
}

.domaines-radial__node {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.domaines-radial__node i {
    color: var(--gold);
    font-size: 1.25rem;
}

.domaines-radial__node span {
    line-height: 1.2;
}

/* Position des ronds sur le cercle (rayon ~170px, centre à 50% 50%) */
.domaines-radial__node--1 { top: 50%; left: 50%; transform: translate(-50%, -50%) translate(0, -170px); }
.domaines-radial__node--2 { top: 50%; left: 50%; transform: translate(-50%, -50%) translate(170px, 0); }
.domaines-radial__node--3 { top: 50%; left: 50%; transform: translate(-50%, -50%) translate(0, 170px); }
.domaines-radial__node--4 { top: 50%; left: 50%; transform: translate(-50%, -50%) translate(-170px, 0); }

@media (max-width: 700px) {
    .domaines-radial {
        min-height: 520px;
        flex-wrap: wrap;
        padding: 2rem 0;
    }
    .domaines-radial__center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 2rem;
    }
    .domaines-radial__node {
        position: relative;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 220px;
        height: auto;
        min-height: 90px;
        border-radius: 2rem;
        margin: 0.5rem auto;
    }
}

/* --- Conformité & démarches (texte + logo DGAC centré après l'encart) --- */
.conformite-section__logo {
    text-align: center;
    margin-top: 2rem;
    padding: 0 2rem;
}

.dgac-logo {
    max-width: 140px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.section-split__inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2.5rem;
    align-items: center;
}

.section-split__text {
    text-align: left;
}

.section-split__text p {
    margin-bottom: 1rem;
}

.section-split__media {
    display: flex;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    border: 1px dashed rgba(201, 162, 39, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.video-photogrammetrie-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 1rem;
}

.video-photogrammetrie {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: none;
}

/* Plus d'espace pour la vidéo sur la page photogrammétrie */
.section-split--photogrammetrie .container {
    max-width: 1240px;
}

.section-split--photogrammetrie .section-split__inner {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 2.3fr);
}

.section-split--photogrammetrie .section-split__media {
    justify-content: flex-end;
}

.video-photogrammetrie-overlay {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: rgba(13, 27, 42, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.video-photogrammetrie-overlay[aria-hidden="true"] {
    pointer-events: none;
    opacity: 0;
}

.video-photogrammetrie-overlay__btn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.8);
    color: var(--gold);
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
}

.video-photogrammetrie-overlay__btn:hover {
    background: rgba(201, 162, 39, 0.15);
}

@media (max-width: 900px) {
    .section-split__inner {
        grid-template-columns: 1fr;
    }
    .section-split__text {
        text-align: center;
    }
}

.section-pair .btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* --- Hero layout (accueil) --- */
.hero-content--left {
    max-width: 550px;
    text-align: left;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .8rem;
    color: var(--gold);
    margin-bottom: .5rem;
}

.hero-subtitle {
    margin: 1rem 0 2rem;
    max-width: 38rem;
    color: rgba(255,255,255,0.85);
}

/* --- Services grid (accueil) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.service-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-card ul.list-check {
    margin-top: 0.75rem;
}

.service-card ul.list-check li a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.service-card ul.list-check li a:hover {
    color: var(--gold);
}

/* --- Drone highlight (accueil) --- */
.drone-highlight {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.drone-highlight__image {
    max-width: 320px;
    width: 100%;
}

section ul.list-check {
    list-style: disc;
    padding-left: 1.5rem;
    text-align: left;
    max-width: 600px;
    margin: 1rem auto;
}

section ul.list-check li {
    margin-bottom: 0.5rem;
}

/* --- Gallery grid (réalisations) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* --- Grille portfolio carrée (Réalisations) --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.75rem;
    margin: 2rem 0;
}

.project-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(201, 162, 39, 0.25);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transform: translateY(0);
    transition: transform 0.15s linear, box-shadow 0.15s linear, border-color 0.15s linear;
}

.project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.25s ease;
}

.project-card__title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.85rem 0.95rem;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    background: linear-gradient(0deg, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.05) 100%);
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    border-color: rgba(201, 162, 39, 0.45);
}

.project-card:hover img {
    transform: scale(1.05);
}

.gallery-item {
    margin: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.95rem;
}

/* --- Réalisation block (media gauche + texte droite) --- */
.realisation-block {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.5rem;
    align-items: start;
    text-align: left;
    margin-top: 2rem;
}

.realisation-block__media {
    width: 100%;
}

.realisation-block__text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: inherit;
}

.realisation-block__text p {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .realisation-block {
        grid-template-columns: 1fr;
    }
    .realisation-block__text {
        text-align: center;
    }
}

/* --- Contact form --- */
.contact-info {
    text-align: left;
    max-width: 500px;
    margin: 1rem auto 2rem;
    padding: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    color: white;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    margin-top: 0.5rem;
    cursor: pointer;
    border: none;
}

/* --- Section équipement (accueil) --- */
.section-equipement .drone-highlight__image {
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

/* Accent or sur sections claires */
.section-pair .title-icon {
    color: var(--gold);
}

/* --- Encart DGAC (fond blanc + lignes dorées) --- */
.section-dgac {
    background: #fff;
    color: var(--navy);
    padding: 3rem 2rem;
    text-align: center;
    font-size: large;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.section-dgac h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-dgac p {
    color: var(--navy);
    max-width: 700px;
    margin: 0.5rem auto;
}

/* --- Footer (bleu marine + or) --- */
footer {
    text-align: center;
    padding: 1.25rem 1rem;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

.footer-responsive {
    margin-top: 0.65rem !important;
    font-size: 0.82rem;
    opacity: 0.82;
    line-height: 1.35;
}

.footer-nav-extra {
    margin: 0.4rem 0 0;
    font-size: 0.88rem;
}

.footer-nav-extra a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-nav-extra a:hover {
    color: var(--gold-light);
}

/* --- Responsive section (≤992px : tablettes portrait / grands téléphones) --- */
@media (max-width: 992px) {
    header .logo img {
        height: clamp(58px, 18vw, 82px);
    }

    .navbar {
        min-height: clamp(72px, 20vw, 96px);
    }

    .navbar .links {
        display: none;
    }
    .toggle {
        display: flex;
    }
}

/* ========== THÈME CLAIR (test) ========== */
body.theme-light {
    color: var(--navy);
}

body.theme-light .navbar {
    background: #fff;
    border-bottom: 1px solid rgba(13, 27, 42, 0.15);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}

body.theme-light .navbar .links a,
body.theme-light .navbar .link {
    color: var(--navy);
}

body.theme-light .navbar .links .link:hover {
    color: var(--gold-dark);
}

body.theme-light .toggle {
    color: var(--navy);
}

body.theme-light .toggle:hover {
    color: var(--gold);
}

body.theme-light #overlay-menu {
    background: #fff;
}

body.theme-light #overlay-menu .overlay-content a {
    color: var(--navy);
}

body.theme-light #overlay-menu .close-btn {
    color: var(--navy);
}

body.theme-light .section-impair {
    background: #fff;
    color: var(--navy);
}

body.theme-light .section-pair {
    background: var(--neutral);
    color: var(--navy);
}

body.theme-light .service-card {
    background: rgba(13, 27, 42, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

body.theme-light .service-card h3 {
    color: var(--navy);
}

body.theme-light .service-card p {
    color: var(--navy);
}

body.theme-light .domaines-radial__center {
    background: rgba(13, 27, 42, 0.06);
    border-color: rgba(201, 162, 39, 0.5);
}

body.theme-light .domaines-radial__center-label {
    color: var(--gold);
}

body.theme-light .domaines-radial__node {
    background: rgba(13, 27, 42, 0.05);
    border-color: rgba(201, 162, 39, 0.4);
    color: var(--navy);
}

body.theme-light .domaines-radial__node i {
    color: var(--gold);
}

body.theme-light .hero-subtitle,
body.theme-light .hero h1 {
    color: #fff;
}

/* Portfolio réalisations : titres sur fond clair en bleu */
body.theme-light .hero.hero--portfolio-light h1 {
    color: var(--navy);
}

/* Réalisations : pas de photo en hero, uniquement fond blanc */
body.theme-light .hero.hero--plain {
    background: #fff !important;
    background-image: none !important;
}

/* Réalisations : réduire l'espace entre le hero et la grille */
section.section-realisations-list {
    padding-top: 1.25rem;
    padding-bottom: 3rem;
}

section.section-realisations-list .realisations-intro {
    margin: 0 0 1.75rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Page détail réalisation : réduire l'espace entre le hero et le contenu */
section.section-realisation-detail-page {
    padding-top: 2.25rem;
    padding-bottom: 3rem;
}

section.section-realisation-detail-page .realisation-block {
    margin-top: 1rem;
}

/* Projet page détail : réduire l'empreinte photo */
.realisation-block__media img {
    max-width: 360px;
    width: 100%;
    margin-left: 0;
}

.realisation-block__media video {
    max-width: 360px;
    width: 100%;
}

body.theme-light .realisation-block__text h3 {
    color: var(--navy);
}

/* Carrés portfolio : taille un peu plus compacte */
.projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

body.theme-light .hero-kicker {
    color: var(--gold);
}

body.theme-light .hero::after {
    background: transparent;
}

body.theme-light footer {
    background: #fff;
    color: var(--navy);
    border-top: 1px solid rgba(13, 27, 42, 0.12);
}

body.theme-light .gallery-item {
    background: rgba(13, 27, 42, 0.05);
    border-color: rgba(201, 162, 39, 0.25);
}

body.theme-light .gallery-item figcaption {
    color: var(--navy);
}

body.theme-light .form-group label,
body.theme-light .form-group input,
body.theme-light .form-group textarea,
body.theme-light .form-group select {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.9);
}

body.theme-light .form-group input::placeholder,
body.theme-light .form-group textarea::placeholder {
    color: var(--neutral-dark);
}

body.theme-light .video-photogrammetrie-overlay {
    background: rgba(255, 255, 255, 0.85);
}

body.theme-light section ul.list-check li {
    color: var(--navy);
}

body.theme-light .conformite-section__text p,
body.theme-light .section-split__text p {
    color: var(--navy);
}

body.theme-light .section-split__text h2 {
    color: var(--navy);
}
