/* Modern Footer Styles */

/* Footer Wave */
.footer-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  overflow: hidden;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

.social-icons i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
}

.social-icons:hover {
  background-color: #f9ab30;
  transform: translateY(-5px);
  color: #07273c;
}


/* Modern Post List */
.modern-post-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.modern-post-list li:hover {
  transform: translateX(5px);
}

.modern-post-list .post-thumb {
  flex: 0 0 80px;
  border-radius: 8px;
  overflow: hidden;
}

.modern-post-list .post-content h6 a {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
}

.modern-post-list .post-content h6 a:hover {
  color: #f9ab30;
}

.modern-post-list .entry-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.modern-post-list .entry-meta i {
  margin-right: 5px;
  color: #f9ab30;
}

/* Contact Info */
.contact-info ul {
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(249, 171, 48, 0.2);
  color: #f9ab30;
  position: relative;
}

.icon-wrapper i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(60%, 40%);
  font-size: 18px;
  line-height: 1;
}

.contact-text {
  flex: 1;
}

.contact-text span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
}

/* Quick Links */
.footer-menu.quick-links {
  margin-top: 20px;
  text-align: center;
}

.footer-menu.quick-links h4 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.footer-menu.quick-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #f9ab30;
  border-radius: 3px;
}

.footer-menu.quick-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer-menu.quick-links ul li {
  position: relative;
  margin: 0;
  padding: 0;
}

.footer-menu.quick-links ul li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-menu.quick-links ul li a:hover {
  color: #f9ab30;
}

/* Bottom Footer */
.bottom-footer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 30px;
}

.bottom-footer .copy-right {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.bottom-footer .copy-right p {
  margin: 0;
}

.bottom-footer .copy-right i.fa-heart {
  color: #f9ab30;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .site-footer {
    padding-top: 50px;
  }

  .footer-wave {
    top: -30px;
    height: 30px;
  }

  .upper-footer .widget {
    margin-bottom: 30px;
  }

  .modern-post-list .post-thumb {
    flex: 0 0 70px;
  }

  .modern-post-list .post-content h6 a {
    font-size: 15px;
  }

  .footer-social-icons {
    gap: 10px;
  }

  .social-icons {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 40px;
  }

  .footer-wave {
    display: none;
  }

  .contact-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .icon-wrapper {
    width: 35px;
    height: 35px;
  }

  .icon-wrapper i {
    font-size: 16px;
  }

  .footer-menu.quick-links ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-menu.quick-links h4 {
    font-size: 16px;
  }

  .modern-post-list li {
    margin-bottom: 15px;
  }

  .bottom-footer {
    padding: 15px 0;
    margin-top: 20px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .site-footer {
    padding-top: 30px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically (if height is set) */
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-text p {
    font-size: 14px;
    line-height: 1.5;
  }

  .modern-post-list .post-thumb {
    flex: 0 0 60px;
  }

  .modern-post-list .post-content h6 a {
    font-size: 14px;
  }

  .modern-post-list .entry-meta {
    font-size: 12px;
  }

  .contact-text span {
    font-size: 12px;
  }

  .contact-text strong {
    font-size: 14px;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .social-icons {
    width: 32px;
    height: 32px;
  }

  .social-icons i {
    font-size: 14px;
  }

  .bottom-footer .copy-right {
    font-size: 13px;
  }
}