/* About Page Styles */

.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-on-colored);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1516937941344-00b4e0337589?ixlib=rb-4.0.3') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-on-colored) 0%, var(--text-on-colored) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 80px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.expertise-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.expertise-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.expertise-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.approach-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.approach-content p {
    font-size: 1.2rem;
    color: var(--text-on-colored);
    line-height: 1.7;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

.industries-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.industry-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.industry-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateX(5px);
}

.industry-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.commitment-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-on-colored);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.commitment-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.stats-section {
    background: #f8fafc;
    padding: 80px 0;
    margin: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expertise-item {
        padding: 30px;
    }
    
    .approach-content,
    .commitment-content {
        padding: 40px 20px;
        margin: 30px 0;
    }
    
    .industries-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-item {
        padding: 25px;
    }
}

/* RTL Support */
html[dir="rtl"] .industry-item {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

html[dir="rtl"] .industry-item:hover {
    transform: translateX(-5px);
}

/* CTA Section specific to about page */
.cta-section {
    background: var(--primary-color);
    padding: 80px 16px;
    margin-top: 40px;
}

.cta-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .cta-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 15px 35px;
    font-size: 16px;
    background: var(--button-gradient);
    color: var(--text-on-colored);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    box-shadow: 0 12px 30px rgba(238, 94, 69, 0.35);
}

.cta-content .cta-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

/* Ensure proper spacing for bilingual content */
.cta-content span {
    display: block;
    line-height: 1.6;
}

.cta-content h2 span {
    display: inline;
}

/* Responsive adjustments for about CTA */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .cta-content .cta-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 16px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}