/* About Page Specific Styles */

/* About Hero Section */
.about-page-hero {
    padding-top: 150px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, rgba(227, 42, 63, 0.1) 0%, rgba(27, 101, 177, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 0;
}

.about-page-hero .section-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* About Intro Section */
.about-intro {
    padding: 60px 0;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* About Section Headers */
.about-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.about-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* About Content Sections */
.about-who-we-are,
.about-what-we-do {
    padding: 60px 0;
    background-color: white;
}

.about-who-we-are {
    background-color: var(--light-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* About Services Grid */
.about-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-service-item {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.about-service-item .service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.about-service-item p {
    color: var(--gray-color);
}

/* About Why Choose Us Section */
.about-why-choose-us {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(76, 201, 240, 0.05) 100%);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Contact CTA Section */
.about-contact-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info a {
    color: white;
    font-weight: 500;
    transition: var(--transition);
}

.contact-info a:hover {
    opacity: 0.8;
}

.about-contact-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.about-contact-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-page-hero .section-header h1 {
        font-size: 2.5rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .about-section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .about-page-hero .section-header h1 {
        font-size: 2rem;
    }
    
    .about-services {
        grid-template-columns: 1fr;
    }
}