/**
 * Lodañ - CSS Principal
 * Bureaux Réseaux Lodañ
 */

/* ===================================
   VARIABLES
=================================== */
:root {
    /* Couleurs - Mise à jour selon Figma */
    --color-primary: #000000;
    --color-primary-hover: #333333;
    --color-text: #000;
    --color-text-light: #9CA3AF;
    --color-heading: #000000;
    --color-bg: #F7F7F7;
    --color-white: #FFFFFF;
    --color-border: #E5E7EB;
    --color-info-bg: #DBEAFE;
    --color-info-text: #1E40AF;
    --color-success: #059669;
    --color-error: #DC2626;

    /* Fonts - Cormorant Garamond + Work Sans */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Work Sans', sans-serif;

    /* Spacing */
    --container-width: 1140px;
    --section-padding: 80px;
    --header-height: 90px;

    /* Radius */
    --radius: 0px;
    --radius-lg: 0px;

    /* Shadow */
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.18);

    /* Transition - Uniformisée */
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===================================
   TYPOGRAPHIE - Selon Figma
=================================== */
h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-heading);
}

h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 34px;
    line-height: 1.25;
    color: var(--color-heading);
}

h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    color: var(--color-heading);
}

h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-heading);
}

/* Body: Work Sans Regular 16px / 150% */
/* Caption: Work Sans Regular 14px / 155% */
.caption {
    font-size: 14px;
    line-height: 1.55;
}

/* ===================================
   ACCESSIBILITÉ
=================================== */
:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 10px;
}

.sr-only,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.required {
    color: var(--color-white);
    font-weight: 600;
}

/* ===================================
   LAYOUT
=================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

.site-main {
    padding-top: var(--header-height);
}

/* ===================================
   HEADER
=================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header-logo {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-heading);
}

.header-logo img {
    height: 65px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-heading);
    line-height: 1.5;
    transition: opacity var(--transition);
    position: relative;
    padding-bottom: 4px;
}

/* Soulignement animé au hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-heading);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Lien actif: semibold + souligné permanent */
.nav-link.active {
    font-weight: 600;
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.inactive {
    color: var(--color-text-light);
    cursor: not-allowed;
}

.nav-link.inactive::after {
    display: none;
}

/* Bouton CTA Header - fond plein noir avec numéro */
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    transition: all var(--transition);
}

.header-cta:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.header-cta svg {
    width: 20px;
    height: 20px;
}

/* Menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-heading);
    transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    gap: 24px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-cta {
    margin-top: 20px;
}

/* ===================================
   FOOTER - Fond noir pur selon Figma
=================================== */
.site-footer {
    background: #000000;
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #ffffff;
}

.footer-sep {
    color: var(--color-white);
}

.footer-link {
    color: var(--color-white);
    text-decoration: underline;
    transition: opacity var(--transition);
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--color-white);
}

/* ===================================
   BUTTONS
=================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.btn-icon {
    display: flex;
}

/* Bouton outline */
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

/* ===================================
   PAGE ACCUEIL - SECTION BUREAUX
   Fond noir selon Figma
=================================== */
.section-bureaux {
    background: #000000;
    padding: 80px 0;
}

.section-bureaux .section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    color: #ffffff;
}

.section-bureaux .section-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.bureaux-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ===================================
   CARTES BUREAUX - Selon Figma
=================================== */
.bureau-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
}

.bureau-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.card-image {
    position: relative;
    height: 200px;
    background: #94A3B8;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Label sur image - masqué selon Figma */
.card-label {
    display: none;
}

.card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === CARTES BUREAUX - Corrections === */

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center; /* AJOUT: tout centré */
}

.card-title {
    font-family: var(--font-heading);
    font-size: 30px; /* MODIF: 30px au lieu de 24px */
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.25; /* AJOUT */
}

.card-description {
    color: var(--color-text);
    font-size: 16px; /* MODIF: 16px au lieu de 15px */
    line-height: 1.5;
    text-align: center; /* AJOUT */
}

.card-price {
    padding: 12px 0 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.card-price .price-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
}

.card-price .price-value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #000000;
}

.card-price .price-custom {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
}

