/* ============================================================
   neo-v3-patch.css — Fixes: icons, float btn, reviews slider,
   service card desc, section CTAs, footer contact icons
   Applied on top of neo-v2.css
============================================================ */

/* ── HERO MINI-ICON FIX ──────────────────────────────────── */
/* Remove white-filter; let natural icon colors show on dark bg */
.nh-mini-icon {
  background: rgba(220,211,255,.18) !important;
}
.nh-mini-icon img {
  filter: none !important;
  width: 28px !important;
  height: 28px !important;
}

/* Arrow on mini-svc */
.nh-mini-arrow {
  width: 16px; height: 16px;
  color: rgba(255,255,255,.35);
  margin-left: auto;
  flex-shrink: 0;
}

/* ── SERVICE CARD DESCRIPTION ────────────────────────────── */
.nh-svc-card {
  padding-bottom: 20px !important;
}
.nh-svc-desc {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
  margin-top: -2px;
}

/* ── SECTION CTA BAR ─────────────────────────────────────── */
.nh-sec-cta {
  margin-top: 48px;
  padding: 28px 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.nh-sec-cta p {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}
.nh-section.soft .nh-sec-cta {
  background: white;
}

/* Team CTA */
.nh-team-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.nh-team-cta p {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* ── REVIEWS SLIDER ──────────────────────────────────────── */
.nh-reviews-outer {
  overflow: hidden;
  padding: 8px 0 28px;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.nh-reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: nh-scroll-reviews 50s linear infinite;
}
.nh-reviews-track:hover {
  animation-play-state: paused;
}

@keyframes nh-scroll-reviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Override testi-grid - replaced by slider */
.nh-testi-grid {
  display: none;
}

/* Slider card overrides */
.nh-reviews-track .nh-testi-card {
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--rl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Manrope', system-ui, sans-serif;
  transition: box-shadow .18s;
}
.nh-reviews-track .nh-testi-card:hover {
  box-shadow: var(--shadow);
}

/* ── 5 STARS ─────────────────────────────────────────────── */
.nh-stars {
  font-size: 17px;
  color: #FBBC04;
  letter-spacing: 2px;
  display: block;
  line-height: 1;
}

/* ── GOOGLE REVIEWS BADGE ────────────────────────────────── */
.nh-google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  flex-shrink: 0;
}
.nh-google-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nh-google-stars {
  font-size: 13px;
  color: #FBBC04;
  letter-spacing: 1px;
}
.nh-google-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .2px;
}

/* ── FLOATING WHATSAPP BUTTON ────────────────────────────── */
/* Pill shape on desktop */
.nh-float {
  width: auto !important;
  border-radius: 50px !important;
  padding: 0 20px 0 14px !important;
  height: 52px !important;
  gap: 10px !important;
  display: flex !important;
  align-items: center !important;
  white-space: nowrap;
}
.nh-float svg {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0;
}
.nh-float-label {
  font-size: 14px;
  font-weight: 700;
  color: white;
  display: block;
}

/* On mobile: collapse back to circle icon only */
@media (max-width: 540px) {
  .nh-float {
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    justify-content: center !important;
    border-radius: 50% !important;
  }
  .nh-float-label { display: none !important; }
}

/* ── FOOTER CONTACT ICONS ────────────────────────────────── */
.nh-footer-contact-link {
  display: flex !important;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.58) !important;
  transition: color .15s;
  text-decoration: none !important;
}
.nh-footer-contact-link:hover {
  color: white !important;
}
.nh-footer-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: .55;
  transition: opacity .15s;
  stroke: currentColor;
  fill: none;
}
/* WhatsApp icon is filled, not stroked */
.nh-footer-contact-link:nth-child(2) .nh-footer-icon {
  fill: currentColor;
  stroke: none;
}
.nh-footer-contact-link:hover .nh-footer-icon {
  opacity: 1;
}

/* ── HIDE OLD THEME CHAT WIDGETS ─────────────────────────── */
/* Common third-party and theme chat bubble selectors */
.floatingchat-container-wrap,
.floatingchat-container,
[class*="whatsapp-chat"],
[id*="whatsapp-chat"],
[class*="crisp-client"],
[class*="intercom"],
[id*="intercom"],
.fc-widget-small,
#fc_widget,
.floating-chat,
.chatbot-container {
  display: none !important;
}

/* Fix hero kicker - no line before it looks cleaner */
.nh-hero-kicker::before {
  display: none;
}

/* ── RESPONSIVE PATCHES ──────────────────────────────────── */
@media (max-width: 900px) {
  .nh-sec-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px;
  }
  .nh-google-badge {
    display: none;
  }
}
@media (max-width: 640px) {
  .nh-reviews-track .nh-testi-card {
    min-width: 280px;
    max-width: 280px;
  }
  .nh-team-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── FIX: More space between hero text and buttons ───────── */
.nh-hero-sub {
  margin-bottom: 52px !important;
}

/* ── FIX: Hide Tawk.to chat widget & old WA float ───────── */
#tawkIframe,
.tawk-min-container,
.tawk-button,
.tawk-button-container,
[id^='tawkchat'],
[class*='tawk-'],
iframe[title*='chat' i],
iframe[src*='tawk.to'] {
  display: none !important;
  visibility: hidden !important;
}

/* Old theme whatsapp floating button from footer.tpl */
.whatsapp-num,
a.whatsapp-num {
  display: none !important;
}
