/* --- 1. CONFIGURATION DE BASE ET PALETTE --- */
:root {
    --color-gold: #C0A062;      
    --color-dark: #2F353B;      
    --color-cream: #F9F8F4;     
    --color-slate: #545F66;     
    --color-grey: #666666;      
    --color-border: #999999;    
    --color-blue-btn: #0056b3; 
    --color-grey-dark: #1E242A;
    --color-goldor: #a88852;
    --color-clair:#f9f9f8;

    --site-padding-left: max(40px, 5vw);      
    --site-max-width: 1400px;                 

    /* CALCUL DE L'ALIGNEMENT DYNAMIQUE */
    --site-gutter: max(40px, calc((100% - 1200px) / 2));
}

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

body { 
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; 
    color: var(--color-dark); 
    background-color: #fff; 
    overflow-x: hidden; 
}

/* ---------- CENTRAGE DESKTOP ---------- */
@media (min-width: 769px) {
    .btn-welcome-centered-line {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: max-content;
    }
}

/* ============================================================
   2. HEADER & NAVIGATION
   ============================================================ */
header {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 0 40px;
    height: 110px; 
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: relative; 
    z-index: 1000;
}

/* LOGO ARGAMAN */
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute; 
    left: var(--site-gutter); 
    z-index: 1001;
    transition: opacity 0.3s;
}

.brand-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 2px;
    color: var(--color-slate);
    transition: transform 0.3s ease, color 0.3s ease;
}

