/* ---------- Base & Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Poppins', sans-serif; }
body { line-height: 1.6; color: #dbe1ff; background: #0b1026; }
.container { max-width: 1200px; margin: 0 auto; padding: 2rem; }

/* ---------- Hero ---------- */
.hero.support-hero {
  background: linear-gradient(135deg,#0a74da,#1b9fff);
  color: #fff; padding: 6rem 2rem; text-align: center;
}
.hero.support-hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero.support-hero p { font-size: 1.25rem; }

/* ---------- Sections ---------- */
.section { padding: 4rem 2rem; background: #0b1026; margin-bottom: 2rem; text-align: center; }
.section h2 { color: #0a74da; font-size: 2rem; margin-bottom: 1rem; }
.section p { max-width: 800px; margin: 0 auto 2rem; font-size: 1.1rem; color: #dbe1ff; }

/* ---------- Support Grid ---------- */
.support-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 2rem; }
.support-card {
  background: #111936; border-radius: 12px; overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3); text-align: center; transition: .3s;
}
.support-card img { width: 100%; height: 180px; object-fit: cover; border-bottom: 2px solid #0a74da; }
.support-card h3 { color: #0a74da; margin: 1rem 0 .5rem; }
.support-card p { color: #dbe1ff; font-size: .95rem; padding: 0 1rem 1rem; }
.support-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(10,116,218,0.3); }

/* ---------- Why Choose Us ---------- */
.section ul {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3rem;
}
.section ul li {
  background: #0a74da33;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  color: #0a74da;   /* brand blue instead of yellow */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}


/* ---------- CTA ---------- */
/* ------------------ CTA ------------------ */
.cta {
  background: #0a74da;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem 0;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.cta .btn {
  background: #1b9fff; /* Harms Tech Blue instead of yellow */
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.cta .btn:hover {
  background: #fff;
  color: #0a74da;   /* invert on hover */
  transform: translateY(-3px);
}


/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.contact-form {
  background: #111936; padding: 18px; border: 1px solid #0a74da33; border-radius: 12px;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
input, textarea {
  border: 1px solid #0a74da33; border-radius: 12px; padding: 12px;
  background: #1a2036; color: #dbe1ff; font: inherit;
}
input:focus, textarea:focus { outline: 3px solid rgba(10,116,218,0.2); border-color: #0a74da; }
.form-status { min-height: 1em; color: #9bb0ff; margin-top: 8px; }

/* ---------- Social Icons ---------- */
.contact-icons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 16px 0; }
.contact-icons a {
  font-size: 22px; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: #fff; transition: .3s;
}
.contact-icons a:hover { transform: scale(1.1); }
.contact-icons a[aria-label="WhatsApp"] { background:#25D366; }
.contact-icons a[aria-label="Facebook"] { background:#1877F2; }
.contact-icons a[aria-label="Instagram"] { background:linear-gradient(45deg,#feda75,#d62976,#4f5bd5); }
.contact-icons a[aria-label="Email"] { background:#EA4335; }
.contact-icons a[aria-label="Phone"] { background:#34B7F1; }

/* ---------- Footer ---------- */
.footer {
  background: #0b1026; color: #dbe1ff; padding: 40px 2rem;
}
.footer-content {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 16px; align-items: start;
}
.footer a {
  color: #0a74da;
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: #fff;
}

.logo-row { display: flex; align-items: center; gap: 10px; }
.footer small { display: block; margin-top: 16px; font-size: .85rem; color: #9bb0ff; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero.support-hero h1 { font-size: 2.25rem; }
  .hero.support-hero p { font-size: 1rem; }
  .support-card img { height: 150px; }
  .section ul { flex-direction: column; gap: 1rem; }
  .contact-grid, .footer-content { grid-template-columns: 1fr; text-align: center; }
  .logo-row { justify-content: center; }
}


/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.logo-img {
  height: 35px;
  margin-right: 8px;
}





/* Contact button */
.btn-primary {
  padding: 0.5rem 1rem;
  background: #ffd32a;
  color: #0a3d62;
  border-radius: 8px;
  font-weight: bold;
}

