/* ====================================
   Danny Attali Clinic - Styles
   Copie exacte de dannyattali.com
   ==================================== */

/* CSS Variables - Color Palette */
:root {
    /* Main Colors */
    --primary: #c9a86c;
    --primary-dark: #b8944d;
    --primary-light: #d4b87d;
    --action: #c9a86c;
    --action-hover: #b8944d;

    /* Neutral Colors */
    --black: #0c0c0d;
    --white: #ffffff;
    --gray-dark: #1a1a1b;
    --gray-medium: #333333;
    --gray-light: #666666;
    --gray-lighter: #999999;
    --gray-ultra-light: #f5f5f5;

    /* Text Colors */
    --text-dark: #0c0c0d;
    --text-light: #ffffff;
    --text-muted: #666666;

    /* Background Colors */
    --bg-dark: rgba(12, 12, 13, 0.97);
    --bg-light: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.6);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-s: 1rem;
    --space-m: 1.5rem;
    --space-l: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;

    /* Typography */
    --font-accent: 'Quentin', cursive;
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Merriweather', serif;

    /* Border Radius */
    --radius-s: 4px;
    --radius-m: 8px;
    --radius-l: 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Quentin Font Face - Script font for accents */
@font-face {
    font-family: 'Quentin';
    src: url('../fonts/Quentin.woff2') format('woff2'),
         url('../fonts/Quentin.woff') format('woff'),
         url('../fonts/Quentin.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

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

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

main, section, .header {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ====================================
   Typography
   ==================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

/* ====================================
   Header - Navigation Bar
   ==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    padding: 0;
    overflow: visible;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.header::-webkit-scrollbar {
    display: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header.scrolled .logo-white {
    display: none !important;
}

.header.scrolled .logo-black {
    display: block !important;
}

.header.scrolled .menu > li > a {
    color: var(--text-dark);
}

.header.scrolled .menu > li > a:hover,
.header.scrolled .menu > li.active > a {
    color: var(--primary);
}

.header.scrolled .btn-whatsapp {
    background: var(--black);
}

.header.scrolled .mobile-menu-toggle .bar {
    background: var(--black);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.logo-wrapper {
    flex-shrink: 0;
    width: 160px;
    display: flex;
    align-items: center;
}

.logo {
    width: 100%;
    height: auto;
    transition: var(--transition-normal);
}

.logo-black {
    display: none !important;
}

.logo-white {
    display: block !important;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    overflow: visible;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 1.2rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu > li > a:hover,
.menu > li.active > a {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.menu > li > a i {
    font-size: 0.55rem;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

/* Submenu Dropdown */
.has-submenu {
    position: relative;
}

/* Bridge pour maintenir le hover entre le lien et le submenu */
.has-submenu::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    z-index: 999;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    background: var(--white);
    border-radius: var(--radius-m);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
    padding-top: 10px;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.has-submenu:hover > a i {
    transform: rotate(180deg);
}

.submenu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.submenu a:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 2rem;
}

/* Header Action Button - WhatsApp */
.header-action {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    background: rgba(20, 20, 20, 0.95);
    border-radius: var(--radius-m);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: rgba(0, 0, 0, 1);
    transform: translateY(-2px);
}

.btn-whatsapp i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-s);
    font-size: 1.3rem;
    color: var(--white);
}

.btn-whatsapp-text {
    display: flex !important;
    flex-direction: column;
    line-height: 1.3;
}

