/* ══════════════════════════════════════════
   EmailBarista — Contact Page
   ══════════════════════════════════════════ */

/* CONTACT HERO (split layout) */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
  margin-bottom: 50px;
}

/* LEFT PANEL */
.contact-left {
  background: var(--red);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp 0.6s ease both;
}

.contact-left .section-label { color: rgba(255,255,255,0.55); }

.contact-left h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: white;
  line-height: 1.05;
  margin-bottom: 24px;
}

.contact-left p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 40px;
}

/* CONTACT INFO LIST */
.contact-info-list { display: flex; flex-direction: column; gap: 28px; }

.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.contact-info-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.contact-info-text a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s;
}

.contact-info-text a:hover { border-color: white; }

/* RIGHT PANEL (form area) */
.contact-right {
  background: white;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.7s 0.1s ease both;
}

/* CONTACT FORM */
.contact-form {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(61,43,31,0.08);
}

.contact-form h3 { font-size: 1.15rem; color: var(--brown); margin-bottom: 0; }
.contact-form p   { font-size: 1.5rem; color: var(--muted); margin-bottom: 8px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.78rem; font-weight: 700; color: var(--brown); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(61,43,31,0.12);
  border-radius: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  transition: all 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217,48,37,0.08);
  background: white;
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-submit {
  background: var(--red);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  margin-top: 20px;
}

.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.contact-form form { display: flex; flex-direction: column; gap: 18px; }

.form-note { font-size: 0.73rem; color: var(--muted); text-align: center; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-hero { grid-template-columns: 1fr; min-height: auto; }
  .contact-left,
  .contact-right { padding: 48px 24px; }
  .contact-stats { flex-wrap: wrap; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-left,
  .contact-right { padding: 36px 20px; }
}
