/* ============================================================
   CONSULTATION PAGE - ARGAMAN SURGERIES
   ============================================================ */

/* --- 1. BASE & PALETTE --- */
:root {
    --color-gold: #C0A062;
    --color-dark: #2F353B;
    --color-cream: #F9F8F4;
    --color-slate: #545F66;
    --color-grey: #666666;
    --color-border: #999999;
    --color-grey-dark: #1E242A;

    --site-padding-left: max(40px, 5vw);
    --site-max-width: 1400px;
    --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;
}

/* ============================================================
   2. HEADER & NAVIGATION (copied from contact.css)
   ============================================================ */
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;
}

.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); }

.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; }

.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); }


/* ============================================================
   3. HERO SECTION — design unifié avec la page Testimonials
   ============================================================ */
.consultation-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/free-consultation-surgery.png") center / cover no-repeat;
    background-color: #1E242A;
}
.consultation-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.consultation-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;
}

/* H1 doré — porte le mot-clé SEO principal en restant visuellement secondaire */
.consultation-hero .hero-eyebrow-gold,
h1.hero-eyebrow-gold {
    display: inline-block;
    color: #d8c28c;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 0 16px;
    padding: 0;
    line-height: 1.4;
    text-shadow: none;
    text-transform: none;
}
/* H2 "Free Consultation" — gros titre blanc visuellement dominant */
.consultation-hero .hero-main-white {
    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);
}
.consultation-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 */
.consultation-breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 18px 24px 0;
    width: 100%;
}
.consultation-breadcrumb,
.consultation-breadcrumb *,
.consultation-breadcrumb *::before,
.consultation-breadcrumb *::after {
    transition: none !important;
    animation: none !important;
}
.consultation-breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 max(40px, 5vw);
}
.consultation-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;
}
.consultation-breadcrumb ol li {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
}
.consultation-breadcrumb ol li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}
.consultation-breadcrumb ol li + li::before { content: none !important; }
.consultation-breadcrumb a,
.consultation-breadcrumb a:hover,
.consultation-breadcrumb a:focus,
.consultation-breadcrumb a:active,
.consultation-breadcrumb a:visited {
    color: #fff !important;
    text-decoration: none !important;
    background: transparent !important;
    font-size: 14px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.consultation-breadcrumb li a::before,
.consultation-breadcrumb li a:hover::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}


/* ============================================================
   4. FORM CONTAINER
   ============================================================ */
.consultation-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}


/* ============================================================
   5. FIELDSETS & LEGENDS
   ============================================================ */
fieldset {
    border: none;
    padding: 0;
    margin: 0 0 60px;
}

legend {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-gold);
    width: 100%;
    margin-bottom: 35px;
}


/* ============================================================
   6. FORM FIELDS
   ============================================================ */
.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--color-slate);
    margin-bottom: 8px;
}

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

.form-field 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' fill='none' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

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

.form-field textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 15px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
    min-height: 100px;
    resize: vertical;
    transition: border-color 0.3s;
}

.field-helper {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    font-style: italic;
    display: block;
}

/* Two-column grid */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 0;
}

/* File input */
.file-input {
    width: 100%;
    padding: 14px;
    border: 1px dashed #ddd;
    background: var(--color-cream);
    font-size: 14px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: var(--color-grey);
    cursor: pointer;
    margin-top: 8px;
    transition: border-color 0.3s;
}

.file-input:hover {
    border-color: var(--color-gold);
}


/* ============================================================
   7. CHECKBOX GRID (procedures)
   ============================================================ */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 5px;
}

.checkbox-grid .checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #eee;
    transition: border-color 0.3s;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-grid .checkbox-item:hover {
    border-color: var(--color-gold);
}

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

.checkbox-grid .checkbox-item label {
    font-size: 13px;
    color: var(--color-dark);
    cursor: pointer;
    margin: 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}


/* ============================================================
   8. RADIO GROUPS (inline)
   ============================================================ */
