.footer {
  background: linear-gradient(135deg, #2b003f, #3a005f);
  color: #fff;
  padding-top: 3rem;
font-family: 'Montserrat', sans-serif;
    
}

/* MAIN CONTAINER – 3 COLUMNS */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 2rem;  /* bottom padding slightly reduced */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 150px;              /* previous 3rem, now tighter */
}

/* COLUMN COMMON STYLING */
.footer-col h4 {
  color: #d4af37;
  margin-bottom: 0.8rem;  /* tighter */
  font-size: 1.2rem;
}
.footer-col span{
}
.footer-col p,
.footer-col li {
  color: #e6d7f2;
  font-size: 0.95rem;
  line-height: 1.5;   
  text-align: left;    /* slightly tighter */
}

/* LOGO + ABOUT */
.footer-logo {
  width:75px;
  margin-bottom: 0.8rem; /* compact spacing */
}

.footer-about {
  max-width: 350px;
  margin-bottom: 0.5rem;
  text-align: justify;
}

/* LINKS + SERVICES SIDE BY SIDE */
.footer-links-services {
  display: flex;
  gap: 90px;  /* smaller gap */
}

.footer-mini-col {
  flex: 1;
  width: 150px;
  padding-bottom:10px ;
}

.footer-links,
.footer-services {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 0.4rem; /* tighter list items */
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fcd977;
}

/* SPACING CLASS */
.mt {
  margin-top: 1.5rem;  /* slightly reduced */
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 0.8rem; /* slightly tighter */
  margin-top: 1rem;
  align-items: flex-start;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #f6e3b4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcd977;
  font-size: 1.2rem;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #fcd977;
  color: #4b0082;
  transform: translateY(-4px);
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  padding: 1rem;
  background: #240030;
  color: #d9c6e6;
  font-size: 0.9rem;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1.8rem;
  }

  .footer-links-services {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col p,
  .footer-col li {
    line-height: 1.6;
  }
}
