/* ===== BARROW WELLNESS — CONTACT.CSS ===== */

/* ─── Active nav link ─── */
.nav-links a.active {
  color: var(--orange);
  font-weight: 600;
}

/* ─── Page Hero (shared base in about.css, extended here) ─── */
.page-hero {
  padding: 140px 0 90px;
  background: linear-gradient(135deg, #FBF7F4 0%, #FDF0E8 55%, #FBF7F4 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
}
.ch-blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #F4874A, transparent 70%);
  top: -120px; right: -80px;
  animation: floatBlob 9s ease-in-out infinite;
}
.ch-blob-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #C0392B, transparent 70%);
  bottom: -60px; left: -60px;
  animation: floatBlob 11s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(14px, -14px); }
}

.contact-hero-inner { max-width: 640px; position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--orange); }

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.75;
}

/* ─── Contact section grid ─── */
.contact-section {
  padding: 88px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
}

/* ─── Contact info (left) ─── */
.contact-info { display: flex; flex-direction: column; gap: 40px; }

.ci-block h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.ci-block h2 em { font-style: italic; color: var(--orange); }

.ci-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
}

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

.cc-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, transform 0.25s;
}
.cc-item:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}

.cc-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cc-item strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 3px;
}
.cc-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 4px;
}
.cc-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.refund-note {
  padding: 22px 24px;
  background: var(--orange-pale);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
}

.rn-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.refund-note p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.refund-note strong { color: var(--brown); }

/* ─── Contact form (right) ─── */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 44px 40px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
}

.cf-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.cf-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.cf-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cf-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--text-muted); }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,26,0.12);
}

.cf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A07868' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.cf-field textarea { resize: vertical; min-height: 120px; }

/* Checkbox */
.cf-check-field { flex-direction: row; align-items: flex-start; gap: 12px; }

.cf-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.cf-checkbox input[type="checkbox"] { display: none; }

.cf-checkmark {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.cf-checkbox input[type="checkbox"]:checked + .cf-checkmark {
  background: var(--orange);
  border-color: var(--orange);
}
.cf-checkbox input[type="checkbox"]:checked + .cf-checkmark::after {
  content: '✓';
  font-size: 0.7rem;
  color: var(--white);
  font-weight: 700;
}

.cf-submit {
  border: none;
  width: 100%;
  margin-top: 4px;
}

.cf-success,
.cf-error {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}
.cf-success {
  background: rgba(30,130,76,0.1);
  color: #1E7A4C;
  border: 1.5px solid rgba(30,130,76,0.25);
}
.cf-error {
  background: rgba(192,57,43,0.08);
  color: var(--red);
  border: 1.5px solid rgba(192,57,43,0.2);
}
.cf-success.show,
.cf-error.show { display: block; }

/* ─── Quick answers ─── */
.quick-answers {
  padding: 88px 0;
  background: var(--cream);
}

.qa-header {
  text-align: center;
  margin-bottom: 48px;
}
.qa-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 8px;
}
.qa-header h2 em { font-style: italic; color: var(--orange); }

.qa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto 28px;
}

.qa-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.qa-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.qa-card strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 8px;
  line-height: 1.4;
}
.qa-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.qa-more {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.qa-more a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── CTA band (reuses about-cta, small overrides) ─── */
.about-cta {
  padding: 88px 0;
  background: var(--brown);
}
.about-cta .about-cta-inner h2 { color: var(--white); }
.about-cta .about-cta-inner p  { color: rgba(255,255,255,0.72); }
.contact-cta-band .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.contact-cta-band .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .qa-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .page-hero { padding: 110px 0 70px; }
  .contact-section, .quick-answers { padding: 64px 0; }
  .about-cta { padding: 64px 0; }
  .contact-form-wrap { padding: 28px 22px; }
  .cf-row { grid-template-columns: 1fr; }
  .qa-grid { grid-template-columns: 1fr; }
}