.brand-icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.brand-name {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; 
    font-weight: 300; 
    font-size: 30px;
    letter-spacing: 3px;
    color: var(--color-slate);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brand-sub {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; 
    font-weight: 400;
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--color-slate);
    text-transform: uppercase;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.brand-logo:hover .brand-icon,
.brand-logo:hover .brand-name,
.brand-logo:hover .brand-sub {
    color: var(--color-gold);
}
.brand-logo:hover .brand-icon { transform: scale(1.05); }

/* NAV MENU */
.navbar {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 15px; 
    margin-left: 100px; 
}

.nav-wrapper-mega, .nav-wrapper-simple {
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-wrapper-mega { position: static; }
.nav-wrapper-simple { position: relative; }

.nav-link {
    text-decoration: none;
    color: var(--color-dark); 
    font-size: 14px;
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 1.3px;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover { color: var(--color-gold); }
.nav-link i { font-size: 10px; color: var(--color-gold); transition: transform 0.3s; }

/* BOUTON BOOK NOW */
.btn-book {
    text-decoration: none;
    color: var(--color-grey); 
    background-color: transparent;
    border: 1px solid var(--color-border);
    padding: 12px 25px; 
    position: absolute;
    right: var(--site-gutter); 
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; 
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-book:hover { 
    border-color: var(--color-gold);
    background-color: var(--color-gold); 
    color: #fff; 
}

@media (min-width: 1025px) {
    .nav-wrapper-mega:hover .nav-link, .nav-wrapper-simple:hover .nav-link { color: var(--color-gold); }
    .nav-wrapper-mega:hover .nav-link i, .nav-wrapper-simple:hover .nav-link i { transform: rotate(180deg); }
    .nav-wrapper-mega:hover .dropdown-menu, .nav-wrapper-simple:hover .dropdown-menu {
        visibility: visible; opacity: 1; transform: translateY(0);
    }
}

.dropdown-menu {
    background-color: var(--color-dark); 
    position: absolute; top: 100%; visibility: hidden; opacity: 0;
    transform: translateY(10px); transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2); z-index: 999;
}
.dropdown-menu.mega-style { left: 0; width: 100%; padding: 50px 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.dropdown-menu.simple-style { left: 50%; transform: translateX(-50%) translateY(10px); min-width: 250px; padding: 30px; display: flex; flex-direction: column; }

@media (min-width: 1025px) {
    .nav-wrapper-simple:hover .dropdown-menu.simple-style { transform: translateX(-50%) translateY(0); }
}

.column-title { color: #fff; font-size: 18px; margin-bottom: 20px; font-weight: 600; }
ul { list-style: none; }
li { margin-bottom: 12px; }

li a { color: #b0b2b5; text-decoration: none; font-size: 14px; position: relative; display: block; transition: all 0.3s ease; }
li a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 0px; height: 1px; background-color: var(--color-gold); transition: width 0.3s ease; }
li a:hover { color: var(--color-gold); padding-left: 25px; }
li a:hover::before { width: 15px; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 2001; }
.bar { width: 30px; height: 2px; background-color: var(--color-dark); transition: all 0.3s; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

body {
    margin: 0;
}


/* ============================================================
   HERO — design unifié avec la page Testimonials
   ============================================================ */
.contact-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 120px 40px 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(15,17,20,0.55) 0%, rgba(15,17,20,0.65) 100%),
        url("Images/consultation.jpg") center / cover no-repeat;
    background-color: #1E242A;
}
.contact-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.contact-hero .kicker {
    display: inline-block;
    color: #d8c28c;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.contact-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.05;
    letter-spacing: -1.4px;
    color: #fff;
    margin: 0 0 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.contact-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    font-weight: 300;
    max-width: 720px;
    margin: 0 auto;
}

/* Breadcrumb — collé en haut du hero */
.contact-breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 18px 24px 0;
    width: 100%;
}
.contact-breadcrumb,
.contact-breadcrumb *,
.contact-breadcrumb *::before,
.contact-breadcrumb *::after {
    transition: none !important;
    animation: none !important;
}
.contact-breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 max(40px, 5vw);
}
.contact-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.2px;
}
.contact-breadcrumb li {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
}
.contact-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}
.contact-breadcrumb a,
.contact-breadcrumb a:hover,
.contact-breadcrumb a:focus,
.contact-breadcrumb a:active,
.contact-breadcrumb a:visited {
    color: #fff !important;
    text-decoration: none !important;
    background: transparent !important;
    font-size: 14px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.contact-breadcrumb li a::before,
.contact-breadcrumb li a:hover::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

.main-contact-title {
    font-size: 60px;
    font-weight: 600;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-70px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 90px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    color: #fff;
    letter-spacing: 3px;
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
}

.hero-separator {
    width: 600px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 20px auto;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.hero-subtitle {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 600px;
    line-height: 1.4;
    margin: 0 auto;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.6s forwards;
}


/* ============================================================
   3. PAGE CONTACT — STYLE CLARIS
   ============================================================ */

/* Hero Title */
.hero-contact-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 58px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
}

/* --- CLINIC INFO BAND --- */
.clinic-band {
    background: #fff;
    padding: 45px 40px;
    border-bottom: 1px solid #e8e6e1;
}

.clinic-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    justify-items: center;
}

.clinic-band-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.clinic-band-item > i {
    color: var(--color-gold);
    font-size: 18px;
    margin-top: 0;
}

.clinic-band-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.clinic-band-item span,
.clinic-band-item a {
    font-size: 13px;
    color: var(--color-grey);
    text-decoration: none;
    line-height: 1.5;
}

.clinic-band-item a:hover {
    color: var(--color-gold);
}

/* --- FORM + LEFT INFO SECTION --- */
.contact-form-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px 100px;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 38% 55%;
    gap: 7%;
}

