@charset "utf-8";
/* 회사 소개 페이지 스킨 전용 스타일 - 공통 스타일은 theme/basic/css/common.css .company-page 참조 */

.sub-page .container {
    max-width: 1472px;
}

/* 제목 파란 점 */
.sub-page .section-title {
    font-size: 30px;
    font-weight: 700;
    color: #212121;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sub-page .section-title {
        font-size: 24px;
        gap: 10px;
        margin-bottom: 30px;
    }
}

.sub-page .section-title::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #2563EB; /* 시안의 파란색 */
    border-radius: 50%;
}

@media (max-width: 768px) {
    .sub-page .section-title::before {
        width: 14px;
        height: 14px;
    }
}

/* 인트로 배너 공션 스타일 */
.sub-page .intro-banner {
    position: relative;
    width: 100%;
    height: 200px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.sub-page .intro-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.sub-page .intro-banner .text-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.sub-page .intro-banner p {
    color: #212121;
    font-size: 26px;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 768px) {
    .sub-page .intro-banner { height: auto; border-radius: 20px; padding: 40px 0; }
    .sub-page .intro-banner p { font-size: 18px; }
}

/* 본사/교육원 타이틀 */
.branch-title {
    font-size: 30px;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 50px;
}

/* 카카오맵 박스 */
.map-box {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

/* 주소 배너 */
.address-banner {
    background-color: #EAF0FD;
    border-radius: 10px;
    padding: 30px 18px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #2563EB;
}

/* 교통수단 정보 카드 */
.info-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #EAEAEA         ;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.info-card .icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    background: #EAF0FD;
    border-radius: 50%;
    width: 180px;
    height: 180px;
}

.info-card .icon-wrap img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.info-card .icon-wrap span {
    font-size: 18px;
    font-weight: 700;
    color: #2563EB;
}

.info-card .detail-list {
    font-size: 18px;
    color: #212121;
    line-height: 1.8;
    text-align: left;
    width: 100%;
}

.info-card .detail-list li {
    position: relative;
    padding-left: 15px;
    font-weight: 400;
}

.info-card .detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 4px;
    height: 4px;
    background: #212121;
    border-radius: 50%;
}

/* 문의 방법 카드 섹션 */
.contact-card {
    background-color: #EAF0FD;
    border-radius: 15px;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

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

.contact-card .label {
    font-size: 26px;
    font-weight: 700;
    color: #2563EB;
    line-height: 1;
}

.contact-card .value {
    font-size: 20px;
    font-weight: 700;
    color: #2563EB;
    word-break: break-all;
    line-height: 1;
}

.contact-card .value em {
    font-style: normal;
}

@media (max-width: 1024px) {
    .map-box { height: 280px; }
    .address-banner { font-size: 16px; }
    .info-card { padding: 20px; min-height: auto; }
    .contact-card { padding: 25px 15px; }
    .contact-card .label { font-size: 16px; }
    .contact-card .value { font-size: 15px; }
}

/* Intersection Observer Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.reveal-active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Add delays for staggered effect */
.reveal-active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-active > *:nth-child(5) { transition-delay: 0.5s; }

/* Premium Interaction Effects */
.contact-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
    cursor: default;
}
.contact-card:hover {
    background-color: #2563EB;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}
.contact-card:hover .label,
.contact-card:hover .value {
    color: #fff;
}
.contact-card:hover img {
    filter: brightness(10) grayscale(1) brightness(100);
}

.info-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.info-card:hover {
    border-color: #2563EB;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Base state for reveal elements */
[class*="reveal"] {
    will-change: transform, opacity;
}

/* Detailed Responsive Adjustments */
@media (max-width: 768px) {
    .map-box {
        height: 250px;
    }
    .address-banner {
        font-size: 18px;
        padding: 20px 10px;
    }
    .branch-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .info-card .icon-wrap {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }
    .info-card .icon-wrap img {
        width: 60px;
    }
    .info-card .icon-wrap span {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .contact-card .label {
        font-size: 14px;
    }
    .contact-card .value {
        font-size: 13px;
    }
    .map-box {
        height: 200px;
    }
    .address-banner {
        font-size: 15px;
    }
}
