/* Shared GÜREJE interaction polish for all main-site pages. */
html,
body {
  overflow-x: hidden;
}

/* Make the top-right menu control feel dimensional without changing its role. */
.rd-navbar-sidebar .rd-navbar-toggle {
  isolation: isolate;
  box-shadow: 0 14px 34px rgba(20, 4, 7, .18), 0 0 0 1px rgba(255,255,255,.05) inset;
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,.09), transparent 34%),
    linear-gradient(145deg, #21080d 0%, #140407 58%, #090305 100%);
  transform: translateZ(0);
  transition: transform .34s cubic-bezier(.2,.75,.2,1), box-shadow .34s ease, filter .34s ease;
}

.rd-navbar-sidebar .rd-navbar-toggle:hover,
.rd-navbar-sidebar .rd-navbar-toggle:focus-visible,
.rd-navbar-sidebar .rd-navbar-toggle.is-pressed {
  transform: translateY(-6px) scale(1.055);
  box-shadow: 0 24px 48px rgba(20, 4, 7, .28), 0 0 0 1px rgba(255,255,255,.10) inset;
  filter: saturate(1.12) brightness(1.06);
  outline: none;
}

.rd-navbar-sidebar .rd-navbar-toggle:active {
  transform: translateY(-2px) scale(1.025);
}

/* Consistent footer treatment on About and other main pages as well as Home. */
.gureje-footer-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.gureje-footer-social-group {
  min-width: 0;
}

.gureje-footer-social-group h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: .08em;
}

.gureje-footer-social-group .list-social {
  margin-top: 0;
}

.gureje-footer-social-group .list-social .icon {
  width: 44px;
  height: 44px;
  line-height: 42px;
  transition: transform .28s ease, background-color .28s ease, border-color .28s ease;
}

.gureje-footer-social-group .list-social .icon:hover,
.gureje-footer-social-group .list-social .icon:focus-visible {
  transform: translateY(-4px);
}

/* Shared fixed enquiry control for non-home pages. Home keeps the same class and overrides where needed. */
.gureje-floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.24), 0 0 0 7px rgba(37,211,102,.07);
  cursor: pointer;
  text-decoration: none;
  transition: transform .28s cubic-bezier(.2,.75,.2,1), box-shadow .28s ease;
}

.gureje-floating-whatsapp:hover,
.gureje-floating-whatsapp:focus-visible,
.gureje-floating-whatsapp.is-pressed {
  color: #fff;
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 20px 44px rgba(0,0,0,.28), 0 0 0 9px rgba(37,211,102,.10);
  outline: none;
}

.gureje-floating-whatsapp .icon {
  font-size: 28px;
  line-height: 1;
}

.gureje-floating-whatsapp-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  padding: 8px 11px;
  border-radius: 3px;
  background: #140407;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity .2s ease, transform .2s ease;
}

.gureje-floating-whatsapp:hover .gureje-floating-whatsapp-label,
.gureje-floating-whatsapp:focus-visible .gureje-floating-whatsapp-label {
  opacity: 1;
  transform: translate(0, -50%);
}

.ui-to-top {
  right: 34px;
  bottom: 96px;
}

@media (max-width: 991.98px) {
  .gureje-footer-socials {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 430px) {
  .gureje-floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rd-navbar-sidebar .rd-navbar-toggle,
  .gureje-floating-whatsapp,
  .gureje-footer-social-group .list-social .icon {
    transition-duration: 1ms;
  }
}


/* Keep WhatsApp above the external chat widget */
.gureje-floating-whatsapp {
    z-index: 1000001 !important;
    pointer-events: auto !important;
    touch-action: manipulation;
    isolation: isolate;
}