/* ================================================================
   NOVA LIGHT — Premium Design System v2.0
   Brand: Royal Blue #0D1B7A · Gold #F4C430 · Navy #020C3A
   Target: Saudi Market · RTL · Mobile-First
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --primary:        #0D1B7A;
  --primary-dark:   #070F55;
  --primary-light:  #1E3BC7;
  --primary-mid:    #162EA0;
  --accent:         #F4C430;
  --accent-warm:    #E8A800;
  --accent-soft:    rgba(244,196,48,0.15);
  --navy-deep:      #020C3A;
  --navy-mid:       #0A1850;
  --navy-card:      rgba(255,255,255,0.04);
  --white:          #FFFFFF;
  --off-white:      #F8F9FE;
  --gray-50:        #F0F4FF;
  --gray-100:       #E4EAFF;
  --gray-200:       #C8D4F0;
  --gray-400:       #8A9CC8;
  --gray-600:       #526080;
  --text-dark:      #0A0F2C;
  --text-body:      #2D3566;
  --text-muted:     #6B7BA4;
  --border:         #E4EAFF;
  --border-dark:    rgba(255,255,255,0.1);
  --success:        #16a34a;
  --error:          #dc2626;

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(13,27,122,0.06);
  --shadow-sm:  0 2px 12px rgba(13,27,122,0.08);
  --shadow-md:  0 8px 32px rgba(13,27,122,0.12);
  --shadow-lg:  0 20px 60px rgba(13,27,122,0.18);
  --shadow-xl:  0 32px 80px rgba(13,27,122,0.24);
  --shadow-2xl: 0 48px 120px rgba(2,12,58,0.35);

  /* Shape */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-full: 9999px;

  /* Motion */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:      0.2s var(--ease);
  --t-mid:       0.35s var(--ease);
  --t-slow:      0.6s var(--ease);

  /* Typography */
  --font:     'Tajawal', 'Segoe UI', system-ui, sans-serif;
  --fw-light: 300;
  --fw-reg:   400;
  --fw-med:   500;
  --fw-bold:  700;
  --fw-extra: 800;
  --fw-black: 900;
}

/* ── Base ─────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* WordPress admin bar offset */
body.admin-bar .nl-navbar { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nl-navbar { top: 46px; } }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--primary); color: var(--white); }

/* ── Layout ───────────────────────────────── */
.nl-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
}
.nl-section      { padding: 100px 0; }
.nl-section-sm   { padding: 72px 0; }
.nl-section-lg   { padding: 130px 0; }

/* ── Typography Utilities ─────────────────── */
.nl-gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #FFE570 50%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Headers ──────────────────────── */
.nl-section-header       { text-align: center; margin-bottom: 70px; }
.nl-section-header-light .nl-section-title  { color: var(--white); }
.nl-section-header-light .nl-section-sub    { color: rgba(255,255,255,0.72); }

.nl-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: var(--fw-extra);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  color: var(--primary);
}
.nl-tag-gold {
  background: rgba(244,196,48,.1);
  border-color: rgba(244,196,48,.35);
  color: var(--accent);
}

.nl-section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: var(--fw-black);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.nl-section-sub {
  font-size: 1.07rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Buttons ──────────────────────────────── */
.nl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  font-size: .98rem;
  font-weight: var(--fw-bold);
  letter-spacing: .02em;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: var(--t-mid);
  position: relative;
  overflow: hidden;
}
.nl-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: var(--t-fast);
}
.nl-btn:hover::after { opacity: 1; }

.nl-btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary) 55%, var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(13,27,122,.4);
}
.nl-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(13,27,122,.5);
}
.nl-btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(10px);
}
.nl-btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-3px);
}
.nl-btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: var(--navy-deep);
  font-weight: var(--fw-extra);
  box-shadow: 0 8px 30px rgba(244,196,48,.4);
}
.nl-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(244,196,48,.5);
}
.nl-btn-ghost {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.nl-btn-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
}
.nl-btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: transparent;
}
.nl-btn-whatsapp:hover { background: #1ebe57; transform: translateY(-3px); }
.nl-btn-sm { padding: 10px 22px; font-size: .86rem; }
.nl-btn-full { width: 100%; }
.nl-btn-icon-only { padding: 14px; border-radius: 50%; }

/* ── Navbar ───────────────────────────────── */
.nl-navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
  padding: 0 4px;
}
.nl-navbar.nl-scrolled {
  background: rgba(2,12,58,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px rgba(2,12,58,.45);
}
.nl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nl-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nl-logo-img { height: 64px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 12px rgba(244,196,48,.35)); }
.nl-logo-fallback { display: flex; flex-direction: column; gap: 2px; }
.nl-logo-fallback .ar { font-size: 1.35rem; font-weight: var(--fw-black); color: var(--white); }
.nl-logo-fallback .en { font-size: .68rem; font-weight: var(--fw-bold); color: var(--accent); letter-spacing: .22em; }
.nl-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nl-nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .94rem;
  font-weight: var(--fw-med);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: var(--t-fast);
}
.nl-nav-links a:hover,
.nl-nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nl-nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm)) !important;
  color: var(--navy-deep) !important;
  font-weight: var(--fw-extra) !important;
  padding: 10px 26px !important;
  box-shadow: 0 4px 20px rgba(244,196,48,.35);
}
.nl-nav-cta:hover {
  box-shadow: 0 8px 32px rgba(244,196,48,.5) !important;
  transform: translateY(-2px);
}
.nl-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
}
.nl-hamburger:hover { background: rgba(255,255,255,.08); }
.nl-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t-mid);
}
.nl-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nl-hamburger.open span:nth-child(2) { opacity: 0; }
.nl-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────── */
.nl-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #060F4A 40%, #0D1B7A 70%, #06104A 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 100px;
}
.nl-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}
.nl-hero-canvas { position: absolute; inset: 0; pointer-events: none; }

