/* Premium Footer */
.custom-footer {
  background: #b29a67;
  color: #fff;
  padding: 40px 0 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* Gradient Overlay */
.custom-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(0,0,0,0.15));
  z-index: 0;
}

.custom-footer .container { 
  position: relative; 
  z-index: 2; 
}

.footer-row {
  display: flex;
  align-items: center;
  text-align: center;
}

/* Left / Middle / Right */
.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
}

/* Title */
.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Email + Phone */
.footer-contact-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.footer-contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width .3s ease;
}

.footer-contact-link:hover::after {
  width: 100%;
}

.footer-contact-link:hover {
  color: #000;
}

/* Social Icons */
.social-icons a {
  font-size: 26px;
  color: white;
  transition: .3s;
}

.social-icons a:hover {
  color: black;
  transform: translateY(-4px);
}

/* Logo */
.footer-middle img {
  border-radius: 50%;
  padding: 6px;
  width: 130px;
  height: 130px;
  border: 3px solid #fff;
  object-fit: cover;
  transition: .3s;
}

.footer-middle img:hover {
  transform: scale(1.07);
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}

/* Quick Links */
.footer-right {
  text-align: left;
  padding-left: 50px;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-links {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: .3s;
}

.footer-links:hover {
  color: #000;
}

.footer-right i {
  transition: .3s;
}

/* Copyright */
.footer-credit {
  font-size: 14px;
  opacity: 0.95;
  margin: 0;
  padding-top: 10px;
}

/* Designer Link */
.footer-designer {
  color: #fff;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  transition: .3s;
}

.footer-designer:hover {
  color: rgba(0, 0, 255, 0.734);
  text-decoration: underline;
}

/* Scroll Button */
.scroll-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: white;
  border: 2px solid #b29a67;
  color: #b29a67;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-btn:hover {
  background: #b29a67;
  color: #fff;
  transform: translateY(-4px);
}


/* Mobile footer fix */
@media (max-width: 576px) {

  /* Stack columns vertically */
  .footer-row {
    flex-direction: column !important;
    text-align: center;
  }

  /* Remove padding from right column */
  .footer-right {
    padding-left: 0 !important;
    text-align: center !important;
  }

  /* Resize logo (your requirement) */
  .footer-middle img {
    width: 90px;
    height: 90px;
    margin: 15px auto 10px;
  }
}


