/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #F8F5ED;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-circle {
    width: 50px;
    height: 50px;
    background: #9CAF88;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 8px;
    color: white;
    font-weight: 500;
}

.logo-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
}

.logo-text-top {
    position: absolute;
    top: 5px;
    font-size: 6px;
}

.logo-name {
    font-size: 8px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.logo-text-bottom {
    position: absolute;
    bottom: 5px;
    font-size: 6px;
}

.logo-branch {
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 8px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #9CAF88;
}

.nav-cta .btn-primary {
    background: #9CAF88;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-cta .btn-primary:hover {
    background: #8FA68E;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2C3E50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F8F5ED 0%, #E8F4F8 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(156, 175, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(156, 175, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(156, 175, 136, 0.08) 0%, transparent 70%),
        linear-gradient(45deg, transparent 30%, rgba(156, 175, 136, 0.05) 50%, transparent 70%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* sous l'overlay, au-dessus du fond */
    opacity: 0.6;
    filter: saturate(0.9) contrast(1.05);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%239CAF88" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%239CAF88" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%239CAF88" opacity="0.08"/><circle cx="10" cy="60" r="0.5" fill="%239CAF88" opacity="0.08"/><circle cx="90" cy="40" r="0.5" fill="%239CAF88" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 245, 237, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #5A6B5D;
    margin-bottom: 40px;
    font-weight: 1000;
}

.btn-primary {
    background: #9CAF88;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #8FA68E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(163, 177, 138, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.btn-secondary {
    background: transparent;
    color: #9CAF88;
    border: 2px solid #9CAF88;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #9CAF88;
    color: white;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #F8F5ED;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.creative-signature {
    margin-top: 50px;
    text-align: center;
    position: relative;
}


.signature-text {
    background: linear-gradient(135deg, #F8F5ED 0%, #E8F4F8 100%);
    padding: 30px 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #9CAF88;
    position: relative;
    width: 100%;
}

.signature-text::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #9CAF88;
}

.quote-start, .quote-end {
    font-size: 2.5rem;
    color: #9CAF88;
    font-family: 'Georgia', serif;
    font-weight: bold;
    line-height: 1;
}

.quote-start {
    margin-right: 10px;
}

.quote-end {
    margin-left: 10px;
}

.main-quote {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C3E50;
    font-style: italic;
    line-height: 1.4;
    letter-spacing: 0.5px;
}


.about-text h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: #5A6B5D;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8F4E0 0%, #DEF0D8 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 60px;
    font-weight: 600;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.specialty-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.specialty-card h3 {
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 15px;
    font-weight: 600;
    flex-shrink: 0;
}

.specialty-card p {
    color: #5A6B5D;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: flex-start; /* meilleur alignement lorsque l'icône est absente */
    overflow-wrap: anywhere; /* évite que le texte dépasse le cadre */
    word-break: break-word;  /* compatibilité supplémentaire */
    hyphens: auto;
}

/* Force les emails/URLs à se couper proprement sur mobile */
.break-email {
    word-break: break-all;
}

/* Ajustements spécifiques mobile pour éviter tout débordement */
@media (max-width: 480px) {
    .specialty-card p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .break-email {
        word-break: break-all;
    }
}

.specialty-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #F8F5ED;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 40px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-item i {
    color: #9CAF88;
    font-size: 1.2rem;
    margin-top: 5px;
    width: 20px;
}

.contact-item div {
    color: #5A6B5D;
    line-height: 1.6;
}

.contact-item strong {
    color: #2C3E50;
    font-weight: 600;
}

.map-placeholder {
    background: #E8F4F8;
    border-radius: 15px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #5A6B5D;
    border: 2px dashed #9CAF88;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #9CAF88;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #D0D8C8 0%, #C4D0C4 100%);
    color: #2C3E50;
    padding: 40px 0 20px;
    border-top: 1px solid #9CAF88;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #2C3E50;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #5A6B5D;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #9CAF88;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #9CAF88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: #8FA68E;
}

.footer-bottom {
    border-top: 1px solid #9CAF88;
    padding-top: 20px;
    text-align: center;
    color: #2C3E50;
    background: linear-gradient(135deg, #D0D8C8 0%, #C4D0C4 100%);
}

.footer-bottom a {
    color: #9CAF88;
    text-decoration: none;
}

/* Page Hero */
.page-hero {
    background: #F8F5ED;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.3rem;
    color: #5A6B5D;
    font-weight: 400;
}

/* Présentation Section */
.presentation-section {
    padding: 80px 0;
    background: #F8F5ED;
}

.presentation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.presentation-text h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 30px;
    font-weight: 600;
}

.presentation-text p {
    font-size: 1.1rem;
    color: #5A6B5D;
    margin-bottom: 25px;
    line-height: 1.8;
}

.engagement-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: none;
}

.engagement-box h3 {
    color: #2C3E50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.presentation-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Formations Section */
.formations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8F4E0 0%, #DEF0D8 100%);
}

.section-subtitle {
    text-align: center;
    color: #5A6B5D;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-style: italic;
}

/* Formations Categories */
.formations-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #9CAF88;
    border-radius: 2px;
}

.formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.formation-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: none;
    position: relative;
}

