/* Template Moderne Bleu CSS 
 * Design contemporain avec palette bleue apaisante
 * Professionnel, confiance et technologie médicale
 */
:root {
    --bg-color: #f0f9ff;
    --light-bg: #e0f2fe;
    --lighter-bg: #dbeafe;
    --accent-bg: #bfdbfe;
    --border-color: #93c5fd;
    --shadow-sm: 0 2px 8px rgba(59, 130, 246, 0.08);
    --shadow-md: 0 8px 20px rgba(59, 130, 246, 0.12);
    --shadow-lg: 0 20px 40px rgba(59, 130, 246, 0.15);
    --shadow-xl: 0 25px 50px rgba(59, 130, 246, 0.2);
    --radius-sm: 0.625rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-2xl: 2.5rem;
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --gradient-secondary: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    --gradient-ocean: linear-gradient(180deg, #0369a1 0%, #075985 50%, #0c4a6e 100%);
    --gradient-light: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(2, 132, 199, 0.05) 100%);
    --gradient-wave: linear-gradient(135deg, #dbeafe 0%, #bae6fd 50%, #7dd3fc 100%);
    --cyan-50: #ecfeff;
    --cyan-100: #cffafe;
    --cyan-200: #a5f3fc;
    --cyan-300: #67e8f9;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --cyan-700: #0e7490;
    --cyan-800: #155e75;
    --cyan-900: #164e63;
    --primary-color: #0ea5e9;
    --secondary-color: #0284c7;
    --accent-color: #06b6d4;
    --text-color: #0c4a6e;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    padding-top: 90px; /* Même valeur que la hauteur du header */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 20% 50%, var(--blue-100) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--blue-50) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER & NAVIGATION */
.header {
    height: auto; /* Définir une hauteur fixe */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 var(--cyan-100), 0 4px 20px rgba(14, 165, 233, 0.08);
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    padding: 0;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-wave);
    opacity: 0.5;
    animation: waveFlow 5s ease-in-out infinite;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    transition: var(--transition-base);
}

.header.scrolled .nav {
    padding: 1.125rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.logo::before {
    content: '🌊';
    font-size: 1.25rem;
    animation: wave 2s ease-in-out infinite;
}

.logo:hover {
    transform: translateY(-1px) scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-menu .nav-link {
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    margin-left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) rotate(45deg);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    background: var(--gradient-ocean);
}

.cta-button:hover::before {
    left: 100%;
}

/* HERO SECTION */
.hero {
    margin-top: 50px;
    background: var(--gradient-ocean);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    box-shadow: inset 0 -80px 80px -40px rgba(0,0,0,0.1);
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseOcean 4s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: waves 10s ease-in-out infinite;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #1e40af;
    border: 2px solid white;
    font-weight: 600;
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* SPECIALTY BADGE */
.specialty-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* SECTIONS */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(to bottom, transparent, var(--light-bg), transparent);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 1400px;
    margin: 0 auto;
}

/* ABOUT SECTION ENHANCED */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.about-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e40af;
}

.about-text p {
    color: #64748b;
    line-height: 1.6;
}

/* SERVICES ENHANCED */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    border-image: linear-gradient(135deg, #3b82f6, #60a5fa) 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #3b82f6, #1e40af);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e40af;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* TEAM ENHANCED */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #3b82f6, #1e40af);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.team-photo {
    width: 150px;
    height: 150px;
    background: var(--light-bg);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #3b82f6;
    border: 4px solid #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.specialty-tag {
    background: #e6f2ff;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #b8d4f1;
}

/* HOURS SECTION */
.hours-section {
    background: linear-gradient(to bottom, var(--light-bg), var(--bg-color));
    padding: 3rem 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hours-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    gap: 1rem;
    border: 1px solid var(--border-color);
}

.hours-day {
    font-weight: 600;
    color: #1e40af;
    text-align: left;
}

.hours-time {
    color: #64748b;
    font-weight: 500;
    text-align: left;
    font-size: 0.9rem;
}

.hours-time.closed {
    color: #dc2626;
    font-style: italic;
}

/* CONTACT ENHANCED */
.contact-section {
    background: linear-gradient(to bottom, var(--bg-color), var(--light-bg));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e40af;
}

.contact-details p {
    color: #64748b;
    margin: 0;
}

/* FORMS */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e40af;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: #f0f7ff;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border: 1px solid var(--border-color);
}

