.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.floating-btn i {
  font-size: 24px;
}

.whatsapp-btn {
  background-color: #25D366;
}
.whatsapp-btn:hover {
  background-color: rgb(29.3911290323, 167.6088709677, 81.0241935484);
  color: #fff;
}

.scroll-top-btn {
  background-color: #490102;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top-btn:hover {
  background-color: rgb(22.6891891892, 0.3108108108, 0.6216216216);
  color: #fff;
}

@media (max-width: 991.98px) {
  .floating-buttons {
    bottom: 75px;
  }
  .floating-btn {
    width: 40px;
    height: 40px;
  }
}
.footer-section {
  background-color: #490102;
  padding: 3rem 0;
  color: #FFFFFF;
  border-radius: 30px 30px 0 0;
}
.footer-section .footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-section .footer-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.footer-section h5 {
  font-family: "adobe-garamond-pro", serif;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-section h5:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #D99D8F;
}
.footer-section .contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section .contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}
.footer-section .contact-info li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-section .contact-info li i {
  color: #D99D8F;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}
.footer-section .social-links {
  display: flex;
  gap: 1rem;
}
.footer-section .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-section .social-links a:hover {
  background-color: #D99D8F;
  color: #490102;
  transform: translateY(-3px);
}
.footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section .footer-links li {
  margin-bottom: 0.75rem;
}
.footer-section .footer-links li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.footer-section .footer-links li a:hover {
  color: #D99D8F;
  padding-left: 5px;
}
.footer-section .footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-section .footer-bottom a {
  color: #D99D8F;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
  .footer-section .footer-logo {
    margin: 0 auto 1rem;
  }
  .footer-section .footer-description {
    margin: 0 auto 1.5rem;
  }
  .footer-section .social-links {
    justify-content: center;
    margin-bottom: 2rem;
  }
  .footer-section h5:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-section .contact-info li {
    justify-content: center;
  }
  .footer-section .contact-info li i {
    margin-right: 0.5rem;
  }
  .footer-section .footer-links li a:hover {
    padding-left: 0;
  }
  .footer-section .footer-bottom {
    padding-bottom: 1rem;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: 0;
    padding-bottom: 0;
  }
  .header-area .navbar {
    padding: 0.5rem 0;
  }
  .header-area .navbar .dropdown-menu.mega-menu {
    padding: 1rem 0;
  }
  .header-area .navbar .dropdown-menu.mega-menu .container {
    max-width: 100%;
  }
  .navbar-collapse {
    background: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(29, 29, 29, 0.1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=footer.css.map */
