/* ===== Adcon Footer Styles ===== */
#adcon-footer {
  background-color: #4f96f2;
  color: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  padding: 40px 0 0;
  position: relative;
}

/* Back to Top Button Styles */
.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #4f96f2;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #2a3b5a;
  color: #ffffff;
}

.back-to-top i {
  font-size: 24px;
}

.icon-chevron {
  margin-right: 8px;
  font-size: 12px;
  color: #4e9af1;
  justify-content: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  padding: 0 15px;
}

.contact-column {
  max-width: 300px;
}

.footer-logo {
  font-size: 24px;
  margin: 0 0 20px;
  font-weight: 700;
  color: #ffffff;
}

.footer-logo span {
  color: #2a3b5a;
}

.contact-info {
  line-height: 1.6;
}

.contact-info p {
  margin: 0 0 15px;
}

.contact-details {
  margin-top: 20px;
}

.contact-link {
  color: #2a3b5a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #2a3b5a;
}

.footer-divider {
  height: 1px;
  background-color: #2a3b5a;
  margin: 20px 0;
}

.quick-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-link {
  color: #2a3b5a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-link:hover {
  color: #ffff;
}

.link-separator {
  color: #2a3b5a;
}

.footer-title {
  font-size: 18px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 600;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-link {
  color: #23265e;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 5px;
}

.icon-chevron {
  display: inline-block;
  margin-right: 8px;
  color: #ffffff;
  font-size: 12px;
}

.social-description {
  color: #23265e;
  margin-bottom: 20px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.instagram:hover {
  background-color: #e4405f;
}

.whatsapp:hover {
  background-color: #25D366;
}

.linkedin:hover {
  background-color: #0077B5;
}

.user:hover {
  background-color: #6c757d;
}

.copyright-container {
  border-top: 1px solid #2a3b5a;
  padding: 20px 0;
  text-align: center;
}

.copyright-text {
  color: #23265e;
  font-size: 14px;
}

.copyright-text strong {
  color: #ffff;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-column {
    padding: 0;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .quick-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .link-separator {
    display: none;
  }
}