/* ============================================
   contact.css — Contact Us Page
   ============================================ */

/* ── PAGE HERO ── */
.contact-hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(200,150,62,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,98,10,0.05) 0%, transparent 60%);
  padding: 52px 5% 48px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.hero-text-block {}
.contact-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 3px; margin-bottom: 14px;
}
.contact-hero h1 {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white); line-height: 1.15; margin-bottom: 10px;
}
.contact-hero h1 em { font-style: normal; color: var(--gold-lt); }
.contact-hero-sub {
  color: rgba(255,255,255,0.58); font-size: 0.97rem; max-width: 520px;
}
.hero-response-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,150,62,0.2);
  border-radius: 8px; padding: 14px 20px;
  flex-shrink: 0;
}
.hrb-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(74,222,128,0.15);
  border: 1.5px solid rgba(74,222,128,0.4);
  display: flex; align-items: center; justify-content: center;
}
.hrb-icon .material-symbols-outlined {
  font-size: 1.3rem; color: #4ade80;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.hrb-text {
  display: flex;
  flex-direction: column;
}
.hrb-val {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--white); display: block;
}
.hrb-lbl { font-size: 0.76rem; color: rgba(255,255,255,0.45); }

/* ── MAIN LAYOUT ── */
.contact-layout {
  display: flex; flex-wrap: wrap; align-items: flex-start;
  gap: 40px; padding: 56px 5% 80px;
  max-width: 1280px; margin: 0 auto; width: 100%;
}

/* ── LEFT COLUMN ── */
.contact-left { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 28px; }

