body {
  background-color: #0e0e0e;
  color: #f8f5f0;
  font-family: 'Poppins', sans-serif;
}

/* Hero Titles */

.section-title {
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-subtitle {
  color: #aaa;
  font-size: 14px;
  margin-top: 10px;
}

/* Form & Card */

.custom-light-form .card {
  background-color: #121212;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-light-form .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.card-header.bg-gold {
  background-color: #d4af37 !important;
  color: #121212;
}

#custom-light-form-section .form-control, #custom-light-form-section .form-select {
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #f8f5f0;
}

#custom-light-form-section .form-control::placeholder {
  color: #999;
}

.btn-gold {
  background-color: #d4af37;
  color: #121212;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-gold:hover {
  background-color: #b8962e;
  color: #121212;
  transform: translateY(-2px);
}

