/* ============================================================
   Contact page — hero, channel cards, enquiry form
   ============================================================ */

/* ---- hero -------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FDF9F8, #fff 80%);
}

.hero-blob {
  position: absolute;
  left: -10%;
  top: -40%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 0, 0, .10), transparent 65%);
  filter: blur(55px);
}

.hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 28px 40px;
  text-align: center;
}

.hero h1 {
  font: 800 60px/1.05 'Bricolage Grotesque', sans-serif;
  letter-spacing: -.035em;
  margin: 24px 0 18px;
  animation: fadeUp .7s .08s ease both;
}

.hero p {
  font: 400 18px/1.65 'Instrument Sans', sans-serif;
  color: #5B5B5B;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeUp .7s .16s ease both;
}

/* ---- content grid ----------------------------------------- */

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px 90px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: start;
}

/* ---- left: channels ---------------------------------------- */

.channels { display: flex; flex-direction: column; gap: 16px; }

.card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, .1);
  border-radius: 16px;
  padding: 18px 20px;
  color: inherit;
  transition: border-color .3s, transform .3s;
}
.card:hover { border-color: rgba(139, 0, 0, .4); transform: translateY(-2px); color: inherit; }
.card--wa:hover { border-color: rgba(37, 211, 102, .5); }

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(139, 0, 0, .08);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.card-icon--wa {
  background: #25D366;
  color: #fff;
  font: 700 18px sans-serif;
}

.card-label { font: 400 12.5px 'Instrument Sans', sans-serif; color: #8B8B8B; }
.card-value { font: 700 15px 'Instrument Sans', sans-serif; }

.checks { margin-top: 8px; display: flex; flex-direction: column; gap: 12px; }
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font: 400 14px/1.55 'Instrument Sans', sans-serif;
  color: #5B5B5B;
}
.check b { color: #8B0000; font-weight: 700; }

/* ---- right: form ------------------------------------------- */

.form-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, .1);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(139, 0, 0, .08);
}

.form-card h2 {
  font: 700 26px 'Bricolage Grotesque', sans-serif;
  letter-spacing: -.02em;
  margin: 0 0 6px;
}

.form-sub {
  font: 400 14.5px 'Instrument Sans', sans-serif;
  color: #6B6B6B;
  margin: 0 0 24px;
}

.form-fields { display: flex; flex-direction: column; gap: 16px; }

.field { display: block; }
.field-label {
  font: 600 13px 'Instrument Sans', sans-serif;
  color: #3B3B3B;
}
.req { color: #8B0000; }

.field input,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 7px;
  padding: 13px 15px;
  border: 1px solid rgba(26, 26, 26, .16);
  border-radius: 11px;
  font-size: 15px;
  background: #FDFAFA;
  font-family: 'Instrument Sans', sans-serif;
  color: #1A1A1A;
}
.field textarea { resize: vertical; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #8B0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, .12);
}

.btn-row { display: flex; gap: 12px; margin-top: 4px; }

.btn-send {
  flex: 1;
  padding: 14px 0;
  border-radius: 99px;
  border: none;
  font: 700 15px 'Instrument Sans', sans-serif;
  color: #fff;
  transition: opacity .2s, transform .2s;
  cursor: pointer;
}
.btn-send:hover:not(:disabled) { transform: translateY(-1px); }
.btn-send:disabled { cursor: not-allowed; opacity: .45; }
.btn-send--wa { background: #25D366; }
.btn-send--mail { background: #8B0000; }

.form-hint {
  font: 400 12.5px 'Instrument Sans', sans-serif;
  color: #9B9B9B;
  text-align: center;
}

/* ---- responsive (prototype is desktop-only) ---------------- */

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 46px; }
}

@media (max-width: 560px) {
  .hero-inner { padding: 56px 20px 32px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }
  .contact-grid { padding: 16px 20px 64px; }
  .form-card { padding: 24px 20px; }
  .btn-row { flex-direction: column; }
}
