/* ============================================================
   B•Chemistry — Customer Support Page
   ============================================================ */

/* Full-viewport hero with customer-support.jpg as background */
.hero-wrap--support {
  min-height: 100vh;
  min-height: 100dvh;
  background-image: url('../images/customer-support.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Dark overlay — deep red/dark tone matching the design */
.hero-wrap--support::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 2, 2, 0.68);
  z-index: 0;
}

/* Navbar sits above overlay — all text white */
.hero-wrap--support .navbar {
  position: relative;
  z-index: 10;
  background: transparent;
}

.hero-wrap--support .logo-text {
  color: #ffffff;
}

.hero-wrap--support .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.hero-wrap--support .nav-link:hover {
  color: #ffffff;
}

.hero-wrap--support .nav-link.active::after {
  background-color: #ffffff;
}

.hero-wrap--support .btn-book--outline {
  background-color: #ffffff;
  border: 1.5px solid #ffffff;
  color: #1a1a1a;
  border-radius: 6px;
  font-size: clamp(0.75rem, 0.85vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
}

.hero-wrap--support .nav-burger span {
  background-color: #ffffff;
}


/* ============================================================
   FORM CONTENT
   ============================================================ */
.support-hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 150px;
}

.support-title {
  font-family: 'Riviera Nights Trial', 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.support-subtitle {
  font-family: 'Riviera Nights Trial', 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 48px;
  letter-spacing: 0.08em;
}

/* ============================================================
   FORM
   ============================================================ */
.support-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Two-column row (Name + Mobile) */
.support-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.support-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-field--full {
  width: 100%;
}

.support-label {
  font-family: 'Riviera Nights Trial', 'Inter', sans-serif;
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  text-align: left;
}

/* Underline-only input — matches the design */
.support-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  padding: 8px 0;
  font-family: 'Riviera Nights Trial', 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1vw, 1.05rem);
  font-weight: 300;
  color: #ffffff;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.support-input::placeholder {
  color: transparent;
}

.support-input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   SUBMIT BUTTON
   ============================================================ */
.support-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.support-submit {
  background: #ffffff;
    color: #4A1413;
    border: 1.5px solid #ffffff;
    border-radius: 7px;
  padding: 11px 48px;
  font-family: 'Riviera Nights Trial', 'Inter', sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 700px) {
  .support-hero-content {
    padding: 40px 24px 60px;
  }

  .support-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .support-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
}
