/*
Theme Name: נקי פרו | Naki Pro
Theme URI: https://nakipro.co.il
Author: Naki Pro Jerusalem
Description: תמה פרימיום RTL – עיצוב זהה לאתר המקורי Base44. Cyan/teal palette, LocalBusiness SEO, WhatsApp float.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: naki-pro
Tags: rtl-language, hebrew, right-to-left, cleaning, services, local-business
*/

/* ============================================================
   DESIGN TOKENS – exact match to original site
   ============================================================ */
:root {
  /* Cyan/Sky palette – matches original Base44 site */
  --np-cyan-50:   #ecfeff;
  --np-cyan-100:  #cffafe;
  --np-cyan-200:  #a5f3fc;
  --np-cyan-400:  #22d3ee;
  --np-cyan-500:  #06b6d4;
  --np-cyan-600:  #0891b2;
  --np-cyan-700:  #0e7490;
  --np-cyan-800:  #155e75;
  --np-cyan-900:  #164e63;
  --np-sky-400:   #38bdf8;
  --np-sky-500:   #0ea5e9;
  --np-sky-600:   #0284c7;
  --np-sky-700:   #0369a1;

  /* Neutrals */
  --np-slate-50:  #f8fafc;
  --np-slate-100: #f1f5f9;
  --np-slate-200: #e2e8f0;
  --np-slate-300: #cbd5e1;
  --np-slate-400: #94a3b8;
  --np-slate-500: #64748b;
  --np-slate-600: #475569;
  --np-slate-700: #334155;
  --np-slate-800: #1e293b;
  --np-slate-900: #0f172a;

  /* Semantic */
  --np-primary:        var(--np-cyan-600);
  --np-primary-dark:   var(--np-cyan-700);
  --np-primary-light:  var(--np-cyan-500);
  --np-secondary:      var(--np-sky-600);
  --np-green:          #22c55e;
  --np-amber:          #f59e0b;
  --np-white:          #ffffff;
  --np-whatsapp:       #22c55e;
  --np-whatsapp-dark:  #16a34a;

  /* Gradients */
  --np-grad-primary: linear-gradient(to right, var(--np-cyan-500), var(--np-sky-600));
  --np-grad-hover:   linear-gradient(to right, var(--np-cyan-600), var(--np-sky-700));
  --np-grad-bg:      linear-gradient(135deg, rgba(236,254,255,.5) 0%, #fff 50%, rgba(240,249,255,.5) 100%);

  /* Typography */
  --np-font: 'Heebo', 'Assistant', Arial, sans-serif;

  /* Radii */
  --np-r-sm: 8px;
  --np-r:    12px;
  --np-r-lg: 16px;
  --np-r-xl: 24px;
  --np-r-2xl:32px;

  /* Shadows */
  --np-shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --np-shadow:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --np-shadow-lg: 0 10px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --np-shadow-xl: 0 20px 60px rgba(0,0,0,.12);
  --np-shadow-cyan: 0 8px 20px rgba(6,182,212,.25);

  --np-transition: .3s cubic-bezier(.4,0,.2,1);
  --np-max-w: 1200px;
}

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

html {
  direction: rtl;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--np-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--np-slate-700);
  background: #fff;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}
img  { max-width:100%; height:auto; display:block; }
a    { color:inherit; text-decoration:none; transition:color var(--np-transition); }
ul   { list-style:none; }
h1,h2,h3,h4,h5,h6 { font-family:var(--np-font); font-weight:700; line-height:1.25; color:var(--np-slate-800); }
p    { margin-bottom:1rem; }
p:last-child { margin-bottom:0; }
button,input,textarea,select { font-family:inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.np-container {
  width:100%;
  max-width:var(--np-max-w);
  margin-inline:auto;
  padding-inline:24px;
}
@media(min-width:1024px){ .np-container { padding-inline:48px; } }

.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.np-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--np-font);
  font-weight:600;
  border:none;
  cursor:pointer;
  transition:all var(--np-transition);
  white-space:nowrap;
  text-decoration:none;
  border-radius:var(--np-r-lg);
}
.np-btn-primary {
  background:var(--np-grad-primary);
  color:#fff;
  padding:12px 28px;
  font-size:1rem;
  box-shadow:var(--np-shadow-cyan);
}
.np-btn-primary:hover {
  background:var(--np-grad-hover);
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(6,182,212,.35);
  color:#fff;
}
.np-btn-outline {
  background:transparent;
  color:var(--np-cyan-700);
  padding:12px 28px;
  font-size:1rem;
  border:2px solid var(--np-cyan-300, #67e8f9);
}
.np-btn-outline:hover {
  background:var(--np-cyan-50);
  border-color:var(--np-cyan-400);
  transform:translateY(-2px);
}
.np-btn-lg { padding:14px 36px; font-size:1.05rem; border-radius:var(--np-r-xl); }
.np-btn-whatsapp {
  background:linear-gradient(135deg,var(--np-whatsapp),var(--np-whatsapp-dark));
  color:#fff;
  padding:14px 28px;
  font-size:1rem;
  border-radius:var(--np-r-lg);
  box-shadow:0 4px 16px rgba(34,197,94,.35);
}
.np-btn-whatsapp:hover {
  background:linear-gradient(135deg,#16a34a,#15803d);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(34,197,94,.45);
  color:#fff;
}
.np-btn svg { width:18px;height:18px;flex-shrink:0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.np-navbar {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--np-slate-100);
  box-shadow:0 1px 8px rgba(0,0,0,.06);
}
.np-navbar-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
  gap:24px;
}
.np-logo {
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  flex-shrink:0;
}
.np-logo img {
  height:48px;
  width:auto;
  object-fit:contain;
}
.np-logo-fallback {
  height:48px;
  width:48px;
  background:var(--np-grad-primary);
  border-radius:var(--np-r);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.4rem;
  font-weight:900;
}
.np-logo-name {
  font-size:1.3rem;
  font-weight:800;
  background:var(--np-grad-primary);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.np-nav-links {
  display:flex;
  align-items:center;
  gap:4px;
}
.np-nav-link {
  padding:8px 16px;
  font-size:.92rem;
  font-weight:600;
  color:var(--np-slate-600);
  border-radius:var(--np-r);
  transition:all var(--np-transition);
}
.np-nav-link:hover, .np-nav-link.active {
  color:var(--np-cyan-600);
  background:var(--np-cyan-50);
}
.np-navbar-cta {
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
/* Mobile toggle */
.np-mobile-toggle {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}
.np-mobile-toggle span {
  display:block;
  width:22px;
  height:2px;
  background:var(--np-slate-700);
  border-radius:2px;
  transition:all var(--np-transition);
}
.np-mobile-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.np-mobile-toggle.active span:nth-child(2) { opacity:0; }
.np-mobile-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.np-mobile-overlay {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.5);
  z-index:998;
  backdrop-filter:blur(4px);
}
.np-mobile-overlay.active { display:block; }
.np-mobile-menu {
  position:fixed;
  top:0;
  right:0;
  height:100%;
  width:min(360px,90vw);
  background:#fff;
  z-index:999;
  transform:translateX(100%);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y:auto;
  box-shadow:var(--np-shadow-xl);
}
.np-mobile-menu.active { transform:translateX(0); }
.np-mobile-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 24px;
  border-bottom:1px solid var(--np-slate-100);
}
.np-mobile-close {
  width:36px;height:36px;
  border-radius:var(--np-r-sm);
  background:var(--np-slate-100);
  border:none;
  cursor:pointer;
  font-size:1.2rem;
  display:flex;align-items:center;justify-content:center;
}
.np-mobile-nav { padding:12px 0; }
.np-mobile-nav-link {
  display:block;
  padding:14px 24px;
  font-size:1rem;
  font-weight:600;
  color:var(--np-slate-700);
  border-bottom:1px solid var(--np-slate-50);
  transition:all var(--np-transition);
}
.np-mobile-nav-link:hover { background:var(--np-cyan-50); color:var(--np-cyan-700); padding-right:32px; }
.np-mobile-footer {
  padding:20px 24px;
  border-top:1px solid var(--np-slate-100);
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* ============================================================
   HERO
   ============================================================ */
.np-hero {
  padding:80px 0 96px;
  background:#fff;
  position:relative;
  overflow:hidden;
}
.np-hero-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.np-hero-content { order:2; }
.np-hero-image-wrap { order:1; position:relative; }
.np-hero-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--np-cyan-50);
  color:var(--np-cyan-700);
  font-size:.82rem;
  font-weight:700;
  padding:6px 14px;
  border-radius:100px;
  border:1px solid var(--np-cyan-200);
  margin-bottom:20px;
}
.np-hero-badge-dot {
  width:6px;height:6px;
  border-radius:50%;
  background:var(--np-cyan-500);
  animation:npPulse 2s ease-in-out infinite;
}
@keyframes npPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}
.np-hero-title {
  font-size:clamp(2.8rem,5vw,3.8rem);
  font-weight:800;
  line-height:1.1;
  color:var(--np-slate-800);
  margin-bottom:20px;
}
.np-hero-title-grad {
  display:block;
  background:var(--np-grad-primary);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.np-hero-desc {
  font-size:1.05rem;
  line-height:1.8;
  color:var(--np-slate-500);
  margin-bottom:36px;
  max-width:520px;
}
.np-hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:48px;
}
.np-hero-stats {
  display:flex;
  gap:40px;
}
.np-hero-stat-num {
  font-size:2rem;
  font-weight:800;
  color:var(--np-cyan-600);
  display:block;
  line-height:1;
}
.np-hero-stat-label {
  font-size:.8rem;
  color:var(--np-slate-400);
  margin-top:2px;
}

