/* ============================================================
   ABOUT.CSS - CABINET AZARKANE
   Version complète avec corrections mobile
   ============================================================ */

/* ==================== VARIABLES ==================== */
:root {
    --primary: #42b7a5;
    --primary-light: #6bc9bb;
    --primary-dark: #3a9c8d;
    --secondary: #cb96a7;
    --secondary-light: #d9b1be;
    --secondary-dark: #b88598;
    --white: #ffffff;
    --light-1: #f8f9fa;
    --gray-2: #adb5bd;
    --gray-3: #6c757d;
    --dark: #495057;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 50px rgba(0, 0, 0, 0.2);
    
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --transition-normal: 0.3s ease;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* ==================== RÉINITIALISATION ==================== */
.about-page * {
    box-sizing: border-box;
}

/* ==================== BANNIÈRE DE PAGE ==================== */
.page-banner {
    padding: 160px 0 100px;
    margin-top: 50px;
    background: linear-gradient(135deg, 
        rgba(66, 183, 165, 0.1) 0%, 
        rgba(200, 147, 162, 0.1) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.page-banner .container {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.page-banner .page-banner-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.page-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #6c757d;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb i {
    color: var(--gray-2);
    font-size: 0.8rem;
}

.breadcrumb span {
    color: var(--gray-3);
    font-weight: 500;
}

.page-banner-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.page-banner-wave svg {
    width: 100%;
    height: 60px;
    fill: var(--white);
}

/* ==================== SECTION HISTOIRE ==================== */
.about-history {
    padding: 100px 0;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-text {
    padding-right: 30px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.1), rgba(200, 147, 162, 0.1));
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(66, 183, 165, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.history-description {
    color: var(--gray-3);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.history-description strong {
    color: var(--dark);
    font-weight: 600;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.milestone-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(66, 183, 165, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
}

.milestone-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.milestone-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.milestone-year {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.milestone-item h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.milestone-item p {
    color: var(--gray-3);
    font-size: 0.95rem;
    line-height: 1.6;
}

.history-visual {
    position: relative;
    height: 500px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.timeline-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.timeline-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary);
    opacity: 1;
}

.timeline-dot.dot-1 { left: 10%; }
.timeline-dot.dot-2 { left: 40%; }
.timeline-dot.dot-3 { left: 70%; }
.timeline-dot.dot-4 { left: 90%; }

.founder-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.founder-image {
    padding: 40px 40px 20px;
    text-align: center;
}

.medical-icon-avatar {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(66, 183, 165, 0.3);
    border: 5px solid var(--white);
}

.medical-icon-avatar i {
    font-size: 60px;
    color: var(--white);
}

.medical-icon-avatar.female {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.founder-info {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.05), rgba(200, 147, 162, 0.05));
}

.founder-info h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.founder-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.founder-quote {
    color: var(--gray-3);
    font-style: italic;
    line-height: 1.6;
    border-left: 3px solid var(--secondary);
    padding-left: 15px;
    margin-top: 15px;
}

/* ==================== SECTION PHILOSOPHIE ==================== */
.philosophy-section {
    padding: 100px 0;
    background-color: var(--light-1);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-3);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.decoration-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.philosophy-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(66, 183, 165, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.philosophy-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.philosophy-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.philosophy-card p {
    color: var(--gray-3);
    line-height: 1.7;
    margin-bottom: 20px;
}

.philosophy-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.philosophy-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--gray-3);
    font-size: 0.95rem;
}

.philosophy-features i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* ==================== SECTION ÉQUIPE ==================== */
.team-section {
    padding: 100px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.team-member {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(66, 183, 165, 0.1);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: none;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.member-photo {
    padding: 40px 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.05), rgba(200, 147, 162, 0.05));
}

.member-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.member-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.member-specialty {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.member-qualifications {
    margin-bottom: 25px;
    flex: 1;
}

.qualification {
    display: block;
    background: rgba(66, 183, 165, 0.08);
    color: var(--gray-3);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.member-contact {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.member-contact:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==================== STATISTIQUES D'ÉQUIPE ==================== */
.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    opacity: 1 !important;
    visibility: visible !important;
}

.team-stat {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(66, 183, 165, 0.2);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    background: var(--white);
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    position: relative;
    overflow: hidden;
}

.team-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
    opacity: 1 !important;
    visibility: visible !important;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-3);
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ==================== SECTION INSTALLATIONS ==================== */
.facilities-section {
    padding: 100px 0;
    background-color: var(--light-1);
}

.facilities-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.facility-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 300px;
    opacity: 1;
    transform: none;
}

.facility-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.facility-item:hover img {
    transform: scale(1.05);
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.facility-item:hover .facility-overlay {
    transform: translateY(0);
}

.facility-overlay h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.facility-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.facilities-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(66, 183, 165, 0.1);
    transition: all var(--transition-normal);
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.1), rgba(200, 147, 162, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-item p {
    color: var(--gray-3);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== SECTION CERTIFICATIONS ==================== */
.certifications-section {
    padding: 100px 0;
    background-color: var(--white);
}

.certifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.certifications-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.certifications-text p {
    color: var(--gray-3);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.certifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certifications-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-3);
    font-size: 1rem;
    line-height: 1.6;
}

.certifications-list i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.certifications-list strong {
    color: var(--dark);
    font-weight: 600;
}

.certifications-badges {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.badge-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(66, 183, 165, 0.1);
    text-align: center;
    transition: all var(--transition-normal);
    opacity: 1;
    transform: none;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.badge-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
}

/* ==================== SECTION ENGAGEMENT QUALITÉ ==================== */
.quality-section {
    padding: 100px 0;
    background-color: var(--light-1);
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.quality-text p {
    color: var(--gray-3);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.quality-process {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 1;
    transform: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
}

.process-step:nth-child(1) .step-number::before { content: "1"; }
.process-step:nth-child(2) .step-number::before { content: "2"; }
.process-step:nth-child(3) .step-number::before { content: "3"; }
.process-step:nth-child(4) .step-number::before { content: "4"; }

.step-content h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray-3);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.quality-visual {
    position: relative;
}

/* ==================== CERCLES DE PROGRESSION ==================== */
.progress-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(66, 183, 165, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.progress-circle {
    flex: 1;
    max-width: 200px;
}

.circle-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-background {
    fill: none;
    stroke: rgba(66, 183, 165, 0.1);
    stroke-width: 8;
    stroke-linecap: round;
}

.circle-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.12;
}

.progress-circle:nth-child(1) .circle-fill {
    stroke: var(--primary);
    stroke-dashoffset: 33.91;
}

.progress-circle:nth-child(2) .circle-fill {
    stroke: var(--secondary);
    stroke-dashoffset: 50.87;
}

.progress-circle:nth-child(3) .circle-fill {
    stroke: #42b7a5;
    stroke-dashoffset: 6.78;
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.percentage {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.progress-circle:hover .percentage {
    color: var(--primary-dark);
}

.progress-circle:hover .circle-fill {
    stroke-width: 9;
}

/* ==================== SECTION CALL TO ACTION ==================== */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.1), rgba(200, 147, 162, 0.1));
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-3);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bannerFloat {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-15px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(10px); }
}

@keyframes contentFloat {
    0%, 100% { transform: translateY(0); }
    33% { transform: translateY(-8px); }
    66% { transform: translateY(4px); }
}

@keyframes waveFloat {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-20px) scaleY(1.2); }
    50% { transform: translateY(0) scaleY(1); }
    75% { transform: translateY(15px) scaleY(0.85); }
}

@keyframes cardFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(0deg); }
    25% { transform: translate(-50%, -50%) translateY(-15px) rotate(1deg); }
    75% { transform: translate(-50%, -50%) translateY(5px) rotate(-1deg); }
}

