/* ============================================================
   CLS 공통 우측 고정 퀵메뉴 (시험/분석 의뢰 + 간편상담 + 카카오톡 + TOP)
   - 전 프론트 페이지 공통 (headHtml.jsp 전역 로드 + header.jsp include)
   - 색상은 CI 값 하드코딩(서브페이지 --cls-* 변수 미로드 대비)
   ============================================================ */
.quote-fab { position: fixed; right: 24px; bottom: 30px; z-index: 900; display: flex; flex-direction: column; gap: 10px; }
.quote-fab a {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
	width: 88px; height: 88px; border-radius: 18px; box-shadow: 0 10px 26px rgba(10,37,64,.22);
	font-size: 13.5px; font-weight: 700; line-height: 1.3; text-align: center; transition: transform .2s;
	text-decoration: none;
}
.quote-fab .q-apply  { background: #00393C; color: #fff; }            /* CI 딥틸 — 핵심 CTA */
.quote-fab .q-consult{ background: #009C90; color: #fff; }            /* 미드틸 */
.quote-fab .q-kakao  { background: #FEE500; color: #3C1E1E; }
.quote-fab .q-kakao .q-ico { display: flex; }
.quote-fab .q-top    { background: #fff; color: #00393C; border: 1.5px solid #e6e8ec; box-shadow: 0 6px 18px rgba(10,37,64,.12); }
.quote-fab a .q-ico  { font-size: 24px; line-height: 1; }
.quote-fab a:hover   { transform: translateY(-3px); }

/* 간편상담 모달 */
.qc-modal-bg { display: none; position: fixed; inset: 0; background: rgba(32,52,79,.55); z-index: 1300; }
.qc-modal-bg.on { display: block; }
.qc-modal {
	display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
	width: 92%; max-width: 440px; background: #fff; border-radius: 18px; padding: 34px 30px 30px;
	z-index: 1310; box-shadow: 0 24px 60px rgba(10,37,64,.3); max-height: 90vh; overflow-y: auto;
}
.qc-modal.on { display: block; }
.qc-modal .qc-close { position: absolute; top: 16px; right: 18px; width: 34px; height: 34px; border: 0; background: none; font-size: 28px; line-height: 1; color: #6b7480; cursor: pointer; }
.qc-modal .qc-title { font-size: 24px; font-weight: 800; color: #00393C; margin: 0 0 8px; }
.qc-modal .qc-desc { font-size: 14.5px; color: #6b7480; margin: 0 0 22px; line-height: 1.5; }
.qc-modal .qc-field { margin-bottom: 14px; }
.qc-modal .qc-field label { display: block; font-size: 14px; font-weight: 600; color: #23303f; margin-bottom: 6px; }
.qc-modal .qc-field label em { color: #00C3BF; font-style: normal; }
.qc-modal .qc-field input, .qc-modal .qc-field textarea {
	width: 100%; box-sizing: border-box; border: 1px solid #e6e8ec; border-radius: 10px; padding: 12px 14px;
	font-size: 15px; font-family: inherit; color: #23303f; background: #fbfcfd; transition: border-color .2s;
}
.qc-modal .qc-field input:focus, .qc-modal .qc-field textarea:focus { outline: none; border-color: #00C3BF; background: #fff; }
.qc-modal .qc-field textarea { resize: vertical; }
.qc-modal .qc-agree { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #6b7480; margin: 6px 0 20px; cursor: pointer; }
.qc-modal .qc-agree input { width: 16px; height: 16px; accent-color: #00C3BF; }
.qc-modal .qc-submit { width: 100%; height: 52px; border: 0; border-radius: 12px; background: #00393C; color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; transition: background .2s; }
.qc-modal .qc-submit:hover { background: #009C90; }

@media all and (max-width: 768px) {
	.quote-fab { right: 14px; bottom: 16px; gap: 8px; }
	.quote-fab a { width: 72px; height: 72px; font-size: 12px; }
}
