.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.hidden-lang {
  display: none !important;
}


.contact-left {
  flex: 1 1 400px;
  font-family: 'Montserrat', sans-serif;
}

.contact-left h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-left input,
.contact-left textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
}

.contact-left button {
  background-color: #ffc83d;
  color: #222;
  font-weight: bold;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-left button:hover {
  background-color: #e6b635;
}

/* Right Side Image */
.contact-right {
  flex: 1 1 400px;
  text-align: center;
}

.contact-right img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer {
  border-top: none;
  margin-top: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  padding: 20px;
}

.contact-left form input,
.contact-left form textarea,
.contact-left form button {
  width: 100%;
  box-sizing: border-box; /* include padding in width */
  margin-bottom: 1rem;
}


/* Mobile responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 1rem; 
    padding: 0 1rem; /* space on left & right */
  }

  .contact-left {
    flex: 1 1 auto; /* let it take remaining space */
    width: 100%;
    max-width: 600px; /* optional: prevent it from being too wide */
    margin: 0 auto; /* center in the small space */
  }

  .contact-left form {
    width: 100%;
  }

  .contact-right {
    flex: 1 1 auto;
    width: 100%;
    text-align: center;
  }
}
