/* ============================================
   LETTRAGE NORDIK - Feuille de style principale
   Design: Industriel moderne, québécois premium
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ---- Variables CSS ---- */
:root {
    --nord-red:     #C0392B;
    --nord-red-dk:  #96281B;
    --nord-dark:    #1A1A1A;
    --nord-charcoal:#2C2C2C;
    --nord-mid:     #4A4A4A;
    --nord-silver:  #8A8A8A;
    --nord-light:   #F5F3EF;
    --nord-white:   #FFFFFF;
    --nord-gold:    #D4A853;
    --font-display: 'Bebas Neue', sans-serif;
    --font-cond:    'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
    --shadow-sm:    0 2px 8px rgba(0,0,0,.12);
    --shadow-md:    0 6px 24px rgba(0,0,0,.18);
    --shadow-lg:    0 16px 48px rgba(0,0,0,.24);
    --radius:       4px;
    --transition:   all .28s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--nord-dark);
    background: var(--nord-white);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26,26,26,.97);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--nord-red);
    transition: var(--transition);
}

.navbar__inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 2rem;
    display: flex; align-items: center;
    height: 70px;
}

.navbar__logo {
    font-family: var(--font-display);
    font-size: 1.85rem;
    letter-spacing: .04em;
    color: var(--nord-white);
    flex-shrink: 0;
}
.navbar__logo span { color: var(--nord-red); }

.navbar__menu {
    display: flex; align-items: center;
    gap: .25rem;
    margin-left: auto;
}

.navbar__menu > li { position: relative; }

.navbar__menu a {
    display: flex; align-items: center; gap: .35rem;
    padding: .5rem .85rem;
    color: #ccc;
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
}

.navbar__menu a:hover,
.navbar__menu a.active {
    color: var(--nord-white);
    background: rgba(192,57,43,.18);
}

/* Dropdown */
.dropdown__menu {
    display: none;
    position: absolute; top: 100%; left: 0;
    min-width: 200px;
    background: var(--nord-charcoal);
    border: 1px solid rgba(192,57,43,.4);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.dropdown:hover .dropdown__menu { display: block; }
.dropdown__menu a {
    display: block; padding: .7rem 1.1rem;
    border-radius: 0;
    font-size: .92rem;
}
.dropdown__menu a:hover { background: var(--nord-red); color: var(--nord-white); }

/* Auth buttons */
.navbar__auth {
    display: flex; align-items: center; gap: .5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,.12);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: .5rem;
    margin-left: auto;
}
.hamburger span {
    display: block; width: 26px; height: 2px;
    background: var(--nord-white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .65rem 1.6rem;
    font-family: var(--font-cond);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--nord-red);
    color: var(--nord-white);
    border-color: var(--nord-red);
}
.btn-primary:hover {
    background: var(--nord-red-dk);
    border-color: var(--nord-red-dk);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(192,57,43,.4);
}

.btn-outline {
    background: transparent;
    color: var(--nord-white);
    border-color: var(--nord-white);
}
.btn-outline:hover { background: var(--nord-white); color: var(--nord-dark); }

.btn-outline-dark {
    background: transparent;
    color: var(--nord-dark);
    border-color: var(--nord-dark);
}
.btn-outline-dark:hover { background: var(--nord-dark); color: var(--nord-white); }

.btn-sm { padding: .4rem 1rem; font-size: .82rem; }
.btn-lg { padding: .85rem 2rem; font-size: 1.05rem; }

.btn-danger { background: #c0392b; color: #fff; border-color: #c0392b; }
.btn-danger:hover { background: #96281b; border-color: #96281b; }
.btn-success { background: #27ae60; color: #fff; border-color: #27ae60; }
.btn-success:hover { background: #1e8449; border-color: #1e8449; }
.btn-secondary { background: var(--nord-charcoal); color: #fff; border-color: var(--nord-charcoal); }
.btn-secondary:hover { background: var(--nord-mid); border-color: var(--nord-mid); }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
    position: relative;
    height: 100vh; min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.hero__slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero__slide.active { opacity: 1; }

.hero__img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.45);
}

/* Placeholder si pas d'image */
.hero__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    display: flex; align-items: center; justify-content: center;
}
.hero__placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 40px,
        rgba(192,57,43,.04) 40px, rgba(192,57,43,.04) 80px
    );
}

