:root {
  --contact-bg: #f6f8fb;
}

.contact-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(230, 126, 34, 0.1));
}

.contact-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  height: 100%;
}

.contact-card i {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.contact-form-card .form-label {
  font-weight: 500;
  color: var(--text-dark);
}

.contact-form-card .form-control {
  border-radius: 12px;
  border-color: rgba(44, 62, 80, 0.12);
  padding: 0.75rem 0.9rem;
}

.contact-form-card .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.1rem rgba(230, 126, 34, 0.25);
}

.contact-form-card textarea {
  resize: vertical;
}

.contact-form-card .btn-brand {
  font-weight: 600;
}

.support-strip {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.support-strip i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

@media (max-width: 767px) {
  .contact-form-card {
    padding: 1.5rem;
  }

  .support-strip {
    flex-direction: column;
    text-align: center;
  }
}
