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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #0d9488 0%, #1e40af 100%);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.header-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-cta {
    margin-top: 2rem;
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #0d9488;
    color: white;
}

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

.btn-phone {
    background-color: #0d9488;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-phone:hover {
    background-color: #0f766e;
}

/* Navigation sticky */
.nav-sticky {
    position: sticky;
    top: 0;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: #0d9488;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0f766e;
}

/* Main content */
.main {
    padding: 3rem 0;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Introduction */
.intro-section {
    margin-bottom: 4rem;
}

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

.intro-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    border-radius: 1rem;
}

/* Section Cabinet */
.cabinet-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #dbeafe 100%);
    border-radius: 2rem;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
}

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

.cabinet-image {
    position: relative;
}

.cabinet-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1f2937;
}

.image-badge i {
    color: #0d9488;
}

.cabinet-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.cabinet-info > p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature i {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.feature p {
    color: #6b7280;
}

/* Zones de traitement */
.zones-section {
    margin-bottom: 4rem;
}

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

.zones-hero img {
    width: 100%;
    max-width: 64rem;
    height: 16rem;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.zone-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.zone-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.zone-image {
    margin-bottom: 1rem;
}

.zone-image img {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.zone-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d9488;
    margin-bottom: 0.75rem;
}

.zone-card > p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.benefits {
    list-style: none;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.benefits i {
    color: #10b981;
    flex-shrink: 0;
}

/* Bienfaits */
.bienfaits-section {
    margin-bottom: 4rem;
}

.bienfaits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bienfaits-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d9488;
    margin-bottom: 1.5rem;
}

.bienfaits-image {
    margin-bottom: 1.5rem;
}

.bienfaits-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bienfaits-list {
    list-style: none;
}

.bienfaits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bienfaits-list i {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.technique-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 2rem;
    padding: 2rem;
}

.technique-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.technique-image {
    margin-bottom: 1rem;
}

.technique-image img {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.technique-card p {
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Témoignages */
.temoignages-section {
    margin-bottom: 4rem;
}

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

.temoignages-hero img {
    width: 100%;
    max-width: 48rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.temoignage-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0d9488;
    padding: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star-filled {
    color: #fbbf24;
    fill: currentColor;
}

.temoignage-card p {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1rem;
}

.author strong {
    color: #1f2937;
    font-weight: 600;
}

.author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Remboursement */
.remboursement-section {
    background-color: #eff6ff;
    border-radius: 2rem;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
}

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

.remboursement-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.remboursement-image {
    margin-bottom: 1rem;
}

.remboursement-image img {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.remboursement-content p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.tarifs-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.tarifs-list {
    list-style: none;
    margin-bottom: 1rem;
}

.tarifs-list li {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.tarifs-note {
    font-size: 0.875rem;
    color: #6b7280;
}

/* FAQ */
.faq-section {
    margin-bottom: 4rem;
}

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

.faq-hero img {
    width: 100%;
    max-width: 32rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-list {
    max-width: 4xl;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0d9488;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.7;
}

/* Contact */
.contact-section {
    background: linear-gradient(135deg, #0d9488 0%, #1e40af 100%);
    border-radius: 2rem;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-hero {
    margin-bottom: 2rem;
}

.contact-hero img {
    width: 100%;
    max-width: 32rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 1rem;
    margin: 0 auto;
}

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

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

.contact-item i {
    margin-bottom: 0.75rem;
}

.contact-item h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

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

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.contact-buttons .btn-secondary:hover {
    background: white;
    color: #0d9488;
}

.contact-zone {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Contact Map */
.contact-map {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-map iframe {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .header-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .contact-map iframe {
        width: 100%;
        height: 300px;
    }
    
    .intro-grid,
    .cabinet-content,
    .bienfaits-grid,
    .remboursement-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .zones-grid {
        grid-template-columns: 1fr;
    }
    
    .temoignages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cabinet-section,
    .remboursement-section,
    .contact-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .zones-grid {
        grid-template-columns: 1fr;
    }
    
    .zone-card,
    .temoignage-card,
    .faq-item {
        padding: 1rem;
    }
}