.btn-whatsapp .phone {
    display: block !important;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.btn-whatsapp .label {
    display: block !important;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 300;
}

/* Client Space Button */
.btn-client {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--radius-m);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-client:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-client i {
    font-size: 1rem;
}

.header.scrolled .btn-client {
    color: var(--black);
    border-color: var(--primary);
}

.header.scrolled .btn-client:hover {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-s);
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active {
    background: var(--primary);
}

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

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(135deg, rgb(12, 12, 13) 0%, rgb(20, 20, 20) 100%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.mobile-menu-header .logo-wrapper {
    width: 140px;
}

.mobile-menu-header .logo {
    width: 100%;
}

.mobile-menu-close {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-s);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

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

.mobile-menu-list {
    text-align: center;
    padding: 2rem;
    max-height: none;
    overflow: hidden;
}

.mobile-menu-list li {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-menu-list li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-list li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-list li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-list li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-list li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-list li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-menu-list li:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-menu-list li:nth-child(8) { transition-delay: 0.45s; }
.mobile-menu.active .mobile-menu-list li:nth-child(9) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-menu-list li:nth-child(10) { transition-delay: 0.55s; }
.mobile-menu.active .mobile-menu-list li:nth-child(11) { transition-delay: 0.6s; }

.mobile-menu-list a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.3rem;
    color: var(--white);
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.mobile-menu-list a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Mobile Menu CTA Buttons */
.mobile-menu-cta {
    margin-top: 1rem !important;
}

.mobile-menu-cta a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem !important;
    border-radius: var(--radius-m);
    font-size: 1rem !important;
    border-bottom: none !important;
}

.btn-mobile-client {
    background: transparent;
    border: 2px solid var(--primary);
}

.btn-mobile-client:hover {
    background: var(--primary);
    color: var(--white) !important;
}

.btn-mobile-booking {
    background: var(--primary);
    color: var(--white) !important;
}

.btn-mobile-booking:hover {
    background: var(--primary-dark);
}

/* Mobile Submenu - Prestations */
.mobile-has-submenu {
    position: relative;
}

.mobile-submenu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.mobile-submenu-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.mobile-submenu-toggle.active i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-s);
    margin-top: 0.5rem;
}

.mobile-submenu.open {
    max-height: 400px;
}

.mobile-submenu li {
    margin-bottom: 0 !important;
    opacity: 1 !important;
    transform: none !important;
}

.mobile-submenu a {
    padding: 0.7rem 1.5rem !important;
    font-size: 1rem !important;
    border-bottom: none !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.mobile-submenu a:hover,
.mobile-submenu a.active {
    color: var(--primary) !important;
    background: rgba(201, 168, 108, 0.1);
}

/* Nested submenu (Yeux) */
.mobile-has-submenu-nested {
    position: relative;
}

.mobile-submenu-toggle-nested {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.7rem 1.5rem !important;
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.mobile-submenu-toggle-nested i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.mobile-submenu-toggle-nested.active i {
    transform: rotate(180deg);
}

.mobile-submenu-nested {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-s);
    margin: 0.3rem 1rem;
}

.mobile-submenu-nested.open {
    max-height: 300px;
    padding: 0.5rem 0;
}

.mobile-submenu-nested li {
    margin-bottom: 0 !important;
    opacity: 1 !important;
    transform: none !important;
}

.mobile-submenu-nested a {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
    border-bottom: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.mobile-submenu-nested a:hover,
.mobile-submenu-nested a.active {
    color: var(--primary) !important;
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 100vw;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #000000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    will-change: opacity;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* ===== TRANSITION: CROSSFADE ELEGANT ===== */
.hero-slide[data-transition="crossfade"] {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 0s 1.5s;
}

/* Le nouveau slide apparaît avec fondu */
.hero-slide[data-transition="crossfade"].active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transition: opacity 1.5s ease-in-out, visibility 0s 0s;
}

/* L'ancien slide disparaît en fondu */
.hero-slide[data-transition="crossfade"].previous {
    opacity: 0;
    visibility: visible;
    z-index: 1;
    transition: opacity 1.5s ease-in-out, visibility 0s 1.5s;
}

/* Styles pour img/iframe - toujours visible */
.hero-slide[data-transition="crossfade"] img,
.hero-slide[data-transition="crossfade"] iframe {
    opacity: 1;
}

/* ===== Images fixes avec léger zoom permanent ===== */
.hero-slide[data-type="image"] img {
    transform: scale(1.02);
}

/* Force image visibility when slide is active */
.hero-slide.active img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===== PROGRESS BAR ===== */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.15);
    z-index: 10;
    overflow: hidden;
}

