/* ===== SOCIÉTÉ PAGE STYLES ===== */

/* Company Hero Section */
.company-hero {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2c5aa0 50%, #1e3c72 100%);
    padding: 8rem 0 6rem;
    margin-top: 140px;
    color: white;
    overflow: hidden;
}

.hero-background {
    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 1000 1000"><defs><radialGradient id="grad1"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23grad1)"/><circle cx="800" cy="800" r="400" fill="url(%23grad1)"/><circle cx="500" cy="100" r="200" fill="url(%23grad1)"/></svg>');
    opacity: 0.6;
}

.company-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.company-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.company-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.company-hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.hero-stat .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.mission-card,
.vision-card,
.values-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before,
.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0, #1e3c72);
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p,
.values-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* About Company Section */
.about-company {
    padding: 6rem 0;
    background: white;
}

.about-company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

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

.about-text .section-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.company-story p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.company-story strong {
    color: #2c5aa0;
    font-weight: 600;
}

.company-highlights {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2c5aa0;
}

.highlight-item strong {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

/* About Visual */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.visual-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    opacity: 0.9;
    line-height: 1.5;
}

.visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.visual-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.stat-icon {
    font-size: 2rem;
    opacity: 0.7;
}

.stat-info .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5aa0;
}

.stat-info .stat-text {
    color: #666;
    font-size: 0.9rem;
}

/* Expertise Areas */
.expertise-areas {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.expertise-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.expertise-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

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

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

.expertise-item ul li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.expertise-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.expertise-link:hover {
    gap: 1rem;
}

/* Quality & Certifications */
.quality-certifications {
    padding: 6rem 0;
    background: white;
}

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

.quality-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.quality-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.quality-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quality-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.point-icon {
    font-size: 2.5rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Certifications Visual */
.certifications-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cert-badge {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cert-badge:hover {
    border-color: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.cert-text strong {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.cert-text span {
    color: #666;
    font-size: 0.9rem;
}

.quality-guarantee {
    background: #f0f4ff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #d0d7ff;
    text-align: center;
}

.quality-guarantee h4 {
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quality-guarantee p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Team & Infrastructure */
.team-infrastructure {
    padding: 6rem 0;
    background: #f8f9fa;
}

.team-infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.team-section,
.infrastructure-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.team-section h3,
.infrastructure-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.team-stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.team-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.team-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.team-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-highlight {
    padding: 1rem;
    border-left: 3px solid #2c5aa0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.team-highlight strong {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-highlight p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.infra-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.infra-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.infra-icon {
    font-size: 2rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.infra-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

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

/* Company CTA */
.company-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .about-company-content,
    .quality-content,
    .team-infra-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .company-hero {
        padding: 6rem 0 4rem;
        margin-top: 100px;
    }
    
    .company-hero h1 {
        font-size: 2.5rem;
    }
    
    .company-hero p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card,
    .vision-card,
    .values-card {
        padding: 2rem 1.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .visual-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .company-hero {
        padding: 4rem 0 3rem;
    }
    
    .company-hero h1 {
        font-size: 2rem;
    }
    
    .company-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .mission-card,
    .vision-card,
    .values-card {
        padding: 1.5rem 1rem;
    }
    
    .expertise-item {
        padding: 2rem 1.5rem;
    }
    
    .team-section,
    .infrastructure-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}