.contact-us-main-container {
  display: flex;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
  /* background-color: #f4f2ec; */
  flex-wrap: nowrap; /* prevent wrapping */
  align-items: stretch; /* key to equal height */
}

.contact-left {
  flex: 0 0 70%;
  display: flex;
  flex-direction: column;
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}


.contact-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-text .overview-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fff4d0;
  color: #a99458;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.contact-text .headline {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1e1e1e;
}

.contact-text .description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
}

.contact-card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%; /* ensure full height */
}
.map-container {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}

.contact-info-box p {
  margin: 5px 0;
  font-size: 16px;
}

.contact-info-box a {
  color: #a99458;
  text-decoration: none;
}

.schedule-btn {
  background-color: #f5ba3a;
  color: white;
  padding: 10px 18px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s;
}

.schedule-btn:hover {
  background-color: var(--accent-color, #ffc83d);
}

/* FORM */
.contact-us-form-wrapper {
  padding: 40px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  /* width: var(--site-max-width); */
  border-radius: 20px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-us-main-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-us-form-wrapper {
    padding: 20px;
    max-width: 90% !important;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .contact-us-main-container {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-card {
    height: auto;
  }
}
