.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
  direction: ltr;            /* 👈 Set Left-to-Right direction */
  text-align: left;          /* 👈 Align text to the left */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-column p {
  margin: 6px 0;
  float: left; 
  font-size: 0.95rem;
}

.footer-column span {
  float: right;              /* 👈 Align span to the right */
  color: #ccc;
  font-size: 0.9rem;
}

.footer-column .phone {
  color: #e63946;
  font-weight: 600;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column a:hover {
  text-decoration: underline;
}

.card-logo {
  width: 60px;
  margin: 10px 10px 0 0;
  vertical-align: middle;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start; /* 👈 Align icons to the left */
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #222;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #e63946;
}

/* Bottom Footer */
.footer-bottom {
  text-align: left;          /* 👈 Align footer bottom to left */
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ✅ Mobile Responsive Styling */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-column {
    width: 100%;
    max-width: 500px;
    text-align: left;       /* 👈 Keep LTR text alignment */
  }

  .footer-column span {
           /* 👈 Float remains on the right for LTR */
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .card-logo {
    margin: 10px auto 0;
    display: block;
  }

  .social-icons {
    justify-content: flex-start; /* 👈 Align icons to left */
  }
}
