/* ═══════════════════════════════════════════════
   Bloomify Flow01 - main.css
   회원가입/로그인/아이디찾기/비밀번호찾기 공통 스타일
   ═══════════════════════════════════════════════ */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "FlowerFoxSans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  background-color: #faf8f6;
  color: #2d2926;
  line-height: 1.5;
  min-height: 90vh;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

input, button, textarea, select { font-family: inherit; }

/* ═══ Layout ═══ */
.login-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #fffaf5 0, #faf8f6 280px, #faf8f6 100%);
}
.login-page .site-header {
  position: relative;
  z-index: 20;
}
.page-wrap {
  min-height: calc(100vh - 190px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 16px 48px;
}
.page-container { width: 100%; max-width: 480px; }
.page-container.wide { max-width: 520px; }
.login-copyright {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: #8a7e76;
  white-space: nowrap;
}

/* ═══ Logo ═══ */
.logo-area { text-align: center; margin-bottom: 32px; }
.logo-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.logo-emoji { font-size: 32px; }
.logo-text { font-size: 28px; font-weight: 700; color: #e07c24; }
.logo-sub { font-size: 14px; color: #8a7e76; }

/* ═══ Card ═══ */
.card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e1dc;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  overflow: hidden;
}
.card-body { padding: 28px; }

/* ═══ Tabs ═══ */
.tab-row { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid #e5e1dc; }
.tab-btn {
  padding: 16px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: transparent; border: none; cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all .2s;
  position: relative;
}
.tab-btn:hover { background: #faf8f6; }
.tab-btn.active-personal { background: #fef6ee; border-bottom-color: #e07c24; }
.tab-btn.active-business { background: #eff6ff; border-bottom-color: #3b82f6; }
.tab-btn.active-vendor { background: #ecfdf5; border-bottom-color: #10b981; }
.tab-icon { width: 20px; height: 20px; }
.tab-label { font-size: 13px; font-weight: 500; color: #8a7e76; }
.tab-desc { font-size: 10px; color: #b0a8a0; }
.tab-btn.active-personal .tab-label,
.tab-btn.active-personal .tab-desc { color: #e07c24; }
.tab-btn.active-personal .tab-label { font-weight: 700; }
.tab-btn.active-business .tab-label,
.tab-btn.active-business .tab-desc { color: #3b82f6; }
.tab-btn.active-business .tab-label { font-weight: 700; }
.tab-btn.active-vendor .tab-label,
.tab-btn.active-vendor .tab-desc { color: #10b981; }
.tab-btn.active-vendor .tab-label { font-weight: 700; }

/* ═══ Tab description badge ═══ */
.tab-badge { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; padding: 12px; border-radius: 12px; }

/* ═══ Form elements ═══ */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: #2d2926; margin-bottom: 6px; }
.input-wrap { position: relative; }
.input-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: #b0a8a0; pointer-events: none;
}
.form-input {
  width: 100%; padding: 12px 16px 12px 40px;
  background: #f8f4f0; border-radius: 12px;
  border: 1px solid transparent; outline: none;
  font-size: 14px; color: #2d2926;
  transition: all .2s;
}
.form-input:focus { border-color: #e07c24; background: #fff; }
.form-input.no-icon { padding-left: 16px; }
.form-error { font-size: 12px; color: #d4183d; margin-top: 4px; }

.form-input-lg {
  font-size: 18px; font-weight: 600;
  letter-spacing: .3em; padding-right: 64px;
}

/* ═══ Eye toggle ═══ */
.eye-btn {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 4px; color: #b0a8a0;
  transition: color .2s;
}
.eye-btn:hover { color: #2d2926; }

/* ═══ Timer ═══ */
.timer-text { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 13px; font-weight: 600; }

/* ═══ Remember / links row ═══ */
.form-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.check-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: #8a7e76; }
.check-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: #e07c24; cursor: pointer; }
.link-group { display: flex; align-items: center; gap: 8px; }
.link-group a { font-size: 13px; color: #8a7e76; transition: color .2s; }
.link-group a:hover { color: #e07c24; }
.link-sep { color: #ddd; font-size: 13px; }

/* ═══ Buttons ═══ */
.btn {
  width: 100%; padding: 14px; border-radius: 12px; border: none;
  font-size: 15px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .2s;
}
.btn:hover { filter: brightness(1.08); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: #e07c24; color: #fff; }
.btn-blue { background: #3b82f6; color: #fff; }
.btn-green { background: #10b981; color: #fff; }
.btn-outline { background: #fff; color: #2d2926; border: 1px solid #e5e1dc; font-weight: 500; }
.btn-outline:hover { background: #faf8f6; }
.btn-sm { padding: 10px 16px; font-size: 13px; width: auto; }
.btn-half { flex: 1; }
.btn-flex2 { flex: 2; }
.btn-row { display: flex; gap: 12px; margin-top: 8px; }

/* ═══ Social buttons ═══ */
.divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; }
.divider-line { flex: 1; height: 1px; background: #e5e1dc; }
.divider-text { font-size: 12px; color: #8a7e76; white-space: nowrap; }

.social-row { display: flex; gap: 12px; }
.social-btn {
  flex: 1; padding: 12px; border-radius: 12px; border: 1px solid #e5e1dc;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; cursor: pointer; transition: all .2s;
  font-size: 13px; font-weight: 500;
}
.social-btn:hover { border-color: #b0a8a0; }
.social-kakao:hover { background: #fee500; border-color: #fee500; }
.social-naver:hover { background: #03c75a; border-color: #03c75a; color: #fff; }
.social-google:hover { background: #f8f4f0; }
.social-saml:hover, .social-azure:hover { background: #eff6ff; border-color: #93c5fd; }

/* ═══ Signup link ═══ */
.bottom-link { text-align: center; margin-top: 24px; padding-top: 16px; border-top: 1px solid #e5e1dc; }
.bottom-link span { font-size: 13px; color: #8a7e76; }
.bottom-link a { font-size: 13px; font-weight: 600; }
.bottom-link a:hover { text-decoration: underline; }

/* ═══ Benefits box ═══ */
.benefits-box { margin-top: 20px; border-radius: 16px; padding: 20px; border: 1px solid transparent; }
.benefits-title { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 13px; font-weight: 600; }
.benefit-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.benefit-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-text { font-size: 12px; color: #5a534d; }

/* ═══ Demo account boxes ═══ */
.demo-box { margin-top: 20px; border-radius: 16px; padding: 20px; }
.demo-title { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.demo-title-emoji { font-size: 16px; }
.demo-title-text { font-size: 14px; font-weight: 600; }
.demo-desc { font-size: 12px; color: #8a7e76; margin-bottom: 12px; }
.demo-card {
  width: 100%; padding: 12px; background: #fff; border-radius: 12px;
  border: 1px solid #e5e1dc; cursor: pointer; transition: all .2s;
  text-align: left; display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.demo-card:hover { border-color: rgba(224,124,36,.5); }
.demo-name { font-size: 13px; font-weight: 600; color: #2d2926; }
.demo-badge {
  display: inline-block; padding: 2px 6px; border-radius: 4px;
  font-size: 10px; font-weight: 600; margin-left: 8px;
}
.demo-info { font-size: 12px; color: #8a7e76; margin-top: 4px; }
.demo-info-sep { color: #aaa; margin: 0 8px; font-size: 11px; }

/* vendor dark demo */
.demo-box-dark { background: linear-gradient(to right, #1e293b, #334155); border: 1px solid #475569; }
.demo-box-dark .demo-card { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.1); }
.demo-box-dark .demo-card:hover { background: rgba(255,255,255,.2); border-color: rgba(16,185,129,.5); }
.demo-box-dark .demo-name { color: #fff; }
.demo-box-dark .demo-info { color: #94a3b8; }
.demo-box-dark .demo-info-sep { color: #475569; }

/* ═══ Signup - Member Type Cards ═══ */
.member-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.member-card {
  position: relative; padding: 16px; border-radius: 16px;
  border: 2px solid rgba(0,0,0,.06); background: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; transition: all .2s;
}
.member-card:hover { border-color: #ddd; }
.member-card.active { box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.member-card .check-badge {
  position: absolute; top: -8px; right: -8px;
  width: 20px; height: 20px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}
.member-card.active .check-badge { display: flex; }

/* ═══ Step indicator ═══ */
.step-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; padding: 0 8px; }
.step-item { display: flex; align-items: center; gap: 6px; flex: 1; }
.step-line { flex: 1; height: 1px; background: #e5e1dc; }
.step-line.done { background: #e07c24; }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; flex-shrink: 0;
  background: #f5efe8; color: #8a7e76;
}
.step-num.active, .step-num.done { background: #e07c24; color: #fff; }
.step-num.active-blue, .step-num.done-blue { background: #3b82f6; color: #fff; }
.step-num.active-green, .step-num.done-green { background: #10b981; color: #fff; }
.step-label { font-size: 12px; color: #8a7e76; white-space: nowrap; }
.step-label.active { font-weight: 600; }

/* ═══ Password strength ═══ */
.pw-bar { height: 6px; background: #f3f0ec; border-radius: 999px; overflow: hidden; margin-top: 8px; }
.pw-fill { height: 100%; border-radius: 999px; transition: width .3s, background .3s; }
.pw-text { font-size: 11px; margin-top: 4px; }

/* ═══ Summary box ═══ */
.summary-box {
  padding: 12px; border-radius: 12px; border: 1px solid #e5e1dc;
  background: #faf8f6; margin-bottom: 16px;
}
.summary-title { font-size: 12px; font-weight: 600; color: #2d2926; margin-bottom: 8px; }
.summary-grid { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; }
.summary-label { font-size: 11px; color: #8a7e76; }
.summary-value { font-size: 11px; font-weight: 500; color: #2d2926; }

/* ═══ Agreements ═══ */
.agree-box { background: #f8f4f0; border-radius: 12px; padding: 16px; margin-bottom: 16px; }
.agree-all { padding-bottom: 12px; border-bottom: 1px solid #e5e1dc; margin-bottom: 12px; }
.agree-item { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; cursor: pointer; }
.agree-item:last-child { margin-bottom: 0; }
.agree-item input { width: 16px; height: 16px; accent-color: #e07c24; cursor: pointer; }
.agree-label-required { font-size: 13px; color: #2d2926; }
.agree-label-optional { font-size: 13px; color: #8a7e76; }

/* ═══ Note box ═══ */
.note-box { padding: 12px; border-radius: 12px; margin-bottom: 16px; display: flex; gap: 8px; }
.note-icon { flex-shrink: 0; margin-top: 2px; }
.note-title { font-size: 12px; font-weight: 600; }
.note-desc { font-size: 11px; color: #64748b; margin-top: 2px; line-height: 1.5; }

/* ═══ Hint box ═══ */
.hint-box { background: #fef6ee; border-radius: 12px; padding: 16px; margin-top: 16px; }
.hint-title { font-size: 12px; color: #e07c24; font-weight: 600; margin-bottom: 6px; }
.hint-text { font-size: 12px; color: #8a7e76; }

/* ═══ Progress bar (find-password) ═══ */
.progress-row { display: flex; gap: 4px; margin-bottom: 24px; }
.progress-item { flex: 1; }
.progress-bar { height: 4px; border-radius: 999px; background: #f5efe8; }
.progress-bar.active { background: #e07c24; }
.progress-label { font-size: 11px; text-align: center; margin-top: 4px; color: #8a7e76; }
.progress-label.active { color: #e07c24; }

/* ═══ Result states ═══ */
.result-center { text-align: center; padding: 16px 0; }
.result-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.result-icon-success { background: #f0fdf4; }
.result-icon-error { background: #fef2f2; }
.result-title { font-size: 15px; font-weight: 600; color: #2d2926; margin-bottom: 4px; }
.result-desc { font-size: 13px; color: #8a7e76; margin-bottom: 20px; }

.email-display {
  background: #f8f4f0; border-radius: 12px; padding: 16px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.email-text { font-size: 16px; font-weight: 600; color: #2d2926; }
.copy-btn {
  padding: 8px; background: none; border: none; cursor: pointer;
  border-radius: 8px; transition: background .2s; color: #b0a8a0;
}
.copy-btn:hover { background: #fff; }

/* ═══ Upload placeholder ═══ */
.upload-area {
  width: 100%; padding: 24px; border: 2px dashed #a7f3d0;
  border-radius: 12px; display: flex; flex-direction: column;
  align-items: center; gap: 8px; cursor: pointer;
  transition: background .2s; background: transparent;
}
.upload-area:hover { background: rgba(16,185,129,.03); }

/* ═══ Grid helpers ═══ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.flex-gap2 { display: flex; gap: 8px; }
.flex-gap3 { display: flex; gap: 12px; }

/* ═══ Hide/Show ═══ */
.hidden { display: none !important; }

/* ═══ Toast ═══ */
.toast-container {
  position: fixed; top: 20px; right: 20px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  padding: 12px 20px; border-radius: 12px;
  font-size: 13px; font-weight: 500; color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  animation: toastIn .3s ease-out;
  min-width: 250px; max-width: 400px;
}
.toast-success { background: #16a34a; }
.toast-error { background: #dc2626; }
@keyframes toastIn { from { opacity:0; transform: translateY(-10px); } to { opacity:1; transform: translateY(0); } }
.toast-out { animation: toastOut .3s ease-in forwards; }
@keyframes toastOut { to { opacity:0; transform: translateY(-10px); } }

/* ═══ Responsive ═══ */
@media (max-width: 480px) {
  .page-wrap { padding: 24px 12px; }
  .card-body { padding: 20px; }
  .member-cards { gap: 8px; }
  .member-card { padding: 12px 8px; }
  .social-row { flex-direction: column; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   Service Pages (이용약관, FAQ, 고객센터 등)
   ═══════════════════════════════════════════════ */

/* ═══ Service Layout ═══ */
.svc-wrap {
  min-height: 100vh; display: flex; flex-direction: column;
}
.svc-header {
  background: #fff; border-bottom: 1px solid #e5e1dc;
  padding: 0 24px; position: sticky; top: 0; z-index: 100;
}
.svc-header-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.svc-logo { display: flex; align-items: center; gap: 6px; }
.svc-logo-emoji { font-size: 24px; }
.svc-logo-text { font-size: 20px; font-weight: 700; color: #e07c24; }
.svc-nav { display: flex; align-items: center; gap: 4px; }
.svc-nav a {
  padding: 6px 12px; border-radius: 8px; font-size: 13px; color: #5a534d;
  transition: all .2s;
}
.svc-nav a:hover { background: #fef6ee; color: #e07c24; }
.svc-nav a.active { background: #fef6ee; color: #e07c24; font-weight: 600; }

.svc-main { flex: 1; padding: 32px 24px 64px; }
.svc-container { max-width: 800px; margin: 0 auto; }
.svc-container.narrow { max-width: 640px; }
.svc-container.full { max-width: 960px; }

/* ═══ Service Hero ═══ */
.svc-hero {
  text-align: center; padding: 32px 0 28px;
  border-bottom: 1px solid #e5e1dc; margin-bottom: 32px;
}
.svc-hero-icon { font-size: 40px; margin-bottom: 12px; }
.svc-hero-title { font-size: 26px; font-weight: 700; color: #2d2926; margin-bottom: 8px; }
.svc-hero-desc { font-size: 14px; color: #8a7e76; line-height: 1.7; }
.svc-hero-badge {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; margin-top: 12px;
  background: #fef6ee; color: #e07c24; border: 1px solid rgba(224,124,36,.2);
}

/* ═══ TOC (Table of Contents) ═══ */
.svc-toc {
  background: #f8f4f0; border-radius: 12px; padding: 20px;
  margin-bottom: 32px; border: 1px solid #e5e1dc;
}
.svc-toc-title { font-size: 13px; font-weight: 600; color: #2d2926; margin-bottom: 12px; }
.svc-toc-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.svc-toc-list li a {
  display: block; padding: 6px 10px; border-radius: 8px;
  font-size: 13px; color: #5a534d; transition: all .2s;
}
.svc-toc-list li a:hover { background: #fef6ee; color: #e07c24; }

/* ═══ Section ═══ */
.svc-section { margin-bottom: 36px; }
.svc-section-title {
  font-size: 18px; font-weight: 700; color: #2d2926;
  padding-bottom: 12px; border-bottom: 2px solid #e07c24;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.svc-section-title .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: #e07c24; color: #fff; font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.svc-text { font-size: 14px; color: #5a534d; line-height: 1.8; margin-bottom: 12px; }
.svc-text strong { color: #2d2926; }

/* ═══ Article table ═══ */
.svc-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.svc-table th {
  background: #f8f4f0; padding: 10px 12px; text-align: left;
  font-weight: 600; color: #2d2926; border: 1px solid #e5e1dc;
  white-space: nowrap;
}
.svc-table td {
  padding: 10px 12px; border: 1px solid #e5e1dc; color: #5a534d;
  vertical-align: top; line-height: 1.6;
}
.svc-table tr:hover td { background: #faf8f6; }

/* ═══ Info boxes ═══ */
.svc-info {
  padding: 16px; border-radius: 12px; margin: 16px 0;
  display: flex; gap: 10px;
}
.svc-info-orange { background: #fef6ee; border: 1px solid rgba(224,124,36,.15); }
.svc-info-blue { background: #eff6ff; border: 1px solid rgba(59,130,246,.15); }
.svc-info-green { background: #f0fdf4; border: 1px solid rgba(22,163,106,.15); }
.svc-info-red { background: #fef2f2; border: 1px solid rgba(220,38,38,.15); }
.svc-info-gray { background: #f8f4f0; border: 1px solid #e5e1dc; }
.svc-info-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.svc-info-content { flex: 1; }
.svc-info-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.svc-info-desc { font-size: 12px; line-height: 1.7; color: #5a534d; }

/* ═══ Ordered / Unordered list ═══ */
.svc-ol, .svc-ul { padding-left: 20px; margin: 8px 0 16px; }
.svc-ol li, .svc-ul li { font-size: 13px; color: #5a534d; line-height: 1.8; margin-bottom: 4px; }
.svc-ul { list-style: disc; }

/* ═══ Accordion (FAQ) ═══ */
.acc-item {
  border: 1px solid #e5e1dc; border-radius: 12px;
  margin-bottom: 8px; overflow: hidden; transition: all .2s;
}
.acc-item:hover { border-color: #d5cfc8; }
.acc-item.open { border-color: #e07c24; }
.acc-header {
  width: 100%; padding: 16px 20px; background: #fff; border: none;
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  text-align: left; transition: background .2s;
}
.acc-header:hover { background: #faf8f6; }
.acc-item.open .acc-header { background: #fef6ee; }
.acc-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 600;
  flex-shrink: 0; white-space: nowrap;
}
.acc-question { flex: 1; font-size: 14px; font-weight: 500; color: #2d2926; }
.acc-item.open .acc-question { font-weight: 600; color: #e07c24; }
.acc-arrow {
  width: 20px; height: 20px; flex-shrink: 0; transition: transform .2s;
  color: #b0a8a0;
}
.acc-item.open .acc-arrow { transform: rotate(180deg); color: #e07c24; }
.acc-body {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.acc-body-inner {
  padding: 0 20px 16px; font-size: 13px; color: #5a534d; line-height: 1.8;
}

/* ═══ Category filter pills ═══ */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pill-btn {
  padding: 8px 16px; border-radius: 20px; border: 1px solid #e5e1dc;
  background: #fff; font-size: 13px; color: #5a534d; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.pill-btn:hover { border-color: #e07c24; color: #e07c24; }
.pill-btn.active { background: #e07c24; color: #fff; border-color: #e07c24; }

/* ═══ Contact cards ═══ */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 24px 0; }
.contact-card {
  padding: 24px 16px; border: 1px solid #e5e1dc; border-radius: 16px;
  text-align: center; background: #fff; transition: all .2s;
}
.contact-card:hover { border-color: #e07c24; box-shadow: 0 4px 12px rgba(224,124,36,.1); }
.contact-icon { font-size: 32px; margin-bottom: 12px; }
.contact-title { font-size: 14px; font-weight: 600; color: #2d2926; margin-bottom: 4px; }
.contact-desc { font-size: 12px; color: #8a7e76; line-height: 1.5; }
.contact-value { font-size: 16px; font-weight: 700; color: #e07c24; margin-top: 8px; }

/* ═══ Inquiry Form ═══ */
.inq-form { margin-top: 24px; }
.inq-row { margin-bottom: 16px; }
.inq-label { display: block; font-size: 13px; font-weight: 500; color: #2d2926; margin-bottom: 6px; }
.inq-label .req { color: #d4183d; margin-left: 2px; }
.inq-input {
  width: 100%; padding: 12px 16px; background: #f8f4f0;
  border-radius: 12px; border: 1px solid transparent;
  font-size: 14px; color: #2d2926; outline: none; transition: all .2s;
}
.inq-input:focus { border-color: #e07c24; background: #fff; }
.inq-select {
  width: 100%; padding: 12px 16px; background: #f8f4f0;
  border-radius: 12px; border: 1px solid transparent;
  font-size: 14px; color: #2d2926; outline: none; transition: all .2s;
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a7e76' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.inq-select:focus { border-color: #e07c24; background-color: #fff; }
.inq-textarea {
  width: 100%; padding: 12px 16px; background: #f8f4f0;
  border-radius: 12px; border: 1px solid transparent;
  font-size: 14px; color: #2d2926; outline: none; transition: all .2s;
  resize: vertical; min-height: 120px; line-height: 1.7;
}
.inq-textarea:focus { border-color: #e07c24; background: #fff; }
.inq-file-area {
  padding: 24px; border: 2px dashed #e5e1dc; border-radius: 12px;
  text-align: center; cursor: pointer; transition: all .2s;
}
.inq-file-area:hover { border-color: #e07c24; background: #fef6ee; }

/* ═══ Status timeline ═══ */
.timeline { position: relative; padding-left: 28px; margin: 16px 0; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 4px; bottom: 4px;
  width: 2px; background: #e5e1dc;
}
.tl-item { position: relative; margin-bottom: 16px; }
.tl-dot {
  position: absolute; left: -22px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #e5e1dc; border: 2px solid #fff;
}
.tl-dot.active { background: #e07c24; }
.tl-dot.done { background: #22c55e; }
.tl-title { font-size: 14px; font-weight: 600; color: #2d2926; }
.tl-desc { font-size: 12px; color: #8a7e76; margin-top: 2px; }

/* ═══ Footer ═══ */
.svc-footer {
  background: #f8f4f0; border-top: 1px solid #e5e1dc;
  padding: 24px; text-align: center;
}
.svc-footer p { font-size: 12px; color: #8a7e76; line-height: 1.8; }
.svc-footer a { color: #e07c24; }

/* ═══ Quick links bar ═══ */
.quick-links {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin: 24px 0;
}
.quick-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border: 1px solid #e5e1dc; border-radius: 12px;
  background: #fff; font-size: 13px; color: #5a534d; transition: all .2s;
}
.quick-link:hover { border-color: #e07c24; color: #e07c24; background: #fef6ee; }

/* ═══ Responsive service pages ═══ */
@media (max-width: 768px) {
  .page-wrap {
    min-height: auto;
    align-items: flex-start;
    padding-top: 28px;
  }
  .svc-nav { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-toc-list { grid-template-columns: 1fr; }
  .svc-hero-title { font-size: 22px; }
}
