/* ====================================
   COMPANY PAGE STYLES
   ==================================== */

.company-intro,
.our-purpose,
.our-values,
.work-culture,
.team-stats {
    padding: 6rem 2rem;
}

.company-intro { background: #fff; }
.our-purpose { background: var(--bg-cream); }
.our-values { background: var(--bg-light); }
.work-culture { background: #fff; }
.team-stats { background: var(--green-dark); }

.company-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Images */
.company-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #e8f5e9;
}

.company-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.company-img-wrap:hover img { transform: scale(1.03); }

/* Values Grid */
.values-title {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-light));
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.value-icon {
    width: 48px; height: 48px;
    background: #e8f5e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 24px; height: 24px;
    color: var(--green-dark);
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* Work Culture */
.culture-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: center;
}

.culture-sub-label {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    font-style: italic;
}

.culture-description p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.culture-image {
    border-radius: 20px;
    overflow: hidden;
    max-height: 450px;
}

.culture-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ====================================
   RESPONSIVE - COMPANY
   ==================================== */
@media (max-width: 900px) {
    .values-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .our-purpose .two-col > .col-image { order: -1; }

    .culture-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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