
/* General */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #403d39;
  line-height: 1.6;
}

/* Parallax Section */
.parallax {
  background: url("/assests/image/Contact_us.jpg") no-repeat center center/cover;
  height: 100dvh;
  background-attachment: fixed;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
}

.overlay {
  text-align: center;
  color: #fffcf2;
  margin-top: 17%;
}

.overlay h1 {
  font-size: 4rem;
  font-weight: 700;
}

.overlay p {
  font-size: 1.3rem;
  margin-top: 10px;
  /* font-style: italic; */
}

/* Contact Container */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 60px 10%;
  background: #f9f9f9;
  flex-wrap: wrap;
}

/* Form Section */
.form-box {
  flex: 1 1 55%;
}

.form-box h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.form-box p {
  margin-bottom: 20px;
  color: #555;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

textarea {
  height: 120px;
  resize: none;
}

button {
  background: #eb5e28;
  color: #fffcf2;
  border: none;
  padding: 14px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: #eb5e28;
}

/* Info Section */
.info-box {
  flex: 1 1 40%;
}

.info-box h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.info-box p {
  margin-bottom: 10px;
  color: #555;
}

.map iframe {
  border-radius: 8px;
  margin-top: 15px;
}

/* Responsive */
@media(max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  .form-box, .info-box {
    flex: 1 1 100%;
  }
  .parallax {
    height: 40vh;
  }
  .overlay h1 {
    font-size: 2rem;
  }
}