.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.3) 60%,
        transparent 100%
    );
    display: flex; align-items: center;
}

.hero__content {
    max-width: 1280px; margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero__tag {
    display: inline-block;
    padding: .25rem .75rem;
    background: var(--nord-red);
    color: var(--nord-white);
    font-family: var(--font-cond);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    color: var(--nord-white);
    line-height: 1;
    letter-spacing: .02em;
    max-width: 700px;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 24px rgba(0,0,0,.5);
}

.hero__sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.85);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.55;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Contrôles slider */
.hero__controls {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: .75rem; align-items: center;
    z-index: 10;
}

.hero__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none; cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.hero__dot.active {
    background: var(--nord-red);
    transform: scale(1.4);
}

.hero__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--nord-white);
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
    font-size: 1.1rem;
}
.hero__nav:hover { background: var(--nord-red); border-color: var(--nord-red); }
.hero__nav--prev { left: 1.5rem; }
.hero__nav--next { right: 1.5rem; }

/* ============================================
   LAYOUT GÉNÉRAL
   ============================================ */
.section {
    padding: 5rem 2rem;
}
.section--dark { background: var(--nord-dark); color: var(--nord-white); }
.section--light { background: var(--nord-light); }
.section--red { background: var(--nord-red); color: var(--nord-white); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.section__header { margin-bottom: 3rem; }
.section__header--center { text-align: center; }

.section__eyebrow {
    display: inline-block;
    font-family: var(--font-cond);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--nord-red);
    margin-bottom: .75rem;
}
.section--dark .section__eyebrow { color: var(--nord-gold); }
.section--red .section__eyebrow { color: rgba(255,255,255,.7); }

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: .02em;
    margin-bottom: .75rem;
}

.section__sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--nord-silver);
    max-width: 560px;
    line-height: 1.65;
}
.section--dark .section__sub { color: rgba(255,255,255,.6); }
.section--red .section__sub { color: rgba(255,255,255,.8); }

/* Séparateur rouge */
.divider {
    display: block;
    width: 48px; height: 3px;
    background: var(--nord-red);
    margin: 1rem 0 1.5rem;
}
.section__header--center .divider { margin-left: auto; margin-right: auto; }
.section--red .divider { background: rgba(255,255,255,.6); }

/* ============================================
   GRILLE PRODUITS / SERVICES
   ============================================ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--nord-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--nord-charcoal);
}
.card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.card:hover .card__img-wrap img { transform: scale(1.05); }

.card__cat {
    position: absolute; top: 1rem; left: 1rem;
    padding: .2rem .65rem;
    background: var(--nord-red);
    color: var(--nord-white);
    font-family: var(--font-cond);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
}

.card__body { padding: 1.4rem; }

.card__title {
    font-family: var(--font-cond);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: .5rem;
}

.card__desc {
    font-size: .9rem;
    color: var(--nord-silver);
    margin-bottom: 1rem;
    line-height: 1.55;
}

.card__price {
    font-family: var(--font-cond);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nord-red);
    margin-bottom: 1rem;
}
.card__price small {
    font-size: .85rem;
    font-weight: 400;
    color: var(--nord-silver);
}

/* ============================================
   SECTION À PROPOS
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid__img {
    position: relative;
}
.about-grid__img img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-grid__img::before {
    content: '';
    position: absolute;
    top: -12px; left: -12px;
    right: 12px; bottom: 12px;
    border: 2px solid var(--nord-red);
    border-radius: var(--radius);
    pointer-events: none;
}

.stats-row {
    display: flex; gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,.1);
}
.stat { flex: 1; }
.stat__num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--nord-red);
    line-height: 1;
}
.stat__label {
    font-size: .85rem;
    color: var(--nord-silver);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-family: var(--font-cond);
    font-weight: 600;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--nord-red);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: 'N';
    font-family: var(--font-display);
    font-size: 28rem;
    color: rgba(255,255,255,.04);
    position: absolute;
    right: -2rem; top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 4rem);
    color: var(--nord-white);
    margin-bottom: 1rem;
    letter-spacing: .02em;
}
.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ============================================
   FORMULAIRES
   ============================================ */
.form-group { margin-bottom: 1.25rem; }

