
.site-footer {
  background:  
    radial-gradient(
      circle at center,
      #8f9bff 0%,
      #6f7dff 30%,
      #4a5cff 55%,
      #2f3fd1 75%,
      #1f2aa8 100%
    );
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons {
  margin: 15px 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-qr img {
  width: 160px;
  margin-top: 15px;
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons a {
    margin: 0 8px;
  }

  .footer-qr img {
    margin: 15px auto 0;
  }
}

.icon {
  display: inline-block;
  width: 16px;
  margin-right: 8px;
  font-style: normal;
  color: #000;
}

.icon.clock::before {
  content: "🕒";
}

.icon.phone::before {
  content: "📞";
  color: black;
}

.icon.whatsapp::before {
  content: "💬";
}

.icon.mail::before {
  content: "✉️";
}

.social-icons a {
  color: #000;
  font-size: 18px;
  margin-right: 12px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ff7a00; /* brand hover color (optional) */
}

/* footer yaha pe end hai  */


.dynamic-schedule-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 50px;
  padding: 12px 18px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  gap: 15px;
}

.dynamic-schedule-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* CONTENT */
.dynamic-schedule-cta__content {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* EACH BLOCK */
.dynamic-schedule-cta__clickable-area {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* HEADING */
.dynamic-schedule-cta__heading {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

/* TEXT */
.dynamic-schedule-cta__text {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* ADDRESS TEXT */
.dynamic-schedule-cta__text--address {
  color: #777;
}

/* DIVIDER */
.dynamic-schedule-cta__divider {
  width: 1px;
  height: 30px;
  background: #eee;
}

/* RIGHT ICON CIRCLE */
.dynamic-schedule-cta__icon-circle {
  width: 42px;
  height: 42px;
  background: #00c853;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  transition: 0.3s;
}

/* ARROW */
.dynamic-schedule-cta__icon::before {
  content: "→";
  font-weight: bold;
}

/* HOVER EFFECT */
.dynamic-schedule-cta:hover .dynamic-schedule-cta__icon-circle {
  transform: translateX(3px);
  background: #00b34a;
}