/* Left Column */
.contact-left-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.contact-left-text {
    font-size: 15px;
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-left-cta {
    margin-bottom: 45px;
}

.btn-pre-consultation {
    display: block;
    text-align: center;
    padding: 16px 30px;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-pre-consultation:hover {
    background: var(--color-gold);
    color: #fff;
}

/* Features list */
.contact-left-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.feature-item:first-child {
    border-top: 1px solid #eee;
}

.feature-item i {
    color: var(--color-gold);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.feature-item span {
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 400;
}

/* Social Icons */
.contact-socials {
    display: flex;
    gap: 15px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate);
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.contact-socials a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Right Column — Form */
.contact-right {
    background: transparent;
    padding: 0;
}

/* --- FORM TITLE --- */
.form-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 38px;
    color: var(--color-dark);
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

/* --- SEO CONTENT SECTION --- */
.seo-content-section {
    background: var(--color-cream);
    padding: 80px 40px;
}

.seo-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content-inner h2 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.seo-content-inner p {
    font-size: 15px;
    color: var(--color-grey);
    line-height: 1.8;
    margin-bottom: 18px;
}

.seo-content-inner p:last-child {
    margin-bottom: 0;
}

.seo-content-inner strong {
    color: var(--color-dark);
    font-weight: 600;
}

/* --- MAP SECTION --- */
.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* --- TRUST BANNER --- */
.trust-banner {
    background: var(--color-cream);
    padding: 70px 40px;
    text-align: center;
}

.trust-quote {
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: var(--color-dark);
    max-width: 700px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.trust-author {
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.form-group { margin-bottom: 25px; }

.form-group label {
    display: block;
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Style des Inputs/Selects/Textarea */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    background: #fff;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

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

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

/* Ligne Nom Complet (Full Name) */
.name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.name-field { position: relative; }

.name-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #333;
    background: #fff;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.name-field label {
    display: block;
    font-size: 11px;
    color: var(--color-dark);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* Ligne Email et Téléphone */
.email-phone-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Section Intérêts (Checkboxes) */
.interests-section { margin-bottom: 25px; margin-top: 30px; }

.interests-title {
    font-size: 16px;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.interests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--color-gold); 
}

.checkbox-item label {
    font-size: 14px;
    color: var(--color-dark);
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}

/* Section Clinique (Radios) */
.clinic-section { margin-bottom: 25px; }

.clinic-title {
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.radio-group { display: flex; gap: 255px; }
.radio-item { display: flex; align-items: center; }

.radio-item input[type="radio"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--color-gold);
}

.radio-item label {
    font-size: 14px;
    color: var(--color-dark);
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}

/* Bouton submit */
.submit-btn {
    background-color: transparent;
    border: 1px solid #ccc;
    color: var(--color-dark);
    padding: 14px 35px;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 60px; /* AJOUTEZ CETTE LIGNE */
}

.submit-btn:hover {
    border-color: var(--color-gold);
    background-color: var(--color-gold); 
    color: #fff; 
}


/* ============================================================
   4. FOOTER
   ============================================================ */
footer { padding: 0; background-color: transparent; border-top: none; width: 100%; }
.footer-cta-bar { background-color: var(--color-grey-dark); padding: 50px 10%; display: flex; align-items: center; justify-content: space-between; color: #fff; flex-wrap: wrap; gap: 30px; }
.cta-content h2 { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 1.3; max-width: 1200px; margin: 0; text-align: left; }
.btn-footer-cta { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--color-gold); padding: 12px 30px; color: #fff; background: var(--color-gold); text-decoration: none; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; transition: all 0.3s ease; }
.btn-footer-cta:hover { background: #fff; color: var(--color-grey); border-color: #fff; }
.footer-info-section { background-color: #fff; padding: 80px 40px 30px 40px; color: var(--color-dark); }
.footer-grid-wrapper { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 60px; border-bottom: 1px solid #dcdcdc; padding-bottom: 60px; margin-bottom: 30px; align-items: flex-start; }
.f-col-identity { display: flex; flex-direction: column; align-items: flex-start; gap: 25px; }

/* MODIFICATION CSS LOGO FOOTER */
.f-brand-block { 
    display: flex; 
    align-items: center; 
    gap: 8px;
    text-decoration: none; 
    color: var(--color-slate); 
    margin-bottom: 10px; 
}
.f-brand-icon-ft { width: 40px; height: 40px; color: var(--color-slate); }
.f-brand-text-ft { 
    display: flex; 
    flex-direction: column; 
    line-height: 1; 
    align-items: flex-start;
}
.f-name-ft { 
    font-size: 24px;
    letter-spacing: 1px; 
    font-weight: 400; 
}
.f-sub-ft { 
    font-size: 9px; 
    letter-spacing: 2.85px;
    text-transform: uppercase; 
    margin-top: 2px;
    margin-left: 1px;
}

.f-address-box p { font-size: 13px; color: var(--color-grey); line-height: 1.6; margin-bottom: 5px; }
.f-address-box .highlight { color: var(--color-dark); font-weight: 600; margin-top: 10px; display: block; }
.f-socials-row { display: flex; gap: 15px; margin-top: 10px; }
.f-socials-row a { color: var(--color-slate); font-size: 18px; transition: color 0.3s; }
.f-socials-row a:hover { color: var(--color-gold); }
.f-col-links h4 { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; color: var(--color-slate); font-weight: 700; }
.f-link-list { list-style: none; padding: 0; margin: 0; }
.f-link-list li { margin-bottom: 10px; }
.f-link-list li a { font-size: 13px; color: var(--color-grey); text-decoration: none; transition: color 0.3s; position: relative; }
.f-link-list li a::before { display: none; }
.f-link-list li a:hover { color: var(--color-gold); padding-left: 0; }
.f-group-title { font-size: 13px; color: var(--color-slate); font-weight: 700; margin-top: 25px; margin-bottom: 15px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.mt-0 { margin-top: 0 !important; }
.footer-legal-row { text-align: center; font-size: 11px; color: #999; }
.footer-legal-row a { color: #999; text-decoration: none; margin-left: 10px; transition: color 0.3s; }
.footer-legal-row a:hover { color: var(--color-gold); }

/* ============================================================
   5. RESPONSIVE TABLETTE & MOBILE
   ============================================================ */
@media (max-width: 1024px) {
    li a::before { display: none !important; }
    li a:hover { padding-left: 0 !important; }
    body, p, h1, h2, h3, h4, h5, h6, .hero-content, .welcome-left, .welcome-right, .stat-item, .nl-content, .cta-content h2, .footer-col { text-align: center !important; }
    .welcome-right, .stat-item, .brand-logo, .nav-wrapper-mega, .nav-wrapper-simple, .footer-cta-bar, .f-col-identity, .awards-grid { align-items: center !important; }

    header { justify-content: space-between; padding: 0 20px; height: 90px; position: fixed; top: 0; left: 0; width: 100%; border-bottom: 1px solid #e5e5e5; z-index: 2000; }
    body { padding-top: 90px; }
    .brand-logo { position: static; left: auto; }
    .brand-icon { width: 35px; height: 35px; }
    .brand-name { font-size: 18px; letter-spacing: 2px; }
    .brand-sub { font-size: 7px; letter-spacing: 3px; }
    .hamburger { display: flex; }
    .navbar { position: fixed; top: 90px; left: 0; width: 100%; height: calc(100vh - 90px); background-color: #fff; flex-direction: column; align-items: flex-start; padding: 40px; transform: translateX(-100%); transition: transform 0.4s ease; overflow-y: auto; gap: 0; z-index: 1999; margin-left: 0; }
    .navbar.active { transform: translateX(0); }
    .nav-wrapper-mega, .nav-wrapper-simple { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid #f0f0f0; }
    .nav-link { width: 100%; padding: 20px 0; justify-content: space-between; font-size: 16px; }
    .btn-book { position: relative; right: auto; top: auto; transform: none; margin-top: 20px; width: 100%; text-align: center; padding: 15px; }
    .dropdown-menu, .dropdown-menu.mega-style, .dropdown-menu.simple-style { position: static; width: 100%; box-shadow: none; padding: 0; visibility: visible; opacity: 1; transform: none; display: none; background-color: #ffffff; padding-left: 15px; }
    .column-title { color: var(--color-dark); margin-top: 10px; margin-bottom: 10px; } li a { color: #444; }
    .dropdown-menu.mega-style { grid-template-columns: 1fr; gap: 20px; padding: 20px; } .dropdown-menu.simple-style { padding: 20px; }
    .nav-wrapper-mega.open .dropdown-menu { display: block; } .nav-wrapper-mega.open .dropdown-menu.mega-style { display: grid; } .nav-wrapper-simple.open .dropdown-menu { display: block; }
    .nav-wrapper-mega.open .nav-link i, .nav-wrapper-simple.open .nav-link i { transform: rotate(180deg); }

    /* --- B. FOOTER (Centré) --- */
     .footer-cta-bar { flex-direction: column; text-align: center; justify-content: center; padding: 50px 20px; }
    .footer-grid-wrapper { grid-template-columns: repeat(3, 1fr) !important; gap: 20px; text-align: left !important; padding-bottom: 40px; }
    .f-col-identity { grid-column: span 3; align-items: center !important; border-bottom: 1px solid #ddd; padding-bottom: 30px; margin-bottom: 10px; width: 100%; text-align: center !important; }
    .f-col-identity .f-address-box { width: 100%; text-align: center; }
    .f-col-identity .f-address-box p { font-size: 15px; line-height: 1.7; }
    .f-col-identity .f-socials-row { justify-content: center; width: 100%; }
    .f-col-links { align-items: flex-start !important; text-align: left !important; }
    .f-col-links h4, .f-group-title { text-align: left !important; font-size: 11px; }
    .f-link-list li a { justify-content: flex-start !important; text-align: left; padding-left: 0 !important; font-size: 11px; }
    .f-link-list li a:hover { padding-left: 0 !important; color: var(--color-gold); }

    /* --- C. PAGE CONTACT --- */
    .clinic-band-inner { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .contact-form-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .contact-right { padding: 40px 30px; }

    .main-contact-title {
        font-size: 38px;
        margin-bottom: 15px;
    }

    /* --- NOUVELLE RÈGLE POUR QUESTIONS (Même style que Contact Info) --- */
    .questions-heading {
        font-size: 38px !important; /* Même taille que .main-contact-title */
        font-weight: 400 !important;
        text-align: center !important;
        margin-bottom: 20px;
        font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    }

    .main-contact-subtitle {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .btn-pre-consultation {
        padding: 18px;
        font-size: 12px;
        max-width: 70%; /* Prend toute la largeur sur mobile */
    }
    /* Conteneur principal : Flex vertical, centré */
    .contact-container {
        display: flex;
        flex-direction: column; 
        gap: 50px;
        padding: 40px 25px;
        align-items: center; 
    }

    /* Ordre d'affichage : Infos d'abord, Form ensuite */
    .contact-info { order: 1; width: 100%; }
    .contact-form-section { order: 2; width: 100%; }

    /* Force le centrage des textes et titres */
    .contact-info, 
    .contact-form-section 
    .contact-title
    .form-title,
    .info-section,
    .form-group label,
    .interests-title,
    .clinic-title,
    .name-field label {
        text-align: center !important; 
        align-items: center !important;
    }

    /* Titres */
    .contact-title { font-size: 28px; margin-bottom: 35px; }
    .form-title {
        font-size: 28px;
        font-weight: 400;
        line-height: 1.2;
        color: var(--color-dark);
        margin-bottom: 30px;
        margin-top: 10px;
    }
    .info-section { font-size: 15px; margin-bottom: 25px; border-bottom: none; }


    /* --- DESIGN 1 : CHAMPS DE SAISIE (Nom, Email, Tel) --- */
    .name-row, 
    .email-phone-row {
        display: flex;       
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    /* Style Input "Propre" : Fond blanc, bordure nette */
    .form-group input,
    .name-field input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #d1d1d1;
        padding: 15px;
        height: 55px;
        border-radius: 0;
        box-shadow: none;
    }
    .form-group textarea { height: auto; min-height: 120px; }


    /* --- DESIGN 2 : INTÉRÊTS (Checkboxes) --- */
    /* Grille 2 colonnes, style "Tuile" */
    .interests-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 colonnes */
        column-gap: 15px;
        row-gap: 10px;
        width: 100%;
        margin-top: 0px;
    }

    .checkbox-item {
        padding: 10px;
        display: flex;
        align-items: center;        /* Centre verticalement */
        justify-content: flex-start; /* Aligne gauche (case + texte) */
        border-radius: 4px;
        width: 100%;
        text-align: left;
    }

    .checkbox-item label {
        font-size: 13px;
        line-height: 1.2;
        margin-left: 8px;
        margin-bottom: 0;
        text-align: left;
        color: var(--color-slate);
        word-wrap: break-word;
    }
    
    .checkbox-item input[type="checkbox"] {
        margin-right: 0;
        flex-shrink: 0;
        width: 18px; 
        height: 18px;
    }


    /* --- DESIGN 3 : CONSULTATION (Radio) --- */
    .radio-group {
        display: flex;
        flex-direction: row; /* Force la ligne */
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .radio-item {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Bouton Submit */
    .submit-btn {
        width: 100%;
        padding: 16px;
        margin-top: 20px;
    }
}

/* ============================================================
   WIDGET LATERAL (SIDE PANEL SLIDER)
   ============================================================ */
.side-trigger {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-dark);
    color: var(--color-gold);
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    cursor: pointer;
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
}

.side-panel {
    position: fixed;
    top: 0;
    right: -600px;
    width: 550px;
    height: 100vh;
    background-color: #242c2d;
    z-index: 2001;
    padding: 60px 50px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    color: #fff;
}

.side-panel.open { right: 0; }
.side-trigger.hidden { right: -60px; }

.close-btn-side {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 32px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.close-btn-side:hover { opacity: 1; }

.side-panel .side-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #fff;
}

.side-panel .side-subtitle {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.side-social-icons-row {
    display: flex;
    gap: 35px;
    margin-bottom: 50px;
    color: var(--color-gold);
    font-size: 24px;
}
.side-social-icons-row i { cursor: pointer; transition: transform 0.3s; }
.side-social-icons-row i:hover { transform: scale(1.15); }

.side-panel .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 40px;
}

.side-panel .form-group { display: flex; flex-direction: column; }

.side-panel label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
}

.side-panel .side-input,
.side-panel .side-textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #777;
    padding: 10px 0;
    color: #fff;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 15px;
    outline: none;
    width: 100%;
}

.side-panel .side-textarea { min-height: 40px; resize: vertical; }

.side-panel .required-note {
    font-size: 14px;
    color: #aaa;
    margin: 20px 0 40px 0;
    font-style: italic;
}

.side-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.privacy-checkbox-side { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.privacy-checkbox-side input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--color-gold); }
.privacy-checkbox-side a { color: #fff; text-decoration: underline; }

.side-btn-send {
    background: transparent;
    border: 1px solid #555;
    color: #999;
    padding: 15px 45px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.side-btn-send:hover { border-color: var(--color-gold); color: var(--color-gold); }

@media (max-width: 768px) {
    .side-panel { width: 100% !important; right: -100%; padding: 40px 20px; z-index: 2001; top: 0; }
    .side-panel .form-grid { grid-template-columns: 1fr; }
    .side-footer { flex-direction: column; gap: 30px; align-items: flex-start; }
    .side-btn-send { width: 100%; }

    .clinic-band-inner { grid-template-columns: 1fr; gap: 20px; }
    .clinic-band { padding: 30px 20px; }
    .contact-form-section { padding: 50px 20px 60px; }
    .contact-left-title { font-size: 30px; }
    .contact-right { padding: 30px 20px; }
    .trust-quote { font-size: 18px; }

    /* Hero responsive */
    .contact-hero { min-height: auto; padding: 80px 24px 50px; }
    .contact-hero h1 { font-size: 34px; letter-spacing: -0.8px; }
    .contact-hero .kicker { font-size: 11px; letter-spacing: 3px; margin-bottom: 14px; }
    .contact-hero p { font-size: 15px; }
    .contact-breadcrumb { padding: 14px 16px 0; }
    .contact-breadcrumb-inner { padding: 0; }
    .contact-breadcrumb ol { font-size: 13px; }
}

/* ============================================================
   HONEYPOT — champ invisible pour piéger les bots
   ============================================================ */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
