/* 페이지 헤더 */
.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;
}

/* 연락처 정보 섹션 */
.contact-info-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin: -60px auto 4rem;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #002147;
    margin-bottom: 1rem;
}

.contact-details {
    color: #555;
    line-height: 1.6;
}

.contact-details a {
    color: #0066cc;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* 문의 폼 섹션 */
.contact-form-section {
    margin: 4rem 0;
}

.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-bottom: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #002147;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* 폼 스타일 */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.required {
    color: #dc3545;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.form-control:focus, .form-select:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
    outline: none;
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* 문의 유형별 스타일 */
.inquiry-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.inquiry-type-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquiry-type-item:hover {
    border-color: #0066cc;
    background: #e3f2fd;
}

.inquiry-type-item.selected {
    border-color: #0066cc;
    background: #e3f2fd;
    color: #0066cc;
}

.inquiry-type-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #0066cc;
}

/* 버튼 스타일 */
.btn-primary-custom {
    background: linear-gradient(135deg, #0066cc, #004499);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    color: white;
}

.btn-primary-custom:disabled {
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

/* 지도 섹션 */
.map-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.map-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #e9ecef;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.1rem;
    text-align: center;
    flex-direction: column;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* 오시는 길 */
.directions-section {
    margin: 3rem 0;
}

.directions-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.direction-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
}

.direction-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.3rem;
}

.direction-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #002147;
    margin-bottom: 1rem;
}

.direction-content {
    color: #555;
    line-height: 1.6;
}

/* 성공/오류 메시지 */
.alert-custom {
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border: none;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f1b0b7);
    color: #721c24;
}

.alert-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* 사업장 정보 */
.office-info {
    background: linear-gradient(135deg, #002147, #003366);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.office-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.office-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 204, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #66ccff;
    font-size: 1.8rem;
}

.office-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #66ccff;
    margin-bottom: 0.5rem;
}

.office-address {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* 섹션 제목 */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #002147;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* 반응형 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .contact-info-section {
        margin: -40px 1rem 2rem;
        padding: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-container,
    .directions-container {
        padding: 2rem;
    }

    .inquiry-type-grid {
        grid-template-columns: 1fr;
    }

    .directions-grid,
    .office-grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        height: 250px;
    }
}