/* =========================
   COMPANY PAGE STYLES
   ========================= */

/* Company Hero Section */
.company-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.company-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.company-hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.company-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.company-hero-image {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.company-hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}

.company-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.company-hero-buttons .btn {
    padding: 14px 35px;
    font-size: 1.1rem;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 5rem 2rem;
    background-color: white;
}

.who-we-are-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.who-we-are-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.who-we-are-text h2 {
    color: #222;
    margin-bottom: 1.5rem;
}

.who-we-are-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.who-we-are-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.mission-vision-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mission-vision-header h2 {
    color: #222;
}

.mission-vision-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-card,
.vision-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.mission-card h3,
.vision-card h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: #555;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background-color: white;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-header h2 {
    color: #222;
    margin-bottom: 0.5rem;
}

.team-header p {
    color: #666;
    font-size: 1.1rem;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.member-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    color: #222;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #007bff;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    color: white;
    padding: 2rem;
}

.stat-card h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.why-choose-us-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us-header h2 {
    color: #222;
}

.why-choose-us-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #222;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .company-hero-content h1 {
        font-size: 2rem;
    }

    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .company-hero {
        padding: 3rem 1rem;
    }

    .company-hero-content h1 {
        font-size: 1.5rem;
    }

    .company-hero-content p {
        font-size: 1rem;
    }

    .who-we-are-section,
    .mission-vision-section,
    .team-section,
    .why-choose-us-section {
        padding: 3rem 1rem;
    }

    .who-we-are-content,
    .mission-vision-content {
        gap: 1.5rem;
    }

    .team-grid,
    .stats-grid,
    .why-choose-us-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .feature-card i {
        font-size: 2rem;
    }
}