.formation-card.featured {
    border-top: none;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.formation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.formation-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.formation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.formation-icon {
    font-size: 3rem;
    margin-bottom: 0;
}

.formation-badge {
    background: #E8F4E0;
    color: #5A6B5D;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.formation-card h3 {
    font-size: 1.4rem;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: 600;
}

.formation-org {
    color: #5A6B5D;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.formation-card p {
    color: #5A6B5D;
    line-height: 1.7;
    margin-bottom: 15px;
}

.formation-approach,
.formation-objective {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: none;
}

.formation-approach strong,
.formation-objective strong {
    color: #2C3E50;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #9CAF88;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-buttons .btn-primary {
    background: white;
    color: #9CAF88;
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: #F8F5ED;
    color: #9CAF88;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #9CAF88;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.contact-info i {
    color: #9CAF88;
    font-size: 1.1rem;
}

/* Doctolib Widget */
.doctolib-widget {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.doctolib-widget a {
    transition: transform 0.3s, box-shadow 0.3s;
}

.doctolib-widget a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 150, 222, 0.3);
}

/* Info Note for Doctolib */
.info-note {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.info-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px 0;
    font-size: 0.95rem;
}

.info-note p:last-child {
    margin-bottom: 0;
}

.info-note strong {
    color: white;
    font-weight: 600;
}

/* Pricing tables (Consultations) */
.pricing-section {
    padding: 60px 0;
    background: #F8F5ED;
}

.pricing-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #C9D3C8;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    margin-bottom: 30px;
}

.pricing-header {
    background: #EDEFE8;
    font-weight: 600;
}

.pricing-cell {
    padding: 20px 24px;
    color: #2C3E50;
    border-right: 1px solid #C9D3C8;
    border-bottom: 1px solid #C9D3C8;
}

.pricing-table .pricing-cell:nth-child(2n) {
    border-right: none;
}

.cta-section .info-note {
    background: #F8F5ED !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 12px !important;
    padding: 20px 24px !important;
}

.cta-section .info-note p {
    color: #2C3E50 !important;
}

.cta-section .info-note strong {
    color: #9CAF88 !important;
}

/* Navigation active state */
.nav-link.active {
    color: #9CAF88;
    font-weight: 600;
}

/* Navigation Mobile */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    gap: 15px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2C3E50;
    transition: 0.3s;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-image img {
        max-width: 250px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .specialty-card {
        padding: 30px 20px;
    }

    /* La 5ème carte (Intervention...) reprend 100% de la largeur en mobile */
    .specialty-card:nth-child(5) {
        max-width: 100%;
        grid-column: auto;
        margin: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .presentation-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .formations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .formation-card {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .pricing-cell {
        border-right: none;
        border-bottom: 1px solid #C9D3C8;
    }
    
    .pricing-table .pricing-cell:last-child {
        border-bottom: none;
    }
    
    .consultations-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .consultations-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-card.featured {
        transform: none;
    }
    
    .consultation-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .tool-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tool-features {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .contact h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .specialty-card {
        padding: 25px 15px;
    }
    
    .formation-card {
        padding: 25px 15px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Consultations Hero */
.consultations-hero {
    background: linear-gradient(135deg, #F8F5ED 0%, #E8F4F8 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.consultations-hero h1 {
    font-size: 3.5rem;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Horaires Section */
.horaires-section {
    padding: 80px 0;
    background-color: #F8F5ED;
}

.horaires-table {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 40px auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.horaire-jour {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.horaire-jour:last-child {
    border-bottom: none;
}

.jour-nom {
    width: 30%;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #9CAF88;
    display: flex;
    align-items: center;
}

.jour-heures {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    align-items: center;
}

.plage-horaire {
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 500;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.plage-horaire.matin {
    background: linear-gradient(135deg, #9CAF88 0%, #7D9267 100%);
    color: white;
}

.plage-horaire.aprem {
    background: linear-gradient(135deg, #E8D9B5 0%, #D4C28F 100%);
    color: #2C3E50;
}

@media (max-width: 768px) {
    .horaire-jour {
        flex-direction: column;
    }
    
    .jour-nom, .jour-heures {
        width: 100%;
        padding: 10px 15px;
    }
    
    .jour-nom {
        border-bottom: 1px dashed #f0f0f0;
    }
}

.consultations-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #5A6B5D;
    margin-bottom: 50px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #9CAF88;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #5A6B5D;
    font-weight: 500;
}

/* Consultations Section */
.consultations-section {
    padding: 80px 0;
    background: #F8F5ED;
}

.consultations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.consultation-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
}

.consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.consultation-card.featured {
    border: 2px solid #9CAF88;
    transform: scale(1.05);
}

.consultation-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, #9CAF88 0%, #8FA68E 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2C3E50;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 30px;
}

.duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9CAF88;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-description {
    color: #5A6B5D;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #5A6B5D;
}

.features-list i {
    color: #9CAF88;
    font-size: 0.9rem;
}

/* Tool Section */
.tool-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8F4E0 0%, #DEF0D8 100%);
}

.tool-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.tool-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.tool-text h3 {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 15px;
    font-weight: 600;
}

.tool-text p {
    color: #5A6B5D;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
}

.tool-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5A6B5D;
}

.tool-features i {
    color: #9CAF88;
    font-size: 1rem;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: #F8F5ED;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-3px);
}

/* Quand les icônes sont absentes, on évite l'espace vide par défaut */
.info-icon { display: none; }

/* Réactiver les icônes uniquement dans la section Informations pratiques */
.info-section .info-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-card h3 {
    margin-top: 0;
}

.info-card p {
    margin-top: 10px;
}

.info-card h3 {
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: #5A6B5D;
    line-height: 1.6;
}

/* Améliorations pour tablettes */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .formations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consultations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Bloc infos d’accès repliable */
.access-info { margin-top: 6px; }
.access-info summary { cursor: pointer; color: #555; font-weight: 500; }
.access-info ul { margin: 6px 0 0; padding-left: 18px; color: #666; }
/* Ligne concise infos d’accès */
.access-inline { display: block; margin-top: 6px; color: #666; font-size: 0.95rem; }
