.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.contact-left h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1f3c88;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input,
.quote-form input,
.quote-form select,
textarea{
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
textarea{
  border-color: #A8CFA3;
  outline: none;
}

.quote-form button {
  background: linear-gradient(135deg, #A8CFA3, #D9EBD3);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  color: #1f3c88;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: linear-gradient(135deg, #98bf93, #cfe3c9);
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 500px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 300px;
    margin-top: 2rem;
  }
}
