.grc-footer {
  font-family: 'Poppins', sans-serif;
  background: #1a1a2e;
  padding: 72px 48px 0;
}

.grc-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── Left: logo + about ── */
.grc-footer__brand {}

.grc-footer__logo,
.grc-footer .custom-logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.grc-footer__logo img,
.grc-footer .custom-logo-link img {
  height: 56px;
  width: auto;
  display: block;
  opacity: 0.92;
}

.grc-footer__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 380px;
}

/* ── Right: pages ── */
.grc-footer__links h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2FBCD3;
  margin: 0 0 20px;
}

.grc-footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.grc-footer__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.grc-footer__links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

/* ── Bottom bar ── */
.grc-footer__bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.grc-footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

.grc-footer__copy a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.grc-footer__copy a:hover {
  color: #2FBCD3;
}

.grc-footer__accent {
  height: 2px;
  background: linear-gradient(90deg, #1B6CA8, #2FBCD3);
  width: 100%;
}

/* ── Floating WhatsApp button ── */
.grc-whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grc-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
}

.grc-whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .grc-whatsapp-btn {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 768px) {
  .grc-footer {
    padding: 56px 24px 0;
  }

  .grc-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grc-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
