/* ===== Contact Page — Light Theme ===== */

.contact-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(160deg, #f0f4ff 0%, #faf8ff 50%, #f0f7ff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}

.contact-hero-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

.contact-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border, #e5e9f5);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--accent, #4f46e5);
  margin-bottom: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--text, #0f1628); margin-bottom: 1rem; line-height: 1.15;
}

.contact-hero p {
  font-size: 1.05rem; color: var(--text-muted, #6b7498); line-height: 1.75;
}

/* Section */
.contact-section {
  padding: 5rem 0;
  background: var(--bg, #f8faff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

/* Info */
.contact-info h2 {
  font-size: 1.875rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--text, #0f1628);
  margin-bottom: 0.75rem;
}

.contact-info-sub {
  color: var(--text-muted, #6b7498); line-height: 1.7;
  margin-bottom: 2rem; font-size: 0.95rem;
}

.contact-channels { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.contact-channel {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid var(--border, #e5e9f5);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text, #0f1628);
  transition: all 0.22s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.contact-channel:hover {
  border-color: var(--accent, #4f46e5);
  box-shadow: 0 4px 16px rgba(79,70,229,0.1);
  transform: translateY(-2px);
  color: var(--text, #0f1628);
  text-decoration: none;
}

.contact-channel-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(79,70,229,0.08);
  color: var(--accent, #4f46e5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-channel-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted, #6b7498); margin-bottom: 2px; }
.contact-channel-value { font-size: 0.9rem; font-weight: 600; color: var(--text, #0f1628); }

.contact-quick-links { margin-top: 1.5rem; }
.contact-quick-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted, #6b7498); margin-bottom: 0.75rem; }

.contact-quick-link {
  display: flex; align-items: center; gap: 6px;
  color: var(--accent, #4f46e5);
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; padding: 5px 0;
  transition: gap 0.2s ease;
}
.contact-quick-link:hover { gap: 10px; color: #3730a3; text-decoration: none; }

/* Form */
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border, #e5e9f5);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(15,22,40,0.08);
}

.contact-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.contact-form .form-group { margin-bottom: 1.25rem; }

.contact-form .form-group label {
  display: block; margin-bottom: 6px;
  font-size: 0.825rem; font-weight: 600;
  color: var(--text-2, #374161);
}

.contact-form .form-control {
  width: 100%; padding: 0.3rem 1rem;
  background: var(--bg, #f8faff);
  border: 1.5px solid var(--border, #e5e9f5);
  border-radius: 10px;
  font-size: 0.875rem; font-family: inherit;
  color: var(--text, #0f1628);
  transition: all 0.22s ease;
}
.contact-form .form-control:focus {
  outline: none; border-color: var(--accent, #4f46e5);
  background: white; box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.contact-form .form-control::placeholder { color: var(--text-muted, #6b7498); }
.contact-form textarea.form-control { resize: vertical; min-height: 130px; }

.contact-form .btn-full {
  width: 100%;
  background: var(--accent, #4f46e5); color: white;
  padding: 0.9rem;
  border: none; border-radius: 10px;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: all 0.22s ease;
  box-shadow: 0 4px 16px rgba(79,70,229,0.25);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.contact-form .btn-full:hover { background: #3730a3; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(79,70,229,0.3); }
.contact-form .btn-full:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.contact-privacy { margin-top: 0.875rem; font-size: 0.775rem; color: var(--text-muted, #6b7498); text-align: center; }
.contact-privacy a { color: var(--accent, #4f46e5); }

/* Success */
.contact-success { text-align: center; padding: 3rem 2rem; }
.contact-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent, #4f46e5); color: white;
  font-size: 2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(79,70,229,0.3);
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn { from { transform: scale(0); opacity:0; } to { transform: scale(1); opacity:1; } }
.contact-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text, #0f1628); }
.contact-success p  { color: var(--text-muted, #6b7498); margin-bottom: 1.5rem; }

/* FAQ */
.contact-faq { padding: 5rem 0; background: white; }

/* Responsive */
@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-hero h1 { font-size: 2rem; }
}

@media (max-width: 575px) {
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-hero { padding: 7rem 0 3.5rem; }
  .contact-hero h1 { font-size: 1.75rem; }
  .contact-section { padding: 3.5rem 0; }
}
