/* Sticky Desktop CTA Bar — prayagpandits.com */
#ppn-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #4F0002 0%, #870000 50%, #DA3F00 100%);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  font-family: 'DM Sans', sans-serif;
}

#ppn-sticky-cta.ppn-cta-visible {
  transform: translateY(0);
}

body.ppn-cta-active {
  padding-bottom: 56px;
}

.ppn-cta-label {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.ppn-cta-label span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
}

.ppn-cta-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ppn-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.ppn-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ppn-btn-call {
  background: #fff;
  color: #870000;
}

.ppn-btn-call:hover {
  background: #FFD500;
  color: #4F0002;
}

.ppn-btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.ppn-btn-whatsapp:hover {
  background: #1ebe5d;
}

.ppn-btn-services {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
}

.ppn-btn-services:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.ppn-cta-close {
  position: absolute;
  top: 4px;
  right: 10px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.ppn-cta-close:hover {
  color: #fff;
}

/* MOBILE: completely hidden */
@media (max-width: 768px) {
  #ppn-sticky-cta {
    display: none !important;
  }
  body.ppn-cta-active {
    padding-bottom: 0 !important;
  }
}

/* Narrow desktop: stack layout */
@media (min-width: 769px) and (max-width: 1100px) {
  #ppn-sticky-cta {
    gap: 12px;
    padding: 8px 16px;
  }
  .ppn-cta-label {
    font-size: 13px;
  }
  .ppn-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}