.nl-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.nl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,.92);
  font-size: .88rem;
  font-weight: var(--fw-bold);
  margin-bottom: 36px;
  backdrop-filter: blur(12px);
  animation: fadeInDown .8s var(--ease) both;
}
.nl-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--accent);
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 14px var(--accent); }
  50%      { box-shadow: 0 0 28px var(--accent), 0 0 50px rgba(244,196,48,.35); }
}
.nl-hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: var(--fw-black);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
  animation: fadeInUp .9s var(--ease) .15s both;
}
.nl-hero-sub, .nl-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255,255,255,.76);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.85;
  animation: fadeInUp .9s var(--ease) .3s both;
}
.nl-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .9s var(--ease) .45s both;
}
.nl-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeInUp .9s var(--ease) .6s both;
}
.nl-stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 52px; }
.nl-stat-value { font-size: 2.6rem; font-weight: var(--fw-black); color: var(--accent); display: inline-flex; align-items: baseline; gap: 2px; }
.nl-stat-value .suffix { font-size: 2rem; }
.nl-stat-label { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: 4px; white-space: nowrap; }
.nl-stat-sep { width: 1px; height: 55px; background: rgba(255,255,255,.14); }
.nl-stat-divider { width: 1px; height: 55px; background: rgba(255,255,255,.14); }

/* ── Marquee ──────────────────────────────── */
.nl-marquee {
  background: var(--primary);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.nl-marquee::before,
.nl-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}
.nl-marquee::before { right: 0; background: linear-gradient(to left, var(--primary), transparent); }
.nl-marquee::after  { left: 0; background: linear-gradient(to right, var(--primary), transparent); }
.nl-marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.nl-marquee-track span {
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  font-weight: var(--fw-bold);
  letter-spacing: .05em;
  flex-shrink: 0;
  white-space: nowrap;
}
.nl-mq-brand {
  color: var(--accent) !important;
  font-weight: var(--fw-black) !important;
  font-size: 1rem !important;
  letter-spacing: .08em !important;
  text-shadow: 0 0 18px rgba(244,196,48,.45);
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Category Cards (Homepage) ────────────── */
.nl-cat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.nl-cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 440px;
  cursor: pointer;
  transition: transform var(--t-mid);
}
.nl-cat-card:hover { transform: translateY(-8px); }
.nl-cat-card:hover .nl-cat-overlay { opacity: 1; }
.nl-cat-card:hover .nl-cat-inner { transform: translateY(-12px); }

.nl-cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow);
}
.nl-cat-card:hover .nl-cat-bg { transform: scale(1.06); }
.nl-cat-bg-lighting  { background: linear-gradient(145deg, #1E3BC7 0%, #0D1B7A 50%, #020C3A 100%); }
.nl-cat-bg-elec      { background: linear-gradient(145deg, #0A2050 0%, #051235 50%, #020820 100%); }
.nl-cat-bg-sanitary  { background: linear-gradient(145deg, #163070 0%, #0A1B50 50%, #060D30 100%); }

.nl-cat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,12,58,.4);
  opacity: 0;
  transition: var(--t-mid);
}
.nl-cat-inner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 36px;
  background: linear-gradient(to top, rgba(2,12,58,.95) 60%, transparent);
  transition: var(--t-mid);
}
.nl-cat-emoji { font-size: 3rem; margin-bottom: 16px; display: block; }
.nl-cat-card h3 {
  font-size: 1.55rem;
  font-weight: var(--fw-black);
  color: var(--white);
  margin-bottom: 10px;
}
.nl-cat-card p { font-size: .92rem; color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 22px; }
.nl-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: .92rem;
  font-weight: var(--fw-extra);
  transition: gap var(--t-fast);
}
.nl-cat-card:hover .nl-cat-link { gap: 14px; }

/* ── Product Grid ─────────────────────────── */
.nl-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
}
.nl-product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t-mid);
  position: relative;
}
.nl-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,27,122,.12);
}
.nl-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  opacity: 0;
  transition: var(--t-mid);
}
.nl-product-card:hover::before { opacity: 1; }

