/* === CONTACT PAGE STYLES === */

.cinfo {
  background: radial-gradient(circle at 20% 30%, #052006 0%, #062b0a 40%, #000000 70%), linear-gradient(120deg, #003613, #1c2005, #204125);
  border-radius: 16px 0 0 16px;
  padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.cinfo::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 3px),
    radial-gradient(circle, rgba(120,160,255,0.25) 2px, transparent 6px);
  background-size: 100px 100px, 180px 180px;
  opacity: 0.18; pointer-events: none;
}
.cinfo-glow-1 {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(109,92,255,0.22) 0%, transparent 70%);
  top: -80px; right: -60px; pointer-events: none;
}
.cinfo-glow-2 {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,124,255,0.14) 0%, transparent 70%);
  bottom: -50px; left: -50px; pointer-events: none;
}
.cinfo-body { position: relative; z-index: 2; }
.cinfo-title  { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }
.cinfo-sub    { color: rgba(255,255,255,0.7); font-size: 0.78rem; margin-bottom: 1.75rem; }

.cinfo-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.2rem; }
.cinfo-list li { display: flex; align-items: flex-start; gap: 0.8rem; color: rgba(255,255,255,0.8); font-size: 0.86rem; line-height: 1.55; }
.cinfo-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgb(127 255 92 / 30%); border: 1px solid rgba(109,92,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.86rem; color: #a9f5ff;
}
.cinfo-lbl { display: block; font-size: 0.67rem; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.1rem; }
.cinfo-social { display: flex; gap: 0.5rem; position: relative; z-index: 2; }
.cinfo-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.84rem; text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.cinfo-social a:hover { background: #6d5cff; color: #fff; border-color: #6d5cff; }

.cform { padding: 2.5rem; }
.cform .form-label { font-size: 0.8rem; font-weight: 600; color: #000b33; margin-bottom: 0.3rem; }
.cform .form-control,
.cform .form-select {
  border: 1.5px solid #dde3ff; border-radius: 10px;
  font-size: 0.87rem; color: #000b33;
  transition: border-color .2s, box-shadow .2s;
}
.cform .form-control:focus,
.cform .form-select:focus {
  border-color: #6d5cff;
  box-shadow: 0 0 0 3px rgba(109,92,255,0.12);
}
.cform .form-control::placeholder { color: #c4cedf; }

.trust-strip { background: #fff; border-top: 1px solid #e8edf8; padding: 1.1rem 0; text-align: center; }
.trust-strip p { font-size: 0.81rem; color: #94a3b8; margin: 0; }
.trust-strip a { color: #6d5cff; text-decoration: none; }

@media (max-width: 767px) {
  .cinfo { border-radius: 16px 16px 0 0; }
  .contact-card-row { flex-direction: column; }
  .cform { padding: 1.75rem; }
  .cinfo  { padding: 1.75rem; }
}

.cta-btn.active { animation: none !important; }
