/* 페이지 헤더 */
.page-header {
    background: linear-gradient(135deg, #002147, #003366);
    color: white;
    padding: 120px 0 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #66ccff;
}

/* 회사 정보 카드 */
.company-overview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin: -60px auto 0;
    position: relative;
    z-index: 2;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
}

.info-content h5 {
    margin-bottom: 0.5rem;
    color: #002147;
    font-weight: 600;
}

.info-content p {
    margin: 0;
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
}

/* 경영 이념 섹션 */
.philosophy-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
}

.philosophy-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.philosophy-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
}

.slogan {
    font-size: 2.2rem;
    font-weight: 700;
    color: #002147;
    margin-bottom: 1rem;
}

.slogan-en {
    font-size: 1.5rem;
    color: #0066cc;
    font-style: italic;
    margin-bottom: 2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* 사업장 섹션 */
.office-section {
    margin: 4rem 0;
}

.office-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.office-image {
    height: 200px;
    /* background: linear-gradient(45deg, #0066cc, #66ccff); */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.office-content {
    padding: 2rem;
}

.office-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #002147;
    margin-bottom: 1rem;
}

.office-address {
    color: #6c757d;
    margin-bottom: 1rem;
}

.office-features {
    list-style: none;
    padding: 0;
}

.office-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.office-features li:last-child {
    border-bottom: none;
}

.office-features i {
    color: #0066cc;
    margin-right: 0.5rem;
}

/* 섹션 제목 */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002147;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* 반응형 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .company-overview {
        margin: -40px 1rem 0;
        padding: 2rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-item {
        padding: 1rem;
    }

    .philosophy-card {
        padding: 2rem;
    }

    .slogan {
        font-size: 1.8rem;
    }
}

/* 지도 섹션 */
.map-section {
    margin: 4rem 0;
    background: #f8f9fa;
    padding: 4rem 0;
    border-radius: 30px;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    width: 100%;
    min-height: 400px;
    background: #e9ecef;
    border: 2px dashed #dee2e6;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    padding: 2rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.map-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
}

.map-placeholder small {
    display: block;
    margin: 0.5rem 0;
    opacity: 0.7;
}

/* 반응형 - 지도 */
@media (max-width: 768px) {
    .map-section {
        margin: 2rem 0;
        padding: 2rem 0;
    }

    .map-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .map-placeholder {
        min-height: 250px;
        padding: 1rem;
    }

    .map-placeholder i {
        font-size: 2rem;
    }
}