/* Contact page specific styles - built on top of styles.css tokens */

.contact-hero {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--deep-blue);
  margin: 0 0 14px;
  font-weight: 600;
}
.contact-hero p {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

/* Info card */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}
.info-row:last-child { border-bottom: none; }
.info-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--deep-blue);
  color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 19px; height: 19px; }
.info-row h4 { margin: 0 0 4px; font-size: 13px; color: var(--gray-600); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.info-row p, .info-row a { margin: 0; font-size: 15.5px; color: var(--gray-900); font-weight: 500; }
.info-row a:hover { color: var(--deep-blue); }
.hours-list { display: flex; flex-direction: column; gap: 2px; }
.hours-list span { font-size: 14.5px; color: var(--gray-600); }

.trust-mini {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-mini .trust-item { font-size: 12.5px; }
.trust-mini svg { width: 17px; height: 17px; }

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--deep-blue);
  margin: 0 0 6px;
  font-weight: 600;
}
.form-card > p { color: var(--gray-600); font-size: 14.5px; margin: 0 0 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--deep-blue);
  box-shadow: 0 0 0 3px rgba(11,37,69,0.08);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: 12.5px; color: var(--gray-600); margin-top: 6px; }

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 24px;
}
.form-consent input { margin-top: 3px; }

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
}
.form-status.success { display: block; background: #eaf6ef; color: var(--success); border: 1px solid #c7e9d4; }
.form-status.error { display: block; background: #fbeceb; color: var(--danger); border: 1px solid #f2cdca; }

/* Map / office visual */
.office-strip {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.office-strip img { width: 100%; height: 260px; object-fit: cover; }
.office-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,37,69,0.85) 0%, rgba(11,37,69,0.35) 55%, rgba(11,37,69,0) 100%);
  display: flex;
  align-items: center;
  padding: 0 44px;
}
.office-strip-overlay h3 { color: var(--white); font-family: var(--font-display); font-size: 24px; margin: 0 0 6px; font-weight: 600; }
.office-strip-overlay p { color: rgba(255,255,255,0.75); margin: 0; font-size: 14.5px; max-width: 320px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-question svg { width: 18px; height: 18px; color: var(--deep-blue); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer-inner { padding: 0 24px 20px; color: var(--gray-600); font-size: 14.5px; line-height: 1.65; }
.faq-item.open .faq-answer { max-height: 240px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .office-strip-overlay { padding: 0 24px; background: linear-gradient(180deg, rgba(11,37,69,0.85), rgba(11,37,69,0.55)); }
}
