/* About Us Page Styles */

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
}

/* Hero Section */
.about-hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #ffffff;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Section Styles */
.about-section {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
    color: #1e293b;
    font-size: 2.25rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e53935, #c62828);
    border-radius: 2px;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-icon {
    text-align: center;
    margin-bottom: 20px;
}

.section-icon i {
    font-size: 3rem;
    color: #e53935;
    background: #ffffff;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.2);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
    text-align: justify;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #e53935;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2.5rem;
    color: #e53935;
    background: #fef2f2;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-card h3 {
    color: #1e293b;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #e53935;
    box-shadow: 0 6px 15px rgba(229, 57, 53, 0.15);
}

.value-card i {
    font-size: 2rem;
    color: #e53935;
    margin-bottom: 15px;
}

.value-card h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

/* Features List */
.features-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #e53935;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-item p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

/* Stats Grid - Hidden */
.stats-section {
    display: none !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.3);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
}

.cta-section h2::after {
    background: rgba(255, 255, 255, 0.5);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #667eea;
}

.cta-buttons .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-options {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    min-width: 200px;
}

.contact-card:hover {
    border-color: #e53935;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: #e53935;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us-container {
        padding: 20px 15px;
    }

    .about-hero {
        padding: 40px 20px;
    }

    .about-hero h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 25px 20px;
    }

    .about-section h2 {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.75rem;
    }

    .about-section {
        padding: 20px 15px;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

