/* ── Footer ── */
footer {
  background: #0b1528 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 26px;
  margin-top: 90px;
}
footer h3, footer h4 { color: white; margin-top: 0; }
footer .ek-logo-text .logo-th,
footer .ek-logo-text .logo-en,
footer p {
  color: white;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { padding: 7px 0; }
.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Floating Actions (left side, toggle-able) ── */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 120;
}
.float-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  transform-origin: bottom right;
}
.floating-actions.closed .float-items {
  opacity: 0;
  transform: translateY(10px) scale(0.85);
  visibility: hidden;
  pointer-events: none;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45);
}
.float-call     { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.float-line     { background: linear-gradient(135deg, #10c464, #31d87f); }
.float-line i   { font-size: 28px; }
.float-facebook { background: linear-gradient(135deg, #1877f2, #42a5f5); }

.float-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #00f2fe, #0072ff);
  color: #fff;
  font-size: 22px;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0, 114, 255, 0.45);
  transition: transform 0.25s ease, box-shadow 0.2s ease;
  position: relative;
}
.float-toggle:hover { transform: scale(1.08); }
.float-toggle span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.float-toggle .float-toggle-open  { opacity: 0; transform: rotate(-90deg); }
.float-toggle .float-toggle-close { opacity: 1; transform: rotate(0deg); }
.floating-actions.closed .float-toggle .float-toggle-open  { opacity: 1; transform: rotate(0deg); }
.floating-actions.closed .float-toggle .float-toggle-close { opacity: 0; transform: rotate(90deg); }

@media (max-width: 480px) {
  .floating-actions { right: 12px; bottom: 12px; gap: 10px; }
  .float-items { gap: 10px; }
  .float-btn, .float-toggle { width: 50px; height: 50px; font-size: 20px; }
  .float-line i { font-size: 26px; }
}
