body {
  background-color: #f3f4f6;
}

/* ── Contact Hero ── */
.contact-hero {
  padding: 60px 4rem 40px;
  max-width: 65%;
}

.contact-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 800;
  color: #7c3aed;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.contact-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  max-width: 450px;
}

/* ── Contact Body ── */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  padding: 20px 4rem 60px;
  align-items: start;
}

/* ── Trust Card ── */
.trust-card {
  background: #e3e2e2;
  border: none;
  border-radius: 10px;
  padding: 20px;
  color: #111;
}

.trust-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 14px;
}

.trust-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.3;
}

.trust-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 22px;
}

.trust-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.trust-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
}

.trust-info .icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-info .label-small {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #999;
  display: block;
  margin-bottom: 2px;
}

.trust-info .purple {
  font-family: 'Inter', sans-serif;
  color: #7c3aed;
  line-height: 1.6;
}

/* ── Support Box ── */
.support-box {
  background: #6a0dad;
  border-radius: 8px;
  padding: 20px;
  color: #fff;
}

.support-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.support-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 12px;
}

.support-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* ── Form Card ── */
.form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 32px;
}

.form-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.form-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #555;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.9rem;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  background: #e3e2e2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7c3aed;
}

.form-group textarea {
  resize: vertical;
}

.send-btn {
  width: 100%;
  background: #6a0dad;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.send-btn:hover {
  background: #5a0b99;
}

.form-note {
  font-size: 0.75rem;
  color: #888;
  margin-top: 12px;
  line-height: 1.5;
}

.form-note a {
  color: #7c3aed;
  text-decoration: underline;
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.9rem;
  margin-top: 16px;
}

.hidden {
  display: none;
}

/* ── Global Presence ── */
.presence-section {
  background: #e3e2e2;
  text-align: center;
  padding: 70px 2rem;
}

.presence-icon {
  font-size: 2rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.presence-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.presence-section p {
  font-size: 0.9rem;
  color: #555;
  max-width: 400px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.presence-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.presence-tags span {
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #444;
  background: #fff;
}

/* ── Newsletter (contact footer override) ── */
.newsletter {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
}

.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  font-size: 0.85rem;
  outline: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.newsletter input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter button {
  background: #fff;
  color: #6a0dad;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s;
}

.newsletter button:hover {
  background: #f3e8ff;
}
