/* Base Footer */
.site-footer {	
  /*background-color: #FEF99C;
  background-color: #ECFAF7;*/
  background-color: #f5f5fa;	
  color: #222;
  font-size: 0.95rem;
  padding: 60px 0 40px;
  overflow: hidden;
  z-index: 3;
  /*background-image: url('https://srushti.one/gmb/wp-content/uploads/2025/11/footer-pattern.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;*/
}

.footer-bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Columns */
.footer-columns {
  display: grid;
  grid-template-columns: 30% 20% 20% 30%;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-left: 0;
}

/* Logo + Info */
.footer-logo img {
  height: auto;
  margin-bottom: 16px;
  max-width: 50px;
}

.footer-info {
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #323060; /* navy */
  color: #FFFFFF;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-social a:hover {
  /*background: #FEF99C;
  color: #323060;*/
  transform: scale(1.1);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

/* Menu Lists */
.footer-menu,
.reach-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li,
.reach-list li {
  margin-bottom: 10px;
}

.footer-menu a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #323060;
}

/* Reach Us */
.reach-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reach-list li svg {
  width: 18px;
  height: 18px;
  color: #323060;
  vertical-align: top;	
}

/* Bottom Row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

.footer-copy,
.footer-credit {
  color: #444;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
	
	.site-footer {
		padding: 30px 0px;
	}
	
	.footer-inner {
		padding: 0 15px;
	}
  .footer-columns {
   /* display: block; stack by default */ 
	grid-template-columns: repeat(1, 1fr);  
    gap: 30px;
  }

  /* Logo and Reach Us full width */
  .footer-columns .col-logo,
  .footer-columns .col-reach {
    width: 100%;
    margin-bottom: 10px;
  }

  /* Company + Information side by side
  .footer-columns .col-menu-wrapper {
    display: flex;
	gap: 16px;  
  } 

  .footer-col.col-menu {
    flex: 1;
    margin-top: 8px;
    margin-bottom: 8px;
  } */

  .footer-bottom {
    flex-direction: column;
    align-items: center;  
  }
}