/* ==========================================================================
   ABOUT PAGE - Page "Qui sommes-nous"
   Hero de base (.about-hero) défini dans 05-pages/page-base.css
   ========================================================================== */

/* Informations générales de l'entreprise */
.company-info {
    background-color: white;
    padding: 80px 0;
}

.company-details {
    background: #e8f4f8;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.company-details h3 {
    color: #1a73e8;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.detail-icon {
    background: #1a73e8;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-content h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.detail-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Section fondateur */
.founder-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.founder-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.founder-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.7;
}

/* .expertise-grid défini dans 05-pages/page-base.css */

/* Mise en valeur de l'expérience */
.experience-highlight {
    background: linear-gradient(135deg, #34a853 0%, #2e7d32 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.experience-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.experience-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: white;
}

/* Section projets */
.projects-section {
    background-color: white;
    padding: 80px 0;
}

.projects-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.project-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #1a73e8;
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateX(5px);
}

.project-item h4 {
    color: #1a73e8;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

/* Philosophie qualité */
.quality-philosophy {
    background-color: white;
    padding: 80px 0;
}

.philosophy-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.philosophy-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-card.main-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #e8f4f8, #f0f7ff);
    border: 2px solid #1a73e8;
    text-align: center;
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a73e8;
}

.philosophy-card h3 {
    color: #1a73e8;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.philosophy-card p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.quality-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.quality-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.quality-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34a853;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Processus de développement */
.development-process {
    background: #f8f9fa;
    padding: 80px 0;
}

.process-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, #1a73e8, #34a853);
    z-index: 1;
}

.timeline-icon {
    background: white;
    border: 3px solid #1a73e8;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #1a73e8;
}

.timeline-content h3 {
    color: #1a73e8;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Avertissement développement */
.development-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.development-warning h3 {
    color: #856404;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.development-warning p {
    color: #856404;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.timeline-range {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.time-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 120px;
    text-align: center;
}

.time-box.simple {
    border-left: 4px solid #34a853;
}

.time-box.complex {
    border-left: 4px solid #e74c3c;
}

.time-duration {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.time-desc {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.time-arrow {
    font-size: 2rem;
    color: #1a73e8;
    font-weight: bold;
}

/* Travail solo mis en valeur */
.solo-work-highlight {
    background: linear-gradient(135deg, #e8f4f8, #f0f7ff);
    border: 2px solid #1a73e8;
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.solo-icon {
    font-size: 4rem;
    background: #1a73e8;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
}

.solo-content h3 {
    color: #1a73e8;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.solo-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.work-chain {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
}

.chain-item {
    background: white;
    padding: 10px 15px;
    border-radius: 20px;
    border: 2px solid #1a73e8;
    font-weight: 500;
    color: #1a73e8;
    white-space: nowrap;
    font-size: 0.9rem;
}

.chain-arrow {
    color: #1a73e8;
    font-weight: bold;
    font-size: 1.2rem;
}

.solo-note {
    font-style: italic;
    color: #666;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Valeurs de l'entreprise */
.values-section {
    background: white;
    padding: 80px 0;
}

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

.value-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-quality { 
    color: #1a73e8; 
}

.value-innovation { 
    color: #34a853; 
}

.value-service { 
    color: #fbbc05; 
}

.value-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

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

/* Call-to-action */
.about-cta {
    background: linear-gradient(135deg, #1a73e8, #0d5bbc);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .solo-work-highlight {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .philosophy-card.main-card {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    /* .about-hero h1 + p → page-base.css */

    .expertise-grid,
    .philosophy-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .company-details {
        padding: 25px 20px;
    }
    
    .solo-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .work-chain {
        flex-direction: column;
        gap: 5px;
    }
    
    .chain-arrow {
        transform: rotate(90deg);
    }
    
    .timeline-range {
        flex-direction: column;
        gap: 15px;
    }
    
    .time-arrow {
        transform: rotate(90deg);
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .experience-number {
        font-size: 3rem;
    }
    
    .experience-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* .about-hero + h1 → page-base.css */

    .expertise-card,
    .philosophy-card,
    .value-card {
        padding: 20px;
    }
    
    .development-warning {
        padding: 25px 20px;
    }
    
    .solo-work-highlight {
        padding: 25px 20px;
    }
    
    .process-timeline {
        gap: 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .about-cta {
        padding: 40px 0;
    }
    
    .about-cta h2 {
        font-size: 1.8rem;
    }
    
    .about-cta p {
        font-size: 1.1rem;
    }
}