/* Complete Footer Styles */
.footer {
  padding: 60px 0 30px;
}

.footer.dark-background {
  background-color: #000000;
  border-top: 1px solid #333;
}

.footer .footer-content,
.footer .footer-links,
.footer .footer-contact,
.footer .footer-social {
  margin-bottom: 30px;
}

.footer-title {
  font-family: McQueen;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Footer links should not be underlined */
.footer a,
.footer a:hover,
.footer a:focus,
.footer a:active {
  text-decoration: none;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-links ul li a {
  font-family: McQueen;
  color: #cccccc;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer .footer-links ul li a:hover {
  color: #d4af37;
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 12px;
}

.footer .contact-icon {
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin: 0;
}

.footer .contact-icon i {
  font-size: 18px;
  color: #d4af37;
}

.footer .contact-info p {
  font-family: McQueen;
  margin: 0;
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer .contact-info a,
.footer .contact-info a:hover,
.footer .contact-info a:focus {
  color: #cccccc;
  text-decoration: none;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #000000;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
}

.footer-bottom .crafted-by {
  font-size: 0.85em;
  margin-left: 6px;
}

.footer-bottom .qaushik-labs {
  color: #d4af37;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom .qaushik-labs:hover,
.footer-bottom .qaushik-labs:focus {
  color: #d4af37;
  text-decoration: none;
}

.footer-social .social-links a:hover {
  color: #ffffff;
}

.class-info {
  color: #ffffff;
}

.white-link {
  color: #cccccc;
}

.white-link:hover {
  color: #cccccc;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-title {
    font-family: McQueen;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer .footer-links ul li a,
  .footer .contact-info p,
  .footer .contact-info a {
    font-family: McQueen;
    font-size: 13px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 70px;
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float i {
  color: #FFF;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 20px;
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(90deg, rgb(51, 71, 91) 0%, rgb(81, 111, 144) 101.34%);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(90deg, rgb(61, 81, 101) 0%, rgb(91, 121, 154) 101.34%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* ================================
   Luxury Unlocked - Mobile Sticky Bar
   ================================ */
.lu-sticky-bar {
  display: none !important;
}

@media (max-width: 768px) {
  :root {
    --lu-sticky-h: 66px;
    --lu-sticky-gap: 18px;
    --lu-sticky-lift: calc(var(--lu-sticky-h) + var(--lu-sticky-gap));
  }

  .lu-sticky-bar {
    display: flex !important;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--lu-sticky-h);
    z-index: 9990 !important;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.45);
  }

  .lu-sticky-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    background: transparent !important;
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .lu-sticky-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: rgba(255, 255, 255, 0.10);
  }

  .lu-sticky-item i {
    font-size: 18px;
    color: #d4af37;
    opacity: 0.95;
  }

  .lu-sticky-item:hover i {
    opacity: 1;
  }

  .lu-sticky-item.lu-whatsapp i {
    color: #25D366;
    opacity: 1;
  }
}