footer {
  background: #0d8ee9;
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  padding: 15px;
  position: relative;
}

.footer-logo {
  margin-right: auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.logo-img {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-top ul {
  padding: 0;
  margin-bottom: 0;
}

.logo-icon {
  width: 50px;
  height: 60px;
  background: white;
  border-radius: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon::before {
  content: "";
  width: 30px;
  height: 35px;
  background: #0288d1;
  border-radius: 3px;
  border: 2px solid #0288d1;
}

.logo-text h2 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}

.logo-text p {
  font-size: 11px;
  letter-spacing: 1px;
  margin: 0;
}

.tagline {
  font-size: 13px;
  color: white;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 24px;
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-column h3 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-top: 0 !important;
  text-decoration: underline;
  color: #ffe4c3;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 0.8;
}

.footer-middle {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.phone-number {
  font-size: 18px;
  font-weight: bold;
}

.payment-methods {
  display: flex;
  gap: 10px;
  align-items: center;
}

.payment-methods img {
  height: 30px;
  border-radius: 4px;
}

.footer-bottom {
  background: #ff9800;
  color: #0d47b2;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-top {
    padding: 20px 10px;
    align-items: flex-end;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .footer-middle {
    flex-direction: column;
    text-align: center;
  }

  .payment-methods {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo-text h2 {
    font-size: 24px;
  }

  .payment-methods img {
    height: 24px;
  }
}
