/* ============================================================
   TABULA RASA TRAVEL CONSULTANCY — contact.css
   ============================================================ */

/* ── HERO ── */
.page-hero { background: var(--navy); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 80% 40%, rgba(201,168,76,0.07) 0%, transparent 70%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }
.hero-inner { max-width: 760px; animation: fadeUp 0.65s 0.1s ease both; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1.2rem; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.hero-desc { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.62); font-weight: 300; max-width: 58ch; margin-bottom: 2rem; }
.notice-banner { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25); padding: 1.2rem 1.6rem; display: flex; gap: 1rem; align-items: flex-start; max-width: 640px; }
.notice-banner svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 0.1rem; }
.notice-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; font-weight: 300; }
.notice-banner a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ── MAIN LAYOUT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: start; padding: 7rem 0 8rem; }
.section-heading { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 1.1rem; }
.section-body { font-size: 0.97rem; line-height: 1.85; color: var(--text-soft); font-weight: 300; max-width: 540px; margin-bottom: 2.8rem; }

/* Inquiry type cards */
.inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 4rem; }
.inquiry-card { background: var(--white); padding: 2rem 1.8rem; position: relative; overflow: hidden; transition: background 0.2s; }
.inquiry-card:hover { background: rgba(201,168,76,0.03); }
.inquiry-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform 0.3s; }
.inquiry-card:hover::before { transform: scaleY(1); }
.inq-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.inq-icon svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 2; }
.inquiry-card h3 { font-family: 'Playfair Display', serif; font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; line-height: 1.3; }
.inquiry-card p { font-size: 0.8rem; color: var(--text-soft); line-height: 1.6; font-weight: 300; }

/* Direct contacts */
.direct-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
.dc-item { padding: 1.6rem 1.8rem; border-right: 1px solid var(--border); }
.dc-item:last-child { border-right: none; }
.dc-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.45rem; }
.dc-label svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.dc-value { font-size: 0.88rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.dc-value a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.dc-value a:hover { color: var(--gold); }
.dc-note { font-size: 0.74rem; color: var(--text-soft); font-weight: 300; margin-top: 0.25rem; }
.office-block { background: var(--navy); padding: 2.2rem 2.4rem; margin-top: 2.8rem; display: flex; gap: 1.4rem; align-items: flex-start; }
.office-icon-wrap { width: 40px; height: 40px; border-radius: 50%; background: rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem; }
.office-icon-wrap svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 2; }
.office-tag { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.4rem; }
.office-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
.office-addr { font-size: 0.84rem; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.65; }

/* Form card */
.form-card { background: var(--white); border: 1px solid var(--border); position: sticky; top: 96px; }
.form-card-head { background: var(--navy); padding: 2rem 2.4rem; border-bottom: 3px solid var(--gold); }
.form-card-head h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.form-card-head p { font-size: 0.8rem; color: rgba(255,255,255,0.42); font-weight: 300; line-height: 1.6; }
.form-card-body { padding: 2.2rem 2.4rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.fl { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); font-weight: 600; }
.fl .req { color: var(--gold); }
.fl .opt { color: var(--text-soft); font-weight: 300; text-transform: none; letter-spacing: 0; font-size: 0.7rem; }
.fi, .fs, .ft { background: var(--off-white); border: 1px solid var(--border); padding: 0.82rem 1rem; font-family: 'Outfit', sans-serif; font-size: 0.88rem; color: var(--text); outline: none; width: 100%; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
.fi:focus, .fs:focus, .ft:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.fi::placeholder, .ft::placeholder { color: #a0b0c0; }
.fs { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a5e75' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-color: var(--off-white); padding-right: 2.5rem; cursor: pointer; }
.ft { resize: vertical; min-height: 130px; line-height: 1.65; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.char-counter { font-size: 0.68rem; color: var(--text-soft); text-align: right; margin-top: 0.25rem; }
.submit-btn { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 0.95rem; font-family: 'Outfit', sans-serif; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: background 0.22s, transform 0.15s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.4rem; }
.submit-btn:hover { background: var(--gold-lt); transform: translateY(-1px); }
.submit-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.form-footnote { font-size: 0.7rem; color: var(--text-soft); font-weight: 300; text-align: center; margin-top: 1rem; line-height: 1.55; }
.form-footnote a { color: var(--gold); text-decoration: none; }
.form-success { display: none; text-align: center; padding: 3rem 2.2rem; }
.success-icon-wrap { width: 64px; height: 64px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.success-icon-wrap svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 2; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.form-success p { font-size: 0.86rem; color: var(--text-soft); line-height: 1.75; font-weight: 300; }
.form-success a { color: var(--gold); font-weight: 600; text-decoration: none; }

/* Response timelines */
.response-section { padding: 6rem 0; border-top: 1px solid var(--border); background: var(--white); }
.response-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); margin-top: 3rem; }
.response-card { padding: 2.4rem 2.2rem; border-right: 1px solid var(--border); position: relative; overflow: hidden; }
.response-card:last-child { border-right: none; }
.response-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.response-card:hover::after { transform: scaleX(1); }
.rc-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.rc-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }
.rc-type { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.5rem; }
.rc-time { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.rc-desc { font-size: 0.81rem; color: var(--text-soft); line-height: 1.65; font-weight: 300; }

/* Responsive */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
  .form-card { position: static; }
  .inquiry-grid { grid-template-columns: 1fr; }
  .response-grid { grid-template-columns: 1fr; }
  .response-card { border-right: none; border-bottom: 1px solid var(--border); }
  .response-card:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .direct-row { grid-template-columns: 1fr; }
  .dc-item { border-right: none; border-bottom: 1px solid var(--border); }
  .dc-item:last-child { border-bottom: none; }
  .fr { grid-template-columns: 1fr; }
}

/* ── CONTACT LEFT COLUMN ─────────────────────────────────── */
.contact-left { /* Existing styles cover this — alias for the grid left column */ }
