.footer {
  background: #061f20;
  color: #d8eeee;
  padding: 70px 8% 35px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 80px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand img {
  width: 120px;
  background: #ffffff;
  padding: 14px;
  border-radius: 3px;
  margin-bottom: 28px;
}

.footer-brand p {
  max-width: 480px;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #cde4e4;
}

.footer h4 {
  color: #ff2b2b;
  font-size: 14px;  
  font-family: 'Inter', sans-serif;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.footer-links a {
  display: block;
  color: #e9ffff;
  text-decoration: none;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d4a017;
  padding-left: 6px;
}

.footer-contact p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #e0f6f6;
}

.social-icons {
  margin-top: 25px;
  display: flex;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
  background: #e5091b;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(229, 9, 27, 0.35);
}

.footer-social i {
  font-size: 18px;
}
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #b9d2d2;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}