/* Company Page Styles */
.company-page {
    background: #f9fafb;
}

/* Company Hero */
.company-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.title-sub {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 10px;
}

.title-accent {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Philosophy Section */
.company-philosophy {
    padding: 80px 0;
    background: white;
}

.philosophy-content {
    margin-top: 50px;
}

.philosophy-main {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-title {
    font-size: 2rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 30px;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: #f3f4f6;
    border-radius: 20px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.value-description {
    line-height: 1.6;
    color: #6b7280;
}

/* Company Overview */
.company-overview {
    padding: 80px 0;
    background: #f9fafb;
}

.overview-table {
    margin-top: 50px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-table table {
    width: 100%;
    border-collapse: collapse;
}

.overview-table th,
.overview-table td {
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.overview-table th {
    width: 30%;
    background: #f3f4f6;
    font-weight: 600;
    color: #1f2937;
}

.overview-table td {
    color: #4b5563;
    line-height: 1.8;
}

.overview-table tr:last-child th,
.overview-table tr:last-child td {
    border-bottom: none;
}

/* CEO Message */
.ceo-message {
    padding: 80px 0;
    background: white;
}

.message-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-top: 50px;
}

.message-image {
    text-align: center;
}

.message-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}

.message-position {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 5px;
}

.message-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
}

.message-text {
    padding-top: 20px;
}

.message-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.6;
    margin-bottom: 30px;
}

.message-text p {
    line-height: 2;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Company Numbers */
.company-numbers {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

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

.number-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.number-value {
    font-size: 3rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 10px;
}

.number-unit {
    font-size: 1.5rem;
    font-weight: 400;
}

.number-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.number-description {
    line-height: 1.6;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Qualifications */
.company-qualifications {
    padding: 80px 0;
    background: white;
}

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

.qualification-card {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

.qualification-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qualification-icon img {
    max-width: 70px;
    max-height: 70px;
}

.qualification-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.qualification-number {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.qualification-description {
    line-height: 1.6;
    color: #4b5563;
}

/* History Timeline */
.company-history {
    padding: 80px 0;
    background: #f9fafb;
}

.history-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.history-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.history-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4f46e5;
    text-align: right;
}

.history-year::after {
    content: '';
    position: absolute;
    left: 94px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #4f46e5;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e5e7eb;
}

.history-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.history-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.history-content p {
    line-height: 1.6;
    color: #6b7280;
}

/* CSR Section */
.company-csr {
    padding: 80px 0;
    background: white;
}

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

.csr-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

.csr-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.csr-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.csr-description {
    line-height: 1.6;
    color: #4b5563;
}

/* Company CTA */
.company-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-accent {
    color: #fbbf24;
    font-size: 2.2rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 40px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .message-content {
        grid-template-columns: 1fr;
    }
    
    .history-timeline::before {
        left: 80px;
    }
    
    .history-item {
        grid-template-columns: 80px 1fr;
        gap: 30px;
    }
    
    .history-year::after {
        left: 74px;
    }
    
    .overview-table th,
    .overview-table td {
        padding: 15px;
    }
    
    .overview-table th {
        width: 40%;
    }
}