label {
    display: block;
    font-family: var(--font-cond);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--nord-mid);
    margin-bottom: .4rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: .7rem 1rem;
    background: var(--nord-white);
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--nord-dark);
    transition: var(--transition);
    outline: none;
    appearance: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--nord-red);
    box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ============================================
   ALERTES / FLASH MESSAGES
   ============================================ */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    font-size: .95rem;
    display: flex; align-items: flex-start; gap: .75rem;
    border-left: 4px solid;
}
.alert-success { background: #eafaf1; color: #1e8449; border-color: #27ae60; }
.alert-error   { background: #fdedec; color: #c0392b; border-color: #c0392b; }
.alert-info    { background: #eaf4fc; color: #2980b9; border-color: #3498db; }
.alert-warning { background: #fef9e7; color: #d4ac0d; border-color: #f1c40f; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info__item {
    display: flex; gap: 1rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}
.contact-info__icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--nord-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--nord-white);
    font-size: 1.1rem;
}
.contact-info__label {
    font-family: var(--font-cond);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--nord-silver);
    margin-bottom: .2rem;
}
.contact-info__value {
    font-size: 1rem;
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--nord-dark);
    color: rgba(255,255,255,.7);
    padding: 4rem 2rem 1.5rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1280px; margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--nord-white);
    margin-bottom: .75rem;
}
.footer__logo span { color: var(--nord-red); }

.footer__desc {
    font-size: .9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex; gap: .5rem;
}
.footer__social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    transition: var(--transition);
    font-size: .85rem;
}
.footer__social a:hover { background: var(--nord-red); color: var(--nord-white); }

.footer__heading {
    font-family: var(--font-cond);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--nord-white);
    margin-bottom: 1.25rem;
}

.footer__links li { margin-bottom: .6rem; }
.footer__links a {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}
.footer__links a:hover { color: var(--nord-red); padding-left: .25rem; }

.footer__bottom {
    max-width: 1280px; margin: 0 auto;
    padding-top: 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    background: var(--nord-dark);
    padding: 7rem 2rem 4rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        -45deg, transparent, transparent 30px,
        rgba(192,57,43,.05) 30px, rgba(192,57,43,.05) 60px
    );
}
.page-header__inner {
    max-width: 1280px; margin: 0 auto;
    position: relative;
}
.page-header__eyebrow {
    font-family: var(--font-cond);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--nord-red);
    margin-bottom: .5rem;
}
.page-header__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--nord-white);
    letter-spacing: .02em;
    line-height: 1;
}
.breadcrumb {
    display: flex; gap: .5rem; align-items: center;
    margin-top: 1rem;
    font-size: .88rem;
    color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--nord-red); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ============================================
   DASHBOARD CLIENT & ADMIN
   ============================================ */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 70px);
    margin-top: 70px;
}

.sidebar {
    background: var(--nord-dark);
    padding: 2rem 0;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.sidebar__title {
    font-family: var(--font-cond);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    padding: 1.5rem 1.5rem .5rem;
}

.sidebar__nav a {
    display: flex; align-items: center; gap: .85rem;
    padding: .75rem 1.5rem;
    color: rgba(255,255,255,.65);
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.sidebar__nav a:hover,
.sidebar__nav a.active {
    color: var(--nord-white);
    background: rgba(192,57,43,.15);
    border-left-color: var(--nord-red);
}
.sidebar__nav a i { width: 20px; text-align: center; }

.sidebar__badge {
    margin-left: auto;
    background: var(--nord-red);
    color: #fff;
    border-radius: 12px;
    padding: .1rem .5rem;
    font-size: .75rem;
}

.dashboard-main {
    background: var(--nord-light);
    padding: 2.5rem;
}

.dashboard-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.dashboard-header h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: .02em;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--nord-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--nord-red);
    transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card__icon {
    width: 44px; height: 44px;
    background: rgba(192,57,43,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--nord-red);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}
.stat-card__num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--nord-dark);
    line-height: 1;
}
.stat-card__label {
    font-family: var(--font-cond);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--nord-silver);
    margin-top: .25rem;
}

