/* SERVISO — Contact section, form controls, opening hours. */
/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all .3s var(--ease-smooth);
  align-items: flex-start;
}
.contact-item:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { stroke: white; }
.contact-item-content p:first-child {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}
.contact-item-content a, .contact-item-content address {
  font-size: .9375rem;
  color: var(--gray-800);
  line-height: 1.5;
}
.contact-item-content a:hover { color: var(--primary); }

.hours-grid { display: flex; flex-direction: column; gap: .2rem; }
.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
  padding: .2rem 0;
}
.hour-row .day { color: var(--gray-600); font-weight: 500; }
.hour-row .time { color: var(--gray-900); font-weight: 600; }
.hours-closed, .hour-row .closed { color: #ef4444; font-weight: 600; }
.hours-closed-badge { color: #f97316; font-weight: 600; }
.contact-note { font-size: .9rem; color: var(--gray-500); margin-bottom: 0; line-height: 1.6; }

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}
.contact-map iframe { width: 100%; height: 380px; display: block; border: none; }

.contact-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color .2s, text-decoration-color .2s;
}
.contact-link:hover {
  color: var(--primary-dark);
  text-decoration-color: var(--primary-dark);
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.contact-form h3 { font-size: 1.5rem; color: var(--gray-900); margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-weight: 500; font-size: .9375rem; color: var(--gray-800); }
.form-control,
.form-group input:not([type="checkbox"]),
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .9375rem 1.125rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--gray-900);
  background: white;
  transition: all .3s var(--ease-smooth);
  outline: none;
  line-height: 1.5;
}
.form-control:focus,
.form-group input:not([type="checkbox"]):focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(21,101,192,.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-check { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1.25rem; }
.form-check input[type="checkbox"].error { outline: 2px solid #ef4444; outline-offset: 2px; border-radius: 2px; }
.form-check input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--primary);
  margin-top: .15rem;
  flex-shrink: 0;
  cursor: pointer;
}
.form-check label { font-size: .875rem; color: var(--gray-700); line-height: 1.5; cursor: pointer; }
.required { color: #ef4444; margin-left: 2px; }
.field-error { font-size: .8125rem; color: #ef4444; min-height: 1.2em; }
.form-message {
  border-radius: 10px;
  padding: .875rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: .9375rem;
  font-weight: 500;
  display: none;
}
.form-message.success { background: rgba(16,185,129,.1); color: #047857; border: 1px solid rgba(16,185,129,.25); display: block; }
.form-message.error   { background: rgba(239,68,68,.08); color: #dc2626; border: 1px solid rgba(239,68,68,.2); display: block; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ── Responsive ─────────────────────────────────────────────── */
/* Kept beside the component these rules modify, instead of in a single
 * block at the bottom of the stylesheet, separated from everything they
 * apply to. */

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .contact-form { padding: 1.75rem; }
}

@media (max-width: 576px) {
  .contact-form { padding: 1.25rem; }
}
