.phone-button {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #cda45e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    cursor: pointer;
}

.phone-button img {
    width: 25px;
    height: 25px;
}

.phone-button:hover {
    background-color: #cda45e;
}

.whatsapp-button {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
}

.whatsapp-button:hover {
    background-color: #1ebe57;
}

#scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #212529;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

#scroll-top:hover {
    background: #212529;
    color: #fff;
}
.dropdown {
  position: relative;
}

.dropdown > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  z-index: 99;
}

.dropdown:hover > ul {
  display: block;
}

/* Second level */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > ul {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
}

.dropdown-submenu:hover > ul {
  display: block;
}

/* Mobile fix */
@media (max-width: 991px) {
  .dropdown > ul,
  .dropdown-submenu > ul {
    position: relative;
    left: 0;
    box-shadow: none;
  }
}

