/*--------------------------------------------------------------
# About Page - 회사 소개 페이지 스타일
--------------------------------------------------------------*/

:root {
    /* Primary Colors */
    --about-primary: #feb900;
    --about-primary-light: #ffc732;
    --about-primary-dark: #e5a600;

    /* Neutral Colors */
    --about-white: #FFFFFF;
    --about-gray-50: #FAFAFA;
    --about-gray-100: #F5F5F5;
    --about-gray-200: #EEEEEE;
    --about-gray-300: #E0E0E0;
    --about-gray-400: #BDBDBD;
    --about-gray-500: #9E9E9E;
    --about-gray-600: #757575;
    --about-gray-700: #616161;
    --about-gray-800: #424242;
    --about-gray-900: #212121;

    /* Text Colors */
    --about-text-primary: #212121;
    --about-text-secondary: #616161;
    --about-text-muted: #9E9E9E;

    /* Background Colors */
    --about-bg-white: #FFFFFF;
    --about-bg-light: #FAFAFA;
    --about-bg-gray: #F5F5F5;
}

/* ======= Company Info Section ======= */
.about-company {
    background: var(--about-bg-white);
    padding: 80px 0;
}

.about-company .company-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-company .company-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.about-company .company-image .image-placeholder {
    background: var(--about-gray-100);
    border: 2px dashed var(--about-gray-300);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-company .company-image .image-placeholder i {
    font-size: 48px;
    color: var(--about-gray-400);
    margin-bottom: 20px;
}

.about-company .company-image .image-placeholder .placeholder-text {
    color: var(--about-gray-600);
    font-size: 14px;
    margin-bottom: 8px;
}

.about-company .company-image .image-placeholder .placeholder-size {
    color: var(--about-primary);
    font-weight: 600;
    font-size: 13px;
    background: rgba(254, 185, 0, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
}

.about-company .company-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-company .company-text {
    flex: 1;
}

.about-company .company-text .section-badge {
    display: inline-block;
    background: rgba(254, 185, 0, 0.15);
    color: var(--about-primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-company .company-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.about-company .company-text .established {
    color: var(--about-primary);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 24px;
}

.about-company .company-text p {
    color: var(--about-text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-company .company-values {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-company .company-values li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--about-text-secondary);
    font-size: 15px;
}

.about-company .company-values li i {
    color: var(--about-primary);
    font-size: 18px;
    margin-top: 2px;
}

/* ======= CEO Message Section ======= */
.about-ceo {
    background: var(--about-bg-gray);
    padding: 80px 0;
}

.about-ceo .ceo-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-ceo .section-badge {
    display: inline-block;
    background: rgba(254, 185, 0, 0.15);
    color: var(--about-primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-ceo h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 32px;
}

.about-ceo .ceo-message {
    background: var(--about-bg-white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
    position: relative;
}

.about-ceo .ceo-message::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--about-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.about-ceo .ceo-message p {
    color: var(--about-text-secondary);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.about-ceo .ceo-message p:last-of-type {
    margin-bottom: 0;
}

.about-ceo .ceo-message .highlight {
    color: var(--about-text-primary);
    font-weight: 600;
}

.about-ceo .ceo-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--about-gray-200);
    text-align: right;
}

.about-ceo .ceo-signature .ceo-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--about-text-primary);
}

.about-ceo .ceo-signature .ceo-title {
    font-size: 14px;
    color: var(--about-text-muted);
    margin-top: 4px;
}

/* ======= Business Areas Section ======= */
.about-business {
    background: var(--about-bg-white);
    padding: 80px 0;
}

.about-business .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-business .section-header .section-badge {
    display: inline-block;
    background: rgba(254, 185, 0, 0.15);
    color: var(--about-primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-business .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 16px;
}

.about-business .section-header p {
    color: var(--about-text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.about-business .business-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-business .business-card {
    background: var(--about-bg-light);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--about-gray-200);
}

.about-business .business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--about-primary);
}

.about-business .business-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.about-business .business-card .card-icon i {
    font-size: 32px;
    color: var(--about-white);
}

.about-business .business-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 16px;
}

.about-business .business-card p {
    color: var(--about-text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-business .business-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.about-business .business-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--about-gray-200);
    font-size: 14px;
    color: var(--about-text-secondary);
}

.about-business .business-card ul li:last-child {
    border-bottom: none;
}

.about-business .business-card ul li i {
    color: var(--about-primary);
    font-size: 12px;
}

/* Image placeholder for business cards */
.about-business .business-card .card-image-placeholder {
    background: var(--about-gray-100);
    border: 2px dashed var(--about-gray-300);
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 24px;
    text-align: center;
}

.about-business .business-card .card-image-placeholder i {
    font-size: 36px;
    color: var(--about-gray-400);
    margin-bottom: 12px;
    display: block;
}

.about-business .business-card .card-image-placeholder .placeholder-text {
    color: var(--about-gray-600);
    font-size: 12px;
    margin-bottom: 4px;
}

.about-business .business-card .card-image-placeholder .placeholder-size {
    color: var(--about-primary);
    font-weight: 600;
    font-size: 11px;
}

/* ======= Location Section ======= */
.about-location {
    background: var(--about-bg-gray);
    padding: 80px 0;
}

.about-location .section-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 0;
}

.about-location .section-header .section-badge {
    display: inline-block;
    background: rgba(254, 185, 0, 0.15);
    color: var(--about-primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-location .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 16px;
}

.about-location .section-header h2::before,
.about-location .section-header h2::after {
    display: none;
    content: none;
}

.about-location .section-header p {
    color: var(--about-text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-location .location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-location .location-map {
    background: var(--about-bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-location .location-map #map {
    width: 100%;
    height: 450px;
}

.about-location .location-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-location .info-card {
    background: var(--about-bg-white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--about-gray-200);
}

.about-location .info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    margin: 0;
    box-shadow: none;
}

.about-location .info-card .info-item:first-child {
    padding-top: 0;
}

.about-location .info-card .info-item:last-child {
    padding-bottom: 0;
}

.about-location .info-card .info-item:not(:last-child) {
    border-bottom: 1px solid var(--about-gray-200);
}

.about-location .info-card .info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
}

.about-location .info-card .info-icon i {
    font-size: 20px;
    color: var(--about-white);
    width: auto;
    height: auto;
    line-height: 1;
    border: none;
    border-radius: 0;
    margin: 0;
}

.about-location .info-card .info-text {
    flex: 1;
}

.about-location .info-card .info-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--about-text-muted);
    margin: 0 0 6px 0;
    padding: 0;
    line-height: 1.4;
}

.about-location .info-card .info-text p {
    font-size: 15px;
    font-weight: 500;
    color: var(--about-text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.about-location .transport-card {
    background: var(--about-bg-white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--about-gray-200);
}

.about-location .transport-card > h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--about-text-primary);
    margin: 0 0 24px 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.about-location .transport-card > h4 i {
    color: var(--about-primary);
    font-size: 20px;
}

.about-location .transport-item {
    margin-bottom: 24px;
}

.about-location .transport-item:last-child {
    margin-bottom: 0;
}

.about-location .transport-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--about-text-secondary);
    margin-bottom: 12px;
    padding: 0;
}

.about-location .transport-title i {
    font-size: 16px;
    color: var(--about-gray-600);
}

.about-location .transport-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-location .transport-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--about-text-secondary);
    flex-wrap: wrap;
    border-bottom: 1px solid var(--about-gray-100);
    margin: 0;
}

