:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --secondary: #1d3557;
  --accent: #457b9d;
  --light: #f1faee;
  --dark: #1a1a2e;
  --gradient: linear-gradient(135deg, #e63946 0%, #1d3557 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --transition: all 0.3s ease;
}

/* Floating WhatsApp (temp.html) */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Footer (temp.html) */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6b6b, var(--primary));
  background-size: 200% 100%;
  animation: pstGradientShift 3s ease infinite;
}

@keyframes pstGradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.footer-column {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.footer-column:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 107, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
}

.footer-heading {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-heading i {
  color: var(--primary);
  font-size: 1.2rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 18px;
}

.footer-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-list li:hover::before {
  left: 3px;
}

.footer-list a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 400;
}

.footer-list a:hover {
  color: var(--primary);
  padding-left: 5px;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--primary);
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.social-icons a:hover::before {
  width: 100%;
  height: 100%;
}

.social-icons a:hover {
  transform: translateY(-8px) scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.stats-counter {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  color: #f0f0f0;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  border: 3px solid var(--primary);
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
}

.copyright {
  text-align: center;
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.3);
  color: #bbb;
  font-size: 0.9rem;
  margin: 0;
}

.copyright a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.copyright a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}