.nl-product-img-link { display: block; overflow: hidden; aspect-ratio: 4/3; position: relative; }
.nl-product-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.nl-product-card:hover .nl-product-img { transform: scale(1.06); }

/* ── Prevent horizontal overflow globally ──── */
html, body { overflow-x: hidden; max-width: 100%; }
.nl-container { overflow-x: clip; }

/* ── Premium Product Visual Cards ──────────── */
.nl-pv {
  width: 100%; height: 100%; min-height: 220px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px; position: relative; overflow: hidden;
  transition: var(--t-mid);
}
.nl-pv::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 55%, rgba(244,196,48,.2) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
  transition: opacity var(--t-mid);
  opacity: .7;
}
.nl-product-card:hover .nl-pv::before { opacity: 1; }
.nl-pv::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244,196,48,.7), transparent);
  z-index: 2;
}
.nl-pv-light   { background: linear-gradient(145deg, #06082a 0%, #0d1b7a 55%, #142ea8 100%); }
.nl-pv-elec    { background: linear-gradient(145deg, #080c1e 0%, #0f1c3a 55%, #152b50 100%); }
.nl-pv-san     { background: linear-gradient(145deg, #06131e 0%, #0b2540 55%, #0d3356 100%); }
.nl-pv-solar   { background: linear-gradient(145deg, #050e1a 0%, #0a1f3a 45%, #1a3f5c 80%, #0a2a48 100%); }
.nl-pv-cable   { background: linear-gradient(145deg, #120608 0%, #2d0c0e 55%, #420d10 100%); }
.nl-pv-icon {
  position: relative; z-index: 3;
  transition: transform var(--t-mid), filter var(--t-mid);
  filter: drop-shadow(0 0 16px rgba(244,196,48,.55));
  max-width: 85%; height: auto;
}
.nl-product-card:hover .nl-pv-icon {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 0 28px rgba(244,196,48,.85)) drop-shadow(0 6px 18px rgba(0,0,0,.5));
}
.nl-pv-tag {
  position: relative; z-index: 3;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(244,196,48,.9);
  background: rgba(244,196,48,.08);
  border: 1px solid rgba(244,196,48,.22);
  padding: 4px 14px; border-radius: 9999px;
}
.nl-pv-sparkle {
  position: absolute; z-index: 2; pointer-events: none;
  animation: sparkle 3s ease-in-out infinite;
}
@keyframes sparkle {
  0%,100% { opacity: .3; transform: scale(.8); }
  50%      { opacity: 1;  transform: scale(1.2); }
}
.nl-product-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: var(--fw-extra);
  letter-spacing: .06em;
}
.nl-badge-sale   { background: #EF4444; color: var(--white); }
.nl-badge-new    { background: var(--accent); color: var(--navy-deep); }
.nl-badge-hot    { background: var(--primary); color: var(--white); }

.nl-product-body { padding: 24px 24px 20px; }
.nl-product-cat  { font-size: .76rem; color: var(--primary-light); font-weight: var(--fw-bold); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.nl-product-name { font-size: 1.05rem; font-weight: var(--fw-extra); color: var(--text-dark); line-height: 1.4; margin-bottom: 10px; }
.nl-product-name a:hover { color: var(--primary-light); }
.nl-product-excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.nl-product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.nl-product-price { font-size: 1.2rem; font-weight: var(--fw-extra); color: var(--primary); }
.nl-product-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  font-size: .82rem;
  font-weight: var(--fw-extra);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  transition: var(--t-fast);
  white-space: nowrap;
}
.nl-product-order-btn:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ── Why Section ──────────────────────────── */
.nl-why-section {
  background: linear-gradient(145deg, var(--navy-deep) 0%, #051060 45%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.nl-why-section::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,59,199,.18), transparent 65%);
  pointer-events: none;
}
.nl-why-section::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,48,.07), transparent 65%);
  pointer-events: none;
}
.nl-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}
.nl-why-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  backdrop-filter: blur(8px);
  transition: var(--t-mid);
}
.nl-why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.nl-why-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(244,196,48,.15), rgba(244,196,48,.04));
  border: 1px solid rgba(244,196,48,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
}
.nl-why-card h3 { font-size: 1.12rem; font-weight: var(--fw-extra); color: var(--white); margin-bottom: 12px; }
.nl-why-card p  { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.8; }

/* ── Stats ────────────────────────────────── */
.nl-stats-section {
  padding: 88px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nl-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.nl-stat-block {
  padding: 36px 24px;
  text-align: center;
  border-left: 1px solid var(--border);
  transition: var(--t-fast);
}
.nl-stat-block:last-child { border-left: none; }
.nl-stat-block:hover { background: var(--white); }
.nl-stat-icon   { font-size: 2.2rem; margin-bottom: 14px; }
.nl-stat-number { font-size: 3.2rem; font-weight: var(--fw-black); color: var(--primary); line-height: 1; margin-bottom: 8px; }
.nl-stat-name   { font-size: .88rem; color: var(--text-muted); font-weight: var(--fw-med); }

/* ── Testimonials ─────────────────────────── */
.nl-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.nl-testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  position: relative;
  transition: var(--t-mid);
}
.nl-testi-card::before {
  content: '"';
  position: absolute;
  top: 22px; left: 28px;
  font-size: 5.5rem;
  color: var(--gray-100);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.nl-testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.nl-testi-card.nl-testi-featured {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.nl-testi-featured .nl-testi-text { color: rgba(255,255,255,.9); }
.nl-testi-featured .nl-testi-name { color: var(--white); }
.nl-testi-featured .nl-testi-role { color: rgba(255,255,255,.6); }
.nl-testi-featured::before { color: rgba(255,255,255,.07); }
.nl-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; display: block; }
.nl-testi-text {
  font-size: .94rem;
  color: var(--text-body);
  line-height: 1.82;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.nl-testi-author { display: flex; align-items: center; gap: 14px; }
.nl-testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .85rem;
  font-weight: var(--fw-extra);
  flex-shrink: 0;
}
.nl-testi-featured .nl-testi-avatar { background: rgba(255,255,255,.15); }
.nl-testi-name { font-size: .94rem; font-weight: var(--fw-bold); color: var(--text-dark); }
.nl-testi-role { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }

/* ── Partners ─────────────────────────────── */
.nl-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nl-partner-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: var(--fw-extra);
  color: var(--gray-600);
  letter-spacing: .05em;
  transition: var(--t-mid);
}
.nl-partner-card:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

/* ── CTA Banner ───────────────────────────── */
.nl-cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--primary-dark) 60%, #0D1B7A 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.nl-cta-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%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");
}
.nl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.nl-cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: var(--fw-black); color: var(--white); margin-bottom: 12px; }
.nl-cta-text p  { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 520px; line-height: 1.7; }
.nl-cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── Projects Grid ────────────────────────── */
.nl-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nl-project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.nl-project-card:hover .nl-project-img { transform: scale(1.08); }
.nl-project-card:hover .nl-project-overlay { opacity: 1; }
.nl-project-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.nl-project-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, var(--navy-mid), var(--primary-dark));
  font-size: 3.5rem;
}
.nl-project-placeholder span { font-size: .95rem; font-weight: var(--fw-bold); color: rgba(255,255,255,.6); }
.nl-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,12,58,.9) 50%, rgba(2,12,58,.25) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  opacity: 0;
  transition: var(--t-mid);
}
.nl-project-card:hover .nl-project-overlay,
.nl-project-card.nl-always-show .nl-project-overlay { opacity: 1; }
.nl-project-type-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(244,196,48,.2);
  border: 1px solid rgba(244,196,48,.4);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: .76rem;
  font-weight: var(--fw-extra);
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.nl-project-name { font-size: 1.15rem; font-weight: var(--fw-extra); color: var(--white); margin-bottom: 6px; }
.nl-project-desc { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.5; }

