.contact-section {
  background-color: #fafafa;
  padding: 3rem 1.5rem;
  border-radius: 12px;
  color: #222;
  max-width: 650px;
  margin: 4rem auto;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.contact-section h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-section p {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.5rem;
  border: 1px solid #e2e2e2;         /* subtle neutral outline */
  border-radius: 10px;               /* soft but not playful */
  background-color: #ffffff;         /* ensures clarity against off-white page */
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); /* gentle depth */
}

.contact-form:hover,
.contact-form:focus-within {
  border-color: #d0d0d0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #999;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
  outline: none;
}

.button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem; /* This creates clean spacing between buttons */
}

.btn {
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #fff;
  color: #222;
  transition: all 0.2s ease;
}

/* Hover and focus states */
.btn:hover,
.btn:focus {
  background: #f5f5f5; /* slightly darker background */
  border-color: #aaa;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08); /* subtle depth */
  transform: translateY(-1px); /* gentle lift */
  color: #008AFF;
}

/* Active (pressed) state */
.btn:active {
  background: #ededed;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transform: translateY(0); /* remove lift */
}

/* Primary variant (Send Message button) */
.btn.primary {
  background: #f9f9f9;
  border-color: #ccc;
  color: #111;
}

/* Secondary variant (Book Meeting button) */
.btn.secondary {
  background: #fff;
  border-color: #ccc;
  color: #111;
}

/* Optional subtle color tint on hover for secondary */
.btn.secondary:hover {
  background: #f7f7f7;
  border-color: #999;
}