/* Variables CSS */
:root {
    --primary-blue: #2563eb;
    --primary-green: #047857;
    --secondary-green: #047857;
    --light-blue: #dbeafe;
    --light-green: #d1fae5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
    --gradient-card: linear-gradient(145deg, var(--white) 0%, #f8fafc 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 50%, var(--primary-green) 100%);
}

/* Enhanced Base Typography */
body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111827;
    margin: 0;
    padding: 0;
    font-size: 16px;
    letter-spacing: 0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 2.5rem 0;
    letter-spacing: -0.025em;
    color: #111827;
    word-spacing: 0.05em;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2.5rem;
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 1.75rem;
}

h4 {
    font-size: clamp(1.375rem, 2.75vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

p {
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    color: #374151;
    font-size: clamp(1.0625rem, 2.25vw, 1.1875rem);
    max-width: 66ch;
    word-spacing: 0.025em;
}

.text-large {
    font-size: clamp(1.25rem, 2.75vw, 1.5rem);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 60ch;
}

.text-small {
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--primary-green);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

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

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    p {
        margin-bottom: 1.75rem;
    }
    
    h1, h2, h3, h4 {
        margin-bottom: 1.5rem;
    }
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, var(--light-blue), rgba(37, 99, 235, 0.1));
    color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.hero-content {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: fit-content;
}

.hero-content h1 {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-content .text-large {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 580px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 3.5rem 0;
    padding: 2.5rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: clamp(2.25rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 1);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
}

.doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 4px solid var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: block;
}

.doctor-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.doctor-title {
    font-size: 1.125rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 2rem;
}

.doctor-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.75rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
}

.credential i {
    color: var(--primary-green);
    font-size: 1.25rem;
    width: 32px;
    text-align: center;
    margin-top: 0.125rem;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.hero-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 0.75rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #0d7377);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-doctissimo {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-doctissimo:hover {
    background: linear-gradient(135deg, #f7931e, #e8890b);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Sections */
section {
    padding: 5rem 0;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Services Detail */
.services-detail {
    padding: 5rem 0;
    background: var(--gray-50);
}

.service-detail-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-100);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.service-icon-large.pediatrie {
    background: var(--light-green);
}

.service-icon-large.pediatrie i {
    color: var(--primary-green);
}

.service-icon-large.vaccination {
    background: #fef3c7;
}

.service-icon-large.vaccination i {
    color: #d97706;
}

.service-icon-large.prevention {
    background: #fce7f3;
}

.service-icon-large.prevention i {
    color: #be185d;
}

.service-icon-large.soins {
    background: #f3e8ff;
}

.service-icon-large.soins i {
    color: #7c3aed;
}

.service-info h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    margin: 0;
}

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

.service-description h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-description li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--text-light);
}

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

.service-description li i {
    color: var(--primary-green);
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

.service-details {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

/* Horaires */
.horaires {
    background: var(--white);
}

.horaires h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--text-dark);
}

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

.horaire-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.horaire-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.horaire-card.urgence {
    border-color: #ef4444;
    background: #fef2f2;
}

.jour {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.heure {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Hero Badge & Stats */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-green);
    color: var(--secondary-green);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Doctor Info */
.doctor-info {
    text-align: left;
}

.doctor-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.doctor-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.credential {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
}

.credential i {
    color: var(--primary-blue);
    width: 16px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.credential span {
    flex: 1;
    padding-left: 0.25rem;
    word-wrap: break-word;
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.section-header p {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.services-preview {
    background: var(--white);
    padding: 5rem 0;
}

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

.service-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.02), rgba(52, 211, 153, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    top: -40px;
    margin-top: -40px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.2);
    border: 4px solid var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.3);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary-blue);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-icon.pediatrie {
    background: var(--light-green);
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.2);
}

.service-icon.pediatrie i {
    color: var(--primary-green);
}

.service-icon.vaccination {
    background: #fef3c7;
}