.hero-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    transform-origin: left;
}

.hero-progress-bar.animating {
    animation: progressFill var(--duration, 4s) linear forwards;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== SLIDE INDICATORS ===== */
.hero-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-indicator {
    width: 35px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-indicator::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 0.3s ease;
}

.hero-indicator.active::after {
    animation: indicatorFill var(--duration, 4s) linear forwards;
}

@keyframes indicatorFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.hero-indicator:hover {
    background: rgba(255,255,255,0.5);
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 3;
}

.hero-bg {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    max-width: 550px;
}

.hero-accent {
    display: block;
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.1;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.hero-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
}

/* ====================================
   Buttons
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-s);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-full {
    width: 100%;
}

.link-more {
    color: var(--primary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.link-more:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ====================================
   Section Title
   ==================================== */
.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-accent {
    display: block;
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.section-title {
    margin-bottom: 1rem;
    font-weight: 300;
}

.section-lead {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.separator {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 1.5rem auto 0;
}

/* ====================================
   Showcase Section - Design avec cartes
   ==================================== */
.showcase-section {
    padding: 5rem 2rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

/* Grande image à gauche */
.showcase-item.large {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-m);
}

.showcase-item.large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item.large:hover img {
    transform: scale(1.05);
}

/* Colonne droite avec les 2 cartes */
.showcase-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Style des cartes - fond noir avec texte et image côte à côte */
.showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    background: #1a1a1a;
    border-radius: var(--radius-m);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    min-height: 280px;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Contenu texte de la carte (gauche) */
.showcase-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.showcase-card-subtitle {
    display: block;
    color: var(--primary);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.showcase-card-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

/* Image de la carte (droite) - VISIBLE */
.showcase-card-image {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.showcase-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}

/* Image spécifique pour la carte des yeux - centrer l'oeil */
.showcase-card-image-eye img {
    object-position: 90% 30%;
}

.showcase-card:hover .showcase-card-image img {
    transform: scale(1.1);
}

.showcase-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ====================================
   Restructuration Section
   ==================================== */
.restructuration-section {
    padding: 5rem 2rem;
    background: var(--bg-dark);
}

.restructuration-section .section-title-wrapper {
    margin-bottom: 3rem;
}

.restructuration-section .section-title,
.restructuration-section .section-lead {
    color: var(--white);
}

.restructuration-section .section-lead {
    opacity: 0.85;
}

.restructuration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 550px;
}

/* Grande carte Détatouage à gauche */
.restructuration-card.large {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-m);
    display: block;
}

.restructuration-card.large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.restructuration-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.restructuration-card-overlay .restructuration-card-subtitle {
    display: block;
    color: var(--primary);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.restructuration-card-overlay .restructuration-card-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}

/* Colonne droite avec 2 petites cartes */
.restructuration-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Petites cartes (Maquillage réparateur, Effacement cicatrice) */
.restructuration-card.small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    background: #1a1a1a;
    border-radius: var(--radius-m);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
}

.restructuration-card.small:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.restructuration-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.restructuration-card-content .restructuration-card-subtitle {
    display: block;
    color: var(--primary);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.restructuration-card-content .restructuration-card-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.restructuration-card-image {
    position: relative;
    overflow: hidden;
}

.restructuration-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.restructuration-card.small:hover .restructuration-card-image img {
    transform: scale(1.1);
}

.restructuration-cta {
    text-align: center;
    margin-top: 3rem;
}

.restructuration-cta .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.restructuration-cta .btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

/* ====================================
   Content Sections
   ==================================== */
.content-section {
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}

.content-section.dark {
    background: var(--bg-dark);
    color: var(--white);
}

.content-section.dark .section-title,
.content-section.dark .section-lead {
    color: var(--white);
}

.content-section.dark .section-lead {
    opacity: 0.85;
}

.content-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://dannyattali.com/static/uploads/2023/12/bg-abstract-maquillage-permanent-institut-danny-attali-1024x683.jpg') center/cover no-repeat;
    opacity: 0.08;
}

.content-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image img {
    border-radius: var(--radius-m);
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.content-text {
    padding: 2rem 0;
}

.content-text .section-title-wrapper {
    text-align: left;
    margin-bottom: 2rem;
}

.content-text .separator {
    margin: 1.5rem 0;
}

.content-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    align-items: center;
}

/* ====================================
   Slider
   ==================================== */
.slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-m);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide img {
    width: 100%;
    border-radius: var(--radius-m);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    opacity: 1;
    background: var(--primary);
    transform: scale(1.2);
}