.radio-group-inline {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.radio-item-inline {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

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


/* ============================================================
   9. YES/NO GROUPS & CONDITIONAL FIELDS
   ============================================================ */
.conditional-field {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.conditional-field:last-child {
    border-bottom: none;
}

.yes-no-group {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 10px;
}

.yes-no-group > label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    flex: 1;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.yes-no-options {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.conditional-content {
    margin-top: 12px;
    padding-left: 0;
    padding-top: 10px;
}

.conditional-content label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--color-slate);
    margin-bottom: 8px;
}

.conditional-content input[type="text"],
.conditional-content input[type="number"],
.conditional-content select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 15px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
    transition: border-color 0.3s;
}

.conditional-content select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    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' fill='none' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.conditional-content textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 15px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
    min-height: 80px;
    resize: vertical;
    transition: border-color 0.3s;
}

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


/* ============================================================
   10. SECTION NOTE (gynecological)
   ============================================================ */
.section-note {
    background: var(--color-cream);
    padding: 15px 20px;
    border-left: 3px solid var(--color-gold);
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--color-grey);
    font-style: italic;
}


/* ============================================================
   11. SUBMIT SECTION
   ============================================================ */
.submit-section {
    text-align: center;
    padding-top: 20px;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-checkbox label {
    font-size: 14px;
    color: var(--color-grey);
    line-height: 1.5;
}

.privacy-checkbox a {
    color: var(--color-gold);
    text-decoration: underline;
}

.submit-btn {
    background: var(--color-gold);
    color: #fff;
    border: 1px solid var(--color-gold);
    padding: 16px 60px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 40px auto 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.submit-btn:hover {
    background: transparent;
    color: var(--color-gold);
}

/* Other checkbox with inline text input */
.checkbox-other .other-input {
    margin-top: 8px;
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: var(--color-dark);
    outline: none;
    transition: border-color 0.3s;
}

.checkbox-other .other-input:focus {
    border-color: var(--color-gold);
}

/* ============================================================
   12. 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; }

.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); }


/* ============================================================
   13. SIDE PANEL
   ============================================================ */
.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); }

.full-width { grid-column: 1 / -1; }


/* ============================================================
   14. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    li a::before { display: none !important; }
    li a:hover { padding-left: 0 !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); }

    /* Footer responsive */
    .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: 20px; margin-bottom: 10px; 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); }
}

@media (max-width: 768px) {
    /* Hero */
    .consultation-hero {
        min-height: auto;
        padding: 80px 24px 50px;
    }

    .consultation-hero .hero-main-white {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .consultation-hero .kicker { font-size: 11px; letter-spacing: 3px; margin-bottom: 14px; }
    .consultation-hero .hero-eyebrow-gold,
    h1.hero-eyebrow-gold { font-size: 14px; margin-bottom: 12px; }

    .consultation-hero p {
        font-size: 15px;
    }

    .consultation-breadcrumb { padding: 14px 16px 0; }
    .consultation-breadcrumb-inner { padding: 0; }
    .consultation-breadcrumb ol { font-size: 13px; }

    /* Form container */
    .consultation-container {
        padding: 50px 20px;
    }

    /* Form rows */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Legend */
    legend {
        font-size: 18px;
        letter-spacing: 1px;
    }

    /* Checkbox grid */
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Yes/No group stacking */
    .yes-no-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Submit button mobile */
    .submit-btn {
        width: auto;
        padding: 12px 35px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    /* Side panel */
    .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%; }
}

@media (max-width: 480px) {
    .consultation-hero .hero-main-white {
        font-size: 28px;
    }

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

    .radio-group-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-grid-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        padding-left: 10px;
        padding-right: 10px;
    }
    .f-col-identity {
        grid-column: span 3 !important;
        text-align: center !important;
        align-items: center !important;
        border-bottom: 1px solid #ddd;
        padding-bottom: 30px;
        margin-bottom: 10px;
        width: 100%;
    }
    .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 h4, .f-group-title { font-size: 11px; }
    .f-link-list li a { font-size: 11px; }
}

/* ============================================================
   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;
}
