.site-footer {
  background: #2b2b2b;
  color: #ffffff;
  padding: 50px 0 40px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* TOP DIVIDER LINE */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* LOGO */
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 700;
}

.footer-brand-sub {
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 0.4px;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.footer-socials a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* CENTER */
.footer-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.footer-center p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}

.footer-phone {
  font-weight: 600;
  font-size: 15px;
}

/* BOOK LINK */
.footer-book {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7cff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-book:hover {
  color: #ffffff;
}

/* RIGHT */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-right a {
  color: #ffffff;
  font-size: 14px;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-right a:hover {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
