/* ======================================
   CONTACT US – ELITE5PRO
   ====================================== */

.contact-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 18px 40px;
}

.contact-hero {
  margin-bottom: 28px;
}

.contact-hero h1 {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.contact-card {
  margin-bottom: 30px;
  padding: 24px;
  border-radius: 14px;

  background: linear-gradient(
    180deg,
    rgba(77,107,255,.06),
    rgba(0,198,199,.04)
  );

  border: 1px solid rgba(11,18,32,.06);
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: 22px;
  color: var(--accent);
}

.contact-card p {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--muted);
}

.contact-card a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-section {
  margin-bottom: 32px;
}

.contact-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.contact-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 22px;
  margin-bottom: 12px;
}

.contact-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
}

/* Blue diamond bullets */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}

.contact-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.contact-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-size: 12px;
}

.contact-list a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-highlight {
  margin-top: 36px;
  padding: 24px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid rgba(77,107,255,.12);
}

.contact-highlight h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--accent);
}

.contact-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Mobile */

@media (max-width: 768px) {

  .contact-page {
    padding: 18px 14px 20px;
  }

  .contact-hero h1 {
    font-size: 24px;
  }

  .contact-section h2,
  .contact-card h2,
  .contact-highlight h2 {
    font-size: 20px;
  }

  .contact-section h3 {
    font-size: 17px;
  }

}