/* start section hero */
.booking-hero {
    position: relative;
    height: 100dvh;
    max-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
    padding-top: 30px;
}

.booking-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-top: 30px;
    z-index: 1;
    opacity: 0.4; /* Adjust for overlay effect */
}

.booking-content {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius, 10px);
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  z-index: 5;
  box-shadow: var(--box-shadow, 0px 10px 30px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-content:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

.booking-title-hero {
  font-size: clamp(24px, 5vw, 40px); /* Fix: min size first */
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--primary-color, #0366FF);
  text-align: center;
}

.booking-text {
  font-size: clamp(14px, 2.5vw, 18px); /* More responsive on small devices */
  line-height: 1.5;
  text-align: center;
  margin-bottom: 5px;
}

/* Responsive tweaks for tablets and below */
@media (max-width: 768px) {
  .booking-content {
    padding: 1.5rem;
  }

  .booking-title-hero {
    font-size: 28px;
  }

  .booking-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .booking-content {
    padding: 1rem;
  }

  .booking-title-hero {
    font-size: 24px;
  }

  .booking-text {
    font-size: 15px;
  }
}


@media (max-width: 768px) {
    .booking-hero {
        max-height: 400px;
        padding-top: 20px;
    }

}

@media (max-width: 480px) {
    .booking-hero {
        padding-top: 15px;
        margin-bottom: 2rem;
    }
}
/* end section booking hero */


/* start formulir */
.booking-section {
  padding: 2rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.booking-container {
  max-width: 900px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.booking-logo {
  display: block;
  margin: 0 auto 1rem;
  max-height: 80px;
}

.booking-title {
  text-align: center;
  color: #0056e0;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.booking-subtitle {
  text-align: center;
  color: #999;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group-title {
  font-weight: bold;
  color: #0056e0;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.booking-section .form-control {
  padding: 0.6rem;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  border-radius: 4px 4px 0 0;
  background-color: transparent;
}

.booking-section .form-control:focus {
  border-color: #0056e0;
  background-color: #fff;
  box-shadow: none; /* hilangkan shadow default bootstrap */
}

.booking-section textarea.form-control {
  min-height: 80px;
  resize: vertical;
}

/* Jika ingin sedikit jarak antar form-group */
.booking-section .form-group {
  margin-bottom: 1rem;
}


.submit-btn {
  background-color: #0056e0;
  color: #fff;
  padding: 0.8rem;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #0041b3;
}

/* Tablet styles (768px - 1024px) */
@media (max-width: 1024px) {
  .booking-section {
    padding: 1.5rem;
  }

  .booking-container {
    padding: 1.5rem;
  }

  .booking-logo {
    max-height: 70px;
  }

  .booking-title {
    font-size: 1.2rem;
  }

  .form-group {
    min-width: 180px;
  }
}

/* Mobile styles (up to 767px) */
@media (max-width: 767px) {
  .booking-section {
    padding: 1rem;
  }

  .booking-container {
    padding: 1.2rem;
    border-radius: 8px;
  }

  .booking-logo {
    max-height: 60px;
    margin-bottom: 0.8rem;
  }

  .booking-title {
    font-size: 1.1rem;
  }

  .booking-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .form-row {
    gap: 0.8rem;
    flex-direction: column;
  }

  .form-group {
    min-width: 100%;
  }

  .form-group-title {
    margin-top: 0.8rem;
  }

  input,
  select,
  textarea {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 0.7rem;
    font-size: 0.95rem;
  }
}

/* Small mobile devices (optional) */
@media (max-width: 480px) {
  .booking-section {
    padding: 0.8rem;
  }

  .booking-container {
    padding: 1rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  }

  .booking-logo {
    max-height: 50px;
  }

  .booking-title {
    font-size: 1rem;
  }

  .booking-subtitle {
    font-size: 0.8rem;
  }

  .booking-form {
    gap: 0.8rem;
  }

  .submit-btn {
    margin-top: 0.8rem;
  }
}

.terms-container {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.terms-container a {
  color: #ff6600;
  text-decoration: none;
}

.terms-container a:hover {
  text-decoration: underline;
}
:root {
  --primary-color: #2a4365;
  --secondary-color: #4299e1;
  --accent-color: #e53e3e;
  --text-color: #4a5568;
  --light-bg: #f7fafc;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* end formulir */