/* Bouton carte */
.card-btn {
    display: block;
    width: 100%;
    padding: 10px 24px;
    text-align: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.card-btn:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.card-btn.disabled {
    background: #D1D5DB;
    color: #6B7280;
    cursor: not-allowed;
}

.card-btn.disabled:hover {
    background: #D1D5DB;
    transform: none;
    box-shadow: none;
}

/* ===================================
   PAGE ACCUEIL - AVANTAGES
   Icônes outline sans fond selon Figma
=================================== */
.section-avantages {
    background: var(--color-white);
}

.section-avantages .section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    list-style-type: none;
}

/* === AVANTAGES - Corrections === */

.avantage-item {
    text-align: center;
}

/* Icône: 36x36, pas de fond, juste margin-bottom */
.avantage-icon {
    width: 36px;  /* MODIF: 36px au lieu de 48px */
    height: 36px; /* MODIF: 36px au lieu de 48px */
    margin: 0 auto 12px; /* MODIF: 12px en bas au lieu de 20px */
    color: var(--color-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    /* SUPPRIMER: background, border-radius */
}

.avantage-icon svg {
    width: 36px;  /* MODIF: 36px au lieu de 48px */
    height: 36px; /* MODIF: 36px au lieu de 48px */
    stroke-width: 1.5;
}

/* Titre: 28px, line-height 1.3 */
.avantage-title {
    font-family: var(--font-heading);
    font-size: 28px; /* MODIF: 28px au lieu de 20px */
    font-weight: 700;
    line-height: 1.3; /* AJOUT */
    margin-bottom: 4px; /* MODIF: 4px au lieu de 8px */
    color: var(--color-heading);
}

/* Description: 16px, line-height 1.5 */
.avantage-description {
    font-size: 16px; /* MODIF: 16px au lieu de 15px */
    color: var(--color-text);
    line-height: 1.5;
}

/* ===================================
   PAGE ACCUEIL - CTA
   Bouton outline selon Figma
=================================== */
/* === SECTION CTA - Corrections === */

.section-cta {
    background: var(--color-bg); /* #F7F7F7 - OK */
}

.cta-wrapper {
    max-width: 672px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px; /* AJOUT: padding latéral */
}

/* Titre: 34px, line-height 1.25 */
.cta-title {
    font-family: var(--font-heading);
    font-size: 34px; /* MODIF: 34px au lieu de 36px */
    font-weight: 700;
    line-height: 1.25; /* AJOUT */
    margin-bottom: 8px; /* MODIF: 8px au lieu de 16px */
    color: var(--color-heading);
}

/* Description: 16px, line-height 1.5 */
.cta-description {
    font-size: 16px;
    color: var(--color-heading); /* MODIF: noir au lieu de gris */
    line-height: 1.5;
    margin-bottom: 24px;
}

/* Bouton CTA - PLEIN noir avec icône + numéro */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 600;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 0;
    transition: all var(--transition);
}

.btn-cta:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.btn-cta svg {
    width: 20px;
    height: 20px;
}
/* ===================================
   PAGE BUREAU
=================================== */
.bureau-page {
    background: var(--color-bg);
}

.bureau-header {
    padding: 0 0 32px;
    text-align: center;
}

.bureau-title {
    font-size: 42px;
    margin-bottom: 8px;
}

.bureau-subtitle {
    font-size: 18px;
    color: var(--color-text);
}

.bureau-main {
    padding-bottom: 64px;
}

.bureau-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.bureau-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Gallery */
.bureau-gallery {
    position: relative;
    width: 100%;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #94A3B8;
    height: 0;
    padding-bottom: 60%;
}

@supports (aspect-ratio: 5 / 3) {
    .gallery-main {
        height: auto;
        padding-bottom: 0;
        aspect-ratio: 5 / 3;
    }
}

.gallery-main {
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
}

.gallery-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background var(--transition), box-shadow var(--transition);
    z-index: 10;
    cursor: pointer;
}

.gallery-nav:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-hover);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 8px 0;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    border: none;
    transition: background var(--transition);
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.gallery-dot.active,
.gallery-dot:hover {
    background: var(--color-primary);
}