/* Hero image */
.np-hero-img-outer {
  position:relative;
}
.np-hero-img-glow {
  position:absolute;
  inset:-16px;
  background:linear-gradient(135deg,var(--np-cyan-200),var(--np-sky-200));
  border-radius:var(--np-r-2xl);
  opacity:.5;
  filter:blur(24px);
  z-index:0;
}
.np-hero-img-frame {
  position:relative;
  z-index:1;
  border-radius:var(--np-r-2xl);
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
  border:4px solid #fff;
}
.np-hero-img-frame img {
  width:100%;
  height:480px;
  object-fit:cover;
  display:block;
}
.np-hero-img-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(14,116,144,.2),transparent);
}
/* Floating card on image */
.np-hero-float-card {
  position:absolute;
  bottom:-20px;
  right:-20px;
  background:#fff;
  border-radius:var(--np-r-lg);
  padding:16px 20px;
  box-shadow:var(--np-shadow-lg);
  display:flex;
  align-items:center;
  gap:12px;
  z-index:2;
}
.np-hero-float-icon {
  width:48px;height:48px;
  border-radius:var(--np-r);
  background:var(--np-grad-primary);
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  font-size:1.4rem;
  flex-shrink:0;
}
.np-hero-float-num { font-size:1.5rem; font-weight:800; color:var(--np-slate-800); line-height:1; }
.np-hero-float-txt { font-size:.78rem; color:var(--np-slate-400); margin-top:2px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.np-section-header { margin-bottom:56px; }
.np-section-header.center { text-align:center; }
.np-section-header.center .np-section-sub { margin-inline:auto; }
.np-section-label {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--np-cyan-50);
  color:var(--np-cyan-700);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:5px 14px;
  border-radius:100px;
  border:1px solid var(--np-cyan-200);
  margin-bottom:14px;
}
.np-section-title {
  font-size:clamp(2rem,3.5vw,2.8rem);
  font-weight:800;
  color:var(--np-slate-800);
  margin-bottom:14px;
  line-height:1.2;
}
.np-section-sub {
  font-size:1.05rem;
  color:var(--np-slate-500);
  max-width:580px;
  line-height:1.75;
}

