/* ══════════════════════════════════════════════════════════
   BuzzLocal Media — Location Pages Global CSS
   Used by: all city/location landing pages
   ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════
   BASE
══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; font-family: 'Poppins', sans-serif; background: #fafaf8; color: #111; }

/* ══════════════════════════════════
   SCROLL ANIMATION SYSTEM
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.from-left  { transform: translateX(-70px) translateY(0); }
.reveal.from-right { transform: translateX(70px) translateY(0); }
.reveal.scale-in   { transform: scale(0.9); opacity: 0; }
.reveal.visible    { opacity: 1 !important; transform: none !important; }

.stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger.visible > *:nth-child(1)  { opacity:1; transform:none; transition-delay:0.05s; }
.stagger.visible > *:nth-child(2)  { opacity:1; transform:none; transition-delay:0.12s; }
.stagger.visible > *:nth-child(3)  { opacity:1; transform:none; transition-delay:0.19s; }
.stagger.visible > *:nth-child(4)  { opacity:1; transform:none; transition-delay:0.26s; }
.stagger.visible > *:nth-child(5)  { opacity:1; transform:none; transition-delay:0.33s; }
.stagger.visible > *:nth-child(6)  { opacity:1; transform:none; transition-delay:0.40s; }
.stagger.visible > *:nth-child(7)  { opacity:1; transform:none; transition-delay:0.47s; }
.stagger.visible > *:nth-child(8)  { opacity:1; transform:none; transition-delay:0.54s; }
.stagger.visible > *:nth-child(9)  { opacity:1; transform:none; transition-delay:0.61s; }
.stagger.visible > *:nth-child(10) { opacity:1; transform:none; transition-delay:0.68s; }
.stagger.visible > *:nth-child(11) { opacity:1; transform:none; transition-delay:0.75s; }
.stagger.visible > *:nth-child(12) { opacity:1; transform:none; transition-delay:0.80s; }
.stagger.visible > *:nth-child(n+13) { opacity:1; transform:none; transition-delay:0.85s; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.nl-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 55%, #111 100%);
  color: #fff;
  padding: 150px 10% 110px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.nl-hero-inner { position: relative; z-index: 1; }

.nl-hero::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, #f5c30b 0%, #e0b000 50%, #f5c30b 100%);
  background-size: 200%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.nl-hero-tag {
  display: inline-block;
  background: rgba(245,195,11,0.12);
  border: 1px solid rgba(245,195,11,0.38);
  color: #f5c30b; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 30px; margin-bottom: 26px;
  animation: fadeDown 0.8s ease both;
}
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-18px); }
  to   { opacity:1; transform:translateY(0); }
}

.nl-hero h1 {
  font-size: clamp(30px, 5vw, 58px); font-weight: 900;
  line-height: 1.15; margin-bottom: 22px;
  animation: heroUp 0.9s 0.15s ease both;
}
.nl-hero h1 .hl {
  color: #f5c30b; position: relative; display: inline-block;
}
.nl-hero h1 .hl::after {
  content:""; position:absolute; left:0; bottom:-4px;
  width:0; height:3px; background:#f5c30b; border-radius:2px;
  animation: drawLine 1.2s 1.1s ease forwards;
}
@keyframes drawLine { to { width:100%; } }

.nl-hero p {
  max-width: 620px; margin: 0 auto 38px;
  font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.75;
  animation: heroUp 0.9s 0.3s ease both;
}
@keyframes heroUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:none; }
}

.nl-hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: heroUp 0.9s 0.45s ease both;
}

.btn-yellow {
  display: inline-flex; align-items: center; gap: 9px;
  background: #f5c30b; color: #000; font-weight: 700; font-size: 14px;
  padding: 15px 32px; border-radius: 50px; text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.btn-yellow:hover { background:#e0b000; transform:translateY(-3px); color:#000; box-shadow:0 10px 26px rgba(0,0,0,0.22); text-decoration:none; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: #fff; font-weight: 600; font-size: 14px;
  padding: 15px 32px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.28); text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover { border-color:#f5c30b; color:#f5c30b; transform:translateY(-3px); text-decoration:none; }

.nl-hero-stats {
  display: flex; justify-content: center; gap: 56px;
  margin-top: 64px; flex-wrap: wrap;
  animation: heroUp 0.9s 0.6s ease both;
}
.nl-stat { text-align: center; }
.nl-stat-num {
  font-size: 40px; font-weight: 900; color: #f5c30b; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.nl-stat-label { font-size: 12px; color: rgba(255,255,255,0.52); margin-top: 6px; }

/* ══════════════════════════════════
   IMAGE STRIP (3 panels)
══════════════════════════════════ */
.nl-img-strip {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  height: 310px; overflow: hidden;
}
.nl-strip-item { position: relative; overflow: hidden; }
.nl-strip-item img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.65s ease;
  display: block;
}
.nl-strip-item:hover img { transform:scale(1.08); }
.nl-strip-label {
  position: absolute; bottom:0; left:0; right:0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  padding: 16px 18px 14px; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.nl-strip-label span { color:#f5c30b; display:block; font-size:10px; font-weight:500; margin-top:2px; }

/* ══════════════════════════════════
   INTRO
══════════════════════════════════ */
.nl-intro { background:#fff; padding:90px 10%; }

.section-tag {
  display:inline-block; font-size:11px; font-weight:700;
  letter-spacing:2.5px; text-transform:uppercase; color:#f5c30b; margin-bottom:14px;
}

.section-title {
  font-size: clamp(22px, 2.8vw, 34px); font-weight:800; color:#111;
  line-height:1.25; margin-bottom:20px; position:relative; display:inline-block;
}
.section-title::after {
  content:""; position:absolute; left:0; bottom:-8px;
  width:50px; height:4px; background:#f5c30b; border-radius:2px;
}
.section-title.center { display:block; text-align:center; }
.section-title.center::after { left:50%; transform:translateX(-50%); }

.nl-intro-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:64px;
  align-items:center; margin-top:24px;
}
.nl-intro-content p { font-size:16px; color:#555; line-height:1.8; margin-bottom:18px; }
.highlight-quote {
  border-left:4px solid #f5c30b; padding:14px 20px;
  background:#fffbee; border-radius:0 10px 10px 0;
  font-size:15px; font-weight:600; color:#333; margin:24px 0; font-style:italic;
}

.nl-intro-img-wrap {
  position:relative; border-radius:20px; overflow:hidden;
  box-shadow:0 24px 60px rgba(0,0,0,0.12);
}
.nl-intro-img-wrap img {
  width:100%; height:420px; object-fit:cover; display:block;
  transition:transform 0.65s ease;
}
.nl-intro-img-wrap:hover img { transform:scale(1.04); }
.nl-intro-badge {
  position:absolute; bottom:22px; left:22px;
  background:#f5c30b; color:#000; border-radius:12px;
  padding:12px 18px; font-weight:700; font-size:13px;
  box-shadow:0 8px 24px rgba(0,0,0,0.15);
  display:flex; align-items:center; gap:10px;
  animation: badgeBounce 2s 1.5s ease infinite;
}
.nl-intro-badge i { font-size:18px; }
@keyframes badgeBounce {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-5px); }
}

/* ══════════════════════════════════
   SERVICES
   — No yellow glow on hover
══════════════════════════════════ */
.nl-services { background:#f8f8f6; padding:90px 10%; }
.nl-services-header { text-align:center; margin-bottom:56px; }
.nl-services-header p { max-width:560px; margin:18px auto 0; font-size:16px; color:#666; line-height:1.7; }

.nl-services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }

.nl-service-card {
  background:#fff; border-radius:18px; padding:30px 24px;
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
  transition:all 0.38s ease; border-top:4px solid transparent;
  text-decoration:none; color:inherit; display:block; position:relative; overflow:hidden;
}
/* REMOVED: yellow glow overlay on hover */
.nl-service-card:hover {
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.10);
  border-top-color:#f5c30b;
  color:inherit;
  text-decoration:none;
}

.nl-svc-icon {
  width:52px; height:52px; background:#f2f2f2; border-radius:13px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px; font-size:21px; color:#f5c30b; transition:0.35s;
}
/* Icon bg changes to solid yellow on hover — icon turns black — clean, no glow */
.nl-service-card:hover .nl-svc-icon { background:#f5c30b; color:#000; transform:rotate(-6deg) scale(1.08); }

.nl-service-card h3 { font-size:15px; font-weight:700; color:#111; margin-bottom:9px; }
.nl-service-card p  { font-size:13px; color:#666; line-height:1.7; margin-bottom:14px; }
.nl-svc-link { font-size:13px; font-weight:700; color:#f5c30b; display:flex; align-items:center; gap:6px; transition:gap 0.25s; }
.nl-service-card:hover .nl-svc-link { gap:11px; }

/* ══════════════════════════════════
   FULL-WIDTH IMAGE BAND
══════════════════════════════════ */
.nl-img-band { position:relative; height:380px; overflow:hidden; }
.nl-img-band img { width:100%; height:100%; object-fit:cover; filter:brightness(0.4); transition:transform 8s ease; display:block; }
.nl-img-band:hover img { transform:scale(1.06); }
.nl-band-content {
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:0 12%; color:#fff;
}
.nl-band-content h2 { font-size:clamp(24px,3.5vw,44px); font-weight:900; line-height:1.2; margin-bottom:16px; }
.nl-band-content h2 span { color:#f5c30b; }
.nl-band-content p { font-size:17px; color:rgba(255,255,255,0.8); max-width:580px; line-height:1.7; margin-bottom:28px; }

/* ══════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════ */
.nl-why { background:#fff; padding:90px 10%; }
.nl-why-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; margin-top:46px; }

.nl-why-img {
  position:relative; border-radius:20px; overflow:hidden;
  box-shadow:0 20px 56px rgba(0,0,0,0.1);
}
.nl-why-img::before {
  content:""; position:absolute; top:-16px; right:-16px;
  width:110px; height:110px; background:#f5c30b; border-radius:14px; z-index:-1;
}
.nl-why-img img { width:100%; height:440px; object-fit:cover; display:block; transition:transform 0.65s ease; }
.nl-why-img:hover img { transform:scale(1.04); }

.nl-why-content p { font-size:16px; color:#555; line-height:1.8; margin-bottom:20px; }

.nl-reason-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:26px; }
.nl-reason-card {
  background:#f8f8f6; border-radius:13px; padding:20px 17px;
  border-left:4px solid #f5c30b; transition:0.35s;
}
.nl-reason-card:hover { background:#fffbee; transform:translateX(5px); box-shadow:0 4px 14px rgba(0,0,0,0.07); }
.nl-reason-card i   { font-size:20px; color:#f5c30b; margin-bottom:9px; display:block; }
.nl-reason-card h4  { font-size:13.5px; font-weight:700; color:#111; margin-bottom:5px; word-break:break-word; }
.nl-reason-card p   { font-size:12.5px; color:#666; line-height:1.6; margin:0; word-break:break-word; overflow-wrap:break-word; }

/* ══════════════════════════════════
   INDUSTRIES  (dark bg)
══════════════════════════════════ */
.nl-industries { background:#0f0f0f; padding:90px 10%; text-align:center; }
.nl-industries-sub { max-width:540px; margin:16px auto 50px; font-size:15px; color:rgba(255,255,255,0.58); line-height:1.75; }
.nl-ind-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; justify-items:stretch; }
.nl-ind-pill {
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
  border-radius:16px; padding:26px 14px; transition:all 0.35s;
}
.nl-ind-pill:hover { background:rgba(255,255,255,0.07); border-color:rgba(255,255,255,0.18); transform:translateY(-6px); }
.nl-ind-pill i { font-size:28px; color:#f5c30b; margin-bottom:11px; }
.nl-ind-pill p { font-size:13px; font-weight:600; color:rgba(255,255,255,0.78); margin:0; }

/* ══════════════════════════════════
   PROCESS STEPS
══════════════════════════════════ */
.nl-process { background:#f8f8f6; padding:90px 10%; }
.nl-process-hdr { text-align:center; margin-bottom:60px; }
.nl-process-hdr p { max-width:520px; margin:16px auto 0; font-size:15px; color:#666; line-height:1.7; }

.nl-steps { display:grid; grid-template-columns:repeat(4,1fr); position:relative; }
.nl-steps::before {
  content:""; position:absolute; top:40px;
  left:calc(12.5% + 16px); right:calc(12.5% + 16px);
  height:2px; background:linear-gradient(to right,#f5c30b,#e0b000); z-index:0;
}
.nl-step { text-align:center; padding:0 14px; position:relative; z-index:1; }
.nl-step-num {
  width:80px; height:80px; border-radius:50%; background:#f5c30b; color:#000;
  font-size:26px; font-weight:900; display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px; box-shadow:0 6px 20px rgba(0,0,0,0.15); transition:0.35s;
}
.nl-step:hover .nl-step-num { transform:scale(1.12); box-shadow:0 12px 32px rgba(0,0,0,0.2); }
.nl-step h4 { font-size:15px; font-weight:700; color:#111; margin-bottom:9px; }
.nl-step p  { font-size:13px; color:#666; line-height:1.65; }

/* ══════════════════════════════════
   LOCAL + LINKS
══════════════════════════════════ */
.nl-local { background:#fff; padding:90px 10%; }
.nl-local-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; margin-top:46px; }
.nl-local-content p { font-size:16px; color:#555; line-height:1.8; margin-bottom:18px; }
.nl-link-list { display:flex; flex-direction:column; gap:11px; margin-top:26px; }
.nl-link-item {
  display:flex; align-items:center; gap:12px; font-size:14px; color:#555;
  text-decoration:none; padding:13px 17px; border-radius:11px; background:#f8f8f6;
  border:1px solid #eee; transition:all 0.3s; font-weight:500;
}
.nl-link-item i { color:#f5c30b; font-size:15px; }
.nl-link-item:hover { background:#fffbee; border-color:#f5c30b; color:#111; transform:translateX(5px); }

.nl-map-card {
  background:linear-gradient(135deg,#0a0a0a,#1a1a1a);
  border-radius:20px; padding:42px 36px; color:#fff;
  box-shadow:0 20px 56px rgba(0,0,0,0.14);
}
.nl-map-card h3 { font-size:18px; font-weight:700; color:#f5c30b; margin-bottom:5px; }
.nl-map-card > p { font-size:13px; color:rgba(255,255,255,0.48); margin-bottom:26px; }
.nl-city-grid { display:grid; grid-template-columns:1fr 1fr; gap:11px; }
.nl-city-tag {
  display:flex; align-items:center; gap:9px;
  background:rgba(255,255,255,0.05); border-radius:10px; padding:12px 13px;
  font-size:13px; font-weight:600; color:rgba(255,255,255,0.72);
  border:1px solid rgba(255,255,255,0.07); transition:0.3s;
}
.nl-city-tag i { font-size:12px; color:#f5c30b; }
.nl-city-tag:hover,.nl-city-tag.active { background:rgba(245,195,11,0.11); border-color:rgba(245,195,11,0.42); color:#f5c30b; }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.nl-faq { background:#f8f8f6; padding:90px 10%; }
.nl-faq-hdr { text-align:center; margin-bottom:50px; }
.nl-faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:17px; max-width:960px; margin:0 auto; }
.nl-faq-item {
  background:#fff; border-radius:14px; padding:25px 26px;
  box-shadow:0 4px 18px rgba(0,0,0,0.05); border-left:4px solid #f5c30b; transition:0.3s;
}
.nl-faq-item:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,0.08); }
.nl-faq-item h4 { font-size:14px; font-weight:700; color:#111; margin-bottom:9px; line-height:1.5; }
.nl-faq-item p  { font-size:13.5px; color:#666; line-height:1.7; margin:0; }

/* ══════════════════════════════════
   CTA
══════════════════════════════════ */
.nl-cta {
  background:linear-gradient(135deg,#0d0d0d,#000);
  color:#fff; text-align:center; padding:110px 10%; position:relative; overflow:hidden;
}
.nl-cta::before {
  content:""; position:absolute; inset:0;
  background:radial-gradient(ellipse at center, rgba(245,195,11,0.05) 0%, transparent 65%);
  pointer-events:none;
}
.nl-cta-ring {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:500px; height:500px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.04);
  animation:ringPulse 4s ease-in-out infinite; pointer-events:none;
}
.nl-cta-ring:nth-child(2) { width:720px; height:720px; animation-delay:1.8s; }
@keyframes ringPulse {
  0%,100% { opacity:0.5; transform:translate(-50%,-50%) scale(1); }
  50%     { opacity:0;   transform:translate(-50%,-50%) scale(1.14); }
}
.nl-cta-inner { position:relative; z-index:1; }
.nl-cta h2 { font-size:clamp(26px,3.5vw,46px); font-weight:900; margin-bottom:18px; line-height:1.18; }
.nl-cta h2 span { color:#f5c30b; }
.nl-cta p { font-size:17px; color:rgba(255,255,255,0.74); max-width:520px; margin:0 auto 36px; line-height:1.7; }
.nl-cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.nl-cta-meta { display:flex; justify-content:center; gap:30px; margin-top:34px; flex-wrap:wrap; }
.nl-cta-badge { display:flex; align-items:center; gap:10px; font-size:14px; color:rgba(255,255,255,0.62); }
.nl-cta-badge i { color:#f5c30b; font-size:16px; }
.nl-cta-badge a { color:rgba(255,255,255,0.82); text-decoration:none; font-weight:600; }
.nl-cta-badge a:hover { color:#f5c30b; }
.nl-cta {
  padding: 40px 18px;
  margin: 40px 3%;
  border-radius: 20px;
}

/* ══════════════════════════════════
   BREADCRUMB
══════════════════════════════════ */
.nl-breadcrumb {
  background:#fff; padding:14px 10%; border-bottom:1px solid #eee;
  font-size:13px; color:#888;
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
  margin-top: 0;
  line-height: 1.6;
}
.nl-breadcrumb a { color:#555; text-decoration:none; white-space: nowrap; }
.nl-breadcrumb a:hover { color:#f5c30b; }
.nl-breadcrumb span {
  color:#f5c30b; font-weight:600;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}
.nl-breadcrumb i { font-size:10px; margin:0 6px; flex-shrink: 0; }

/* ══════════════════════════════════
   FOOTER  (4-column with Locations)
══════════════════════════════════ */
.footer { background:#000; color:#ccc; padding:70px 10%; font-family:'Poppins',sans-serif; }
.footer-container { display:flex; justify-content:space-between; flex-wrap:wrap; gap:40px; }
.footer-col { flex:1; min-width:190px; }
.footer-logo-img { height:35px; width:auto; }
.footer-col h3 { font-size:16px; margin-bottom:20px; color:#fff; font-weight:700; letter-spacing:0.3px; }
.footer-col p  { font-size:14px; line-height:1.7; color:#aaa; max-width:280px; }
.footer-col ul { list-style:none; padding:0; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { color:#aaa; text-decoration:none; font-size:13.5px; transition:0.3s ease; display:flex; align-items:center; gap:7px; }
.footer-col ul li a:hover { color:#f5c30b; padding-left:4px; }
.footer-col ul li a i { font-size:10px; color:#f5c30b; flex-shrink:0; }
.footer-social { display:flex; gap:14px; margin-top:18px; }
.footer-social a { width:38px; height:38px; background:rgba(255,255,255,0.07); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#ccc; font-size:15px; transition:0.3s; text-decoration:none; }
.footer-social a:hover { background:#f5c30b; color:#000; }
.contact-info li a { display:flex; align-items:center; gap:10px; color:#aaa; text-decoration:none; font-size:14px; transition:0.3s; }
.contact-info li a i { color:#f5c30b; font-size:14px; }
.contact-info li a:hover { color:#f5c30b; }
.footer-bottom { text-align:center; padding-top:40px; margin-top:50px; border-top:1px solid #222; font-size:13px; color:#666; }

/* ══════════════════════════════════
   FLOAT BUTTONS
══════════════════════════════════ */
.social-float-group { position:fixed; bottom:28px; right:22px; display:flex; flex-direction:column; gap:12px; z-index:9999; }
.whatsapp-float,.instagram-float { width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:22px; color:#fff; text-decoration:none; box-shadow:0 6px 22px rgba(0,0,0,0.22); transition:transform 0.3s; }
.whatsapp-float  { background:#25D366; }
.instagram-float { background:radial-gradient(circle at 30% 107%,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%); }
.whatsapp-float:hover,.instagram-float:hover { transform:scale(1.14); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width:1100px) {
  .nl-services-grid,.nl-ind-grid { grid-template-columns:repeat(2,1fr); }
  .nl-steps { grid-template-columns:repeat(2,1fr); gap:40px; }
  .nl-steps::before { display:none; }
}
@media (max-width:900px) {
  .nl-img-strip { grid-template-columns:1fr 1fr; height:230px; }
  .nl-strip-item:last-child { display:none; }
}
@media (max-width:768px) {
  .nl-hero { padding:110px 6% 80px; }
  .nl-intro,.nl-services,.nl-why,.nl-industries,.nl-process,.nl-local,.nl-faq { padding:60px 6%; }
  .nl-cta { padding:80px 6%; }
  .nl-intro-grid,.nl-why-grid,.nl-local-grid { grid-template-columns:1fr; gap:38px; }
  .nl-services-grid { grid-template-columns:1fr 1fr; }
  .nl-reason-grid { grid-template-columns:1fr 1fr; }
  .nl-ind-grid { grid-template-columns:repeat(2,1fr); }
  .nl-steps { grid-template-columns:1fr 1fr; }
  .nl-faq-grid { grid-template-columns:1fr; }
  .nl-hero-stats { gap:26px; }
  .nl-img-band:not(.no-photo) { height:280px; }
  .nl-img-band.no-photo { min-height:260px; height:auto !important; }
  .nl-band-content { padding:0 6%; }
  .nl-ind-grid { grid-template-columns:repeat(3,1fr); }
  .footer { padding:50px 6%; }
  .footer-container { flex-direction:column; gap:28px; }
  .footer-col { min-width:unset; }
  .nl-breadcrumb { padding:10px 5%; font-size:12px; margin-top: 0; gap: 3px; }
  .nl-breadcrumb i { margin:0 3px; }
  .nl-breadcrumb a { font-size: 12px; }
  .nl-breadcrumb span { font-size: 12px; }
  .nl-img-strip { grid-template-columns:1fr; height:190px; }
  .nl-strip-item:not(:first-child) { display:none; }

  /* Float buttons — smaller on mobile so they don't overlap content */
  .social-float-group { bottom:18px; right:14px; gap:10px; }
  .whatsapp-float,.instagram-float { width:44px; height:44px; font-size:19px; }

  /* Hero paragraph — right padding so text never slides under the float buttons */
  .nl-hero p { padding-right: 56px; }
}
@media (max-width:480px) {
  .nl-hero h1 { font-size:26px; }
  .nl-services-grid,.nl-reason-grid,.nl-steps { grid-template-columns:1fr; }
  .nl-hero-btns,.nl-cta-btns { flex-direction:column; align-items:center; }
  .nl-hero-stats { gap:20px; }
  .nl-hero p { padding-right: 0; }

  /* Industries — 2 cols on small mobile, centered */
  .nl-ind-grid { grid-template-columns:repeat(2,1fr); }

  /* Compare table — stack columns on tiny screens */
  .bl-compare-table thead { display:none; }
  .bl-compare-table tbody { display:block; }
  .bl-compare-table tr {
    display:grid; grid-template-columns:1fr 1fr;
    background:#fff; border-radius:10px;
    border:1px solid #ede9ff; margin-bottom:8px; overflow:hidden;
  }
  .bl-compare-table td {
    border:none !important; border-radius:0 !important;
    padding:9px 10px; width:auto !important;
    white-space:normal; word-break:break-word;
  }
  .bl-compare-table td:first-child {
    grid-column:1 / -1;
    background:#f8f7ff; font-weight:700;
    border-bottom:1px solid #ede9ff !important;
    text-align:left;
  }
  .bl-compare-table td:nth-child(2) { text-align:center; font-size:0.72rem; }
  .bl-compare-table td:last-child   { text-align:center; font-size:0.72rem; }

  /* Reason cards — single col */
  .nl-reason-grid { grid-template-columns:1fr; }

  /* Image band */
  .nl-img-band.no-photo { min-height:220px; }

  /* Breadcrumb */
  div.nl-breadcrumb { padding:8px 4% !important; font-size:11px !important; }
  div.nl-breadcrumb span { flex-basis:100% !important; padding-top:2px !important; }

  /* Map */
  .bl-map-box { padding-bottom:60%; }
}

/* ══════════════════════════════════
   LOCATION SHOWCASE SECTION
══════════════════════════════════ */
.nl-location-showcase {
  padding: 80px 10%;
  background: #f9f9f9;
  text-align: center;
}
.nl-location-showcase .section-tag {
  display: inline-block;
  background: #f5c30b;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.nl-location-showcase .section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
  display: block;
}
.nl-location-showcase .section-title span { color: #f5c30b; }
.nl-location-showcase .section-sub {
  color: #666;
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 15px;
  line-height: 1.7;
}

/* Image grid — original 3-col with featured */
.nl-loc-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Simplified 3-image equal grid (used when no featured image) */
.nl-loc-img-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.nl-loc-img-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #e8e8e8;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nl-loc-img-item.featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.nl-loc-img-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 34px rgba(0,0,0,0.14);
}
.nl-loc-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.nl-loc-img-item:hover img { transform: scale(1.04); }

.nl-loc-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff;
  padding: 28px 18px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.nl-loc-img-caption span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

/* Placeholder (for pages without images yet) */
.nl-loc-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa;
  background: #efefef;
  min-height: 200px;
}
.nl-loc-img-placeholder i  { font-size: 36px; color: #ccc; }
.nl-loc-img-placeholder p  { font-size: 13px; margin: 0; color: #bbb; }

/* Responsive */
@media (max-width: 768px) {
  .nl-location-showcase { padding: 60px 6%; }
  .nl-loc-img-grid { grid-template-columns: 1fr 1fr; }
  .nl-loc-img-item.featured { grid-column: span 2; }
  .nl-loc-img-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .nl-loc-img-grid { grid-template-columns: 1fr; }
  .nl-loc-img-item.featured { grid-column: span 1; }
  .nl-loc-img-grid-3 { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════
   BL COMPONENT OVERRIDES
   (results card, compare table, map)
══════════════════════════════════ */

/* When intro wrap contains our card instead of img — remove clip */
.nl-intro-img-wrap:has(.bl-results-card) {
  overflow: visible;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}
.nl-intro-img-wrap:has(.bl-results-card):hover img {
  transform: none;
}

/* When why-img contains our compare table — remove clip & decoration */
.nl-why-img:has(.bl-why-visual) {
  overflow: visible;
  box-shadow: none;
  border-radius: 0;
}
.nl-why-img:has(.bl-why-visual)::before {
  display: none;
}

/* Results card */
.bl-results-card {
  background: linear-gradient(135deg,#1a1a2e 0%,#2d2b55 100%);
  border-radius: 20px;
  padding: 28px 24px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bl-results-card::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at top right,rgba(108,92,231,0.35) 0%,transparent 70%);
  pointer-events:none;
}
.bl-rc-header {
  display:flex; align-items:center; gap:10px;
  font-size:0.78rem; font-weight:600; letter-spacing:0.06em;
  text-transform:uppercase; color:#a29bfe; position:relative;
}
.bl-rc-header i { font-size:1rem; }
.bl-rc-badge {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(245,195,11,0.15);
  border:1px solid rgba(245,195,11,0.3);
  border-radius:30px; padding:6px 14px;
  font-size:0.75rem; font-weight:700; color:#f5c30b;
  width:fit-content; position:relative;
}
.bl-checklist {
  background:rgba(255,255,255,0.05);
  border-radius:12px; padding:14px 16px;
  display:flex; flex-direction:column; gap:8px;
  position:relative;
}
.bl-checklist-title {
  font-size:0.72rem; font-weight:700; color:#a29bfe;
  text-transform:uppercase; letter-spacing:0.05em; margin-bottom:4px;
}
.bl-check-row {
  display:flex; align-items:center; gap:8px;
  font-size:0.78rem; color:#e0deff;
}
.bl-check-row i { color:#00cec9; font-size:0.75rem; flex-shrink:0; }

/* Map embed — responsive */
.bl-map-box {
  border-radius:12px; overflow:hidden; flex-shrink:0;
  border:2px solid rgba(108,92,231,0.4);
  position:relative; width:100%; padding-bottom:42%;
  height:0;
}
.bl-map-box iframe {
  position:absolute; top:0; left:0;
  width:100%; height:100%;
  border:none; display:block;
  filter:saturate(0.8) contrast(1.05);
}

/* Compare table */
.bl-why-visual {
  background: linear-gradient(160deg,#f8f7ff 0%,#edeaff 100%);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #ede9ff;
  display:flex; flex-direction:column; gap:18px;
  width:100%;
}
.bl-why-visual-title {
  font-size:0.95rem; font-weight:800; color:#1a1a2e;
  display:flex; align-items:center; gap:10px;
}
.bl-why-visual-title i { color:#6c5ce7; font-size:1.1rem; }
.bl-compare-table {
  width:100%; border-collapse:separate; border-spacing:0 7px;
  display:block; overflow-x:auto; -webkit-overflow-scrolling:touch;
}
.bl-compare-table thead, .bl-compare-table tbody { display:table; width:100%; }
.bl-compare-table th {
  font-size:0.68rem; font-weight:700; text-transform:uppercase;
  letter-spacing:0.06em; padding:8px 10px; color:#7a7a9a; text-align:left;
  white-space:nowrap;
}
.bl-compare-table th:last-child { color:#6c5ce7; }
.bl-compare-table td {
  background:#fff; padding:10px 12px; font-size:0.78rem;
  border-top:1px solid #ede9ff; border-bottom:1px solid #ede9ff; color:#333;
}
.bl-compare-table td:first-child {
  border-radius:10px 0 0 10px; border-left:1px solid #ede9ff;
  font-weight:600; color:#555; width:35%;
}
.bl-compare-table td:nth-child(2) {
  color:#c0392b; text-align:center; width:28%;
  word-break:break-word; overflow-wrap:break-word;
}
.bl-compare-table td:last-child {
  border-radius:0 10px 10px 0; border-right:1px solid #ede9ff;
  color:#27ae60; font-weight:700; text-align:center; width:37%;
  word-break:break-word; overflow-wrap:break-word;
}
.bl-why-note {
  font-size:0.75rem; color:#7a7a9a;
  background:#f0eeff; border-radius:8px; padding:10px 14px;
  border-left:3px solid #6c5ce7; line-height:1.5; margin:0;
}

/* Image band — no-photo variant */
.nl-img-band.no-photo {
  background: linear-gradient(135deg,#1a1a2e 0%,#2d2b55 55%,#6c5ce7 100%) !important;
  position:relative !important;
  overflow:hidden !important;
  height:auto !important;
  min-height:300px;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
/* Hide stray img tags inside no-photo band */
.nl-img-band.no-photo > img,
.nl-img-band.no-photo img { display:none !important; }
/* Dot pattern overlay */
.nl-img-band.no-photo::before {
  content:''; position:absolute; inset:0; pointer-events:none; z-index:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%236c5ce7' fill-opacity='0.09'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Disable the ::after that was conflicting */
.nl-img-band.no-photo::after { display:none; }
.nl-img-band.no-photo .nl-band-content {
  position:relative; z-index:2;
  padding:40px 8%;
}

/* ══════════════════════════════════
   BREADCRUMB — MOBILE FIX
══════════════════════════════════ */
div.nl-breadcrumb {
  background:#fff !important;
  padding:14px 10% !important;
  border-bottom:1px solid #eee !important;
  font-size:13px !important;
  color:#888 !important;
  display:flex !important;
  flex-wrap:wrap !important;
  align-items:center !important;
  gap:4px !important;
  margin-top:0 !important;
  line-height:1.7 !important;
  white-space:normal !important;
}
div.nl-breadcrumb a {
  color:#555; text-decoration:none;
  white-space:nowrap; flex-shrink:0;
}
div.nl-breadcrumb a:hover { color:#f5c30b; }
div.nl-breadcrumb span {
  color:#f5c30b !important;
  font-weight:600 !important;
  word-break:break-word !important;
  overflow-wrap:anywhere !important;
  min-width:0 !important;
  white-space:normal !important;
  flex:1 1 auto;
}
div.nl-breadcrumb i { font-size:10px; margin:0 5px; flex-shrink:0; }

@media (max-width:768px) {
  .nl-breadcrumb { padding:10px 5%; font-size:12px; gap:3px; }
  .nl-breadcrumb i { margin:0 2px; }
  .bl-compare-table th,
  .bl-compare-table td { font-size:0.72rem; padding:8px 8px; }
  .bl-why-visual { padding:20px 16px; }
  .bl-results-card { padding:22px 18px; }
}

@media (max-width:480px) {
  .nl-breadcrumb { padding:8px 4%; font-size:11px; }
  /* Current page label drops to its own line */
  .nl-breadcrumb span { flex-basis:100%; padding-top:1px; }
  .bl-compare-table { font-size:0.68rem; }
  .bl-compare-table th,
  .bl-compare-table td { padding:7px 6px; white-space:normal; }
  .bl-map-box { padding-bottom:56%; }
}