/* ===================================================
   FOOTER - VIBRANT MODERN COLORFUL
   =================================================== */
.colorful-footer {
  background: #950015;
  /* background: linear-gradient(135deg, #4A00E0 0%, #8E2DE2 50%, #FF007A 100%); */
  color: #fff;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}

/* Floating modern shapes in the background */
.cf-main {
  padding: 40px 0 60px;
  position: relative;
  z-index: 2;
}

.cf-logo {
  max-width: 180px;
  margin-bottom: 25px;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cf-about {
  line-height: 1.8;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

.cf-about-btn {
  display: inline-block;
  background: #fff;
  color: #8e2de2;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}

.cf-about-btn:hover {
  background: #ffd700;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cf-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 25px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.cf-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: #ffd700;
  border-radius: 3px;
}

.cf-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cf-links li {
  margin-bottom: 12px;
}

.cf-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 15px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.cf-links a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateX(5px);
}

.cf-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cf-contact-item {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cf-contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cf-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffd700;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cf-contact-item:hover .cf-contact-icon {
  transform: scale(1.1);
  background: #fff;
}

/* Footer Icon Animations */
.cf-contact-item .fa-phone {
  animation: phoneRing 3s infinite ease-in-out;
  display: inline-block;
}

.cf-contact-item .fa-whatsapp,
.cf-contact-item .fab.fa-whatsapp {
  animation: whatsappBounce 2s infinite ease-in-out;
  display: inline-block;
}

/* Animation Keyframes */
@keyframes fix-btn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes phoneRing {
  0%,
  100% {
    transform: rotate(0deg);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-12deg);
  }

  20%,
  40%,
  60%,
  80% {
    transform: rotate(12deg);
  }
}

@keyframes whatsappBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.cf-contact-info h5 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cf-contact-info p,
.cf-contact-info a {
  color: #fff;
  font-size: 14px;
  margin: 0;
  text-decoration: none;
  font-weight: 600;
}

.cf-contact-info a:hover {
  text-decoration: underline;
}

.cf-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.cf-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* background: rgba(255, 255, 255, 0.15); */
  /* color: #fff; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;

  background: #ffd700;
  color: #111;
}

.cf-social a:hover {
  background: #ffd700;
  color: #111;
  border-color: #ffd700;
  transform: translateY(-5px) rotate(8deg);
}

.cf-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cf-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cf-copyright,
.cf-disclaimer,
.cf-credit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 400;
}

.cf-bottom a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

.cf-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .cf-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}