/* ============================================================
   SERVICES
   ============================================================ */
.np-services {
  padding:96px 0;
  background:#fff;
}
.np-services-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.np-service-card {
  padding:32px;
  border-radius:var(--np-r-xl);
  background:#fff;
  border:1px solid var(--np-slate-100);
  box-shadow:var(--np-shadow-sm);
  transition:all .3s ease;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
}
.np-service-card:hover {
  box-shadow:var(--np-shadow-xl);
  border-color:var(--np-cyan-200);
  transform:translateY(-4px);
  color:inherit;
}
.np-service-icon {
  width:56px;height:56px;
  background:linear-gradient(135deg,var(--np-cyan-400),var(--np-sky-500));
  border-radius:var(--np-r-lg);
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  margin-bottom:20px;
  box-shadow:0 4px 12px rgba(6,182,212,.2);
  transition:transform .3s ease;
}
.np-service-card:hover .np-service-icon { transform:scale(1.1); }
.np-service-icon svg { width:26px;height:26px; }
.np-service-name {
  font-size:1.15rem;
  font-weight:700;
  color:var(--np-slate-800);
  margin-bottom:10px;
  transition:color .3s;
}
.np-service-card:hover .np-service-name { color:var(--np-cyan-600); }
.np-service-desc {
  font-size:.9rem;
  color:var(--np-slate-500);
  line-height:1.7;
  flex:1;
  margin-bottom:20px;
}
.np-service-more {
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.88rem;
  font-weight:700;
  color:var(--np-cyan-600);
  margin-top:auto;
  transition:gap .3s;
}
.np-service-card:hover .np-service-more { gap:10px; }
.np-service-more svg { width:14px;height:14px; }

