:root {
  --bg: #0a0e1f;
  --text: #f5f8ff;
  --accent: #6ea0ff;
  --muted: #a8b0cc;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* ===== CONTACT HEADER ===== */
.contact-header {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(180deg, #0a0e1f, #0e1635);
}
.contact-header h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.contact-header .subheadline {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.contact-header .small {
  max-width: 750px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== CONTACT OPTIONS ===== */
.contact-options {
  padding: 80px 20px;
  background: #0b1026;
  text-align: center;
}
.contact-options h2 {
  color: var(--accent);
  margin-bottom: 10px;
}
.contact-options p {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-content: center;
}
.option-card {
  background: #101633;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}
.option-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(110,160,255,0.2);
}
.option-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.option-card h3 {
  margin-bottom: 5px;
}
.option-card a {
  color: var(--accent);
  text-decoration: none;
}
.option-card a:hover {
  text-decoration: underline;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  padding: 100px 20px;
  background: #0a0e1f;
}
.contact-form h2 {
  text-align: center;
  color: var(--accent);
  margin-bottom: 40px;
}
form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: #101633;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
}
button.btn.accent {
  align-self: center;
  background: linear-gradient(90deg, #6ea0ff, #9bffd6);
  color: #0a0e1f;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 12px 26px;
  cursor: pointer;
  transition: transform 0.2s;
}
button.btn.accent:hover {
  transform: scale(1.05);
}
.reassurance {
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== WHY CONTACT US ===== */
.why-contact {
  padding: 100px 20px;
  background: #0b1026;
  text-align: center;
}
.why-contact h2 {
  color: var(--accent);
  margin-bottom: 15px;
}
.why-contact .intro {
  max-width: 750px;
  margin: 0 auto 40px;
  color: var(--muted);
}
.why-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  list-style: none;
  padding: 0;
}
.why-list li {
  background: #101633;
  margin-bottom: 12px;
  padding: 14px 18px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  font-size: 1rem;
}
.info-text {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}