/* Tables */
.table-wrap {
    background: var(--nord-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
}
.table-wrap th {
    background: var(--nord-dark);
    color: rgba(255,255,255,.8);
    font-family: var(--font-cond);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .85rem 1rem;
    text-align: left;
}
.table-wrap td {
    padding: .85rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: .92rem;
    vertical-align: middle;
}
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tbody tr:hover { background: rgba(192,57,43,.04); }

/* Badge statut */
.badge {
    display: inline-block;
    padding: .2rem .65rem;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-family: var(--font-cond);
}
.badge-attente  { background: #fef9e7; color: #d4ac0d; }
.badge-confirme { background: #eafaf1; color: #1e8449; }
.badge-annule   { background: #fdedec; color: #c0392b; }
.badge-complete { background: #eaf4fc; color: #2980b9; }

/* ============================================
   CALENDRIER / SLOTS
   ============================================ */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.slot-card {
    background: var(--nord-white);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    padding: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.slot-card:hover {
    border-color: var(--nord-red);
    box-shadow: var(--shadow-md);
}
.slot-card.selected {
    border-color: var(--nord-red);
    background: rgba(192,57,43,.06);
}
.slot-card__date {
    font-family: var(--font-cond);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--nord-silver);
    margin-bottom: .25rem;
}
.slot-card__time {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--nord-dark);
    line-height: 1.1;
}
.slot-card__places {
    font-size: .8rem;
    color: var(--nord-silver);
    margin-top: .4rem;
}

/* ============================================
   LOGIN / REGISTER
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: var(--nord-dark);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.auth-page::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 50px,
        rgba(192,57,43,.04) 50px, rgba(192,57,43,.04) 100px
    );
}

.auth-card {
    background: var(--nord-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%; max-width: 440px;
    padding: 3rem;
    position: relative;
}
.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--nord-red);
    border-radius: var(--radius) var(--radius) 0 0;
}

.auth-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: .25rem;
}
.auth-logo span { color: var(--nord-red); }

.auth-sub {
    text-align: center;
    color: var(--nord-silver);
    font-size: .9rem;
    margin-bottom: 2rem;
}

.auth-divider {
    display: flex; align-items: center; gap: 1rem;
    margin: 1.5rem 0;
    color: var(--nord-silver);
    font-size: .85rem;
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1;
    border-top: 1px solid #e0e0e0;
}

/* ============================================
   PANNEAU ADMIN - SPÉCIFIQUE
   ============================================ */
.admin-sidebar .sidebar__logo {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--nord-white);
}
.admin-sidebar .sidebar__logo span { color: var(--nord-red); }
.admin-sidebar .sidebar__logo small {
    display: block;
    font-family: var(--font-cond);
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 400;
}

/* Card admin */
.admin-card {
    background: var(--nord-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.admin-card__header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex; align-items: center; justify-content: space-between;
}
.admin-card__title {
    font-family: var(--font-cond);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .04em;
}
.admin-card__body { padding: 1.5rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .stats-cards { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .about-grid { gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    
    .navbar__menu {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--nord-dark);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .navbar__menu.open { display: flex; }
    .navbar__auth { margin-left: 0; padding-left: 0; border-left: none; }
    
    .dropdown__menu { position: static; box-shadow: none; border: none; background: rgba(255,255,255,.05); }
    
    .hero__title { font-size: 2.8rem; }
    
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    
    .about-grid { grid-template-columns: 1fr; }
    .about-grid__img { display: none; }
    
    .stats-row { gap: 1rem; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; height: auto; }
    
    .stats-cards { grid-template-columns: repeat(2, 1fr); }
    
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 480px) {
    .stats-cards { grid-template-columns: 1fr; }
    .hero { min-height: 500px; }
    .section { padding: 3rem 1.25rem; }
    .auth-card { padding: 2rem 1.5rem; }
    .dashboard-main { padding: 1.25rem; }
}

/* ============================================
   UTILITAIRES
   ============================================ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.w-100 { width: 100%; }

.img-placeholder {
    background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.3);
    font-family: var(--font-cond);
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ============================================
   PAGES: À PROPOS, SERVICES, CONTACT
   ============================================ */

/* Page Hero générique */
.page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, #2c2c2c 100%);
    padding: 6rem 0 3rem;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C0392B' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192,57,43,0.15) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: .5rem;
}
.page-hero p {
    color: rgba(255,255,255,.7);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.5);
    font-size: .85rem;
}
.breadcrumb-nav a { color: var(--primary); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--white); }

/* ---- CONTACT ---- */
.contact-section { padding: 5rem 0; }
.contact-alert { max-width: 800px; margin: 0 auto 2rem; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.contact-info h2, .contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark);
    letter-spacing: .05em;
    margin-bottom: 1rem;
}
.contact-intro { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
    width: 48px; height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-text h4 { font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .25rem; }
.contact-text p, .contact-text a { color: var(--dark); font-weight: 500; text-decoration: none; }
.contact-text a:hover { color: var(--primary); }
.contact-social h4 { font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.social-links { display: flex; gap: .75rem; }
.social-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1rem; border-radius: 8px;
    color: var(--white); font-size: .85rem; font-weight: 600;
    text-decoration: none; transition: transform .2s, opacity .2s;
}
.social-btn:hover { transform: translateY(-2px); opacity: .9; color: var(--white); }
.social-btn.facebook { background: #1877F2; }
.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.required { color: var(--primary); }
.char-counter { text-align: right; font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-large { padding: .9rem 2rem; font-size: 1rem; }
.success-message-box {
    text-align: center; padding: 3rem 2rem;
    background: #f0fdf4; border: 2px solid #22c55e;
    border-radius: 16px;
}
.success-message-box i { font-size: 3rem; color: #22c55e; margin-bottom: 1rem; }
.success-message-box h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: .5rem; }
.success-message-box p { color: var(--text-muted); }
.mt-2 { margin-top: 1rem; }

/* ---- À PROPOS ---- */
.about-intro-section { padding: 5rem 0; }
.about-intro-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-cond);
    font-size: .8rem; letter-spacing: .2em;
    text-transform: uppercase; color: var(--primary);
    margin-bottom: .75rem;
}
.about-intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark); letter-spacing: .03em;
    margin-bottom: 1rem; line-height: 1.2;
}
.about-intro-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.about-highlights { display: flex; gap: 2rem; margin-top: 2rem; }
.highlight-item { text-align: center; }
.highlight-number { display: block; font-family: var(--font-display); font-size: 2.5rem; color: var(--primary); line-height: 1; }
.highlight-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }
.about-intro-image, .service-intro-image {
    border-radius: 16px; overflow: hidden;
}
.about-image-placeholder, .service-image-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    height: 400px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,.2); border-radius: 16px;
}
.about-image-placeholder i, .service-image-placeholder i { font-size: 4rem; margin-bottom: 1rem; }