/* Company info card */
.info-card {
  background: var(--white); border: 1px solid #e9ecef;
  border-radius: 12px; overflow: hidden;
}
.info-card-header {
  background: var(--navy); padding: 16px 24px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 2px solid var(--gold);
}
.info-card-header .material-symbols-outlined {
  font-size: 1.1rem; color: var(--gold-lt);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.info-card-header h3 {
  font-family: 'Sora', sans-serif; font-size: 0.82rem;
  font-weight: 700; color: var(--white);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.info-card-body { padding: 24px; }

/* Company details */
.company-name {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1rem; color: var(--navy); margin-bottom: 6px;
}
.company-reg {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--offwhite); border: 1px solid #e9ecef;
  border-radius: 4px; padding: 4px 10px;
  font-size: 0.76rem; color: #6b7280; margin-bottom: 18px;
}
.company-reg .material-symbols-outlined {
  font-size: 0.95rem; color: var(--gold);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.company-address {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid #f0f0f0;
}
.company-address .material-symbols-outlined {
  font-size: 1.2rem; color: var(--gold); flex-shrink: 0; margin-top: 1px;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.addr-label {
  font-family: 'Sora', sans-serif; font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.addr-line { font-size: 0.9rem; color: var(--navy); line-height: 1.6; }
.addr-cn   { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }

/* Map */
.map-wrap {
  border-radius: 12px; overflow: hidden;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 16px rgba(10,22,40,0.07);
  position: relative;
}
.map-wrap iframe {
  width: 100%; height: 280px; display: block; border: none;
}
.map-overlay-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: var(--gold-lt);
  font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 4px;
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.map-overlay-badge .material-symbols-outlined {
  font-size: 0.95rem; color: var(--gold);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

/* Contact channels */
.channels-card {
  background: var(--white); border: 1px solid #e9ecef; border-radius: 12px;
  overflow: hidden;
}
.channel-list { list-style: none; padding: 0; }
.channel-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s;
}
.channel-item:last-child { border-bottom: none; }
.channel-item:hover { background: var(--offwhite); }
.channel-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--offwhite); border: 1px solid #e9ecef;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel-icon .material-symbols-outlined {
  font-size: 1.2rem;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.channel-icon.email   .material-symbols-outlined { color: var(--orange); }
.channel-icon.phone   .material-symbols-outlined { color: #2563eb; }
.channel-icon.wa      .material-symbols-outlined { color: #25d366; }
.channel-icon.wechat  .material-symbols-outlined { color: #07c160; }
.channel-meta {}
.channel-label {
  font-family: 'Sora', sans-serif; font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2px;
}
.channel-value {
  font-size: 0.92rem; font-weight: 600; color: var(--navy);
  text-decoration: none; display: block;
  transition: color 0.2s;
}
a.channel-value:hover { color: var(--orange); }
.channel-note { font-size: 0.75rem; color: var(--muted); margin-top: 1px; }

/* Wechat Copy Style */
.copy-wrap {
  display: flex; align-items: center; gap: 6px;
}
.copy-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted); display: inline-flex; align-items: center;
  padding: 4px; border-radius: 4px; transition: color 0.2s, background 0.2s;
}
.copy-btn:hover { color: var(--navy); background: #e9ecef; }
.copy-btn .material-symbols-outlined { font-size: 0.95rem; }

/* Business hours */
.hours-card {
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.hours-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(200,150,62,0.15); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hours-icon .material-symbols-outlined {
  font-size: 1.4rem; color: var(--gold-lt);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.hours-text {}
.hours-title {
  font-family: 'Sora', sans-serif; font-size: 0.78rem;
  font-weight: 700; color: var(--gold-lt); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 4px;
}
.hours-detail { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.hours-24-badge {
  margin-left: auto; flex-shrink: 0;
  background: rgba(74,222,128,0.15); border: 1px solid rgba(74,222,128,0.35);
  border-radius: 4px; padding: 4px 10px;
  font-family: 'Sora', sans-serif; font-size: 0.7rem; font-weight: 700;
  color: #4ade80; letter-spacing: 0.06em;
}

/* ── RIGHT COLUMN: FORM ── */
.contact-right { flex: 0 0 400px; position: sticky; top: 88px; }
.contact-form-card {
  background: var(--white); border-radius: 14px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(200,150,62,0.12);
  overflow: hidden;
}
.cfc-header {
  background: var(--navy); padding: 22px 28px 20px;
  border-bottom: 2px solid var(--gold);
  position: relative;
}
.cfc-header::after {
  content: '';
  position: absolute; bottom: -2px; left: 28px;
  width: 48px; height: 2px; background: var(--orange);
}
.cfc-header h2 {
  font-family: 'Sora', sans-serif; font-size: 1.1rem;
  font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.cfc-header p {
  color: var(--muted); font-size: 0.8rem;
  display: flex; align-items: center; gap: 6px;
}
.cfc-header p::before { content: '⚡'; font-size: 0.85em; }
.cfc-body { padding: 24px 28px 28px; }
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block; font-family: 'Sora', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  color: #6b7280; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 5px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 7px;
  font-size: 0.93rem; color: var(--navy); background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,62,0.12);
  background: #fff;
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--orange); color: #fff; border: none; border-radius: 8px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(232,98,10,0.35);
}
.form-submit:hover {
  background: var(--orange-h); transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232,98,10,0.4);
}
.form-assurance {
  text-align: center; margin-top: 12px; font-size: 0.76rem; color: #9ca3af;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.form-assurance::before { content: '🔒'; font-size: 0.8em; }

/* ── QUICK CONTACT STRIP (Priority 2 & 3) ── */
.quick-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qc-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; text-decoration: none;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}
.qc-btn .material-symbols-outlined {
  font-size: 1.2rem;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

/* Priority 2: Email */
.qc-btn.email {
  background: var(--orange);
  color: #fff;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 18px rgba(232,98,10,0.4);
}
.qc-btn.email:hover {
  background: var(--orange-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(232,98,10,0.5);
}

/* Priority 3: WhatsApp */
.qc-btn.wa {
  background: transparent;
  color: #25d366;
  border: 1.5px solid rgba(37,211,102,0.5);
}
.qc-btn.wa:hover {
  background: rgba(37,211,102,0.08);
  border-color: #25d366;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .contact-right { flex: none; width: 100%; position: static; }
}
@media (max-width: 820px) {
  .contact-layout { padding: 40px 5% 60px; gap: 28px; }
  .contact-hero { padding: 40px 5% 36px; }
  .hero-response-badge { display: none; }
}
@media (max-width: 480px) {
  .contact-form-card { border-radius: 10px; }
  .cfc-body { padding: 20px 20px 24px; }
}