.premium-footer {
  background: #ffffff;
  color: #111827;
  border-top: 1px solid rgba(63, 81, 181, 0.1);
}

/* BRAND */
.brand-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #3f51b5;
}

.tagline {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

/* HEADINGS */
.footer-heading {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
  position: relative;
}

.footer-heading::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #3f51b5;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 10px;
}

/* LINKS */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  text-decoration: none;
  color: #6b7280;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

.footer-links-list a i {
  color: #3f51b5;
  font-size: 14px;
}

.footer-links-list a:hover {
  color: #3f51b5;
  transform: translateX(4px);
}

/* CONTACT */
.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(63, 81, 181, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3f51b5;
  flex-shrink: 0;
}

.contact-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* SOCIAL */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.social-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(63, 81, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3f51b5;
  transition: 0.3s ease;
}

.social-icon-link:hover {
  background: #3f51b5;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(63, 81, 181, 0.25);
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(63, 81, 181, 0.1);
  font-size: 13px;
  color: #6b7280;
}

/* TRUST BADGE */
.badge {
  background: rgba(63, 81, 181, 0.08) !important;
  color: #3f51b5 !important;
  font-weight: 600;
  border-radius: 999px;
}

/* CARD HOVER EFFECT */
.hover-lift-card {
  transition: 0.3s ease;
}

.hover-lift-card:hover {
  transform: translateY(-5px);
}


/* STYLISH 3D PILL ACTION BAR */
.mobile-action-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 8px 12px;
  z-index: 9999;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 
              inset 0 1px 1px rgba(255, 255, 255, 0.8);
  animation: floatIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes floatIn {
  from { transform: translateY(100px) scale(0.8); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.action-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3f51b5, #303f9f);
  color: #fff;
  font-size: 18px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1), 
              -1px -1px 3px rgba(255, 255, 255, 0.3);
}

.whatsapp-btn {
  background: linear-gradient(145deg, #25D366, #128C7E);
}

.action-item span {
  font-size: 10px;
  font-weight: 800;
  color: #1e3a8a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: none; /* Hide labels for ultra-clean 3D look, or show for usability */
}

/* Show labels only for the main CTA or on wider screens */
.action-item.main-cta span {
  display: block;
}

/* PREMIUM 3D CTA */
.action-item.main-cta {
  background: #3f51b5;
  box-shadow: 0 10px 20px rgba(63, 81, 181, 0.3);
}

.action-item.main-cta .action-icon {
  background: transparent;
  box-shadow: none;
  width: 24px;
  height: 24px;
}

.action-item.main-cta span {
  color: #fff;
}

/* ANIMATIONS */
.pulse-animation {
  animation: pulse-blue 2s infinite;
}

.whatsapp-pulse {
  animation: pulse-green 2s infinite;
}

.float-animation {
  animation: slowFloat 3s ease-in-out infinite;
}

@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(63, 81, 181, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(63, 81, 181, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 81, 181, 0); }
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes slowFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes pulse-3d {
  0% { box-shadow: 0 0 0 0 rgba(63, 81, 181, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(63, 81, 181, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 81, 181, 0); }
}

.action-item:active {
  transform: translateY(2px) scale(0.95);
}

/* Body padding adjustment */
@media (max-width: 991px) {
  body {
    padding-bottom: 95px !important;
  }
}