/* About Mini Slider */
.about-mini-slider {
    background: linear-gradient(135deg, hsl(var(--primary-dark)), hsl(var(--primary)));
    color: white;
    padding: 2rem 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-slide.active {
    display: block;
    opacity: 1;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.slide-text h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

.slide-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    min-width: 120px;
    transition: all var(--transition-fast);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(var(--accent));
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* About Slider Controls */
.about-slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 0 2rem;
}

.about-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.about-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.about-dot.active {
    background: hsl(var(--accent));
    border-color: hsl(var(--accent));
    box-shadow: 0 0 10px hsla(var(--accent), 0.5);
}

.about-dot:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.about-slider-arrows {
    display: flex;
    gap: 0.5rem;
}

.about-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.about-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: hsl(var(--accent));
}

/* Enhanced Company Story */
.company-story {
    padding: 6rem 0;
    background: var(--background);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
    border-radius: 2px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem 1rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: hsla(var(--accent), 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--accent));
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Enhanced Mission & Values */
.mission-values {
    padding: 6rem 0;
    background: hsl(var(--muted));
}

.mission-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary);
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: hsla(var(--accent), 0.2);
}

.value-card i {
    font-size: 3rem;
    color: hsl(var(--accent));
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Enhanced Leadership Team */
.leadership-team {
    padding: 6rem 0;
    background: white;
}

.leadership-team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary);
    font-weight: 700;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.leader-card {
    background: hsl(var(--muted));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 1px solid transparent;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: hsla(var(--accent), 0.2);
}

.leader-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid hsl(var(--accent));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.leader-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.leader-card .title {
    color: hsl(var(--accent));
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.leader-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Enhanced Certifications & Awards */
.certifications-awards {
    padding: 6rem 0;
    background: hsl(var(--muted));
}

.certifications-awards h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary);
    font-weight: 700;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.award-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.award-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, hsla(var(--accent), 0.05), transparent);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.award-card:hover::after {
    width: 300px;
    height: 300px;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: hsla(var(--accent), 0.2);
}

.award-card i {
    font-size: 3rem;
    color: hsl(var(--accent));
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.award-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.award-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Enhanced Global Presence */
.global-presence {
    padding: 6rem 0;
    background: white;
}

.global-presence h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.global-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.office-card {
    background: hsl(var(--muted));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 1px solid transparent;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: hsla(var(--accent), 0.2);
}

.office-card i {
    font-size: 2.5rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

.office-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.office-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .slide-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-mini-slider {
        padding: 1.5rem 0;
    }
    
    .slide-content {
        padding: 2rem 0;
    }
    
    .slide-text h1 {
        font-size: 2rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .slide-stats {
        gap: 1rem;
    }
    
    .stat {
        min-width: 100px;
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .about-slider-controls {
        padding: 0 1rem;
        margin-top: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid,
    .leaders-grid,
    .awards-grid,
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .company-story h2,
    .mission-values h2,
    .leadership-team h2,
    .certifications-awards h2,
    .global-presence h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .slide-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}