.custom-header {
  background-color: #022902;
  color: #968f2b;
  padding: 0.75rem 1.25rem; 
}

.btn-custom {
    background-color: #022902;
    color: #968f2b;
    position: relative;
    z-index: 1;
}

.btn-custom:hover {
    background-color: #968f2b;
    color: #022902;
}

.enq-sections {
  padding: 6rem 2rem 2rem;
  color: #1f2f26;
  box-sizing: border-box;
  text-align: center;
  background-image: url('/static/images/toproom.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.enq-sections::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 248, 248, 0.37);
    z-index: 0;
  }

  .enq-intro {
    margin-bottom: 3rem;
    text-align: center;
    padding: 3rem 1.5rem 1.5rem;
    position: relative;
    z-index: 2;
}

hr.gold-line {
  position: relative;
  z-index: 2;
  border: none;
  height: 1px;
  background-color: #002915;
  width: 80px;
  margin: 2rem auto 3rem;
}

.enq-text {
  color: #1f2f26;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.65;
  max-width: 750px;
  margin: 0 auto 2rem;
  z-index: 2;
}

/* ── Form Cards ───────────────────────────────────── */
.card {
  background: #dbcda9;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  position: relative;
  z-index: 2;
}

.card-body {
  background: transparent;
  padding: 1.5rem;
}

.form-control,
.form-select {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  color: #1f2f26;
}

.form-control:focus,
.form-select:focus {
  border-color: #968f2b;
  box-shadow: 0 0 0 0.2rem rgba(150, 143, 43, 0.15);
}