.values-section { padding: 5rem 0; background: var(--dark); }
.values-section .section-header h2 { color: var(--white); }
.values-section .section-eyebrow { color: var(--gold); }
.section-header { margin-bottom: 3rem; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: .05em; margin-top: .5rem; }
.text-center { text-align: center; }
.values-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.value-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; padding: 2rem;
    transition: transform .3s, border-color .3s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.value-icon { width: 56px; height: 56px; background: var(--primary); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--white); margin-bottom: 1.25rem; }
.value-card h3 { font-family: var(--font-cond); font-size: 1.2rem; color: var(--white); letter-spacing: .05em; margin-bottom: .75rem; }
.value-card p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; }

.team-section { padding: 5rem 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
    background: var(--white); border-radius: 16px;
    padding: 2.5rem 2rem; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.team-avatar {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary), #8b1a10);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--white); margin: 0 auto 1.5rem;
}
.team-card h3 { font-family: var(--font-cond); font-size: 1.3rem; color: var(--dark); letter-spacing: .05em; margin-bottom: .25rem; }
.team-role { font-size: .85rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: 1rem; }
.team-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }

.process-section { padding: 5rem 0; background: #f8f9fa; }
.process-steps {
    display: flex; align-items: flex-start;
    gap: 1rem; margin-top: 2rem;
}
.process-step { flex: 1; }
.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem; color: var(--primary);
    opacity: .3; line-height: 1;
    margin-bottom: .5rem;
}
.step-content h3 { font-family: var(--font-cond); font-size: 1.1rem; color: var(--dark); letter-spacing: .05em; margin-bottom: .5rem; }
.step-content p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
.process-connector { padding-top: 1.5rem; color: var(--primary); font-size: 1.5rem; flex-shrink: 0; opacity: .5; }

/* ---- SERVICES ---- */
.service-intro-section { padding: 5rem 0; }
.service-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-intro-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark); letter-spacing: .03em;
    margin-bottom: 1rem; line-height: 1.2;
}
.service-intro-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.service-feature-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.service-feature-list li { display: flex; align-items: center; gap: .75rem; color: var(--dark); font-weight: 500; }
.service-feature-list li i { color: var(--primary); }

