/* ===== PAGE À PROPOS - DESIGN PREMIUM ===== */

/* About Hero Section */
.about-hero-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--tech-gradient-1), var(--tech-gradient-2));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 100px;
    overflow: hidden;
}

.about-hero-section .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-hero-section .tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 180, 219, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 219, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(0, 180, 219, 0.2);
    border: 2px solid var(--tech-gradient-3);
    border-radius: 50px;
    color: var(--tech-gradient-3);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(0, 180, 219, 0.3);
}

.about-hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.about-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #ffffff;
}

.story-image-wrapper {
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 180, 219, 0.3), 
        rgba(47, 85, 212, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button i {
    font-size: 28px;
    color: var(--tech-gradient-3);
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 40px rgba(0, 180, 219, 0.6);
}

/* Story Content */
.story-content {
    padding-left: 30px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, 
        rgba(0, 180, 219, 0.1), 
        rgba(47, 85, 212, 0.1));
    color: var(--tech-gradient-3);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    border: 1px solid rgba(0, 180, 219, 0.3);
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}

/* Mission Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.mv-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.mv-card:hover {
    background: #ffffff;
    border-color: var(--tech-gradient-3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tech-gradient-3), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 180, 219, 0.3);
    transition: all 0.3s ease;
}

.mv-icon i {
    font-size: 28px;
    color: #ffffff;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 180, 219, 0.5);
}

.mv-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.mv-card:hover h4 {
    color: var(--tech-gradient-3);
}

.mv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* Values Highlight Section */
.values-highlight-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--tech-gradient-1), var(--tech-gradient-2));
    position: relative;
    overflow: hidden;
}

.values-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%2300B4DB' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.value-box {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 180, 219, 0.2);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.value-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--tech-gradient-3);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 180, 219, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(0, 180, 219, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.value-icon i {
    font-size: 36px;
    color: var(--tech-gradient-3);
}

.value-box:hover .value-icon {
    background: var(--tech-gradient-3);
    border-color: #ffffff;
    transform: rotate(360deg);
}

.value-box:hover .value-icon i {
    color: #ffffff;
}

.value-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Stats Counter Section */
.stats-counter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--tech-gradient-1), var(--tech-gradient-2));
    position: relative;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='%2300B4DB' stroke-width='0.5' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
}

.counter-box {
    position: relative;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 180, 219, 0.2);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.counter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--tech-gradient-3), 
        transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.counter-box:hover::before {
    transform: scaleX(1);
}

.counter-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--tech-gradient-3);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 180, 219, 0.4);
}

.counter-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 180, 219, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.counter-icon i {
    font-size: 36px;
    color: var(--tech-gradient-3);
}

.counter-box:hover .counter-icon {
    background: var(--tech-gradient-3);
    transform: scale(1.15);
}

.counter-box:hover .counter-icon i {
    color: #ffffff;
}

.counter-number {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.counter-number::after {
    content: '+';
    margin-left: 5px;
    color: var(--tech-gradient-3);
}

.counter-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        rgba(0, 180, 219, 0.2) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.counter-box:hover .counter-glow {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 180, 219, 0.95), 
        rgba(47, 85, 212, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #ffffff;
    color: var(--tech-gradient-3);
    transform: scale(1.15);
}

.team-info {
    padding: 30px;
    text-align: center;
    position: relative;
}

.team-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.team-info p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--tech-gradient-3), var(--primary-color));
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 180, 219, 0.3);
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--tech-gradient-1), var(--tech-gradient-2));
    text-align: center;
}

.about-cta-section .cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.about-cta-section .cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 52px;
    }
    
    .story-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 38px;
    }
    
    .about-hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-section .cta-content h2 {
        font-size: 32px;
    }
}

