
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

.enquiry-section {
  position: relative;
  padding-bottom:5px;
}

.enquiry-bg {
  background: linear-gradient(to bottom, #f0ffff, #00eeff);
  padding: 20px 40px 290px;
  position: relative;
  overflow: hidden;
}

.bg-img {
  position: absolute;
  bottom: 20px;
  height: 250px;
  object-fit: contain;
}

.bg-img.left {
  left: 30px;
}

.bg-img.right {
  right: 30px;
}

.enquiry-card {
  max-width: 1300px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transform: translateY(-180px);
}

.enquiry-card h2 {
  font-size: 26px;
  margin-bottom: 30px;
  color: #111;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 20px;

}

.form-row.bottom {
  align-items: center;
}


input,
select,
button {
  width: 100%;
  min-height: 52px;
  line-height: 52px;
  padding: 0 18px;
  border-radius: 32px;
  font-size: 16px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input,
select {
  border: 2px dashed rgba(0,0,0,0.4);
  background: #fff;
}

button {
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #000, #4ea0ff);
  transition: 0.3s ease;
  white-space: nowrap;
}

button:hover {
  filter: brightness(1.2);
}


@media (max-width: 1024px) {
  .enquiry-bg {
    padding: 80px 30px 200px;
  }

  .enquiry-card {
    padding: 40px;
    transform: translateY(-150px);
  }

  .bg-img {
    height: 180px;
  }
}

/* =====================
   MOBILE
===================== */
@media (max-width: 768px) {
  .enquiry-bg {
    padding: 60px 20px 120px;
  }

  .bg-img {
    display: none;
  }

  .enquiry-card {
    transform: none;
    margin: -80px 16px 0;
    padding: 30px 22px;
  }

  .enquiry-card h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .form-row {
    flex-direction: column;
  }

  button {
    width: 100%;
  }

  /* EXTRA MOBILE HEIGHT */
  input,
  select,
  button {
    min-height: 56px;
    line-height: 56px;
  }
}

/* =====================
   SMALL MOBILE
===================== */
@media (max-width: 480px) {
  .enquiry-card {
    margin-top: -60px;
    padding: 24px 18px;
  }
}
