/* -------------------- Footer Styling -------------------- */
.footer {
  background: #E14434;
  color: #fff;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.footer h5 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer p,
.footer a {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:not(.social-icons a):hover {
  color: #ffdddd !important;
  text-decoration: underline;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li i {
  color: #ffd6d6;
  margin-right: 6px;
}

/* Contact icons */
.footer p i {
  color: #fff;
  margin-right: 6px;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}
.social-icons a {
  font-size: 18px;
  margin: 0 10px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #ffdddd;
  transform: scale(1.2);
}

/* Embedded Map */
.footer iframe {
  border-radius: 0.75rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 240px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  padding: 15px 10px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  background-color: #e53935;
}

.footer-bottom a {
  color: #fff;
}

.footer-bottom a:hover {
    color: #fff;
}

/* -------------------- Responsive Tweaks -------------------- */
@media (max-width: 991px) {
  .footer .col-lg-3,
  .footer .col-md-6 {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
    padding: 50px 20px 20px;
  }

  .footer h5 {
    font-size: 1.1rem;
  }

  .footer p,
  .footer a {
    font-size: 0.9rem;
  }

  .footer iframe {
    height: 180px;
    margin-top: 15px;
  }

  .social-icons a {
    margin: 0 8px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 15px 15px;
  }

  .footer h5 {
    font-size: 1rem;
  }

  .footer iframe {
    height: 160px;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }

  .social-icons a {
    margin: 0 6px;
    font-size: 18px;
  }
}

/* Bubble Animation */
.bubbles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bubbles-container span {
  position: absolute;
  bottom: -50px;
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: floatBubbles 12s linear infinite;
  opacity: 0.7;
}

.bubbles-container span:nth-child(odd) {
  width: 10px;
  height: 10px;
}
.bubbles-container span:nth-child(even) {
  width: 20px;
  height: 20px;
}

@keyframes floatBubbles {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

