/* footer.css — site footer + floating social rail */

.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding-block: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
  gap: 40px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-600);
  margin-bottom: 18px;
}

.footer-about .brand { margin-bottom: 16px; }
.footer-about address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.footer-links li + li { margin-top: 10px; }
.footer-links a { color: var(--neutral-700); font-size: 0.93rem; }
.footer-links a:hover { color: var(--primary); }

.newsletter p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 14px; }
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 18px;
}
.newsletter-form:focus-within { border-color: var(--primary-300); box-shadow: 0 0 0 3px var(--primary-50); }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.92rem;
  padding: 8px 0;
}
.newsletter-form button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  transition: background-color 0.2s var(--ease);
}
.newsletter-form button:hover { background: var(--secondary); }
.newsletter-form button svg { width: 16px; height: 16px; }
.form-note { font-size: 0.82rem; margin-top: 10px; min-height: 1.2em; }
.form-note.is-error { color: var(--danger); }
.form-note.is-success { color: var(--success); }

.social-row { display: flex; gap: 10px; }
.social-row a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary);
}
.social-row a:hover { background: var(--primary); color: #fff; }
.social-row svg { width: 16px; height: 16px; }

.footer-bottom {
  margin-top: 52px;
  border-top: 1px solid var(--border);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--primary); }

/* Floating contact rail */
/* .float-rail {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-rail a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s var(--ease);
}
.float-rail a:hover { transform: scale(1.08); color: #fff; }
.float-rail svg { width: 19px; height: 19px; }
.float-rail .fr-call { background: var(--primary); }
.float-rail .fr-mail { background: var(--secondary); }
.float-rail .fr-link { background: var(--primary-700); } */

.float-rail{
  position:fixed;
  right:30px;
  bottom:30px;

  display:flex;
  flex-direction:column;
  gap:16px;

  z-index:9999;
}

.float-rail a{
  width:60px;
  height:60px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  text-decoration:none;

  color:#fff;
  font-size:28px;

  box-shadow:0 10px 25px rgba(0,0,0,.18);

  transition:.3s ease;
}

.float-rail a:hover{
  transform:translateY(-4px) scale(1.08);
}

.fr-call{
  background:#A55210;
}

.fr-whatsapp{
  background:#25D366;
}

.fr-instagram{
  background:linear-gradient(
      135deg,
      #FEDA75 0%,
      #FA7E1E 25%,
      #D62976 55%,
      #962FBF 80%,
      #4F5BD5 100%
  );
}

.fr-linkedin{
  background:#0A66C2;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .float-rail { right: 12px; bottom: 12px; }
  .float-rail a { width: 40px; height: 40px; }
}