.about-location .transport-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-location .transport-list .line,
.about-location .transport-list .bus {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--about-white);
    line-height: 1.3;
}

.about-location .transport-list .line-1 {
    background: #0052A4;
}

.about-location .transport-list .line-7 {
    background: #747F00;
}

.about-location .transport-list .bus-town {
    background: #53B332;
}

.about-location .transport-list .bus-green {
    background: #33CC99;
}

.about-location .transport-list .bus-blue {
    background: #0068B7;
}

.about-location .transport-list .bus-red {
    background: #D4003B;
}

.about-location .transport-list .station {
    font-weight: 600;
    color: var(--about-text-primary);
}

.about-location .transport-list .desc {
    color: var(--about-text-muted);
    font-size: 13px;
}

/* ======= Responsive ======= */
@media (max-width: 992px) {
    .about-company .company-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-company .company-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-business .business-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-location .location-content {
        grid-template-columns: 1fr;
    }

    .about-location .location-map #map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-company,
    .about-ceo,
    .about-business,
    .about-location {
        padding: 60px 0;
    }

    .about-company .company-text h2 {
        font-size: 26px;
    }

    .about-ceo .ceo-message {
        padding: 32px 24px;
    }

    .about-business .business-cards {
        grid-template-columns: 1fr;
    }

    .about-business .section-header h2 {
        font-size: 26px;
    }

    .about-location .section-header h2 {
        font-size: 26px;
    }

    .about-location .section-header h2::before,
    .about-location .section-header h2::after {
        display: none;
        content: none;
    }

    .about-location .location-map #map {
        height: 300px;
    }

    .about-location .info-card,
    .about-location .transport-card {
        padding: 20px;
    }

    .about-location .info-card .info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .about-location .info-card .info-icon i {
        font-size: 18px;
    }

    .about-location .transport-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
