.footer-top-section {
  background: linear-gradient(to bottom right, #3c3b79, #4f469e);
  position: relative;
  overflow: hidden;
}

.footer-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.footer-call-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon {
  background: #0081CC;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: 0.3s;
}

.footer-icon:hover {
  background: #3b82f6;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s;
}

.footer-list li a:hover {
  color: white;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 10px;
}

.footer-contact a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: white;
}

.Btn {
  background-color: #f8f8f8;
  color: black;
}

/* Tablet */
@media (max-width: 992px) {
  .footer-top-section {
    padding: 10px 0;
  }

  .footer-call-icon {
    padding: 14px;
  }

  .footer-icon {
    width: 36px;
    height: 36px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-top-section {
    padding: 8px 0;
    text-align: center;
  }

  .footer-bg-img {
    opacity: 0.12;
  }

  /* Center call icon */
  .footer-call-icon {
    margin: 0 auto 20px;
  }

  /* Social icons row */
  .footer-icon {
    width: 44px;
    height: 44px;
  }

  /* Lists */
  .footer-list,
  .footer-contact {
    margin-top: 20px;
  }

  .footer-list li,
  .footer-contact li {
    margin-bottom: 12px;
  }

  .footer-list li a,
  .footer-contact a {
    font-size: 0.95rem;
  }
}

/* Small mobile devices */
@media (max-width: 420px) {
  .footer-top-section {
    padding: 10px 0;
  }

  .footer-icon {
    width: 48px;
    height: 48px;
  }

  .footer-list li a,
  .footer-contact a {
    font-size: 0.9rem;
  }
}