/* ===============================
   FOOTER TOP
=================================*/

.footer-top {
  background: #ffffff;
  padding: 40px 0 25px;
  text-align: center;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

.footer-logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.footer-logo p {
  max-width: 500px;
  margin: 0 auto 20px;
  font-size: 18px;
  color: #2d3e6f;
  font-weight: 500;
  line-height: 1.5;
}

/* ===============================
   FOOTER MENU
=================================*/

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-menu a {
  position: relative;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #e6427a;
  transition: width 0.3s ease;
}

.footer-menu a:hover {
  color: #e6427a;
  transform: translateY(-2px);
}

.footer-menu a:hover::after {
  width: 100%;
}

/* ===============================
   CONTACT SECTION
=================================*/

.contact-box {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 45px 35px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: all 0.4s ease;
}

.contact-box:hover {
  transform: translateY(-6px);
}

/* Overlay */

.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 158, 222, 0.88);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Keep content above overlay */

.contact-box > * {
  position: relative;
  z-index: 2;
}

/* ===============================
   ICON DESIGN
=================================*/

.contact-box i {
  min-width: 55px;
  height: 55px;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px);

  transition: all 0.4s ease;
}

/* Modern hover animation */

.contact-box:hover i {
  transform: scale(1.12) rotate(8deg);
  background: #fff;
  color: #039EDE;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ===============================
   TYPOGRAPHY
=================================*/

.contact-box h4 {
  font-size: 15px;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 700;
}

.contact-box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* ===============================
   FOOTER BOTTOM
=================================*/

.footer-bottom {
  background: linear-gradient(90deg, #e6427a, #c92f67);
  color: #fff;
  padding: 12px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-bottom img {
  width: 70px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.footer-bottom img:hover {
  transform: scale(1.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

/* ===============================
   SOCIAL ICONS
=================================*/

.footer-bottom .social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom .social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.12);

  color: #fff;
  font-size: 14px;

  transition: all 0.35s ease;
}

.footer-bottom .social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  background: #fff;
  color: #e6427a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ===============================
   MOBILE RESPONSIVE
=================================*/

@media (max-width: 768px) {

  .footer-top {
    padding: 30px 15px 20px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-logo p {
    font-size: 15px;
  }

  .contact-box {
    flex-direction: column;
    text-align: center;
    padding: 35px 20px;
  }

  .contact-box i {
    min-width: 50px;
    height: 50px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .social-icons {
    justify-content: center;
  }
}
/* ===============================
   CONTACT SECTION UPDATED
=================================*/

.footer-contact {
  width: 100%;
  padding: 0;
  color: #fff;
}

.contact-grid {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

/* ===============================
   CONTACT BOX
=================================*/

.contact-box {
  flex: 1 1 33.33%;
  min-width: 320px;

  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 20px 28px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;

  transition: all 0.4s ease;
}

/* Hover Animation */

.contact-box:hover {
  transform: translateY(-6px);
}

/* Overlay */

.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 158, 222, 0.88);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Light Sweep Effect */

.contact-box::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -40%;
  width: 60%;
  height: 300%;
  background: rgba(255,255,255,0.08);
  transform: rotate(25deg);
  transition: 0.8s;
  z-index: 1;
}

.contact-box:hover::after {
  left: 120%;
}

/* Content Above Overlay */

.contact-box > * {
  position: relative;
  z-index: 2;
}

/* ===============================
   BACKGROUND IMAGES
=================================*/

.contact-box:nth-child(1) {
  background-image: url("/assets/images/FooterBg1.jpg");
}

.contact-box:nth-child(2) {
  background-image: url("/assets/images/FooterBg2.jpg");
  border-left: 1px solid rgba(255,255,255,0.15);
  border-right: 1px solid rgba(255,255,255,0.15);
}

.contact-box:nth-child(3) {
  background-image: url("/assets/images/FooterBg3.jpg");
}

/* ===============================
   ICON STYLING
=================================*/

.contact-box i {
  min-width: 58px;
  height: 58px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);

  backdrop-filter: blur(10px);

  transition: all 0.4s ease;

  animation: floatIcon 3s ease-in-out infinite;
}

/* Icon Hover */

.contact-box:hover i {
  transform: scale(1.12) rotate(8deg);
  background: #fff;
  color: #039EDE;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Floating Animation */

@keyframes floatIcon {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ===============================
   TYPOGRAPHY
=================================*/

.contact-box h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 700;
}

.contact-box p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  color: #fff;
}

.contact-box a {
  text-decoration: none;
}

/* ===============================
   TABLET RESPONSIVE
=================================*/

@media (max-width: 992px) {

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-box {
    min-width: unset;
  }

  .contact-box:nth-child(2) {
    border-left: 0;
    border-right: 0;
  }
}

/* ===============================
   MOBILE RESPONSIVE
=================================*/

@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: row;
    text-align: left;
    padding: 24px 18px;
    gap: 15px;
  }

  .contact-box i {
    min-width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .contact-box h4 {
    font-size: 16px;
  }

  .contact-box p {
    font-size: 14px;
    line-height: 1.6;
  }
}
footer a{
  text-decoration: none;
}