/* =============================================================
   ARTOVA — contact.css
   Loaded by: contact.html only
   Contains:  Page Hero · About Sections · Vision/Mission Cards
              Contact Section · Form · Contact Details Panel
   ============================================================= */

/* ── Page Hero ───────────────────────────────────────────────── */
.page-hero {
  background: var(--black2);
  padding: clamp(64px, 10vw, 100px) var(--pad) clamp(48px, 7vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,147,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.page-hero-line  { width: 32px; height: 1px; background: var(--gold); }
.page-hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.7;
}

/* ── About Sections ──────────────────────────────────────────── */
.about-section {
  padding: clamp(52px, 8vw, 88px) var(--pad);
}
.about-section:nth-child(even) { background: var(--white); }
.about-section:nth-child(odd)  { background: var(--offwhite); }

.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.about-sidebar-num {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  color: rgba(201,147,58,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -12px;
}
.about-sidebar-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.about-sidebar-heading {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.about-gold-rule {
  width: 40px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}
.about-body {
  font-size: 15.5px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-body:last-child { margin-bottom: 0; }
.about-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(201,147,58,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  font-size: 12.5px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  font-family: var(--font-mono);
}
.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.about-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.55;
}
.about-check {
  width: 20px; height: 20px;
  flex-shrink: 0;
  background: rgba(201,147,58,0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.about-check::after {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Vision / Mission Cards ──────────────────────────────────── */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.vm-card {
  background: var(--white);
  border: 1px solid var(--lgrey);
  border-radius: 10px;
  padding: 24px 20px;
  border-top: 3px solid var(--gold);
}
.vm-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.vm-card-text { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ── Contact Section ─────────────────────────────────────────── */
.contact-section {
  padding: var(--section-gap) var(--pad);
  background: var(--cream);
}
.contact-heading-block {
  max-width: var(--max);
  margin: 0 auto 52px;
}
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Enquiry Form ────────────────────────────────────────────── */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--lgrey);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.contact-form-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lgrey);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--slate);
  background: var(--offwhite);
  border: 1px solid var(--lgrey);
  border-radius: var(--radius);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); background: var(--white); }
.form-textarea       { resize: vertical; min-height: 110px; }
.form-select         { appearance: none; cursor: pointer; }
.form-select-wrap    { position: relative; }
.form-select-wrap::after {
  content: '▼';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  color: var(--gold);
  pointer-events: none;
}
.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
}
.form-submit:hover { background: var(--gold-dk); border-color: var(--gold-dk); }
.form-note {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
/* ── Form Feedback (success / error after submission) ────────── */
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-feedback {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13.5px;
  line-height: 1.5;
  font-family: var(--font-sans);
}
.form-feedback--success {
  background: rgba(37, 160, 80, 0.09);
  border: 1px solid rgba(37, 160, 80, 0.28);
  color: #1a6e36;
}
.form-feedback--error {
  background: rgba(200, 50, 50, 0.09);
  border: 1px solid rgba(200, 50, 50, 0.28);
  color: #7a1a1a;
}

.form-mockup-note {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(201,147,58,0.07);
  border: 1px dashed rgba(201,147,58,0.3);
  border-radius: 6px;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
  line-height: 1.5;
}

/* ── Contact Details Panel ───────────────────────────────────── */
.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-wa-block {
  background: var(--black);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.contact-wa-block::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(37,211,102,0.08) 0%, transparent 60%);
}
.contact-wa-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.contact-wa-number {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.contact-wa-sub { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s;
  position: relative;
}
.contact-wa-btn:hover { background: #1DA851; }

.contact-info-block {
  background: var(--white);
  border: 1px solid var(--lgrey);
  border-radius: 12px;
  overflow: hidden;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--lgrey);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: rgba(201,147,58,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}
.contact-info-value { font-size: 13.5px; color: var(--slate); line-height: 1.45; }
.contact-info-dummy { color: var(--muted); font-style: italic; }

.contact-enquiry-types {
  background: var(--offwhite);
  border: 1px solid var(--lgrey);
  border-radius: 12px;
  padding: 20px;
}
.contact-enquiry-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.enquiry-type-list { display: flex; flex-direction: column; gap: 8px; }
.enquiry-type-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--slate);
}
.enquiry-type-dot {
  width: 8px; height: 8px;
  background: rgba(201,147,58,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Contact Page Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
  .about-inner   { grid-template-columns: 1fr; gap: 24px; }
  .about-sidebar-num { font-size: 56px; margin-bottom: -6px; }
  .contact-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .vm-grid  { grid-template-columns: 1fr; }
}