/* GALLERY MODULE */
.module-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 2rem;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    opacity: 0.15;
}

/* GALLERY PREVIEW - About section */
.gallery-preview {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.gallery-preview .gallery-item {
    width: 100%;
    height: 100%;
    border-radius: 0;
    aspect-ratio: unset;
}

/* MAP MODULE */
.map-container {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    height: 300px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    opacity: 0.1;
}

/* FAQ MODULE */
.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    background: linear-gradient(to right, #f0f7ff, #e6f2ff);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(to right, #e6f2ff, #d1e3f8);
}

.faq-question h4 {
    font-weight: 600;
    color: #1e40af;
    margin: 0;
}

.faq-question i {
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    background: white;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section a {
    color: #dbeafe;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3b82f6;
    color: #93bbfe;
}

/* MENU HAMBURGER */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1e40af;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* RESPONSIVE */
@media (max-width: 1120px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;      /* empile verticalement */
    justify-content: center;     /* centre verticalement (facultatif ici) */
    align-items: center;         /* centre horizontalement chaque bouton */
    width: 100%;
    gap: 0.5rem;
  }

  .hero-buttons .cta-button,
  .hero-buttons .btn-secondary {
    display: block;              /* pour que margin:auto fonctionne */
    width: 100%;                 /* plein conteneur */
    max-width: 300px;            /* limite la largeur */
    margin: 0 auto;              /* centre le bloc */
    padding: 0.5rem 1rem;        /* compact */
    font-size: 0.9rem;           /* plus petit sur mobile */
    box-sizing: border-box;
  }
    .hours-grid {
        grid-template-columns: 1fr;
        max-width: 1400px;
    }

    .nav-menu.active {
        display: flex;
        left: 0;
    }
    .mobile-menu-toggle {
        display: block;
    }}

@media (max-width: 1120px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;      /* empile verticalement */
    justify-content: center;     /* centre verticalement (facultatif ici) */
    align-items: center;         /* centre horizontalement chaque bouton */
    width: 100%;
    gap: 0.5rem;
  }

  .hero-buttons .cta-button,
  .hero-buttons .btn-secondary {
    display: block;              /* pour que margin:auto fonctionne */
    width: 100%;                 /* plein conteneur */
    max-width: 300px;            /* limite la largeur */
    margin: 0 auto;              /* centre le bloc */
    padding: 0.5rem 1rem;        /* compact */
    font-size: 0.9rem;           /* plus petit sur mobile */
    box-sizing: border-box;
  }
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        background: linear-gradient(to bottom, #f0f7ff, #e6f2ff);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
        left: 0;
}

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.25rem 0;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 0.75rem;
        font-size: 1.1rem;
    }

    .cta-button {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .section {
        padding: 3rem 0;
    }

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

    .contact-content,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-item {
        grid-template-columns: 100px 1fr;
        padding: 0.875rem 1rem;
        gap: 1rem;
    }
    
    .hours-time {
        font-size: 1.25rem;
        white-space: normal;
        line-height: 1.4;
    }

    .container {
        padding: 0 15px;
    }
    
    .gallery-preview {
        height: 250px;
        margin-top: 2rem;
    }
}

/* ÉDITION INLINE */
[contenteditable="true"] {
    outline: 2px dashed transparent;
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 4px;
    cursor: text;
}

[contenteditable="true"]:hover {
    outline-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
}

[contenteditable="true"]:focus {
    outline-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
    outline-style: solid;
}

/* ANIMATIONS MODERNES BLEU */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatBlue {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% { 
        transform: translate(30px, -30px) rotate(120deg);
        opacity: 0.5;
    }
    66% { 
        transform: translate(-20px, 20px) rotate(240deg);
        opacity: 0.3;
    }
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

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

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

@keyframes blueGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
    }
}

/* Animations appliquées */
.section {
    animation: fadeInUp 0.6s ease-out;
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }

.about-item {
    animation: slideInLeft 0.6s ease-out backwards;
}

.about-item:nth-child(odd) {
    animation-name: slideInRight;
}

.service-card {
    animation: fadeInUp 0.5s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Hover avec animation */
.cta-button {
    margin-left: 20px;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Service Modal Styles */
@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Force desktop menu display */
@media (min-width: 1121px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        gap: 2rem;
        align-items: center;
    }
}


/* CSS pour FAQ interactives */
.faq-answer { display: none !important; }
.faq-answer.open { display: block !important; }
.faq-question { cursor: pointer !important; }
