:root {
  --brand: #008751; /* Jamaican Emerald Green */
  --brand-deep: #005634;
  --navy: #0d1712; /* Deep Black / Dark Carbon */
  --ink: #0d1712;
  --muted: #4e6355;
  --paper: #ffffff;
  --mist: #f0f7f2;
  --accent: #f59e0b; /* Jamaican Gold / Warm Amber */
  --accent-gold: #fbbf24;
  --line: rgba(13, 23, 18, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Archivo', system-ui, sans-serif;
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.02;
}

p {
  margin: 0;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color .25s;
}

a:hover {
  color: var(--accent);
}

img {
  display: block;
  max-width: 100%;
}

@property --r {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

@property --ca {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes np-iris {
  from { --r: 0%; }
  to { --r: 150%; }
}

@keyframes np-loadfade {
  0%, 55% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes np-markpop {
  0% { opacity: 0; transform: translateY(14px) scale(.96); filter: blur(6px); }
  45% { opacity: 1; transform: none; filter: blur(0); }
  100% { opacity: 0; transform: scale(1.04); filter: blur(2px); }
}

@keyframes np-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes np-floatS {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes np-spin {
  to { transform: rotate(360deg); }
}

@keyframes np-grid {
  to { background-position: 60px 60px; }
}

@keyframes np-sheen {
  0% { transform: translateX(-120%) skewX(-18deg); }
  60%, 100% { transform: translateX(240%) skewX(-18deg); }
}

@keyframes np-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes np-btnbob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes np-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}

@keyframes np-pulse {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(0,0,0,.5), 0 0 0 0 rgba(255,255,255,.5); }
  50% { box-shadow: 0 12px 30px -8px rgba(0,0,0,.5), 0 0 0 14px rgba(255,255,255,0); }
}

@keyframes np-ping {
  from { transform: scale(1); opacity: .9; }
  to { transform: scale(2.8); opacity: 0; }
}

#np-hero-form input::placeholder,
#np-modal input::placeholder,
#np-modal textarea::placeholder {
  color: #8fa4c4;
}

#np-hero-form option,
#np-modal option {
  color: #0a1220;
  background: #fff;
}

@keyframes np-bub {
  0% { opacity: .8; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, calc(-50% - 36px)) scale(.2); }
}

/* ================= Hamburger Menu Styles ================= */
#np-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1005;
}

#np-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), opacity 0.35s ease, background-color 0.35s ease;
  border-radius: 2px;
}

#np-nav.solid #np-hamburger span {
  background-color: #ffffff;
}

#np-nav [data-navlink]:not([data-open-modal]):hover {
  color: var(--accent-gold) !important;
}

#np-hamburger.active span {
  background-color: #fff !important; /* Always white when overlay menu is active */
}

#np-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#np-hamburger.active span:nth-child(2) {
  opacity: 0;
}

#np-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay Menu */
#np-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, rgba(13, 23, 18, 0.98), rgba(8, 16, 11, 0.99));
  backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(.2,.8,.2,1), visibility 0.4s ease;
}

#np-mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

#np-mobile-menu a {
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color 0.25s, transform 0.25s;
}

#np-mobile-menu a:hover {
  color: var(--accent);
  transform: scale(1.05);
}

#np-mobile-menu a.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  background: linear-gradient(180deg, #00965b, #007a3d);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 26px -8px rgba(0, 135, 81, .6);
}

/* ================= Media Queries ================= */
@media (max-width: 1020px) {
  #np-hero-content {
    grid-template-columns: 1fr !important;
    gap: 46px !important;
  }
  #np-hero-form {
    justify-self: stretch !important;
    max-width: 560px !important;
    margin: 0 auto !important;
  }
  #np-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #np-about-grid, #np-why-grid, #np-contact-grid, #np-faq-grid {
    grid-template-columns: 1fr !important;
  }
  #np-why-card {
    position: static !important;
  }
  #np-process {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #np-proc-track {
    display: none !important;
  }
  #np-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #np-gallery [data-col]:nth-child(3) {
    display: none !important;
  }
  #np-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #np-footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 880px) {
  #np-links {
    display: none !important;
  }
  #np-hamburger {
    display: flex;
  }
  #np-toast {
    display: none !important;
  }
  /* Hide the 2 CTA Buttons in Mobile Hero Section */
  #np-hero-cta-buttons {
    display: none !important;
  }
}

@media (max-width: 700px) {
  #np-services-grid, #np-process, #np-gallery {
    grid-template-columns: 1fr !important;
  }
  #np-gallery [data-col]:nth-child(2) {
    display: none !important;
  }
  #np-footer-grid {
    grid-template-columns: 1fr !important;
  }
  #np-topbar {
    display: none !important;
  }
  #np-scrollhint {
    display: none !important;
  }
}

/* ================= Floating Speed Dial FAB ================= */
.np-speed-dial {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1950;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  pointer-events: none;
}

.np-speed-dial-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 12, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: -1;
  pointer-events: none;
}

.np-speed-dial.active .np-speed-dial-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.np-speed-dial-trigger {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00965b 0%, #00683a 100%);
  border: 2px solid rgba(251, 191, 36, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 135, 81, 0.45), 0 4px 12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s;
  outline: none;
  z-index: 2;
}

.np-speed-dial-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 135, 81, 0.6), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.np-speed-dial-trigger:active {
  transform: scale(0.95);
}

.np-speed-dial-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(251, 191, 36, 0.5);
  animation: np-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.np-speed-dial.active .np-speed-dial-pulse {
  display: none;
}

.np-speed-dial-plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.np-speed-dial.active .np-speed-dial-plus-icon {
  transform: rotate(135deg);
}

.np-speed-dial-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-end;
  pointer-events: none;
}

.np-speed-dial-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.65);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s ease, visibility 0.28s;
  pointer-events: none;
}

.np-speed-dial.active .np-speed-dial-actions {
  pointer-events: auto;
}

.np-speed-dial.active .np-speed-dial-item {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.np-speed-dial.active .np-speed-dial-item:nth-child(3) {
  transition-delay: 0.04s;
}
.np-speed-dial.active .np-speed-dial-item:nth-child(2) {
  transition-delay: 0.08s;
}
.np-speed-dial.active .np-speed-dial-item:nth-child(1) {
  transition-delay: 0.12s;
}

.np-speed-dial-label {
  background: rgba(13, 23, 18, 0.95);
  color: #ffffff;
  padding: 7px 13px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.np-speed-dial-item:hover .np-speed-dial-label {
  background: #0d1712;
  color: #fbbf24;
  transform: translateX(-4px);
  border-color: rgba(251, 191, 36, 0.4);
}

.np-speed-dial-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  flex: 0 0 auto;
}

.np-speed-dial-item:hover .np-speed-dial-icon {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.np-icon-phone {
  background: linear-gradient(135deg, #008751, #005634);
  color: #ffffff;
  border: 1.5px solid rgba(251, 191, 36, 0.7);
}

.np-icon-email {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.np-icon-reviews {
  background: linear-gradient(135deg, #11281a, #08120c);
  color: #fbbf24;
  border: 1.5px solid #fbbf24;
}

@media (max-width: 700px) {
  .np-speed-dial {
    bottom: 18px;
    right: 18px;
  }
  .np-speed-dial-trigger {
    width: 52px;
    height: 52px;
  }
  .np-speed-dial-icon {
    width: 44px;
    height: 44px;
  }
  .np-speed-dial-label {
    font-size: 12px;
    padding: 5px 10px;
  }
}