/* ── Project Filters ──────────────────────── */
.nl-project-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.nl-filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: var(--t-fast);
}
.nl-filter-btn:hover { border-color: var(--primary-light); color: var(--primary-light); }
.nl-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,27,122,.35);
}

/* ── About Page ───────────────────────────── */
.nl-about-hero {
  background: linear-gradient(135deg, var(--navy-deep), var(--primary-dark), #0D1B7A);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nl-page-hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: var(--fw-black);
  color: var(--white);
  margin-bottom: 18px;
}
.nl-page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.nl-about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nl-about-visual { position: relative; }
.nl-about-main-card {
  background: linear-gradient(145deg, var(--navy-deep), var(--primary-dark));
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}
.nl-about-main-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(30,59,199,.3), transparent 60%);
}
.nl-about-logo { max-width: 200px; margin: 0 auto; position: relative; z-index: 1; }
.nl-about-floating {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 170px;
  animation: floatCard 5s ease-in-out infinite;
}
.nl-float-1 { top: 5%; right: -20px; animation-delay: 0s; }
.nl-float-2 { bottom: 25%; left: -20px; animation-delay: 1.8s; }
.nl-float-3 { bottom: 0; right: 10%; animation-delay: 3.5s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.nl-float-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: var(--fw-extra);
  flex-shrink: 0;
}
.nl-float-title { font-size: .9rem; font-weight: var(--fw-extra); color: var(--text-dark); }
.nl-float-sub   { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }

.nl-about-text .nl-section-tag { display: inline-flex; }
.nl-about-desc { font-size: 1rem; color: var(--text-body); line-height: 1.9; margin-bottom: 20px; }
.nl-about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}
.nl-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
}
.nl-check-icon {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .65rem;
  flex-shrink: 0;
  font-weight: var(--fw-black);
}

