/* About Page Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0.75rem;
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    margin: 0;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: #1f2937;
    font-weight: 700;
}

.about-section-alt {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: calc(2rem + 2rem);
    padding-right: calc(2rem + 2rem);
}

/* Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
}

/* Journey Timeline */
.about-journey {
    position: relative;
    padding: 2rem 0;
}

.about-journey::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #667eea;
}

.journey-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.journey-marker {
    width: 60px;
    height: 60px;
    background: #667eea;
    border: 4px solid white;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.journey-content h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.journey-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Expertise Grid */
.about-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border-top: 4px solid #667eea;
}

.expertise-item strong {
    display: block;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.expertise-item p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Cities Section */
.about-service-area {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.about-nearby-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.about-city-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    text-decoration: none;
    border-radius: 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.about-city-link:hover {
    background: #667eea;
    color: white;
}

/* CTA Section */
.about-cta {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 0.75rem;
    margin-top: 4rem;
}

.about-cta h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button:hover {
    background: transparent;
    color: white;
}

.cta-button-secondary {
    background: transparent;
    color: white;
}

.cta-button-secondary:hover {
    background: white;
    color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .about-section-alt {
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .about-hero {
        padding: 2.5rem 1.5rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .about-journey::before {
        left: 20px;
    }

    .journey-item {
        grid-template-columns: 50px 1fr;
        gap: 1.5rem;
    }

    .journey-marker {
        width: 50px;
        height: 50px;
    }
}
