/* === Contact Hero Section === */
.contact-hero-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray) 100%);
}

/* === Contact Grid === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form > div {
  margin-bottom: 1.5rem; /* Explicit spacing between form sections */
}

.contact-form > div:last-child {
  margin-bottom: 0; /* No margin after the last form section */
}

.contact-form .form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0; /* Lighter gray border */
  border-radius: 4px; /* More subtle rounding */
  transition: all 0.2s ease-in-out;
}

.contact-form .form-input:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(45, 226, 166, 0.2); /* mint-300 with opacity */
}

.contact-form label {
  margin-bottom: 0.5rem; /* Spacing between label and its input */
  display: block;
}

.contact-form .btn-primary {
  background-color: #25d366; /* Specific color for Send Message button */
  border: none; /* Ensure no border for Send Message button */
}

.contact-form .btn-primary:hover {
  background-color: #128c7e; /* Darker green on hover */
}

/* Specific styling for the WhatsApp button on contact page */
.contact-info-list .btn-primary {
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border: none; /* Ensure no border */
}

.contact-info-list .btn-primary:hover {
  background-color: #128c7e; /* Darker WhatsApp green */
} 