.gallery-counter {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.gallery-current {
    color: var(--color-primary);
    font-weight: 600;
}

.gallery-total {
    color: #6B7280;
}

/* Description */
.bureau-description h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.description-content {
    font-size: 16px;
    line-height: 1.7;
}

.description-content p {
    margin-bottom: 16px;
}

/* Equipements */
.bureau-equipements h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.equipements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.equipement-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.equipement-icon {
    color: var(--color-text);
    flex-shrink: 0;
}

.equipement-label {
    font-size: 15px;
}

/* Location */
.bureau-location h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.location-intro {
    margin-bottom: 20px;
    color: var(--color-text);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #E2E8F0;
    height: 300px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-address {
    margin-top: 16px;
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
}

/* Carte Leaflet */
#lodan-map {
    width: 100%;
    min-height: 300px;
    z-index: 1;
}

/* Marqueur personnalisé - cercle moderne */
.lodan-marker {
    background: transparent !important;
    border: none !important;
}

.lodan-marker .marker-pin {
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Popup style Leaflet */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.leaflet-popup-content {
    margin: 12px 16px;
    font-family: var(--font-body);
}

.leaflet-control-attribution {
    display: none !important;
}

/* ===================================
   SIDEBAR
=================================== */
.bureau-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-box {
    background: var(--color-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.sidebar-title {
    font-family: var(--font-heading);
	color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* Offers */
.offers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px;
}

.offer-card + .offer-card {
    border-top: 1px solid var(--color-border);
}

.offer-title {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-heading);
    margin-bottom: 4px;
}

.offer-desc {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 12px;
}

.offer-price {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.price-label {
    font-size: 14px;
    color: var(--color-text);
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-heading);
}

.price-suffix {
    font-size: 14px;
    color: var(--color-text);
}

/* Surfaces list */
.offer-surfaces {
    list-style: none;
    margin: 16px 0 0;
    padding: 12px 0 0;
    border-top: 1px dashed var(--color-border);
}

.offer-surfaces li {
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
}

.offer-surfaces .surface-size {
    font-weight: 500;
    color: var(--color-heading);
    min-width: 50px;
}

.offer-surfaces .surface-dots {
    flex: 1;
    border-bottom: 1px dotted var(--color-border);
    margin: 0 12px;
    height: 1px;
}

.offer-surfaces .surface-price {
    font-weight: 600;
    color: var(--color-heading);
}

.offer-surfaces .price-suffix {
    font-weight: 400;
    font-size: 13px;
    color: var(--color-text);
    margin-left: 4px;
}

/* Info */
.sidebar-info {
    border-left: 4px solid #F3D9A6;
    background: #F7F3EB;
    padding: 16px;
}

.info-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-heading);
    font-family: var(--font-body);
    margin-bottom: 8px;
}

.info-text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

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

.btn-submit {
    width: 100%;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    padding: 14px 24px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

/* Bouton sur fond noir (sidebar bureau) */
.sidebar-box .btn-submit {
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
}

.sidebar-box .btn-submit:hover {
    background: #f5f5f5;
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

/* Bouton sur fond blanc (popup contact) */
.popup-form .btn-submit {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
}

.popup-form .btn-submit:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

/* Formulaire popup - textes sur fond blanc */
.popup-form .form-group label {
    color: var(--color-text);
}

.popup-form .required {
    color: var(--color-primary);
}

.popup-form .checkbox-text {
    color: var(--color-text);
}

.popup-form .checkbox-text a {
    color: var(--color-primary);
}

/* Checkbox RGPD */
.form-group-checkbox {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
}

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

.checkbox-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-white);
}

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

.checkbox-text a:hover {
    opacity: 0.8;
}

.form-message {
    padding: 12px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 14px;
}

.form-message.success {
    background: #D1FAE5;
    color: var(--color-success);
}

.form-message.error {
    background: #FEE2E2;
    color: var(--color-error);
}

/* ===================================
   POPUP CONTACT
=================================== */
.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.contact-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.popup-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform var(--transition);
}

.contact-popup.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all var(--transition);
}

.popup-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.popup-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
}