/* Values Cards */
.nl-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nl-value-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--t-mid);
}
.nl-value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
.nl-value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.nl-value-card h3 { font-size: 1.1rem; font-weight: var(--fw-extra); color: var(--text-dark); margin-bottom: 10px; }
.nl-value-card p  { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* Certs */
.nl-certs-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 48px; }
.nl-cert-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: var(--t-fast);
}
.nl-cert-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--primary-light); }
.nl-cert-seal { width: 40px; height: 40px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: .7rem; font-weight: var(--fw-black); text-align: center; line-height: 1.2; }
.nl-cert-info strong { display: block; font-size: .9rem; font-weight: var(--fw-extra); color: var(--text-dark); }
.nl-cert-info span   { font-size: .78rem; color: var(--text-muted); }

/* Timeline */
.nl-timeline { position: relative; padding: 0 0 0 40px; }
.nl-timeline::before { content: ''; position: absolute; top: 0; right: 20px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary-light), var(--border)); }
.nl-timeline-item { position: relative; margin-bottom: 40px; }
.nl-timeline-dot { position: absolute; right: -32px; top: 4px; width: 24px; height: 24px; border-radius: 50%; background: var(--primary); border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--primary-light); }
.nl-timeline-year { font-size: .8rem; font-weight: 800; color: var(--primary-light); letter-spacing: .08em; margin-bottom: 6px; }
.nl-timeline-item h4 { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.nl-timeline-item p  { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* Team */
.nl-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.nl-team-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px 28px; text-align: center; transition: var(--t-mid); }
.nl-team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.nl-team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), var(--primary)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 900; color: var(--white); margin: 0 auto 18px; }
.nl-team-name { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.nl-team-role { font-size: .85rem; color: var(--primary-light); font-weight: 700; margin-bottom: 12px; }
.nl-team-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

/* ── Product Detail Page ──────────────────── */
.nl-product-page-hero {
  background: linear-gradient(135deg, var(--navy-deep), var(--primary-dark));
  padding: 100px 0 60px;
}
.nl-product-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.nl-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-50);
  position: relative;
}
.nl-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.nl-gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  background: linear-gradient(145deg, #EEF2FF, #E4EAFF);
  font-size: 5rem;
}
.nl-gallery-placeholder p { font-size: 1rem; color: var(--text-muted); }
.nl-gallery-thumbs {
  display: flex; gap: 12px; margin-top: 14px; overflow-x: auto;
  scrollbar-width: none;
}
.nl-gallery-thumbs::-webkit-scrollbar { display: none; }
.nl-thumb-btn {
  width: 84px; height: 84px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2.5px solid transparent;
  flex-shrink: 0;
  transition: var(--t-fast);
  cursor: pointer;
}
.nl-thumb-btn:hover, .nl-thumb-btn.active { border-color: var(--primary); }
.nl-thumb-btn img { width: 100%; height: 100%; object-fit: cover; }

.nl-product-page-cat { font-size: .82rem; color: var(--primary-light); font-weight: var(--fw-extra); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.nl-product-page-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: var(--fw-black); color: var(--text-dark); line-height: 1.25; margin-bottom: 16px; }
.nl-product-page-price { font-size: 2rem; font-weight: var(--fw-black); color: var(--primary); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.nl-price-old { font-size: 1.2rem; font-weight: var(--fw-med); color: var(--gray-400); text-decoration: line-through; }
.nl-price-save { font-size: .8rem; font-weight: var(--fw-extra); background: rgba(239,68,68,.1); color: #EF4444; padding: 4px 12px; border-radius: var(--radius-full); }
.nl-product-short-desc { font-size: .98rem; color: var(--text-body); line-height: 1.85; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.nl-product-quick-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.nl-spec-item { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; }
.nl-spec-label { font-size: .75rem; color: var(--text-muted); font-weight: var(--fw-med); margin-bottom: 4px; }
.nl-spec-value { font-size: .92rem; color: var(--text-dark); font-weight: var(--fw-extra); }
.nl-product-sku { font-size: .82rem; color: var(--text-muted); margin-bottom: 20px; }
.nl-in-stock  { color: var(--success); font-weight: var(--fw-bold); }
.nl-out-stock { color: var(--error); font-weight: var(--fw-bold); }

/* Order Form */
.nl-order-box {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  margin-top: 28px;
}
.nl-order-box h3 {
  font-size: 1.15rem;
  font-weight: var(--fw-extra);
  color: var(--text-dark);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nl-form-group { margin-bottom: 16px; }
.nl-form-label { display: block; font-size: .85rem; font-weight: var(--fw-bold); color: var(--text-dark); margin-bottom: 7px; }
.nl-required { color: var(--error); }
.nl-form-input,
.nl-form-select,
.nl-form-textarea {
  width: 100%; padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .93rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.nl-form-input::placeholder, .nl-form-textarea::placeholder { color: var(--gray-200); }
.nl-form-input:focus, .nl-form-select:focus, .nl-form-textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(30,59,199,.1);
}
.nl-form-textarea { resize: vertical; min-height: 100px; }
.nl-field-error { display: none; font-size: .78rem; color: var(--error); margin-top: 4px; }

/* Spinner */
.nl-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Tabs */
.nl-tabs { margin-top: 64px; }
.nl-tabs-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 40px; gap: 4px; }
.nl-tab-btn {
  padding: 14px 28px;
  font-size: .93rem;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--t-fast);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  cursor: pointer;
}
.nl-tab-btn:hover { color: var(--primary); background: var(--gray-50); }
.nl-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.nl-tab-panel { display: none; }
.nl-tab-panel.active { display: block; }
.nl-specs-table { width: 100%; border-collapse: collapse; }
.nl-specs-table tr { border-bottom: 1px solid var(--border); }
.nl-specs-table th { padding: 14px 20px; font-size: .88rem; font-weight: var(--fw-extra); color: var(--text-dark); background: var(--gray-50); width: 35%; text-align: right; }
.nl-specs-table td { padding: 14px 20px; font-size: .9rem; color: var(--text-body); }

/* ── Contact Page ─────────────────────────── */
.nl-contact-page { padding-top: 80px; }
.nl-contact-hero { background: linear-gradient(135deg, var(--navy-deep), var(--primary-dark), #0D1B7A); padding: 100px 0; position: relative; overflow: hidden; }
.nl-contact-hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:100px; background:linear-gradient(to top, var(--white), transparent); }
.nl-contact-body { padding: 80px 0 100px; background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%); }
.nl-contact-side { background: linear-gradient(145deg, var(--navy-deep), var(--primary-dark)); border-radius: var(--radius-xl); padding: 48px 40px; position: sticky; top: 100px; }
.nl-contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.nl-contact-info-items { display: flex; flex-direction: column; gap: 14px; margin: 32px 0; }
.nl-contact-info-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  color: var(--white);
  text-decoration: none;
  transition: var(--t-fast);
  backdrop-filter: blur(6px);
}
.nl-contact-info-item:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); transform: translateX(-4px); }
.nl-ci-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(244,196,48,.2), rgba(244,196,48,.04));
  border: 1px solid rgba(244,196,48,.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.nl-ci-label { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: var(--fw-med); margin-bottom: 2px; }
.nl-ci-value { font-size: .98rem; font-weight: var(--fw-bold); color: var(--white); }
.nl-social-row { display: flex; gap: 12px; }
.nl-social-btn {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.72);
  transition: var(--t-fast);
}
.nl-social-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--navy-deep); transform: translateY(-4px); }