.service-types-section { padding: 5rem 0; background: var(--dark); }
.service-types-section .section-header h2 { color: var(--white); }
.service-types-section .section-eyebrow { color: var(--gold); }
.service-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-type-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; padding: 2rem; text-align: center;
    transition: transform .3s, border-color .3s;
}
.service-type-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.service-type-icon { width: 64px; height: 64px; background: rgba(192,57,43,.2); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--primary); margin: 0 auto 1.25rem; }
.service-type-card h3 { font-family: var(--font-cond); font-size: 1.1rem; color: var(--white); letter-spacing: .05em; margin-bottom: .75rem; }
.service-type-card p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; }

.guarantees-section { padding: 5rem 0; }
.guarantees-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.guarantee-item { text-align: center; padding: 2rem; }
.guarantee-item i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.guarantee-item h4 { font-family: var(--font-cond); font-size: 1.1rem; color: var(--dark); margin-bottom: .75rem; letter-spacing: .05em; }
.guarantee-item p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }

.products-section { padding: 5rem 0; }
.products-section.bg-light { background: #f8f9fa; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline {
    background: transparent; border: 2px solid rgba(255,255,255,.6);
    color: var(--white); padding: .8rem 1.8rem;
    font-family: var(--font-cond); font-size: .9rem; letter-spacing: .1em;
    text-transform: uppercase; border-radius: 8px; text-decoration: none;
    transition: all .3s; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }

/* ---- ADMIN extras ---- */
.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.slides-list { display: flex; flex-direction: column; gap: 1rem; }
.slide-item {
    display: flex; gap: 1rem; align-items: center;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 12px; padding: 1rem;
    transition: border-color .2s;
}
.slide-item:hover { border-color: var(--primary); }
.slide-inactive { opacity: .5; }
.slide-thumb { width: 80px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #eee; }
.slide-thumb img { width: 100%; height: 100%; object-fit: cover; }
.no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #ccc; }
.slide-info { flex: 1; min-width: 0; }
.slide-title { font-weight: 600; color: var(--text); font-size: .95rem; }
.slide-subtitle { color: var(--text-muted); font-size: .85rem; }
.slide-meta { display: flex; gap: .5rem; margin-top: .4rem; }
.slide-actions { display: flex; gap: .5rem; flex-shrink: 0; }
.current-image-preview { margin-bottom: .75rem; }
.current-image-preview img { width: 100%; max-height: 160px; object-fit: cover; border-radius: 8px; margin-bottom: .25rem; }
.current-image-preview small { color: var(--text-muted); font-size: .8rem; }
.image-preview-box { margin-top: .75rem; border-radius: 8px; overflow: hidden; }
.image-preview-box img { width: 100%; max-height: 200px; object-fit: cover; }
.checkbox-label { display: flex; align-items: center; gap: .75rem; cursor: pointer; font-weight: 500; }
.checkbox-label input { width: 18px; height: 18px; accent-color: var(--primary); }
.form-actions { display: flex; gap: 1rem; margin-top: .5rem; }

/* Client detail */
.client-detail-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; }
.client-info-block h3, .client-rdv-block h3 { font-family: var(--font-cond); font-size: 1.1rem; color: var(--text); letter-spacing: .05em; margin-bottom: 1rem; }
.detail-table { width: 100%; border-collapse: collapse; }
.detail-table th, .detail-table td { padding: .6rem .75rem; border-bottom: 1px solid var(--border); font-size: .9rem; text-align: left; }
.detail-table th { color: var(--text-muted); font-weight: 500; width: 35%; }
.detail-table td { color: var(--text); }
.client-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.badge-info { background: rgba(59,130,246,.15); color: #3b82f6; }
.table-search { max-width: 280px; }

/* Responsive */
@media (max-width: 1024px) {
    .values-grid, .service-types-grid, .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-direction: column; }
    .process-connector { display: none; }
    .admin-grid-2 { grid-template-columns: 1fr; }
    .client-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .contact-grid, .about-intro-grid, .service-intro-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-highlights { flex-direction: column; gap: 1rem; }
    .values-grid, .service-types-grid, .guarantees-grid { grid-template-columns: 1fr; }
    .about-intro-image, .service-intro-image { order: -1; }
}
