/* ================= Review Section ================= */
.review-section {
  background: #fff;
  padding: 15px;
  text-align: center;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}
.review-stars { font-size: 1.5rem; color: #ffb400; }
.review-text { color: #333; font-family: 'Poppins', sans-serif; font-size: 0.95rem; }

/* ================= Frozen Glass Purple Footer ================= */
.frozen-footer {
  position: relative;
  background: radial-gradient(circle at 30% 30%, rgba(74,58,255,0.92), rgba(50,30,180,0.88));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 40px 40px 0 0;
  color: #fff;
  overflow: hidden;
  padding: 80px 20px 80px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}

/* === CSS Convex Wave Effect === */
.footer-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to right, rgba(255,255,255,0.25), rgba(255,255,255,0.15), rgba(255,255,255,0.25));
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: 0.4;
  filter: blur(1px);
}
@keyframes waveShine {
  0% { transform: translateX(0); opacity: 0.3; }
  50% { transform: translateX(20px); opacity: 0.45; }
  100% { transform: translateX(0); opacity: 0.3; }
}

/* === Aurora Gradient Background === */
.frozen-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 45%, transparent 100%);
  animation: aurora 15s ease-in-out infinite alternate;
  mix-blend-mode: overlay;
}
@keyframes aurora {
  0% { transform: translateX(-5%) translateY(-3%); opacity: 0.35; }
  50% { transform: translateX(5%) translateY(3%); opacity: 0.5; }
  100% { transform: translateX(-5%) translateY(-3%); opacity: 0.35; }
}

/* ================= Footer Content ================= */
.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-about h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255,255,255,0.25);
}

.footer-about p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.footer-social .social {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social .social:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.25);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: rgba(240,240,255,0.9);
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #ffda47;
  padding-left: 5px;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
}

/* ================= Footer Bottom ================= */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* ================= Sticky Bottom Bar ================= */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 -3px 12px rgba(0,0,0,0.15);
  z-index: 9999;
}

.bar-btn {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.call-btn {
  background: #4a3aff;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.whatsapp-btn {
  background: #25d366;
}

.bar-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  .footer-container { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-contact p { justify-content: center; }
}

@media(min-width: 768px) {
  .bottom-bar { display: none; }
}
