.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.page-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}

/* TOP 3 CARDS */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 20px 28px;
  text-align: center;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.icon-blue   { background: #eff6ff; }
.icon-green  { background: #f0fdf4; }
.icon-purple { background: #faf5ff; }

.contact-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-card p, .contact-card a {
  display: block;
  font-size: 0.875rem;
  color: var(--blue);
  text-decoration: none;
  line-height: 1.8;
}

.contact-card a:hover { text-decoration: underline; }
.contact-card p.plain { color: var(--muted); }

/* MIDDLE ROW */
.middle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

/* FORM */
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.form-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.form-field { margin-bottom: 14px; }

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 5px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: #f8f9fc;
  outline: none;
  transition: border 0.2s;
  resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(43,62,245,0.07);
}

.form-field textarea { height: 110px; }

.btn-send {
  width: 100%;
  padding: 12px;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}

.btn-send:hover { background: var(--blue); }

.send-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  margin-top: 12px;
  text-align: center;
}

/* RIGHT COLUMN */
.right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours-card, .map-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); }
.hours-row .time { font-weight: 500; color: var(--text); }
.hours-row .closed { color: #ef4444; font-weight: 500; }

/* MAP */
.map-placeholder {
  background: #f0f2f8;
  border-radius: 10px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  margin-top: 4px;
}

.map-placeholder .map-pin { font-size: 28px; color: #9ca3af; }

/* BOTTOM */
.bottom-card {
  background: #eff6ff;
  border: 1px solid #c7d2fe;
  border-radius: 14px;
  padding: 28px 32px;
}

.bottom-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bottom-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.bottom-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bottom-col ul li {
  font-size: 0.82rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bottom-col ul li::before {
  content: '•';
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 860px) {
  .contact-cards { grid-template-columns: 1fr; }
  .middle-row { grid-template-columns: 1fr; }
  .bottom-grid { grid-template-columns: 1fr; }
}
