.contact-container {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.contact-left,
.contact-right {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  font-family: "Fredoka", sans-serif;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-left .find-link {
  color: #ff1e1e;
  text-decoration: underline;
  font-weight: 600;
}

.contact-left .find-link:hover {
  text-decoration: none;
}

.contact-right .contact-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem;
}

/* Form */
.contact-card h3 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-card form {
  gap: 1rem;
  width: 100%;
}

.contact-card label {
  font-weight: 600;
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.25rem;
}

.contact-card input,
.contact-card textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fefefe;
  font-family: "Fredoka", sans-serif;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: #00b8ff;
  box-shadow: 0 0 0 2px rgba(0, 184, 255, 0.2);
}

.contact-card textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-card button {
  background-color: #ff1e1e;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-family: "Fredoka", sans-serif;
}

.contact-card button:hover {
  background-color: #cc1818;
}

/* Button */
.no-scale {
  transform: none !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    max-width: 880px;
  }

  .contact-left {
    margin-bottom: 0;
    padding-bottom: 0;
    max-height: max-content;
  }

  .contact-right {
    margin-top: 0;
    padding-top: 0;
  }
}

/* Test CSS */
/* .contact-container {
  border: 3px solid red !important;
}

.contact-left,
.contact-right {
  border: 3px solid blue !important;
}

.contact-card {
  border: 3px solid green !important;
}

.contact-card form {
  border: 2px solid orange !important;
}

.contact-card input,
.contact-card textarea {
  border: 2px solid purple !important;
} */
