.elementor-612 .elementor-element.elementor-element-a89beeb{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-18fe96b *//* footer.css */

/* Footer Base */
.custom-footer {
  background: #fff;
  border-top: 1px solid #eee;
  font-family: 'Arial', sans-serif;
  color: #333;
}

/* Layout */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left Section */
.footer-left {
  max-width: 340px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
}

.footer-description {
  margin: 15px 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  margin-right: 10px;
  color: #000;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #000;
  color: #fff;
  transform: scale(1.1);
}

/* Footer Links */
.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 15px;
  margin-bottom: 15px;
  color: #111;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  text-decoration: none;
  color: #666;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #000;
}

/* Contact Info - icons aligned with first line */
.contact-info li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.contact-info i {
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
  line-height: 1.6;      /* matches text line height */
  margin-top: 0.2em;     /* perfect visual alignment with first line */
}

.contact-info span,
.contact-info a {
  line-height: 1.6;      /* ensures multi-line text aligns well */
}

/* Contact links */
.contact-info a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #000;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #eee;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #777;
}

.bottom-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #777;
  transition: color 0.3s ease;
}

.bottom-links a:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .bottom-links a {
    margin-left: 0;
    margin-right: 15px;
  }
}

/* Remove dotted outline from links */
a:focus {
  outline: none;
}/* End custom CSS */