/* ============================================
   COMPANY PAGE SPECIFIC STYLES
   WiFiHapa - Company Profile Styles
   ============================================ */
/* Main Content */
.main-content {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


/* ----- HERO SECTION ----- */
.company-hero {
    background: linear-gradient(145deg, #edf4ff 0%, #ffffff 100%);
    padding: 3.2rem 2rem;
    border-radius: 48px;
    margin: 1.5rem 0 2.5rem;
    border: 1px solid rgba(13, 110, 253, 0.05);
    transition: var(--transition, all 0.3s ease);
}

body.dark .company-hero {
    background: var(--hero-bg, linear-gradient(145deg, #111827 0%, #1e2538 100%));
}

.company-badge {
    background: #0b2b40;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 60px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
}

.company-icon-large {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #0d6efd20, #d4a11e20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 5rem;
    color: #0d6efd;
}

/* ----- OVERVIEW CARDS ----- */
.overview-section {
    margin-bottom: 2rem;
}

.overview-card {
    background: var(--card-bg, white);
    border-radius: 32px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition, all 0.3s ease);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.05));
}

body.dark .overview-card {
    background: var(--card-bg, #1e2538);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary, #0a2c3d);
}

.overview-card p {
    color: var(--text-secondary, #5e6f7d);
    line-height: 1.6;
}

/* ----- COMPANY STATISTICS ----- */
.company-stat {
    background: var(--card-bg, white);
    border-radius: 28px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition, all 0.3s ease);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.05));
}

body.dark .company-stat {
    background: var(--card-bg, #1e2538);
}

.company-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 0.3rem;
}

.company-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary, #5e6f7d);
}

/* ----- SERVICES CARDS ----- */
.service-card {
    background: var(--card-bg, white);
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition, all 0.3s ease);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.05));
    height: 100%;
}

body.dark .service-card {
    background: var(--card-bg, #1e2538);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary, #0a2c3d);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary, #5e6f7d);
    line-height: 1.5;
}

/* ----- MILESTONES TIMELINE ----- */
.milestones-section {
    background: var(--card-bg, white);
    border-radius: 40px;
    padding: 2rem;
}

body.dark .milestones-section {
    background: var(--card-bg, #1e2538);
}

.timeline-wrapper {
    position: relative;
    padding-left: 30px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0d6efd, #d4a11e);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #0d6efd;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #0d6efd;
}

body.dark .timeline-dot {
    border-color: var(--card-bg, #1e2538);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.3rem;
}

.timeline-content p {
    color: var(--text-secondary, #5e6f7d);
    font-size: 0.9rem;
    margin: 0;
}

/* ----- TEAM MEMBERS ----- */
.team-member {
    background: var(--card-bg, white);
    border-radius: 28px;
    padding: 1.8rem;
    text-align: center;
    transition: var(--transition, all 0.3s ease);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.05));
    height: 100%;
}

body.dark .team-member {
    background: var(--card-bg, #1e2538);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: #e4edff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: #0d6efd;
}

body.dark .member-avatar {
    background: #2a3448;
}

.team-member h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary, #0a2c3d);
}

.member-role {
    font-size: 0.8rem;
    color: #d4a11e;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    font-size: 0.85rem;
    color: var(--text-secondary, #5e6f7d);
    line-height: 1.4;
}

/* ----- PARTNERS SECTION ----- */
.partners-section {
    background: var(--card-bg, white);
    border-radius: 40px;
    padding: 2rem;
}

body.dark .partners-section {
    background: var(--card-bg, #1e2538);
}

.partner-logo {
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.05));
    border-radius: 20px;
    transition: var(--transition, all 0.3s ease);
}

.partner-logo:hover {
    transform: translateY(-3px);
    border-color: #0d6efd;
}

.partner-logo i {
    font-size: 2rem;
    color: #0d6efd;
    display: block;
    margin-bottom: 0.5rem;
}

.partner-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #0a2c3d);
}

/* ----- CAREERS SECTION ----- */
.careers-section {
    background: linear-gradient(135deg, #0d6efd10, #d4a11e10);
    border-radius: 40px;
    padding: 2.5rem;
}

/* ----- SECTION TITLES ----- */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary, #0a2c3d);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary, #5e6f7d);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- RESPONSIVE STYLES ----- */
@media (max-width: 768px) {
    .company-hero {
        padding: 2rem 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .overview-card {
        padding: 1.2rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .team-member {
        padding: 1.2rem;
    }

    .member-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .partner-logo i {
        font-size: 1.5rem;
    }

    .careers-section {
        padding: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .company-hero h1 {
        font-size: 1.8rem;
    }

    .company-icon-large {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}



/* Add to assets/css/company.css */

/* Why Choose Us Cards */
.why-choose-section {
    margin-bottom: 2rem;
}

.why-card {
    background: var(--card-bg, white);
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition, all 0.3s ease);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.05));
    height: 100%;
}

body.dark .why-card {
    background: var(--card-bg, #1e2538);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: white;
}

.why-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary, #0a2c3d);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary, #5e6f7d);
    line-height: 1.5;
}

/* Contact CTA Section */
.contact-cta {
    margin-bottom: 2rem;
}

.contact-cta .cta-content {
    background: linear-gradient(135deg, #0d6efd10, #d4a11e10);
    border-radius: 40px;
    padding: 3rem;
}