/* Contact Us page styles – focused, lightweight, and complementary to base.css */
:root {
  --tropics-1: #0ea5a5; /* teal */
  --tropics-2: #10b981; /* emerald */
  --tropics-3: #8dd3c7; /* mint */
  --tropics-ink: #0f172a; /* slate-900 */
}

.contact-hero {
  --gradient-a: var(--tropics-1);
  --gradient-b: var(--tropics-2);
  background: linear-gradient(135deg, var(--gradient-a), var(--gradient-b));
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1rem;
  margin-block: 1rem 2rem;
}
.contact-hero .lead { opacity: 0.95; max-width: 70ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }

.page-section { margin-block: 2rem; }
.section-header { margin-bottom: 1rem; }
.section-header h2 { margin: 0 0 .25rem; }

.card {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, .06);
  border-radius: .875rem;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(2, 6, 23, .04);
}
.card.info { background: linear-gradient(0deg, #fff, #fff), radial-gradient(60% 120% at 0% 0%, #ecfeff, #f0fff4); background-blend-mode: multiply; }
.card.highlight { background: linear-gradient(180deg, #ffffff, #f0fff4); border-color: rgba(16,185,129,.2); }
.card.compact { padding: .75rem 1rem; }
.card.warning { background: #fff7ed; border-color: #fed7aa; }

.form-grid { display: grid; gap: 1rem; grid-template-columns: repeat(12, 1fr); }
.form-group { display: grid; gap: .375rem; grid-column: span 6; }
.form-group-full { grid-column: 1 / -1; }
.form-group.honey { display: none; }
.form-group .help { font-size: .875rem; color: #475569; }

label { font-weight: 600; }
input[type="text"], input[type="email"], input[type="file"], select, textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  padding: .6rem .75rem;
  background: #fff;
  color: var(--tropics-ink);
}
textarea { resize: vertical; }

.checkbox { display: grid; grid-template-columns: 1.25rem 1fr; align-items: start; gap: .5rem; }
.checkbox input { width: 1.25rem; height: 1.25rem; margin-top: .2rem; }

.form-actions { display: flex; align-items: center; gap: .75rem; margin-top: .5rem; flex-wrap: wrap; }
.form-actions .meta { color: #475569; font-size: .9rem; }

.btn { --btn-bg: #fff; --btn-fg: var(--tropics-ink); --btn-bd: #cbd5e1; display: inline-flex; align-items: center; gap: .5rem; padding: .6rem .9rem; border-radius: .625rem; border: 1px solid var(--btn-bd); color: var(--btn-fg); background: var(--btn-bg); text-decoration: none; font-weight: 600; }
.btn:hover { box-shadow: 0 2px 8px rgba(2,6,23,.08); }
.btn.primary { --btn-bg: #0ea5a5; --btn-fg: #fff; --btn-bd: #0ea5a5; }
.btn.subtle { --btn-bg: #f8fafc; }

.social-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .75rem; padding: 0; list-style: none; }
.social-list a { display: flex; align-items: center; gap: .5rem; padding: .5rem .75rem; border: 1px solid #e2e8f0; border-radius: .75rem; background: #fff; text-decoration: none; color: inherit; }
.social-list svg { width: 22px; height: 22px; fill: currentColor; }

.faq details { border: 1px solid #e2e8f0; border-radius: .75rem; padding: .75rem 1rem; background: #fff; }
.faq details + details { margin-top: .5rem; }
.faq summary { cursor: pointer; font-weight: 600; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: absolute; left: 0; top: 0; width: auto; height: auto; background: #111827; color: #fff; padding: .5rem 1rem; z-index: 1000; }

.rating .rating-group { display: inline-grid; grid-auto-flow: column; gap: .25rem; align-items: center; }
.rating label { background: #f1f5f9; padding: .35rem .6rem; border-radius: .5rem; cursor: pointer; }
.rating input { display: none; }
.rating input:checked + label { background: #0ea5a5; color: #fff; }

.policy-image {
  margin: 1.5rem 0;
  text-align: center;
}

.policy-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .form-group { grid-column: 1 / -1; }
  .contact-hero { text-align: left; }
}
