/* 지사별 권역 안내 페이지 스타일 */

.location-page {
    min-height: 100vh;
    background: #f9f9f9;
}

/* 페이지 헤더 */
.page-header {
    background: linear-gradient(135deg, var(--main-color-1) 0%, var(--baemin-color-1) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-desc {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.5;
}

/* 지사 섹션 */
.branch-section {
    padding: 60px 0;
    background: #fff;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 지사 그리드 */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* 지사 카드 */
.branch-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.branch-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 24px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 16px;
}

.branch-icon {
    font-size: 24px;
    background: var(--baemin-color-1);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.branch-name {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.branch-content {
    padding: 24px;
}

.branch-areas h4 {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.branch-areas h4::before {
    content: "📍";
    font-size: 18px;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-item {
    background: #f8f9fa;
    color: #495057;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.area-item:hover {
    background: var(--baemin-color-1);
    color: white;
    border-color: var(--baemin-color-1);
}

/* 문의 섹션 */
.contact-section {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-btn-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    background: var(--baemin-color-1);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid var(--baemin-color-1);
}

.contact-btn:hover {
    background: #c91e6e;
    border-color: #c91e6e;
    transform: translateY(-2px);
}

/* 반응형 스타일 */
@media (max-width: 900px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-desc {
        font-size: 16px;
    }
    
    .branch-section {
        padding: 40px 0;
    }
    
    .branch-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .branch-header {
        padding: 20px;
    }
    
    .branch-content {
        padding: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .contact-btn-list {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-desc {
        font-size: 14px;
    }
    
    .section-inner {
        padding: 0 16px;
    }
    
    .branch-section {
        padding: 30px 0;
    }
    
    .branch-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .branch-header {
        padding: 16px;
        gap: 12px;
    }
    
    .branch-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .branch-name {
        font-size: 18px;
    }
    
    .branch-content {
        padding: 16px;
    }
    
    .area-list {
        gap: 6px;
    }
    
    .area-item {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-desc {
        font-size: 14px;
    }
    
    .contact-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
} 