/* Mission Section Styles */
.mission-section {
    background: linear-gradient(135deg, #f8fdff 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e3f2fd" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
    z-index: 1;
}

.mission-section .container {
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 100px 0;
}

/* Section Title */
.section-title {
    margin-bottom: 80px;
}

.section-title .subtitle {
    display: inline-block;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title h2 span {
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mission Cards */
.mission-cards {
    margin-bottom: 80px;
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.05), transparent);
    transition: left 0.6s ease;
}

.mission-card:hover::before {
    left: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.05; }
    100% { transform: scale(1); opacity: 0.1; }
}

.card-icon i {
    font-size: 32px;
    color: white;
}

.mission-card h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.mission-card > p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.mission-features {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

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

.feature-item i {
    color: #4CAF50;
    margin-right: 12px;
    font-size: 14px;
    width: 16px;
}

.feature-item span {
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

/* Mission Content */
.mission-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.philosophy-section,
.approach-section,
.quality-section,
.ethics-section {
    margin-bottom: 50px;
}

.philosophy-section:last-child,
.approach-section:last-child,
.quality-section:last-child,
.ethics-section:last-child {
    margin-bottom: 0;
}

.mission-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.mission-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    border-radius: 2px;
}

.mission-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Approach Grid */
.approach-grid {
    margin-top: 30px;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fdff;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.approach-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.1);
    border-left-color: #2196F3;
}

.approach-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.approach-content h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.approach-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Quality Principles */
.quality-principles {
    margin-top: 30px;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fdff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.principle-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.08);
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.principle-icon i {
    color: white;
    font-size: 20px;
}

.principle-content h6 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.principle-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Ethics List */
.ethics-list {
    margin-top: 30px;
}

.ethics-item {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.ethics-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.ethics-item:hover::before {
    transform: scaleY(1);
}

.ethics-item:hover {
    border-color: rgba(33, 150, 243, 0.2);
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.08);
}

.ethics-item h6 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ethics-item p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Mission Sidebar */
.mission-sidebar {
    position: sticky;
    top: 30px;
}

.success-metrics,
.certificates-card,
.social-responsibility,
.mission-contact {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.success-metrics:hover,
.certificates-card:hover,
.social-responsibility:hover,
.mission-contact:hover {
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.2);
}

.mission-sidebar h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

/* Success Metrics */
.metric-item {
    margin-bottom: 25px;
}

.metric-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.metric-bar {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.metric-progress {
    height: 100%;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    border-radius: 3px;
    transition: width 1s ease;
    position: relative;
}

.metric-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Certificates */
.certificate-list {
    margin-top: 20px;
}

.certificate-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.certificate-item:hover {
    background: #f8fdff;
    margin: 0 -15px;
    padding: 15px;
    border-radius: 8px;
}

.certificate-item i {
    color: #2196F3;
    margin-right: 15px;
    font-size: 16px;
    width: 20px;
}

.certificate-item span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Social Responsibility */
.social-responsibility p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.responsibility-list {
    margin-top: 20px;
}

.responsibility-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    transition: all 0.3s ease;
}

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

.responsibility-item i {
    color: #4CAF50;
    margin-right: 15px;
    font-size: 16px;
    width: 20px;
}

.responsibility-item span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Mission Contact */
.mission-contact {
    text-align: center;
}

.mission-contact p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.mission-contact .btn {
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.mission-contact .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 36px;
    }
    
    .mission-content {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .mission-sidebar {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .mission-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .mission-content {
        padding: 25px 20px;
    }
    
    .mission-content h3 {
        font-size: 24px;
    }
    
    .approach-item {
        padding: 20px 15px;
    }
    
    .approach-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 15px;
    }
    
    .success-metrics,
    .certificates-card,
    .social-responsibility,
    .mission-contact {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 24px;
    }
    
    .mission-card {
        padding: 25px 15px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
    
    .mission-card h4 {
        font-size: 20px;
    }
    
    .approach-item {
        flex-direction: column;
        text-align: center;
    }
    
    .approach-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .principle-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .principle-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}