/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #fefefe;
    -webkit-overflow-scrolling: touch;
}

/* Éviter les problèmes de zoom sur iOS */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    font-size: 16px !important;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(248, 200, 220, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    flex-wrap: nowrap;
    width: 100%;
}

.logo-container {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.logo-svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h2 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
}

.logo-text span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
    display: block;
    line-height: 1.1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
    margin-left: auto;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #e8a4c8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8a4c8;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 1001;
    transition: all 0.3s ease;
    margin-left: auto;
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: #333;
    margin: 2.5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animation du menu hamburger */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Amélioration de la navbar au scroll */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Styles pour la navigation au clavier */
.keyboard-navigation *:focus {
    outline: 2px solid #e8a4c8 !important;
    outline-offset: 2px !important;
}

/* Amélioration des cartes cliquables */
.osteopathy-card[onclick] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.osteopathy-card[onclick]:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(232, 164, 200, 0.2);
}


/* Préchargement des images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Effet hover pour le hamburger */
.hamburger:hover span {
    background: #e8a4c8;
}

/* Section Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fefefe 0%, #f8c8dc 20%, #f0d4e0 100%);
    padding-top: 80px;
}

/* Optimisation de la section hero */
@media (min-width: 1200px) {
    .hero {
        flex-direction: row;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        min-height: 90vh;
    }
}

.hero-content {
    flex: 1;
    padding: 2rem;
}