.service-icon.vaccination i {
    color: #d97706;
}

.service-icon.prevention {
    background: #fce7f3;
}

.service-icon.prevention i {
    color: #be185d;
}

.service-content h3 {
    color: #111827;
    margin-bottom: 2rem;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-content p {
    color: #374151;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-100);
}

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

.service-features i {
    color: var(--primary-green);
    font-size: 1rem;
    width: 18px;
    flex-shrink: 0;
}

.service-price {
    background: linear-gradient(135deg, var(--light-green), rgba(52, 211, 153, 0.1));
    color: var(--primary-green);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-top: auto;
    border: 1px solid rgba(52, 211, 153, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-price {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 211, 153, 0.2);
}

.services-cta {
    text-align: center;
}

/* Équipements Médicaux */
.equipements-medicaux {
    background: var(--gray-50);
    padding: 5rem 0;
}

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

.equipement-card {
    background: var(--gradient-card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.equipement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.equipement-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.equipement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipement-card:hover .equipement-image img {
    transform: scale(1.05);
}

.equipement-info {
    padding: 1.5rem;
}

.equipement-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.equipement-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.equipement-badge {
    background: var(--light-green);
    color: var(--secondary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

/* Garanties Qualité */
.garanties-qualite {
    background: var(--gray-50);
    padding: 5rem 0;
}

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

.garantie-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.garantie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
}

.garantie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.garantie-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.garantie-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.garantie-card:nth-child(2) .garantie-icon {
    background: var(--light-green);
}

.garantie-card:nth-child(2) .garantie-icon i {
    color: var(--primary-green);
}

.garantie-card:nth-child(3) .garantie-icon {
    background: #fef3c7;
}

.garantie-card:nth-child(3) .garantie-icon i {
    color: #d97706;
}

.garantie-card:nth-child(4) .garantie-icon {
    background: #fce7f3;
}

.garantie-card:nth-child(4) .garantie-icon i {
    color: #be185d;
}

.garantie-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.garantie-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.garantie-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.garantie-details span {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

/* Infos Pratiques Enhanced */
.infos-pratiques {
    background: var(--white);
    padding: 5rem 0;
}

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

.info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 2rem;
    align-items: center;
}

.info-card.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.15);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0.5rem 0;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.info-features span {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-features i {
    color: var(--primary-green);
    width: 16px;
}

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

.info-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.info-card:hover .info-image {
    opacity: 1;
}

/* RDV Section */
.rdv-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.rdv-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.rdv-info {
    position: sticky;
    top: 2rem;
}

.rdv-info h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.info-header i {
    color: var(--primary-blue);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.info-header h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
}

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

.info-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--gray-100);
}

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

.info-card li strong {
    color: var(--text-dark);
}

.note {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-phone {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    text-decoration: none;
}

.btn-phone:hover {
    background: #1d4ed8;
}

.rdv-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.rdv-form h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1rem;
}

.form-note {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-note i {
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Urgences Section */
.urgences-section {
    background: #fef2f2;
    padding: 3rem 0;
}

.urgences-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    border-left: 4px solid #dc2626;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.urgences-icon {
    width: 80px;
    height: 80px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urgences-icon i {
    font-size: 2rem;
    color: #dc2626;
}

.urgences-content h3 {
    color: #111827;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.urgences-content p {
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.btn-emergency {
    background: #dc2626;
    color: var(--white);
    border: none;
    text-decoration: none;
}

.btn-emergency:hover {
    background: #b91c1c;
}

.btn-urgent {
    background: #f59e0b;
    color: var(--white);
    border: none;
    text-decoration: none;
}

.btn-urgent:hover {
    background: #d97706;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category {
    background: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-category:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.faq-category.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

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

.faq-item {
    background: var(--white);
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

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

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

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--text-dark);
}

/* FAQ CTA */
.faq-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.faq-cta .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-cta .cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.contact-info h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.contact-icon.whatsapp {
    background: var(--light-green);
}

.contact-icon.whatsapp i {
    color: var(--primary-green);
}

.contact-details h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue) !important;
    margin-bottom: 0.5rem !important;
}

.phone-note, .email-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.horaires-detail {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.horaires-detail h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.horaires-detail h3 i {
    color: var(--primary-blue);
}

.horaires-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.horaire-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.horaire-item.fermé {
    opacity: 0.6;
}

.jour {
    font-weight: 600;
    color: var(--text-dark);
}

.heure {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    height: fit-content;
}

.contact-form h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--white);
}

.map-section h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.map-info h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.map-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.map-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--gray-100);
}

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

.map-info li i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

.map-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.map-embed {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Urgences Banner */
.urgences-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: var(--white);
    padding: 2rem 0;
}

.urgences-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.urgences-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urgences-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.urgences-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.urgences-text p {
    opacity: 0.9;
    margin: 0;
}

.urgences-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-green);
}

