body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f7f9fc;
}

.contact-hero {
  padding: 80px 20px;
  text-align: center;
  background: #111827;
  color: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-info, .contact-form {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.info-box {
  display: flex;
  gap: 16px;
  margin: 18px 0;
}

.info-box span {
  font-size: 22px;
}

.info-box a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
}

.trust-strip {
  margin-top: 30px;
  padding: 16px;
  background: #ecfdf5;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form iframe {
  width: 100%;
  min-height: 420px;
  border-radius: 12px;
}

.quick-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  flex: 1;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: #1e40af;
  color: #fff;
}

.btn.outline {
  border: 2px solid #1e40af;
  color: #1e40af;
}

.map-section {
  padding: 60px 20px;
  text-align: center;
}

.map-section iframe {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  border: none;
  margin-top: 20px;
}

.mobile-cta {
  display: none;
}

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

@media(max-width: 768px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1e40af;
  }

  .mobile-cta a {
    flex: 1;
    color: #fff;
    padding: 14px;
    text-align: center;
    text-decoration: none;
  }
}