/* Contact Form */
.nl-contact-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-2xl);
}
.nl-contact-form-box h3 { font-size: 1.5rem; font-weight: var(--fw-black); color: var(--text-dark); margin-bottom: 32px; }
.nl-form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: rgba(22,163,74,.08);
  border: 1.5px solid rgba(22,163,74,.25);
  border-radius: var(--radius-md);
  color: #166534;
  font-weight: var(--fw-bold);
  font-size: .92rem;
  margin-top: 16px;
}
.nl-form-success.show { display: flex; }

/* Map Placeholder */
.nl-map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  background: linear-gradient(145deg, var(--gray-50), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  border: 1.5px solid var(--border);
}
.nl-map-box span { font-size: 3rem; }
.nl-map-box p { font-size: .9rem; color: var(--text-muted); font-weight: var(--fw-med); }

/* ── Thank You Page ───────────────────────── */
.nl-thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--primary-dark) 60%, #0D1B7A 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}
.nl-thankyou-page::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,59,199,.2), transparent);
  pointer-events: none;
}
.nl-thankyou-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  max-width: 580px;
  width: 100%;
  box-shadow: var(--shadow-2xl);
  position: relative;
  z-index: 1;
  animation: zoomIn .6s var(--ease-spring) both;
}
@keyframes zoomIn { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }
.nl-thankyou-icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 12px 40px rgba(22,163,74,.35);
  animation: popIn .6s var(--ease-spring) .3s both;
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.nl-thankyou-icon svg { color: var(--white); }
.nl-thankyou-card h1 { font-size: 2.2rem; font-weight: var(--fw-black); color: var(--text-dark); margin-bottom: 14px; }
.nl-thankyou-card p  { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.nl-order-number {
  background: var(--gray-50);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  margin-bottom: 36px;
}
.nl-order-number span { font-size: .82rem; color: var(--text-muted); display: block; margin-bottom: 6px; }
.nl-order-number strong { font-size: 1.5rem; font-weight: var(--fw-black); color: var(--primary); letter-spacing: .05em; }
.nl-thankyou-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────── */
.nl-footer { background: var(--navy-deep); padding-top: 88px; }
.nl-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nl-footer-logo-img { height: 56px; width: auto; object-fit: contain; margin-bottom: 18px; }
.nl-footer-logo-text { font-size: 1.7rem; font-weight: var(--fw-black); color: var(--white); margin-bottom: 10px; }
.nl-footer-tagline  { font-size: .97rem; color: var(--accent); font-weight: var(--fw-bold); margin-bottom: 12px; }
.nl-footer-desc     { font-size: .86rem; color: rgba(255,255,255,.48); line-height: 1.8; max-width: 280px; }
.nl-footer-col h4   { font-size: .95rem; font-weight: var(--fw-extra); color: var(--white); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.09); }
.nl-footer-col a    { display: block; font-size: .86rem; color: rgba(255,255,255,.52); margin-bottom: 12px; transition: var(--t-fast); }
.nl-footer-col a:hover { color: var(--accent); padding-right: 6px; }
.nl-footer-contact-link {
  display: flex; align-items: center; gap: 8px;
  font-size: .86rem;
  color: rgba(255,255,255,.52);
  margin-bottom: 12px;
  transition: var(--t-fast);
}
.nl-footer-contact-link:hover { color: var(--accent); }
.nl-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.nl-fs-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--t-fast);
}
.nl-fs-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--navy-deep); transform: translateY(-3px); }
.nl-footer-bottom { padding: 22px 0; }
.nl-footer-bottom .nl-container {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.38);
}
.nl-footer-legal { display: flex; gap: 20px; }
.nl-footer-legal a { color: rgba(255,255,255,.38); }
.nl-footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── Floating Elements ────────────────────── */
.nl-whatsapp-float {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  z-index: 990;
  transition: var(--t-mid);
  animation: popFloat 1s var(--ease-spring) 1s both;
}
@keyframes popFloat { from { transform: scale(0) rotate(-180deg); } to { transform: scale(1) rotate(0); } }
.nl-whatsapp-float:hover { transform: scale(1.1) rotate(10deg); box-shadow: 0 14px 40px rgba(37,211,102,.6); }
.nl-back-to-top {
  position: fixed;
  bottom: 100px; left: 28px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(13,27,122,.45);
  z-index: 990;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: var(--t-mid);
}
.nl-back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.nl-back-to-top:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,27,122,.55); }

