/* ===== Rashmika Films Social Icons ===== */
.rf-social-wrap {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  z-index: 9999;
}

.rf-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.rf-social-btn span {
  position: relative;
  z-index: 2;
}

/* Platform colors */
.rf-insta {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.rf-youtube {
  background: #ff0000;
}

.rf-facebook {
  background: #1877f2;
}

/* Hover animation */
.rf-social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  transition: transform 0.35s ease;
  border-radius: 50%;
}

.rf-social-btn:hover::before {
  transform: scale(1);
}

.rf-social-btn:hover {
  transform: translateY(-4px);
}

/* ===== Desktop Layout ===== */
@media (min-width: 992px) {
  .rf-social-wrap {
    top: 50%;
    bottom: auto;
    left: auto;
    right: 24px;
    transform: translateY(-50%);
    flex-direction: column;
    padding: 14px 12px;
    border-radius: 20px;
  }

  .rf-social-btn {
    width: 52px;
    height: 52px;
    font-size: 13px;
  }

  /* Tooltip on desktop */
  .rf-social-btn::after {
    content: attr(aria-label);
    position: absolute;
    right: 62px;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    opacity: 0;
    white-space: nowrap;
    transform: translateX(10px);
    transition: all 0.3s ease;
  }

  .rf-social-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ===== NK Sticky Contact Buttons ===== */
.nk-sticky-contact-wrap{
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* Common Button Style */
.nk-sticky-contact-wrap a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}

/* WhatsApp Button */
.nk-whatsapp-btn{
  background: linear-gradient(135deg, #25D366, #1ebe57);
}

/* Call Button */
.nk-call-btn{
  background: linear-gradient(135deg, #007bff, #0056d2);
}

/* Icon Style */
.nk-icon{
  font-size: 18px;
}

/* Hover Effects (Desktop) */
.nk-sticky-contact-wrap a:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 767px){
  .nk-sticky-contact-wrap{
    right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        bottom: 118px;
  }

  .nk-sticky-contact-wrap a{
    padding: 14px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    justify-content: center;
  }

  .nk-text{
    display: none;
  }

  .nk-icon{
    font-size: 22px;
  }
}

/* ================= DESKTOP VIEW ================= */
@media (min-width: 768px){
  .nk-sticky-contact-wrap a{
    min-width: 150px;
    justify-content: center;
  }
}