@keyframes avatarPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(66, 183, 165, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(66, 183, 165, 0.5); }
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(66, 183, 165, 0.3); }
    50% { text-shadow: 0 0 20px rgba(66, 183, 165, 0.5); }
}

@keyframes labelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: translateY(-50%) scale(0.8); }
    to { opacity: 1; transform: translateY(-50%) scale(1); }
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes statCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes chevronBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(66, 183, 165, 0.3); }
    50% { text-shadow: 0 0 15px rgba(66, 183, 165, 0.5); }
}

@keyframes quoteFade {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

@keyframes titleFloatParallax {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes subtitleFloatParallax {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes breadcrumbFloatParallax {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

/* ==================== BANNIÈRE ANIMÉE ==================== */
.page-banner-animated {
    position: relative;
    overflow: hidden;
    animation: bannerFloat 6s ease-in-out infinite;
    background: linear-gradient(
        135deg, 
        rgba(66, 183, 165, 0.15) 0%, 
        rgba(200, 147, 162, 0.15) 25%,
        rgba(66, 183, 165, 0.1) 50%,
        rgba(200, 147, 162, 0.1) 75%,
        rgba(66, 183, 165, 0.15) 100%
    );
    background-size: 200% 200%;
    animation: bannerFloat 6s ease-in-out infinite, gradientShift 15s ease infinite;
}

.page-banner-content-animated {
    animation: contentFloat 8s ease-in-out infinite;
}

.page-banner-animated .page-title {
    animation: titleFloatParallax 5s ease-in-out infinite 0.1s;
}

.page-banner-animated .page-subtitle {
    animation: subtitleFloatParallax 5s ease-in-out infinite 0.2s;
}

.page-banner-animated .breadcrumb {
    animation: breadcrumbFloatParallax 5s ease-in-out infinite 0.3s;
}

.page-banner-animated .page-banner-wave svg path {
    animation: waveFloat 8s ease-in-out infinite;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* === TABLETTES === */
@media (max-width: 1200px) {
    .about-history-content,
    .certifications-content,
    .quality-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .history-text {
        padding-right: 0;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-title {
        margin-top: 70px;
        font-size: clamp(2.3rem, 4.5vw, 3rem);
    }
    
    .milestones {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid,
    .team-grid,
    .facilities-gallery {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .cta-content h2 {
        font-size: 2.3rem;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .progress-circles {
        gap: 30px;
        padding: 30px;
        max-width: 600px;
    }
    
    .circle-container {
        width: 140px;
        height: 140px;
    }
    
    .circle-background,
    .circle-fill {
        stroke-width: 7;
    }
    
    .percentage {
        font-size: 1.8rem;
    }
    
    .label {
        font-size: 0.85rem;
    }
    
    .progress-circle:nth-child(1) .circle-fill {
        stroke-dasharray: 296.88;
        stroke-dashoffset: 29.69;
    }
    .progress-circle:nth-child(2) .circle-fill {
        stroke-dasharray: 296.88;
        stroke-dashoffset: 44.53;
    }
    .progress-circle:nth-child(3) .circle-fill {
        stroke-dasharray: 296.88;
        stroke-dashoffset: 5.94;
    }
}

/* === MOBILES === */
@media (max-width: 768px) {
    .page-banner {
        padding: 140px 0 80px;
        margin-top: 120px;
    }
    
    .page-title {
        margin-top: 70px;
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .about-history-content {
        gap: 40px;
    }
    
    .history-visual {
        margin-top: 70px;
        height: 400px;
    }
    
    .founder-card {
        width: 280px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-features {
        grid-template-columns: 1fr;
    }
    
    .quality-chart {
        padding: 30px 20px;
    }
    
    .chart-item {
        margin-bottom: 25px;
    }
    
    .chart-label {
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .chart-bar {
        height: 18px;
    }
    
    .chart-value {
        font-size: 1rem;
        text-align: left;
        width: 100%;
    }
    
    .progress-circles {
        gap: 25px;
        padding: 25px;
        max-width: 100%;
        flex-wrap: wrap;
    }
    
    .progress-circle {
        max-width: 160px;
        flex: 0 0 calc(50% - 20px);
    }
    
    .circle-container {
        width: 130px;
        height: 130px;
    }
}

/* === PETITS MOBILES === */
@media (max-width: 576px) {
    .page-title {
        margin-top: 70px;
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }
    
    .about-history {
        padding: 80px 0;
    }
    
    .history-visual {
        margin-top: 70px;
        height: 350px;
    }
    
    .founder-card {
        width: 250px;
    }
    
    .philosophy-grid,
    .team-grid,
    .facilities-gallery {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .certifications-badges {
        gap: 20px;
    }
    
    .badge-item {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-banner {
        padding: 120px 0 60px;
        margin-top: 120px !important;
    }
    
    .quality-chart {
        padding: 25px 15px;
    }
    
    .chart-item {
        margin-bottom: 20px;
    }
    
    .chart-bar {
        height: 16px;
    }
    
    .progress-circles {
        gap: 20px;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        max-width: 280px;
    }
    
    .progress-circle {
        max-width: 160px;
        flex: 0 0 auto;
        margin-bottom: 10px;
    }
    
    .circle-container {
        width: 140px;
        height: 140px;
    }
    
    .percentage {
        font-size: 1.8rem;
    }
    
    .label {
        font-size: 0.85rem;
    }
}

/* === TRÈS PETITS MOBILES === */
@media (max-width: 480px) {
    .page-banner {
        padding: 120px 0 60px;
    }
    
    .page-title {
        margin-top: 70px;
        font-size: clamp(1.6rem, 4vw, 1.9rem);
    }
    
    .milestones {
        gap: 20px;
    }
    
    .milestone-item {
        padding: 20px;
    }
    
    .history-visual {
        margin-top: 70px;
        height: 300px;
    }
    
    .founder-card {
        width: 220px;
    }
    
    .founder-info {
        padding: 20px;
    }
    
    .team-stat {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .progress-circles {
        padding: 15px;
        gap: 15px;
        max-width: 260px;
    }
    
    .progress-circle {
        max-width: 140px;
    }
    
    .circle-container {
        width: 120px;
        height: 120px;
    }
    
    .circle-background,
    .circle-fill {
        stroke-width: 7;
    }
    
    .percentage {
        font-size: 1.5rem;
    }
    
    .label {
        font-size: 0.8rem;
    }
}

/* === MODE PAYSAGE MOBILE === */
@media (max-height: 500px) and (orientation: landscape) {
    .progress-circles {
        flex-direction: row;
        gap: 20px;
        padding: 20px;
        max-width: 600px;
    }
    
    .circle-container {
        width: 120px;
        height: 120px;
    }
    
    .percentage {
        font-size: 1.5rem;
    }
    
    .label {
        font-size: 0.75rem;
    }
    
    .page-banner {
        padding: 100px 0 60px;
        min-height: 300px;
    }
}

/* === IPHONE SAFE AREA === */
@supports (-webkit-touch-callout: none) {
    .page-banner {
        padding-top: calc(140px + env(safe-area-inset-top)) !important;
    }
}

/* === INPUT FIX IPHONE === */
input, select, textarea {
    font-size: 16px !important;
    -webkit-appearance: none;
    appearance: none;
}

/* === MODE RÉDUCTION DES MOUVEMENTS === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .page-banner-animated,
    .page-banner-animated .page-title,
    .page-banner-animated .page-subtitle,
    .page-banner-animated .breadcrumb,
    .page-banner-animated .page-banner-wave svg path {
        animation: none !important;
    }
    
    .page-banner .container {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}