/* Container & Typography */
.contact-container {
  max-width: 700px;
  margin: 0 auto;
  color: #e2e8f0; /* Light grey text */
}

.contact-header { margin-bottom: 2rem; }
.sub-text { opacity: 0.8; font-size: 0.95rem; }

/* Form Layout */
.premium-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: flex; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; }
.half { width: 50%; }

/* Mobile Responsive */
@media (max-width: 600px) {
  .form-row { flex-direction: column; gap: 1.5rem; }
  .half { width: 100%; }
}

/* INPUTS: The "Dark Mode" Fix */
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  background-color: #1e293b; /* Dark Navy/Grey */
  border: 1px solid #334155;
  border-radius: 6px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box; 
}

/* Focus States - The "Glow" */
input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
outline: none;
  border-color: #3b82f6; /* Brand Blue */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background-color: #0f172a; 
}

/* Labels */
label { font-weight: 500; font-size: 0.9rem; color: #cbd5e1; }

/* The "Referral" Highlight */
.gold-label { color: #fcd34d; } 
.referral-group small { color: #94a3b8; font-size: 0.8rem; margin-top: 4px; }

/* Custom Select Dropdown Arrow Fix */
.select-wrapper { position: relative; }

/* Button Styling */
.btn-submit {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s ease;
  width: 100%;
  font-size: 1rem;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-submit:disabled { background: #475569; cursor: not-allowed; opacity: 0.7; }

/* Response Messages */
.response-message {
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  text-align: center;
}
.success { background-color: #064e3b; color: #6ee7b7; border: 1px solid #059669; }
.error { background-color: #450a0a; color: #fca5a5; border: 1px solid #dc2626; }

.honey-trap {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- SMS consent: clean, flush-left, premium --- */
.form-group.sms-consent{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* Checkbox row */
.form-group.sms-consent .checkbox-label{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

/* Checkbox sizing/alignment */
.form-group.sms-consent .checkbox-label input[type="checkbox"]{
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 16px;
  accent-color: #C9A24A; /* gold */
}

/* Disclosure */
.form-group.sms-consent .sms-disclosure{
  display: block;
  margin: 6px 0 0 0; /* flush-left */
  line-height: 1.4;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
}

/* Link styling */
.form-group.sms-consent .sms-disclosure a{
  color: #C9A24A;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-group.sms-consent .sms-disclosure a:hover{
  opacity: 0.9;
}