.footer h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer ul {
    list-style: none;
}

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

.footer a {
    color: var(--gray-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-200);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero {
        padding: 0;
        min-height: auto;
    }
    
    .hero-container {
        padding: 5rem 1.5rem;
        gap: 4rem;
        min-height: auto;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
        max-width: 100%;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 0;
        margin: 4rem 0;
    }
    
    .stat {
        text-align: center;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 1rem;
        backdrop-filter: blur(10px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 1.25rem 2rem;
        font-size: 1.0625rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-icon {
        top: -35px;
        margin-top: -35px;
        width: 75px;
        height: 75px;
    }
    
    .service-icon i {
        font-size: 1.625rem;
    }
    
    .service-content {
        padding: 2.5rem 2rem;
    }
    
    .garanties-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .garantie-card {
        padding: 2.5rem 2rem;
    }
    
    .info-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2.5rem;
    }
    
    .info-content {
        order: 2;
    }
    
    .info-image {
        order: 1;
        justify-self: center;
        width: 140px;
        height: 140px;
    }
    
    .contact-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow);
        border-radius: 0 0 1rem 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .garanties-qualite,
    .infos-pratiques,
    .services-preview,
    .equipements-medicaux {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 4rem;
        padding: 0 1rem;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .faq-category {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .urgences-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .urgences-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .contact-grid,
    .rdv-container,
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .service-card,
    .avis-card,
    .info-card {
        padding: 1.5rem;
    }
    
    .hero-card {
        padding: 2rem;
    }
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.service-card,
.horaire-card,
.garantie-card,
.info-card {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.hero-content h1 {
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-content .hero-subtitle {
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.hero-content .text-large {
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero-card {
    animation: scaleIn 0.8s ease-out 0.6s both;
}

/* Enhanced Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.sticky-cta .btn {
    border-radius: 50px;
    padding: 1.375rem 2.75rem;
    font-weight: 700;
    box-shadow: 0 10px 30px -12px rgba(37, 99, 235, 0.45);
    position: relative;
    overflow: hidden;
    font-size: 1.0625rem;
    letter-spacing: 0.025em;
}

.sticky-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px -12px rgba(37, 99, 235, 0.5);
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .sticky-cta .btn {
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .sticky-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* Avis Patients */
.avis-patients {
    background: var(--white);
    padding: 4rem 0;
}

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

.avis-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 4px solid var(--primary-green);
}

.avis-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.3;
}

.avis-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.avis-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.avis-author {
    font-weight: 600;
    color: var(--text-dark);
}

.avis-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero description */
.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Doctor photo */
.doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.doctor-experience {
    background: var(--light-green);
    color: var(--secondary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Info images */
.info-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-top: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.info-card:hover .info-image {
    opacity: 1;
}

/* Infos pratiques */
.infos-pratiques {
    background: var(--white);
    padding: 5rem 0;
}

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

.info-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.info-icon.whatsapp {
    background: #e7f7ef;
}

.info-icon.whatsapp i {
    color: #25d366;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
*:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Media base */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}
