/* ============ SENSIBO-STYLE CONTACT ============ */

.page-hero {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--surface-teal) 0%, var(--surface) 100%);
}

.page-hero-title {
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--dark);
}

.page-hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h2,
.contact-form h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--dark);
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 16px;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--surface-muted);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
}

.info-icon.call { background: var(--gradient); }
.info-icon.wa { background: #25D366; }
.info-icon.mail { background: linear-gradient(135deg, #6366F1, #14B8A6); }
.info-icon.loc { background: linear-gradient(135deg, #F97316, #F59E0B); }

.info-card div span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.info-card div strong {
  font-size: 14.5px;
  color: var(--dark);
  font-weight: 600;
  word-break: break-word;
}

/* HOURS */
.hours {
  background: var(--surface-muted);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hours h3 {
  font-size: 17px;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 700;
}

.hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  gap: 10px;
}

.hours li span { color: var(--text-muted); }
.hours li strong { color: var(--dark); font-weight: 600; text-align: right; }

/* FORM */
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.contact-form > p {
  color: var(--text-muted);
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}

.contact-form label.full {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--surface-teal);
  background: white;
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

.form-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

/* MAP */
.map-section {
  padding: 0 0 80px;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { position: static; padding: 28px; }
}

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