/* Optimisation du contenu hero */
@media (min-width: 1200px) {
    .hero-content {
        padding: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-content {
        padding: 1rem;
        order: 2;
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Optimisation des titres hero */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
}

.hero h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 1rem;
}

/* Optimisation des sous-titres hero */
@media (min-width: 1200px) {
    .hero h2 {
        font-size: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Optimisation du paragraphe hero */
@media (min-width: 1200px) {
    .hero p {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

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

/* Optimisation des boutons hero */
@media (min-width: 1200px) {
    .hero-buttons {
        justify-content: flex-start;
        flex-direction: row;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Optimisation des boutons */
@media (min-width: 1200px) {
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 1rem;
    }
}

.btn-primary {
    background: #e8a4c8;
    color: white;
}

/* Optimisation des boutons primaires */
@media (min-width: 1200px) {
    .btn-primary {
        background: #e8a4c8;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .btn-primary {
        background: #e8a4c8;
    }
}

.btn-primary:hover {
    background: #d48fb8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232, 164, 200, 0.3);
}

/* Optimisation des effets hover des boutons primaires */
@media (min-width: 1200px) {
    .btn-primary:hover {
        background: #d48fb8;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(232, 164, 200, 0.3);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .btn-primary:hover {
        background: #d48fb8;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(232, 164, 200, 0.3);
    }
}

.btn-secondary {
    background: transparent;
    color: #e8a4c8;
    border: 2px solid #e8a4c8;
}

/* Optimisation des boutons secondaires */
@media (min-width: 1200px) {
    .btn-secondary {
        background: transparent;
        color: #e8a4c8;
        border: 2px solid #e8a4c8;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .btn-secondary {
        background: rgba(255, 255, 255, 0.9);
        color: #d48fb8;
        border: 2px solid #d48fb8;
        font-weight: 600;
        box-shadow: 0 2px 10px rgba(212, 143, 184, 0.3);
    }
}

.btn-secondary:hover {
    background: #e8a4c8;
    color: white;
    transform: translateY(-2px);
}

/* Optimisation des effets hover des boutons secondaires */
@media (min-width: 1200px) {
    .btn-secondary:hover {
        background: #e8a4c8;
        color: white;
        transform: translateY(-2px);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .btn-secondary:hover {
        background: #e8a4c8;
        color: white;
        transform: translateY(-2px);
    }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Optimisation de l'image hero */
@media (min-width: 1200px) {
    .hero-image {
        padding: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-image {
        padding: 1rem;
        order: 1;
    }
}

/* Optimisation de l'image hero */
@media (min-width: 1200px) {
    .hero-image {
        padding: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-image {
        padding: 1rem;
        order: 1;
    }
}

.hero-logo {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    position: relative;
}

/* Optimisation du logo hero */
@media (min-width: 1200px) {
    .hero-logo {
        width: 300px;
        height: 300px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-logo {
        width: 250px;
        height: 250px;
    }
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(248, 200, 220, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Optimisation du SVG hero */
@media (min-width: 1200px) {
    .hero-logo-svg {
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-logo-svg {
        width: 100%;
        height: 100%;
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f8c8dc, #e8a4c8);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Section À propos */
.about {
    padding: 6rem 0;
    background: white;
}

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

/* Optimisation de la section à propos */
@media (min-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}

.credentials {
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.credential i {
    color: #e8a4c8;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(232, 164, 200, 0.3);
    border: 4px solid #f8c8dc;
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

.about-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(232, 164, 200, 0.4);
    border-color: #e8a4c8;
}

/* Optimisation des images */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

img[fetchpriority="high"] {
    will-change: transform;
}

/* Section Ostéopathie */
.osteopathy {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8c8dc 50%, #f0d4e0 100%);
}

.osteopathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* Amélioration des grilles pour différentes tailles d'écran */
@media (min-width: 1200px) {
    .osteopathy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .osteopathy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.osteopathy-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.osteopathy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(232, 164, 200, 0.2);
    border: 2px solid #f8c8dc;
    text-decoration: none;
    color: inherit;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8a4c8, #f0d4e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.osteopathy-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.osteopathy-card p {
    color: #666;
    line-height: 1.6;
}

.osteopathy-card h3,
.osteopathy-card p,
.osteopathy-card .card-icon,
.osteopathy-card .card-hover {
    text-decoration: none;
}

.card-link {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #e8a4c8, #f0d4e0);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(232, 164, 200, 0.3);
}

.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 164, 200, 0.4);
    background: linear-gradient(135deg, #d894b8, #e8c4d0);
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(3px);
}

/* Styles pour les cartes cliquables */
.osteopathy-card[onclick] {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.osteopathy-card[onclick]:hover .card-hover {
    opacity: 1;
    transform: translateY(0);
}

.card-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(232, 164, 200, 0.9) 0%, rgba(248, 200, 220, 0.9) 100%);
    color: white;
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    border-radius: 0 0 15px 15px;
}

.card-hover span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Section Expérience */
.experience {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8c8dc 30%, #f0d4e0 100%);
}

.experience-content {
    margin-top: 2rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: start;
}

/* Optimisation de la grille d'expérience */
@media (min-width: 1200px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.experience-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(232, 164, 200, 0.15);
    border: 2px solid #f8c8dc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(232, 164, 200, 0.25);
    border-color: #e8a4c8;
}

.experience-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8a4c8, #f0d4e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.experience-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.experience-card ul {
    list-style: none;
    padding: 0;
}

.experience-card li {
    color: #666;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.experience-card li::before {
    content: '•';
    color: #e8a4c8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

    .experience-card strong {
        color: #333;
        font-weight: 600;
    }


    /* Section Consultation */
    .consultation {
        padding: 6rem 0;
        background: white;
    }

.consultation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

/* Optimisation des étapes de consultation */
@media (min-width: 1200px) {
    .consultation-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .consultation-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e8a4c8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #333;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
}

.consultation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* Optimisation des cartes d'information de consultation */
@media (min-width: 1200px) {
    .consultation-info {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .consultation-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.info-card {
    background: #fefefe;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #e8a4c8;
}

.info-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #666;
    font-weight: 500;
}

/* Section Contact */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8c8dc 30%, #f0d4e0 100%);
}

.useful-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(232, 164, 200, 0.15);
    border: 2px solid #f8c8dc;
}

.useful-info h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.useful-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f8c8dc, #e8a4c8);
    border-radius: 1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* Optimisation des grilles d'information */
@media (min-width: 1200px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fefefe;
    border-radius: 12px;
    border-left: 4px solid #e8a4c8;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 164, 200, 0.2);
    border-left-color: #f8c8dc;
}

.info-item i {
    color: #e8a4c8;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-item strong {
    color: #333;
    font-weight: 600;
}

.info-item a {
    color: #e8a4c8;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Styles pour les pages spécialisées */
.content-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.content-section .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.content-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #e8a4c8 0%, #f8c8dc 100%);
    border-radius: 2px;
}

.content-section .section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

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

.content-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #e8a4c8;
    position: relative;
    overflow: hidden;
}

.content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #e8a4c8 0%, #f8c8dc 100%);
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.content-item {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.content-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-item:hover::after {
    opacity: 1;
}

.content-item h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.content-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #e8a4c8;
    border-radius: 1px;
}

.content-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.content-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8a4c8 0%, #f8c8dc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(232, 164, 200, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.content-item:hover .content-icon::before {
    left: 100%;
}

.content-item:hover .content-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(232, 164, 200, 0.4);
}

.content-header h3 {
    margin-bottom: 0;
    flex: 1;
}

.content-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-item ul, .content-item ol {
    padding-left: 1.5rem;
}

.content-item li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.content-item li::before {
    content: '•';
    color: #e8a4c8;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    transition: all 0.3s ease;
}

.content-item:hover li::before {
    color: #d17ba8;
    transform: scale(1.2);
}

.content-item ol {
    counter-reset: item;
}

.content-item ol li {
    counter-increment: item;
    position: relative;
    padding-left: 2rem;
}

.content-item ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #e8a4c8 0%, #f8c8dc 100%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(232, 164, 200, 0.3);
}

.content-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.content-item a {
    color: #e8a4c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-item a:hover {
    color: #d17ba8;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-item strong {
    background: linear-gradient(135deg, #e8a4c8 0%, #f8c8dc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #e8a4c8 0%, #f8c8dc 100%);
    padding: 3rem;
    border-radius: 25px;
    color: white;
    margin-top: 2rem;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    background: white;
    color: #e8a4c8;
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-section h3,
.cta-section p,
.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* Responsive pour les pages spécialisées */
@media (max-width: 768px) {
    .content-section {
        padding: 2rem 0;
    }
    
    .content-section .section-header h2 {
        font-size: 2rem;
    }
    
    .content-section .section-header p {
        font-size: 1.1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .content-item {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .content-item h3 {
        font-size: 1.3rem;
    }
    
    .content-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .content-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
        border-radius: 20px;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .content-item {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .content-item h3 {
        font-size: 1.2rem;
    }
    
    .content-header {
        gap: 0.5rem;
    }
    
    .content-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 1.5rem 1rem;
    }
    
    .cta-section h3 {
        font-size: 1.4rem;
    }
    
    .cta-section .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #e8a4c8 0%, #f8c8dc 100%);
    color: #333;
    padding: 3rem 0 1rem;
}

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

/* Optimisation du footer */
@media (min-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.footer-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-logo-img:hover {
    transform: scale(1.1);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(51, 51, 51, 0.2);
    color: rgba(51, 51, 51, 0.8);
}

/* Responsive Design */

/* iPad et tablettes (768px à 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container { 
        padding: 0 30px; 
    }
    
    /* Navigation iPad - Menu burger visible */
    .hamburger {
        display: flex;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        margin-left: auto;
    }
    
    .hamburger:hover {
        background-color: rgba(232, 164, 200, 0.1);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 200, 220, 0.95) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        z-index: 999;
        border-top: 1px solid rgba(232, 164, 200, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.5s ease forwards;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu li:nth-child(7) { animation-delay: 0.4s; }
    
    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        padding: 1rem 2rem;
        display: block;
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.2;
        margin: 0.5rem 1rem;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 12px;
        position: relative;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(232, 164, 200, 0.1) 0%, rgba(248, 200, 220, 0.1) 100%);
        border-radius: 12px;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .nav-link:hover::before,
    .nav-link:active::before {
        opacity: 1;
    }
    
    .nav-link:hover {
        color: #e8a4c8;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(232, 164, 200, 0.2);
    }
    
    .nav-link:active {
        transform: translateY(0);
        background: linear-gradient(135deg, rgba(232, 164, 200, 0.2) 0%, rgba(248, 200, 220, 0.2) 100%);
    }
    
    /* Hero section iPad */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 1rem;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    /* Grilles adaptées pour iPad */
    .osteopathy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .consultation-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .info-contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .localisation-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .localisation-video {
        grid-column: 1 / -1;
        order: 3;
    }
    
    /* Content grid pour les pages spécialisées */
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Footer iPad */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop et écrans larges (1025px et plus) */
@media (min-width: 1025px) {
    .container { padding: 0 30px; }
    .hero h1 { font-size: 3rem; }
    .hero h2 { font-size: 1.8rem; }
    .osteopathy-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
    .experience-grid { grid-template-columns: 1fr; gap: 2rem; }
    .consultation-steps { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .consultation-info { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
    .info-contact-content { grid-template-columns: 1fr; gap: 3rem; }
    .localisation-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .localisation-video { grid-column: 1 / -1; order: 3; }
}

/* Tablettes et mobiles (768px et moins) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .hamburger:hover {
        background-color: rgba(232, 164, 200, 0.1);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 200, 220, 0.95) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        z-index: 999;
        border-top: 1px solid rgba(232, 164, 200, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.5s ease forwards;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu li:nth-child(7) { animation-delay: 0.4s; }
    
    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        padding: 1rem 2rem;
        display: block;
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.2;
        margin: 0.5rem 1rem;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 12px;
        position: relative;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(232, 164, 200, 0.1) 0%, rgba(248, 200, 220, 0.1) 100%);
        border-radius: 12px;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .nav-link:hover::before,
    .nav-link:active::before {
        opacity: 1;
    }
    
    .nav-link:hover {
        color: #e8a4c8;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(232, 164, 200, 0.2);
    }
    
    .nav-link:active {
        transform: translateY(0);
        background: linear-gradient(135deg, rgba(232, 164, 200, 0.2) 0%, rgba(248, 200, 220, 0.2) 100%);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 1rem;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .osteopathy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .consultation-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .consultation-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Amélioration des cartes */
    .osteopathy-card,
    .experience-card,
    .info-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .experience-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Formulaire de contact */
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobiles (480px et moins) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 85vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 250px;
        min-height: 48px;
    }
    
    /* Amélioration supplémentaire pour les très petits écrans */
    .btn-secondary {
        background: #ffffff !important;
        color: #b85a8a !important;
        border: 3px solid #b85a8a !important;
        font-weight: 800 !important;
        box-shadow: 0 5px 20px rgba(184, 90, 138, 0.5) !important;
        text-shadow: none !important;
        font-size: 0.95rem !important;
    }
    
    .btn-secondary:hover {
        background: #b85a8a !important;
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 7px 25px rgba(184, 90, 138, 0.6) !important;
    }
    
    .btn-secondary:active {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(184, 90, 138, 0.7) !important;
    }
    
    .hero-logo {
        width: 180px;
        height: 180px;
    }
    
    .logo-container {
        width: 35px;
        height: 35px;
    }
    
    .logo-text h2 {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 0.9rem; /* Taille minimale pour la lisibilité */
    }
    
    .about-photo {
        width: 200px;
        height: 200px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Cartes plus compactes */
    .osteopathy-card,
    .experience-card,
    .info-card {
        padding: 1.2rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .experience-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .osteopathy-card h3 {
        font-size: 1.1rem;
    }
    
    .osteopathy-card p {
        font-size: 0.9rem;
    }
    
    .card-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }
    
    /* Formulaire */
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
    
    .form-group button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Navigation optimisée pour iPhone */
    .navbar {
        padding: 0.4rem 0;
    }
    
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
        padding: 1.5rem 0;
    }
    
    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.3rem 0.8rem;
        min-height: 44px;
    }
    
    /* Hamburger menu optimisé */
    .hamburger {
        padding: 0.4rem;
        border-radius: 6px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2.5px;
        margin: 2px 0;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}

/* Très petits écrans (320px et moins) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .hero-logo {
        width: 150px;
        height: 150px;
    }
    
    .about-photo {
        width: 180px;
        height: 180px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .osteopathy-card,
    .experience-card,
    .info-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem 0.8rem;
    }
    
    .card-link {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-top: 0.8rem;
    }
    
    /* Menu mobile ultra-optimisé pour très petits écrans */
    .navbar {
        padding: 0.3rem 0;
    }
    
    .nav-menu {
        top: 55px;
        max-height: calc(100vh - 55px);
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.5rem;
        min-height: 40px;
    }
    
    .hamburger {
        padding: 0.3rem;
        border-radius: 4px;
    }
    
    .hamburger span {
        width: 18px;
        height: 2px;
        margin: 1.5px 0;
    }
    
    /* Logo plus petit */
    .nav-content {
        gap: 0.6rem;
    }
    
    .nav-logo {
        gap: 0.6rem;
    }
    
    .logo-container {
        width: 30px;
        height: 30px;
    }
    
    .logo-text h2 {
        font-size: 0.9rem;
    }
    
    .logo-text span {
        font-size: 0.9rem; /* Taille minimale pour la lisibilité */
    }
    
    .nav-logo .logo-text {
        font-size: 0.9rem;
    }
}

/* Styles pour les liens internes */
.related-services {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(248, 200, 220, 0.1);
    border-radius: 15px;
    text-align: center;
}

.related-services h3 {
    color: #d48fb8;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.services-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.service-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f8c8dc 0%, #f0d4e0 100%);
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-link:hover {
    background: linear-gradient(135deg, #d48fb8 0%, #e8a4c8 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 143, 184, 0.3);
    border-color: #d48fb8;
}

/* Responsive pour les liens internes */
@media (max-width: 768px) {
    .services-links {
        flex-direction: column;
        align-items: center;
    }
    
    .service-link {
        width: 100%;
        max-width: 300px;
    }
}