/* ============================================================
   ABOUT / WHY US
   ============================================================ */
.np-about {
  padding:96px 0;
  background:var(--np-grad-bg);
  position:relative;
  overflow:hidden;
}
.np-about::before,
.np-about::after {
  content:'';
  position:absolute;
  width:384px;height:384px;
  border-radius:50%;
  filter:blur(80px);
  pointer-events:none;
}
.np-about::before { top:-50px; left:-50px; background:rgba(165,243,252,.4); }
.np-about::after  { bottom:-50px;right:-50px; background:rgba(186,230,253,.4); }
.np-about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
  position:relative;
  z-index:1;
}
.np-about-content { order:2; }
.np-about-image   { order:1; }
.np-about-features {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:36px;
}
.np-feature-card {
  padding:20px;
  border-radius:var(--np-r-lg);
  background:#fff;
  border:1px solid var(--np-slate-100);
  box-shadow:var(--np-shadow-sm);
  transition:all .3s;
}
.np-feature-card:hover { box-shadow:var(--np-shadow); border-color:var(--np-cyan-200); }
.np-feature-icon-wrap {
  width:44px;height:44px;
  background:linear-gradient(135deg,var(--np-cyan-400),var(--np-sky-500));
  border-radius:var(--np-r);
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  margin-bottom:12px;
  box-shadow:0 4px 10px rgba(6,182,212,.2);
  flex-shrink:0;
}
.np-feature-icon-wrap svg { width:20px;height:20px; }
.np-feature-title { font-size:.95rem; font-weight:700; color:var(--np-slate-800); margin-bottom:6px; }
.np-feature-desc  { font-size:.84rem; color:var(--np-slate-500); line-height:1.65; margin:0; }