.popup-subtitle {
    text-align: center;
    color: var(--color-text);
    margin-bottom: 32px;
}

.popup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-full {
    width: 100%;
}

/* ===================================
   PAGE DEFAULT
=================================== */
.page-default {
    padding: 0 0 64px;
}

.page-default .lodan-breadcrumbs {
    padding: 16px 0 32px;
}

.page-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    color: var(--color-text);
}

.entry-content p {
    margin-bottom: 16px;
}

.entry-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--color-heading);
}

.entry-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--color-heading);
}

.entry-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 8px;
    color: var(--color-heading);
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 20px 24px;
    padding: 0;
}

.entry-content li {
    margin-bottom: 8px;
}

.entry-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: opacity var(--transition);
}

.entry-content a:hover {
    opacity: 0.7;
}

.entry-content strong {
    font-weight: 600;
    color: var(--color-heading);
}

.entry-content blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 3px solid var(--color-primary);
    background: var(--color-bg);
    font-style: italic;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.entry-content th,
.entry-content td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.entry-content th {
    font-weight: 600;
    background: var(--color-bg);
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1180px) {
    .bureau-layout {
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .bureaux-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bureau-layout {
        grid-template-columns: 1fr 300px;
        gap: 28px;
    }

    .bureau-title {
        font-size: 36px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .section-bureaux .section-title {
        font-size: 40px;
    }
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .bureau-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bureau-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sidebar-box.sidebar-form {
        grid-column: 1 / -1;
    }

    .gallery-main {
        padding-bottom: 62.5%;
    }

    @supports (aspect-ratio: 16 / 10) {
        .gallery-main {
            padding-bottom: 0;
            aspect-ratio: 16 / 10;
        }
    }

    .bureau-description h2,
    .bureau-equipements h2 {
        font-size: 22px;
    }
}

@media (max-width: 800px) {
    :root {
        --section-padding: 48px;
        --header-height: 64px;
    }

    .container {
        padding: 0 20px;
    }

    .bureaux-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .avantages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bureau-title {
        font-size: 30px;
    }

    .bureau-subtitle {
        font-size: 16px;
    }

    .bureau-sidebar {
        grid-template-columns: 1fr;
    }

    .gallery-nav {
        width: 38px;
        height: 38px;
    }

    .gallery-prev { left: 8px; }
    .gallery-next { right: 8px; }

    .gallery-dots-many {
        display: none;
    }

    .gallery-dots-many + .gallery-counter,
    .gallery-dots-many ~ .gallery-counter {
        display: flex;
    }

    .bureau-gallery:has(.gallery-dots-many) .gallery-counter {
        display: flex;
    }

    .section-bureaux .section-title,
    .section-title,
    .cta-title {
        font-size: 28px;
    }

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

    .form-input,
    .form-textarea,
    .form-select {
        min-height: 48px;
        font-size: 16px;
    }

    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .footer-sep {
        display: none;
    }

    .popup-content {
        padding: 32px 24px;
        margin: 20px;
        width: calc(100% - 40px);
    }

    .popup-form .form-row {
        grid-template-columns: 1fr;
    }

    .popup-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 32px;
    }

    .container {
        padding: 0 16px;
    }

    .section-bureaux .section-title,
    .section-title,
    .cta-title {
        font-size: 24px;
    }

    .bureau-title {
        font-size: 26px;
    }

    .bureau-header {
        padding: 0 0 24px;
    }

    .gallery-main {
        padding-bottom: 66.67%;
        border-radius: var(--radius);
    }

    @supports (aspect-ratio: 3 / 2) {
        .gallery-main {
            padding-bottom: 0;
            aspect-ratio: 3 / 2;
        }
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
    }

    .gallery-prev { left: 6px; }
    .gallery-next { right: 6px; }

    .gallery-dots {
        gap: 8px;
        margin-top: 12px;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }

    .sidebar-box {
        padding: 20px 16px;
    }

    .sidebar-title {
        font-size: 18px;
    }

    .offer-card {
        padding: 16px;
    }

    .price-amount {
        font-size: 20px;
    }

    .bureau-content {
        gap: 32px;
    }

    .bureau-main {
        padding-bottom: 40px;
    }
}