.footer {
	width: 100%;
	bottom: 0;
	background: var(--styx-base-color-3);
	padding: 40px 5vw;
	color: var(--styx-text-color-3);
	border-top: 1px solid var(--styx-base-color-1);
	font-size: 1rem;
}

.footer p, .footer h4, .footer h5, .footer a {
	color: var(--styx-text-color-3);
}

.footer-container {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
	flex: 1 1 22%;
	margin-bottom: 20px;
	padding: 0 1vw;
}

.footer-column p {
	font-family: Inter;
	font-size: 0.85rem;
	letter-spacing: 0.4px;
	margin: 8px 0;
}

.footer-column h4 {
	font-family: Rubik;
	font-size: 2rem;
	font-weight: 500;
    letter-spacing: 1px;
	margin: 0 0 10px;
}

.footer-column h5 {
	font-family: Inter;
	font-size: 1rem;
	font-weight: bold;
    letter-spacing: 1px;
	margin: 10px 0 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.cookie-settings-link {
    font-family: Inter;
    background: none;
    border: none;
    padding: 0;
    margin-top: 8px;
    cursor: pointer;
}

.footer-column a, .cookie-settings-link {
	font-family: Inter;
	font-size: 0.85rem;
    letter-spacing: 0.4px;
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: var(--styx-text-color-3);
	transition: color 0.5s;
}

.footer-column ul li a::after, .cookie-settings-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: var(--styx-base-color-3);
	transition: width 0.5s ease;
}

.footer-column ul li a:hover, .cookie-settings-link:hover {
	color: var(--styx-text-color-3);
}

.footer-column ul li a:hover::after, .cookie-settings-link:hover::after {
	width: 100%;
}

.social-icons a {
  display: inline-block;
  background: var(--styx-base-color-1);
  color: var(--styx-text-color-1);
  margin-right: 8px;
  padding: 10px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.footer-column i {
  font-size: 22px;
}

.footer-container .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sidemenu-buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

#scrollToTopBtn {
	display: none;
    width: 40px;
    height: 40px;
    background: var(--styx-base-color-1);
    color: var(--styx-text-color-1);
    border: 2px solid var(--styx-base-color-3);
	border-radius: 4px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-family: inherit;
}

.contact-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-button-wrapper {
  /*display: none;*/
  bottom: 80px;
  right: 30px;
  text-align: right;
}

.contact-toggle-btn {
  background-color: var(--styx-base-color-3);
  color: var(--styx-text-color-3);
  border: none;
  padding: 8px 8px;
  max-height: 40px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}

.contact-toggle-btn img{
  width: 24px;
  object-fit: contain;
}

.contact-dropdown {
  position: absolute;
  /*bottom: 60px;*/
  bottom: 10px;
  overflow: hidden;
  background: rgba(242, 242, 242, .1);
  /*right: -5px;*/
  /*background: none;*/
  border: 1px solid rgba(204, 204, 204, .2);
  border-radius: 50px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-dropdown a {
  color: var(--styx-text-color-2);
  text-decoration: none;
  font-size: 14px;
}

.contact-dropdown a:hover {
  text-decoration: underline;
}

.contact-dropdown .fa-telegram{
    color: #24A1DE;
}

.contact-dropdown .fa-square-whatsapp{
    color: #25D366;
}

.contact-dropdown .fa-viber{
    color: #7360f2;
}

.contact-dropdown .fa-instagram{
  background: linear-gradient(45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-dropdown .call-icon {
  position: relative;
  height: auto;
  width: 100%;
  z-index: 3;
}

#contact-dropdown i {
  font-size: 28px;
}

.call-pulse {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: visible;
}

.call-pulse::before,
.call-pulse::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  background-color: rgba(51, 48, 47, 0.15);
  border-radius: 50%;
  z-index: 1;
  animation: pulseWave 2s infinite ease-out;
}

.call-pulse::after {
  animation-delay: 1s;
}


@keyframes pulseWave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.75);
    opacity: 0.1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* ============== MEDIA QUERIES ============== */
/* Mobile Approach */

@media (hover: none) and (pointer: coarse) {
.footer-container > .footer-column:nth-child(1),
.footer-container > .footer-column:nth-child(4) {
  flex: 1 1 100%;
}

.footer-container > .footer-column:nth-child(2),
.footer-container > .footer-column:nth-child(3) {
  flex: 1 1 50%;
  max-width: 50%;
}

.footer-column p {
  margin: 0.4rem 0;
}

.sidemenu-buttons-wrapper {
  right: 5vw;
  min-width: 24px;
}
}
/* Tablet Approach */
@media (min-width: 641px) and (hover: none) and (pointer: coarse) {

}
/* Desktop Approach */
@media (min-width: 1024px) and (pointer: fine) {

}