/* About image side */
.np-about-img-wrap { position:relative; }
.np-about-img-glow {
  position:absolute;
  inset:-16px;
  background:linear-gradient(135deg,var(--np-cyan-200),var(--np-sky-200));
  border-radius:var(--np-r-2xl);
  opacity:.5;
  filter:blur(24px);
}
.np-about-img-frame {
  position:relative;
  z-index:1;
  border-radius:var(--np-r-2xl);
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  border:4px solid #fff;
}
.np-about-img-frame img {
  width:100%;
  height:440px;
  object-fit:cover;
  display:block;
}
.np-about-badge {
  position:absolute;
  bottom:-16px;
  right:-16px;
  background:#fff;
  border-radius:var(--np-r-lg);
  padding:14px 18px;
  box-shadow:var(--np-shadow-lg);
  display:flex;
  align-items:center;
  gap:10px;
  z-index:2;
}
.np-about-badge-icon { font-size:1.8rem; }
.np-about-badge-num  { font-size:1.4rem; font-weight:900; color:var(--np-cyan-600); line-height:1; }
.np-about-badge-txt  { font-size:.75rem; color:var(--np-slate-400); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.np-testimonials {
  padding:96px 0;
  background:#fff;
}
.np-testimonials-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.np-testi-card {
  padding:32px;
  background:#fff;
  border-radius:var(--np-r-xl);
  border:1px solid var(--np-slate-100);
  box-shadow:var(--np-shadow-sm);
  transition:all .3s;
  position:relative;
  display:flex;
  flex-direction:column;
}
.np-testi-card:hover { box-shadow:var(--np-shadow-lg); border-color:var(--np-cyan-200); transform:translateY(-3px); }
.np-testi-quote {
  position:absolute;
  top:20px;
  left:20px;
  color:var(--np-cyan-100);
  font-size:4rem;
  line-height:1;
  font-family:Georgia,serif;
  pointer-events:none;
}
.np-testi-stars { display:flex; gap:4px; margin-bottom:16px; }
.np-star { color:var(--np-amber); font-size:1rem; }
.np-testi-text {
  font-size:.98rem;
  color:var(--np-slate-600);
  line-height:1.8;
  flex:1;
  margin-bottom:24px;
  font-style:italic;
  position:relative;
  z-index:1;
}
.np-testi-author {
  display:flex;
  align-items:center;
  gap:12px;
  border-top:1px solid var(--np-slate-100);
  padding-top:20px;
}
.np-testi-avatar {
  width:44px;height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--np-cyan-400),var(--np-sky-500));
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  font-weight:800;
  font-size:1.1rem;
  flex-shrink:0;
  box-shadow:0 2px 8px rgba(6,182,212,.3);
}
.np-testi-name { font-size:.9rem; font-weight:700; color:var(--np-slate-800); }
.np-testi-role { font-size:.78rem; color:var(--np-cyan-600); font-weight:600; }

/* ============================================================
   CONTACT
   ============================================================ */
.np-contact {
  padding:96px 0;
  background:var(--np-grad-bg);
}
.np-contact-grid {
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:64px;
  align-items:start;
}
.np-contact-info-title { font-size:1.8rem; font-weight:800; color:var(--np-slate-800); margin-bottom:8px; }
.np-contact-info-sub   { font-size:.95rem; color:var(--np-slate-500); margin-bottom:28px; line-height:1.7; }
.np-contact-items { display:flex; flex-direction:column; gap:14px; }
.np-contact-item {
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 18px;
  background:#fff;
  border-radius:var(--np-r-lg);
  border:1px solid var(--np-slate-100);
  box-shadow:var(--np-shadow-sm);
  transition:box-shadow .3s;
}
.np-contact-item:hover { box-shadow:var(--np-shadow); }
.np-contact-item-icon {
  width:40px;height:40px;
  background:linear-gradient(135deg,var(--np-cyan-400),var(--np-sky-500));
  border-radius:var(--np-r);
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  flex-shrink:0;
}
.np-contact-item-icon svg { width:18px;height:18px; }
.np-contact-item-label { font-size:.75rem; font-weight:700; color:var(--np-slate-400); text-transform:uppercase; letter-spacing:.05em; }
.np-contact-item-value { font-size:.95rem; font-weight:700; color:var(--np-slate-800); }
.np-contact-item-value a:hover { color:var(--np-cyan-600); }

