/* =========================
   CONTACT
========================= */
.contact-section{
  background:#eef2f7;
  padding: 80px 0 90px;
}

.contact-head{
  text-align:center;
  margin-bottom: 26px;
}
.contact-head h2{
  margin:0 0 6px;
  font-weight: 900;
  letter-spacing:-0.02em;
  color:#0f172a;
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
}
.contact-head p{
  margin:0 auto;
  max-width: 680px;
  color:#64748b;
  line-height:1.6;
}

/* izquierda */
.contact-info{
  padding-top: 6px;
}
.contact-info h4{
  font-weight: 900;
  color:#0f172a;
  margin: 0 0 14px;
}
.citem{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 12px 0;
}
.cicon{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(42,82,168,.12);
  border: 1px solid rgba(42,82,168,.18);
  display:grid;
  place-items:center;
  color:#2a52a8;
  box-shadow: 0 12px 26px rgba(15,23,42,.08);
  flex: 0 0 auto;
}
.citem h6{
  margin: 2px 0 2px;
  font-weight: 900;
  color:#0f172a;
}
.citem p{
  margin:0;
  color:#64748b;
}

/* derecha card */
.contact-card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 16px 40px rgba(15,23,42,.10);
}
.contact-card h4{
  font-weight: 900;
  margin: 0 0 16px;
  color:#0f172a;
}
.contact-card .form-control,
.contact-card .form-select{
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  padding: 12px 12px;
}
.contact-card .form-control:focus,
.contact-card .form-select:focus{
  box-shadow: 0 0 0 .2rem rgba(42,82,168,.16);
  border-color: rgba(42,82,168,.45);
}

.contact-btn{
  background:#2a52a8;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(42,82,168,.25);
}
.contact-btn:hover{ filter: brightness(1.03); }

/* =========================
   FOOTER
========================= */
.site-footer{
  background: #0b1220;
  color: rgba(255,255,255,.78);
  padding: 36px 0 18px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  color:#fff;
  font-weight: 900;
  font-size: 1.05rem;
}
.footer-brand i{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.fcol h6{
  color:#fff;
  font-weight: 900;
  margin: 0 0 10px;
}

.fdesc{
  margin: 10px 0 0;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}

/* links */
.flinks{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}
.flinks a{
  color: rgba(255,255,255,.74);
  text-decoration:none;
}
.flinks a:hover{
  color:#fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* social */
.fsocial{
  display:grid;
  gap: 10px;
}
.fsocial a{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.74);
  text-decoration:none;
}
.fsocial i{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.fsocial a:hover{ color:#fff; }

/* newsletter */
.newsletter{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-top: 10px;
}
.newsletter input{
  flex:1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 10px 12px;
  color:#fff;
  outline:none;
}
.newsletter input::placeholder{ color: rgba(255,255,255,.55); }
.newsletter button{
  background:#2a52a8;
  border:none;
  border-radius: 12px;
  padding: 10px 14px;
  color:#fff;
  font-weight: 900;
  cursor:pointer;
}
.newsletter button:hover{ filter: brightness(1.05); }

.footer-bottom{
  padding-top: 14px;
  text-align:center;
  font-size: .9rem;
  color: rgba(255,255,255,.62);
}

/* Responsive footer */
@media (max-width: 991.98px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px){
  .footer-grid{ grid-template-columns: 1fr; }
  .newsletter{ flex-direction: column; align-items: stretch; }
}