/* ====================================
   FAQ Section
   ==================================== */
.faq-section {
    padding: 5rem 2rem;
    background: var(--gray-ultra-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-m);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ====================================
   Tarifs Section
   ==================================== */
.tarifs-section {
    padding: 5rem 2rem;
}

.tarifs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tarif-card {
    background: var(--white);
    border-radius: var(--radius-m);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tarif-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tarif-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-ultra-light);
}

.tarif-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.tarif-item:last-child {
    border-bottom: none;
}

.tarif-name {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.tarif-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

/* ====================================
   Contact Section
   ==================================== */
.contact-section {
    padding: 5rem 2rem;
    background: var(--gray-ultra-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container.contact-centered {
    grid-template-columns: 1fr;
    max-width: 600px;
}

.contact-centered .contact-info {
    text-align: center;
}

.contact-centered .contact-item {
    justify-content: center;
}

.contact-centered .contact-social {
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 35px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-m);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #eee;
    border-radius: var(--radius-s);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

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

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

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 2rem 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--gray-lighter);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--gray-lighter);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col p {
    color: var(--gray-lighter);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-lighter);
    font-size: 0.85rem;
}

.footer-date {
    margin-top: 0.8rem;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ====================================
   AVIS PROFESSIONNEL SECTION
   ==================================== */
.avis-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
}

.avis-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.avis-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.avis-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avis-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.avis-benefit i {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avis-benefit h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--black);
}

.avis-benefit p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.avis-form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.avis-form .form-group {
    margin-bottom: 1.2rem;
}

.avis-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
}

.avis-form label i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.avis-form input,
.avis-form select,
.avis-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.avis-form input:focus,
.avis-form select:focus,
.avis-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

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

.photo-upload-zone {
    border: 2px dashed #d0d0d0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.photo-upload-zone:hover {
    border-color: var(--primary);
    background: rgba(201, 168, 108, 0.05);
}

