/* About Page - Dark Theme Styles */
/* Inherits variables from home.css */

.about-hero {
    background-color: var(--primary-bg);
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero img {
    border-radius: 8px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.about-hero p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Intro Section */
.about-intro {
    background-color: var(--primary-bg);
    padding: 4rem 2rem 4rem;
    /* Reduced bottom padding from 6rem */
    text-align: center;
}

.about-intro h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Guarantee Card */
.fast-service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 3rem auto 0;
    /* Reduced top margin and removed bottom margin */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fast-service-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    font-size: 2rem;
}

.fast-service-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.fast-service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mission Section */
.mission-section {
    background-color: var(--secondary-bg);
    padding: 3rem 2rem;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.mission-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Grid - Reusing reuse-choose from home.css but specialized if needed */
.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    /* Reduced from 4rem 2rem to avoid double padding */
    max-width: 1400px;
    margin: 0 auto;
}

.about-why-card {
    background: var(--primary-bg);
    border: 1px solid var(--accent-color);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s;
}

.about-why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.about-why-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.about-why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mission-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
        padding: 1rem 0;
    }

    .about-intro {
        padding: 2rem 2rem 1rem;
        /* Further reduced from 3rem */
    }
}