body {
  background-color: #000;
  color: #fff;
  font-family: "Golos Text", sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background: #000 !important;
}

/* Hero */
.hero {
  height: 25vh;
  background: url("/media/inquiry-bg.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 150px;
}

@font-face {
  font-family: "goldeneye";
  src: url(/font/007\ GoldenEye.ttf);
}

::selection {
  background: white;
  color: black;
}

h1 {
  font-family: "goldeneye";
  font-size: 60px;
  margin-bottom: 1.5rem;
  margin-top: 90px;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 45px;
  font-family: "goldeneye";
  margin-bottom: 10px;
}

.hero p {
  font-size: 17px;
  color: #ccc;
}

/* Form Section */
.form-section {
  padding: 80px 15px;
}

.exclusive-form {
  max-width: 700px;
  margin: 0 auto;
  background: #000;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 40px 30px;
}

.form-label {
  font-weight: 600;
  color: #fff;
}

/* Inputs & Textarea */
.form-control,
.form-select {
  background: #111;
  border: 1px solid #444;
  color: #fff;
  border-radius: 0;
}

.form-control::placeholder,
textarea::placeholder {
  color: #888;
  opacity: 1;
}

.form-control:focus,
.form-select:focus {
  background: #111;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}

/* Dropdown Hover/Active */
.form-select:hover,
.form-select:focus,
.form-select:active {
  background-color: #111;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}

/* Buttons */
.btn-exclusive {
  background: #000;
  color: #fff;
  font-weight: bold;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 12px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-exclusive:hover,
.btn-exclusive:active {
  background: #fff !important;
  color: #000 !important;
}

/* Radiobuttons */
.form-check-input:checked {
  background-color: #000;
  border-color: #888;
  box-shadow: none;
  border: none;
}

.form-check-input:active {
  background-color: #000;
  border-color: #000;
  box-shadow: none;
}

.form-check-label {
  color: #fff;
  margin-left: 5px;
}

/* Disclaimer */
.disclaimer {
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  margin-top: 20px;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 55px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 45px;
    padding-bottom: 30px;
  }

  .form-section {
    padding: 0 15px;
  }
}