/* Form */
.np-form-wrap {
  background:#fff;
  border-radius:var(--np-r-2xl);
  padding:40px;
  box-shadow:var(--np-shadow-lg);
  border:1px solid var(--np-slate-100);
}
.np-form-title { font-size:1.5rem; font-weight:800; color:var(--np-slate-800); margin-bottom:6px; }
.np-form-sub   { font-size:.9rem; color:var(--np-slate-500); margin-bottom:28px; }
.np-form-group { margin-bottom:16px; }
.np-form-label {
  display:block;
  font-size:.85rem;
  font-weight:700;
  color:var(--np-slate-700);
  margin-bottom:6px;
}
.np-form-label .req { color:#dc2626; margin-right:2px; }
.np-form-control {
  width:100%;
  padding:11px 14px;
  font-size:.95rem;
  font-family:var(--np-font);
  color:var(--np-slate-800);
  background:var(--np-slate-50);
  border:1.5px solid var(--np-slate-200);
  border-radius:var(--np-r);
  transition:all .25s;
  direction:rtl;
  text-align:right;
}
.np-form-control:focus {
  outline:none;
  border-color:var(--np-cyan-500);
  background:#fff;
  box-shadow:0 0 0 3px rgba(6,182,212,.12);
}
.np-form-control::placeholder { color:var(--np-slate-400); }
textarea.np-form-control { resize:vertical; min-height:110px; }
.np-form-select { appearance:none; -webkit-appearance:none; cursor:pointer; }
.np-form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.np-form-result {
  display:none;
  padding:12px 16px;
  border-radius:var(--np-r);
  margin-bottom:16px;
  font-weight:700;
  font-size:.9rem;
}
.np-form-result.success { background:#dcfce7; color:#166534; border:1px solid #bbf7d0; }
.np-form-result.error   { background:#fee2e2; color:#991b1b; border:1px solid #fca5a5; }

/* ============================================================
   FOOTER
   ============================================================ */
.np-footer {
  background:var(--np-slate-900);
  color:rgba(255,255,255,.75);
  padding:64px 0 0;
}
.np-footer-grid {
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.np-footer-logo img { height:44px; width:auto; margin-bottom:16px; }
.np-footer-about {
  font-size:.88rem;
  line-height:1.8;
  color:rgba(255,255,255,.6);
  margin-bottom:20px;
}
.np-footer-social { display:flex; gap:8px; }
.np-footer-social-a {
  width:36px;height:36px;
  border-radius:var(--np-r-sm);
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.7);
  transition:all .25s;
}
.np-footer-social-a:hover { background:var(--np-cyan-600); color:#fff; }
.np-footer-social-a svg { width:16px;height:16px; }
.np-footer-col-title {
  font-size:.9rem;
  font-weight:800;
  color:#fff;
  margin-bottom:18px;
  padding-bottom:10px;
  border-bottom:2px solid var(--np-cyan-700);
  display:inline-block;
}
.np-footer-links { display:flex; flex-direction:column; gap:10px; }
.np-footer-link {
  font-size:.85rem;
  color:rgba(255,255,255,.6);
  display:flex;
  align-items:center;
  gap:6px;
  transition:all .25s;
}
.np-footer-link::before { content:'›'; color:var(--np-cyan-400); font-weight:700; }
.np-footer-link:hover { color:#fff; padding-right:4px; }
.np-footer-contact-items { display:flex; flex-direction:column; gap:12px; }
.np-footer-contact-item {
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:.84rem;
  color:rgba(255,255,255,.6);
}
.np-footer-contact-item svg { width:14px;height:14px; color:var(--np-cyan-400); flex-shrink:0; margin-top:2px; }
.np-footer-contact-item a:hover { color:#fff; }
.np-footer-bottom {
  padding:20px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  font-size:.82rem;
  color:rgba(255,255,255,.4);
}
.np-footer-bottom a { color:rgba(255,255,255,.4); transition:color .25s; }
.np-footer-bottom a:hover { color:rgba(255,255,255,.8); }
.np-footer-legal { display:flex; gap:20px; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.np-whatsapp-float {
  position:fixed;
  bottom:24px;
  left:24px;
  z-index:9999;
  display:flex;
  align-items:center;
  gap:10px;
}
.np-whatsapp-btn {
  display:flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg,var(--np-whatsapp),var(--np-whatsapp-dark));
  color:#fff;
  padding:14px 20px;
  border-radius:100px;
  box-shadow:0 8px 28px rgba(34,197,94,.4);
  text-decoration:none;
  font-weight:700;
  font-size:.92rem;
  transition:all .3s;
  position:relative;
}
.np-whatsapp-btn:hover {
  transform:scale(1.06) translateY(-2px);
  box-shadow:0 12px 36px rgba(34,197,94,.5);
  color:#fff;
}
.np-whatsapp-btn svg { width:26px;height:26px;flex-shrink:0; }
.np-wa-pulse {
  position:absolute;
  inset:-4px;
  border-radius:100px;
  background:var(--np-whatsapp);
  opacity:0;
  animation:npWaPulse 2.5s ease-out infinite;
  pointer-events:none;
}
@keyframes npWaPulse {
  0%   { opacity:.35; transform:scale(1); }
  100% { opacity:0;   transform:scale(1.25); }
}

/* Back to top */
.np-back-top {
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:9998;
  width:42px;height:42px;
  border-radius:50%;
  background:var(--np-cyan-600);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--np-shadow);
  border:none;
  cursor:pointer;
  opacity:0;
  transform:translateY(12px);
  transition:all .3s;
  text-decoration:none;
}
.np-back-top.visible { opacity:1; transform:translateY(0); }
.np-back-top:hover   { background:var(--np-cyan-700); color:#fff; }
.np-back-top svg     { width:18px;height:18px; }

/* ============================================================
   INTERIOR PAGES
   ============================================================ */
.np-page-hero {
  background:linear-gradient(135deg,var(--np-cyan-700),var(--np-sky-600));
  color:#fff;
  padding:72px 0 52px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.np-page-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle at 1px 1px,rgba(255,255,255,.06) 1px,transparent 0);
  background-size:28px 28px;
}
.np-page-hero > * { position:relative; z-index:1; }
.np-page-hero h1 { font-size:clamp(1.8rem,3.5vw,2.8rem); color:#fff; margin-bottom:10px; }
.np-breadcrumb {
  display:flex;align-items:center;justify-content:center;
  gap:8px;font-size:.85rem;color:rgba(255,255,255,.7);
}
.np-breadcrumb a:hover { color:#fff; }
.np-page-content { padding:72px 0; }
.np-page-content h2 { font-size:1.7rem; color:var(--np-slate-800); margin:32px 0 14px; }
.np-page-content p  { color:var(--np-slate-600); line-height:1.85; }
.np-page-content ul { list-style:disc; padding-right:24px; margin-bottom:18px; }
.np-page-content ul li { color:var(--np-slate-600); margin-bottom:8px; }

/* blog / archive */
.np-blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.np-blog-card {
  background:#fff;
  border:1px solid var(--np-slate-100);
  border-radius:var(--np-r-xl);
  overflow:hidden;
  transition:all .3s;
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
}
.np-blog-card:hover { border-color:var(--np-cyan-200); box-shadow:var(--np-shadow-lg); transform:translateY(-4px); color:inherit; }
.np-blog-card-img {
  aspect-ratio:16/9;
  background:linear-gradient(135deg,var(--np-cyan-500),var(--np-sky-500));
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.3);
  font-size:2.5rem;
  overflow:hidden;
}
.np-blog-card-img img { width:100%;height:100%;object-fit:cover; }
.np-blog-card-body { padding:22px; flex:1; display:flex; flex-direction:column; }
.np-blog-card-cat {
  display:inline-block;
  font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  color:var(--np-cyan-600);background:var(--np-cyan-50);
  padding:3px 10px;border-radius:100px;margin-bottom:10px;
}
.np-blog-card-title { font-size:1rem; font-weight:700; color:var(--np-slate-800); line-height:1.4; margin-bottom:10px; flex:1; }
.np-blog-card:hover .np-blog-card-title { color:var(--np-cyan-600); }
.np-blog-card-meta { font-size:.78rem;color:var(--np-slate-400);font-weight:600;border-top:1px solid var(--np-slate-100);padding-top:14px;margin-top:auto; }

/* ============================================================
   COOKIE / UTILS
   ============================================================ */
.np-cookie {
  position:fixed;bottom:0;right:0;left:0;z-index:9997;
  background:var(--np-slate-900);color:rgba(255,255,255,.85);
  padding:18px 0;
  transform:translateY(100%);
  transition:transform .5s;
  box-shadow:0 -4px 20px rgba(0,0,0,.2);
}
.np-cookie.visible { transform:translateY(0); }
.np-cookie-inner { display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap; }
.np-cookie-text { font-size:.88rem;line-height:1.7;flex:1; }
.np-cookie-text a { color:var(--np-cyan-400); }
.np-cookie-btns { display:flex;gap:10px;flex-shrink:0; }
.np-cookie-btn { padding:9px 22px;border-radius:var(--np-r);font-size:.85rem;font-weight:700;cursor:pointer;border:none;font-family:var(--np-font); }
.np-cookie-accept { background:var(--np-whatsapp);color:#fff; }
.np-cookie-accept:hover { background:#16a34a; }
.np-cookie-decline { background:rgba(255,255,255,.1);color:rgba(255,255,255,.7); }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible { outline:3px solid var(--np-cyan-500); outline-offset:3px; border-radius:4px; }
@media(prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-np-reveal] {
  opacity:0;
  transform:translateY(24px);
  transition:opacity .65s ease, transform .65s ease;
}
[data-np-reveal].revealed { opacity:1; transform:translateY(0); }
[data-np-reveal="left"]  { transform:translateX(-24px); }
[data-np-reveal="left"].revealed  { transform:translateX(0); }
[data-np-reveal="right"] { transform:translateX(24px); }
[data-np-reveal="right"].revealed { transform:translateX(0); }
[data-np-reveal="scale"] { transform:scale(.94); }
[data-np-reveal="scale"].revealed { transform:scale(1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px) {
  .np-hero-grid,
  .np-about-grid,
  .np-contact-grid { grid-template-columns:1fr; gap:48px; }
  .np-hero-content,
  .np-about-content,
  .np-about-image { order:unset !important; }
  .np-services-grid      { grid-template-columns:repeat(2,1fr); }
  .np-testimonials-grid  { grid-template-columns:repeat(2,1fr); }
  .np-footer-grid        { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  .np-nav-links,
  .np-navbar-cta .np-btn-outline { display:none; }
  .np-mobile-toggle { display:flex; }
  .np-services-grid    { grid-template-columns:1fr; }
  .np-testimonials-grid{ grid-template-columns:1fr; }
  .np-about-features   { grid-template-columns:1fr; }
  .np-blog-grid        { grid-template-columns:1fr; }
  .np-footer-grid      { grid-template-columns:1fr; }
  .np-hero-stats       { flex-wrap:wrap; gap:24px; }
  .np-contact-grid     { grid-template-columns:1fr; }
  .np-form-row         { grid-template-columns:1fr; }
  .np-whatsapp-float   { bottom:16px; left:16px; }
  .np-whatsapp-btn span{ display:none; }
  .np-whatsapp-btn     { border-radius:50%; padding:14px; }
  .np-back-top         { right:16px; bottom:16px; }
  .np-hero             { padding:56px 0 64px; }
  .np-hero-float-card  { display:none; }
}
@media(max-width:480px) {
  .np-hero-title { font-size:2.4rem; }
  .np-hero-actions { flex-direction:column; }
  .np-footer-bottom { flex-direction:column; text-align:center; }
  .np-form-wrap { padding:24px; }
}
@media print {
  .np-navbar,.np-whatsapp-float,.np-back-top,.np-cookie { display:none; }
  body { color:#000; font-size:12pt; }
}