/* ── Page Breadcrumb ──────────────────────── */
.nl-inner-page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--primary-dark) 60%, #0D1B7A 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.nl-inner-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}
.nl-breadcrumb ol { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.55); margin-top: 16px; flex-wrap: wrap; list-style: none; }
.nl-breadcrumb a { color: rgba(255,255,255,.75); }
.nl-breadcrumb a:hover { color: var(--accent); }
.nl-breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ── Animations ───────────────────────────── */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(32px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn     { from { opacity: 0; }                                 to { opacity: 1; } }

.nl-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.nl-reveal.nl-in { opacity: 1; transform: translateY(0); }
.nl-reveal-d1 { transition-delay: .1s; }
.nl-reveal-d2 { transition-delay: .2s; }
.nl-reveal-d3 { transition-delay: .3s; }
.nl-reveal-d4 { transition-delay: .4s; }

/* ── Orbs / Particles (Hero BG) ───────────── */
.nl-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.nl-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .25;
}
.nl-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--primary-light), transparent); top: -200px; right: -100px; animation: orbFloat 12s ease-in-out infinite; }
.nl-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--accent), transparent); bottom: -100px; left: -50px; animation: orbFloat 15s ease-in-out infinite reverse; }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-40px) scale(1.05)} }
.nl-particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,.15); animation: particleFloat 8s ease-in-out infinite; }
.nl-p1{width:4px;height:4px;top:20%;left:15%;animation-delay:0s}
.nl-p2{width:6px;height:6px;top:60%;left:80%;animation-delay:1.5s}
.nl-p3{width:3px;height:3px;top:40%;left:45%;animation-delay:3s}
.nl-p4{width:5px;height:5px;top:80%;left:25%;animation-delay:4.5s}
.nl-p5{width:4px;height:4px;top:15%;left:70%;animation-delay:0.8s}
.nl-p6{width:3px;height:3px;top:70%;left:55%;animation-delay:2.2s}
.nl-p7{width:6px;height:6px;top:35%;left:10%;animation-delay:3.8s}
.nl-p8{width:4px;height:4px;top:55%;left:90%;animation-delay:1.2s}
@keyframes particleFloat { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-20px) rotate(180deg)} }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1200px) {
  .nl-footer-inner { grid-template-columns: 1fr 1fr; gap: 44px; }
  .nl-stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .nl-stat-block   { border-bottom: 1px solid var(--border); }
}
@media (max-width: 1024px) {
  .nl-cat-row                  { grid-template-columns: 1fr; gap: 20px; }
  .nl-cat-card                 { min-height: 320px; }
  .nl-about-layout             { grid-template-columns: 1fr; gap: 48px; }
  .nl-contact-layout           { grid-template-columns: 1fr; gap: 48px; }
  .nl-product-page-layout      { grid-template-columns: 1fr; gap: 48px; }
  .nl-testimonials-grid        { grid-template-columns: 1fr 1fr; }
  .nl-cta-inner                { flex-direction: column; text-align: center; }
  .nl-cta-actions              { justify-content: center; }
  .nl-values-grid              { grid-template-columns: 1fr 1fr; }
  .nl-partners-grid            { grid-template-columns: repeat(2, 1fr); }
  .nl-projects-grid            { grid-template-columns: 1fr 1fr; }
  .nl-team-grid                { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nl-section { padding: 72px 0; }
  .nl-nav-links {
    display: none;
    position: fixed;
    top: 80px; right: 0; left: 0;
    background: rgba(2,12,58,.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 20px;
    gap: 6px;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 48px rgba(0,0,0,.4);
    z-index: 999;
  }
  .nl-nav-links.nl-open { display: flex; }
  .nl-nav-links a { padding: 14px 20px; border-radius: var(--radius-md); font-size: 1rem; }
  .nl-hamburger { display: flex; }
  .nl-hero-stats { flex-direction: column; gap: 24px; }
  .nl-stat-item  { padding: 0; }
  .nl-stat-sep, .nl-stat-divider { width: 80px; height: 1px; }
  .nl-hero-actions { flex-direction: column; align-items: stretch; }
  .nl-products-grid  { grid-template-columns: 1fr 1fr; }
  .nl-why-grid       { grid-template-columns: 1fr; }
  .nl-testimonials-grid { grid-template-columns: 1fr; }
  .nl-projects-grid  { grid-template-columns: 1fr; }
  .nl-footer-inner   { grid-template-columns: 1fr; gap: 36px; }
  .nl-footer-bottom .nl-container { flex-direction: column; gap: 8px; text-align: center; }
  .nl-footer-legal   { justify-content: center; }
  .nl-about-checks   { grid-template-columns: 1fr; }
  .nl-contact-form-box { padding: 36px 26px; }
  .nl-form-row       { grid-template-columns: 1fr; }
  .nl-product-quick-specs { grid-template-columns: 1fr 1fr; }
  .nl-thankyou-card  { padding: 48px 28px; }
  .nl-float-1, .nl-float-2, .nl-float-3 { display: none; }
  .nl-stats-grid { grid-template-columns: 1fr 1fr; }
  .nl-values-grid { grid-template-columns: 1fr; }
  .nl-team-grid   { grid-template-columns: 1fr; }
  .nl-nav-inner { padding: 0 16px; height: 70px; }
  .nl-logo-img  { height: 50px; }
  .nl-hero        { min-height: 100svh; padding: 100px 0 60px; }
  .nl-hero-title  { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .nl-hero-sub, .nl-hero-subtitle { font-size: .95rem; }
  .nl-hero-badge  { font-size: .75rem; }
  .nl-container   { padding: 0 18px; }
  .nl-pv          { min-height: 180px; }
  .nl-pv-icon     { max-width: 75%; }
  .nl-pv-tag      { font-size: .65rem; padding: 3px 10px; }
  .nl-product-body { padding: 16px 16px 14px; }
  .nl-product-name { font-size: .95rem; }
  .nl-product-price { font-size: 1.05rem; }
  .nl-product-order-btn { font-size: .78rem; padding: 8px 14px; }
  .nl-marquee-track { gap: 48px; }
  .nl-cat-card    { min-height: 260px; }
  .nl-section-header { margin-bottom: 44px; }
  .nl-section-title  { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .nl-stat-number { font-size: 2.4rem; }
  .nl-why-card    { padding: 28px 22px; }
  .nl-project-card { min-height: 240px; }
  .nl-filter-btn  { font-size: .8rem; padding: 8px 16px; }
  .nl-order-box   { padding: 24px 18px; }
  .nl-footer      { padding: 60px 0 0; }
  .nl-footer-inner { gap: 28px; }
  .nl-footer-logo-img { height: 50px; }
  .nl-thankyou-page { padding: 100px 16px 60px; }
  .nl-thankyou-card { padding: 36px 20px; border-radius: 20px; }
  .nl-whatsapp-float { bottom: 20px; left: 20px; width: 52px; height: 52px; }
  .nl-back-to-top    { bottom: 82px; left: 20px; width: 44px; height: 44px; }
  .nl-contact-side  { padding: 36px 22px; }
  .nl-about-visual  { display: none; }
}
@media (max-width: 500px) {
  .nl-products-grid { grid-template-columns: 1fr; }
  .nl-hero-title    { font-size: 2.1rem; }
  .nl-section-title { font-size: 1.65rem; }
  .nl-stat-number   { font-size: 2.6rem; }
  .nl-stats-grid    { grid-template-columns: 1fr; }
  .nl-partners-grid { grid-template-columns: 1fr 1fr; }
  .nl-product-quick-specs { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .nl-hero-title   { font-size: 1.75rem; }
  .nl-products-grid { grid-template-columns: 1fr; }
  .nl-pv           { min-height: 200px; }
  .nl-pv-icon      { max-width: 70%; }
  .nl-container    { padding: 0 14px; }
  .nl-section      { padding: 56px 0; }
  .nl-logo-img     { height: 44px; }
  .nl-nav-inner    { height: 64px; }
}

/* WordPress logo override (custom-logo) */
.nl-logo .custom-logo { height: 64px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 12px rgba(244,196,48,.35)); }
.nl-footer-brand .custom-logo { height: 56px; width: auto; object-fit: contain; }