.upload-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.upload-placeholder p {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.upload-placeholder span {
    font-size: 0.8rem;
    color: var(--gray);
}

.upload-preview {
    position: relative;
    display: inline-block;
}

.upload-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.remove-photo {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.remove-photo:hover {
    transform: scale(1.1);
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
}

.form-disclaimer i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.avis-success {
    text-align: center;
    padding: 3rem 2rem;
}

.avis-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.avis-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.avis-success p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .avis-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .avis-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

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

@media (max-width: 600px) {
    .avis-section {
        padding: 4rem 1rem;
    }

    .avis-info {
        grid-template-columns: 1fr;
    }

    .avis-form-container {
        padding: 1.5rem;
    }
}

/* ====================================
   RESPONSIVE - LARGE SCREENS (max 1280px)
   ==================================== */
@media (max-width: 1280px) {
    .header-container {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

    .logo-wrapper {
        width: 130px;
    }

    .menu > li > a {
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
    }

    .btn-whatsapp {
        padding: 0.4rem 0.8rem 0.4rem 0.4rem;
        gap: 0.6rem;
    }

    .btn-whatsapp .phone {
        font-size: 0.85rem;
    }

    .btn-whatsapp .label {
        font-size: 0.6rem;
    }

    .btn-whatsapp i {
        width: 32px;
        height: 32px;
    }

    .btn-client {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .btn-client i {
        font-size: 0.9rem;
    }
}

/* ====================================
   RESPONSIVE - TABLET (max 1024px)
   ==================================== */
@media (max-width: 1024px) {
    .header-container {
        padding: 0.5rem 1rem;
        gap: 0.3rem;
    }

    .logo-wrapper {
        width: 120px;
    }

    .menu > li > a {
        padding: 0.8rem 0.4rem;
        font-size: 0.75rem;
    }

    .btn-whatsapp {
        padding: 0.3rem 0.6rem 0.3rem 0.3rem;
        gap: 0.5rem;
    }

    .btn-whatsapp .phone {
        font-size: 0.8rem;
    }

    .btn-whatsapp .label {
        display: none !important;
    }

    .btn-whatsapp i {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .btn-client {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .btn-client span {
        display: none;
    }

    .btn-client i {
        font-size: 1rem;
    }

    .showcase-grid {
        min-height: 45rem;
        gap: 1rem;
    }

    .restructuration-grid {
        min-height: 500px;
    }

    .tarifs-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ====================================
   RESPONSIVE - MOBILE LARGE (max 768px)
   ==================================== */
@media (max-width: 768px) {
    /* Header Mobile */
    .nav-menu {
        display: none;
    }

    .header-action {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-container {
        padding: 0.8rem 1rem;
    }

    .logo-wrapper {
        width: 130px;
    }

    /* Hero Mobile - Exactement comme l'exemple */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-container {
        padding: 0 1.5rem;
        width: 100%;
    }

    .hero-content {
        text-align: center;
        padding: 0;
        max-width: 100%;
        background: none;
    }

    .hero-accent {
        font-family: var(--font-accent);
        font-size: 1.8rem;
        color: var(--primary);
        margin-bottom: 0.8rem;
    }

    .hero-title {
        font-family: var(--font-heading);
        font-size: 2.8rem;
        color: var(--white);
        margin-bottom: 1.2rem;
        line-height: 1.15;
        font-weight: 400;
    }

    .hero-lead {
        font-family: var(--font-body);
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2.5rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        text-align: center;
        border-radius: var(--radius-s);
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }

    .hero-buttons .btn:first-child {
        background: var(--white);
        color: var(--black);
        border-color: var(--white);
    }

    .hero-buttons .btn:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
    }

    /* Sections Mobile */
    .section-title-wrapper {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .section-accent {
        font-size: 1.8rem;
    }

    /* Showcase Mobile */
    .showcase-section {
        padding: 3rem 1rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 1rem;
    }

    .showcase-item.large {
        height: 350px;
    }

    .showcase-column {
        gap: 1rem;
    }

    .showcase-card {
        grid-template-columns: 1fr 1fr;
        min-height: 200px;
    }

    .showcase-card-content {
        padding: 1.2rem 1.5rem;
    }

    .showcase-card-image {
        min-height: 200px;
    }

    .showcase-card-title {
        font-size: 1.3rem;
    }

    /* Restructuration Mobile */
    .restructuration-section {
        padding: 3rem 1rem;
    }

    .restructuration-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 1rem;
    }

    .restructuration-card.large {
        height: 350px;
    }

    .restructuration-column {
        gap: 1rem;
    }

    .restructuration-card.small {
        grid-template-columns: 1fr 1fr;
        min-height: 180px;
    }

    .restructuration-card-content {
        padding: 1.2rem 1.5rem;
    }

    .restructuration-card-content .restructuration-card-title {
        font-size: 1.3rem;
    }

    /* Content Sections Mobile */
    .content-section {
        padding: 3rem 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .content-text {
        padding: 1rem 0;
        text-align: center;
    }

    .content-text .section-title-wrapper {
        text-align: center;
    }

    .content-text .separator {
        margin: 1rem auto;
    }

    .content-buttons {
        justify-content: center;
    }

    /* Tarifs Mobile */
    .tarifs-section {
        padding: 3rem 1rem;
    }

    .tarifs-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tarif-card {
        padding: 2rem;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.2rem;
    }

    /* Contact Mobile */
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-social {
        justify-content: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

    /* Footer Mobile */
    .footer {
        padding: 3rem 1rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}

/* ====================================
   RESPONSIVE - MOBILE SMALL (max 480px)
   ==================================== */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .header-container {
        padding: 0.6rem 0.8rem;
    }

    .logo-wrapper {
        width: 110px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .mobile-menu-toggle .bar {
        width: 22px;
    }

    .mobile-menu-list a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }

    .section-accent {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .showcase-item.large {
        height: 220px;
    }

    .showcase-card {
        grid-template-columns: 1fr 1fr;
        min-height: 160px;
    }

    .showcase-card-content {
        padding: 1rem;
    }

    .showcase-card-image {
        min-height: 160px;
    }

    .showcase-card-title {
        font-size: 1.1rem;
    }

    .showcase-card-subtitle {
        font-size: 0.55rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .tarif-card {
        padding: 1.5rem;
    }

    .tarif-title {
        font-size: 1.4rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ====================================
   RESPONSIVE - MOBILE EXTRA SMALL (max 360px)
   ==================================== */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .logo-wrapper {
        width: 100px;
    }

    .showcase-item.large,
    .showcase-item.small {
        height: 200px;
    }
}

/* ====================================
   Animations dynamiques
   ==================================== */

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes slideInBlur {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes lineExpand {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

/* Classes d'animation au scroll */
.anim-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-fade-down {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-fade-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-fade-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-blur {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* État visible */
.anim-fade-up.visible,
.anim-fade-down.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-scale.visible,
.anim-rotate.visible,
.anim-blur.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0);
    filter: blur(0);
}

/* Délais d'animation */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Animation du séparateur */
.anim-line {
    width: 0;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-line.visible {
    width: 60px;
}

/* Animation pour les sections entières */
.section-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation pour les cartes avec effet stagger */
.stagger-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* Animation du hero - déclenché au scroll */
.hero-content .hero-accent {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content .hero-title {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.hero-content .hero-lead {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.hero-content .hero-buttons {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

/* États visibles du hero */
.hero.visible .hero-content .hero-accent,
.hero.visible .hero-content .hero-title,
.hero.visible .hero-content .hero-lead {
    opacity: 1;
    transform: translateX(0);
}

.hero.visible .hero-content .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Animation hover améliorée pour les cartes */
.showcase-card,
.restructuration-card,
.tarif-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover,
.restructuration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.tarif-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Animation pour les boutons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Animation pour les images au hover */
.content-image img,
.page-content-image img,
.portfolio-item img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-image:hover img,
.page-content-image:hover img,
.portfolio-item:hover img {
    transform: scale(1.08);
}

/* Animation pour les FAQ */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

/* Animation pour le header au scroll */
.header {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Désactiver les animations pour les utilisateurs qui préfèrent */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .showcase-item:hover {
        transform: none;
    }

    .showcase-item:hover img {
        transform: none;
    }

    .btn-primary:hover {
        transform: none;
    }

    .tarif-card:hover {
        transform: none;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    .scroll-reveal,
    .fade-in,
    .slide-up,
    .slide-left,
    .slide-right,
    .zoom-in,
    .rotate-in,
    .blur-in {
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        transition: none !important;
    }

    .header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(12, 12, 13, 0.98);
    }

    .showcase-item img,
    .restructuration-card-image img {
        transition: none !important;
        transform: none !important;
    }

    .btn-primary,
    .btn-outline,
    .tarif-card,
    .faq-item {
        transition: none !important;
    }
}
