.site-footer {
  position: relative;
  background: #fff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #5f6670;
}

.footer-main {
  padding: 75px 0 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.footer-container {
  width: min(98%, 1470px);
  margin: 0 auto;
  margin-bottom: -30px;
}


.footer-panel {
  background: linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
  border: 1px solid #cfe6ff;
  border-radius: 28px;
  padding: 42px 50px;
  box-shadow: 0 20px 45px rgba(15, 79, 140, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.25fr 1.35fr;
  gap: 55px;
  align-items: flex-start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo img {
  width: 170px;
  max-width: 80%;
  display: block;
}

.brand-description {
  font-size: 16px;
  line-height: 1.72;
  color: #656c76;
  margin: 0;
  max-width: 360px;
}

.footer-heading {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #102342;
  margin: 0 0 36px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #0d6efd, #00b4ff);
  border-radius: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.footer-nav a {
  color: #666d77;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.1;
  transition: 0.3s ease;
}

.footer-nav a:hover {
  color: #0d6efd;
  transform: translateX(5px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #626a75;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.1;
}

.footer-contact-row i {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dcecff;
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.footer-contact-row span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-row a {
  color: #626a75;
  text-decoration: none;
}

.footer-contact-row a:hover,
.footer-contact-row:hover {
  color: #0d6efd;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.footer-social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f6fbff;
  border: 1px solid #b8d8ff;
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-social-links a:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-4px);
}

.footer-bottom {
  background: #fff;
  border-top: 1px solid #e7edf5;
  padding: 28px 0;
  margin-bottom: 20px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
  color: #68717e;
  font-size: 17px;
}

.footer-bottom strong {
  color: #001f4d;
}

.footer-bottom a {
  color: #0d6efd;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 1200px) {
  .footer-panel {
    padding: 38px 35px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 50px 0 35px;
  }

  .footer-panel {
    border-radius: 22px;
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-logo img {
    width: 165px;
  }

  .brand-description,
  .footer-nav a,
  .footer-contact-row {
    font-size: 16px;
  }

  .footer-heading {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .footer-contact-row i {
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .footer-social-links a {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    width: 94%;
  }

  .footer-panel {
    padding: 28px 18px;
  }

  .footer-social-links {
    gap: 10px;
  }
}