.contact-hero .breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-hero .breadcrumb a {
  color: var(--purple);
  font-weight: 500;
}

.contact-hero .breadcrumb span {
  margin: 0 8px;
}

.contact-section {
  padding: 0 0 100px;
  background: var(--bg-hero);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-info-card h2 {
  font-size: 1.35rem;
  margin: 0 0 28px;
  line-height: 1.35;
}

.contact-detail {
  margin-bottom: 24px;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-detail a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple);
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-hours {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-address {
  margin: 0;
  line-height: 1.6;
  color: var(--text);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-call {
  background: #1a1a1a;
  color: var(--white);
  border: 2px solid #1a1a1a;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.btn-call:hover {
  background: #333;
  border-color: #333;
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: 2px solid #25d366;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  color: var(--white);
}

.contact-form-card h2 {
  font-size: 1.2rem;
  margin: 0 0 24px;
  line-height: 1.35;
}

.contact-form .required {
  color: #c41230;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
