/**
 * NAKSHA STORE — ARCHITECTURAL DESIGN SYSTEM
 * Brand: Naksha Store (Architecture, Civil Engineering, 3D Elevation & Turnkey Studio)
 * Version: 2.0 (Premium Studio Redesign)
 */

:root {
  /* Brand Tokens (Extracted directly from Naksha Store Logo & Identity) */
  --brand-primary: #df9b35;       /* Warm Architectural Amber Gold from Logo Roof & Store.com */
  --brand-secondary: #c5862b;     /* Deeper Rich Ochre */
  --brand-accent: #e3933e;        /* Vibrant Logo Accent */
  --brand-dark: #0b0c0e;          /* Deep Cinematic Obsidian Charcoal */
  --brand-surface: #14171f;       /* Architectural Model Studio Surface */
  --brand-surface-card: #1b202a;  /* Elevated Card Glass Surface */
  --brand-light: #faf9f6;         /* Pure Warm Alabaster */
  --brand-muted: #8e95a5;         /* Blueprint Specification Gray */
  --brand-blueprint: #1d3354;     /* CAD Cyan/Navy Grid */
  --brand-grid: rgba(223, 155, 53, 0.08);

  /* Architectural Palette Aliases */
  --ns-obsidian: var(--brand-dark);
  --ns-charcoal: #12151b;
  --ns-graphite: #1c1f26;
  --ns-surface-dark: var(--brand-surface);
  --ns-surface-card: var(--brand-surface-card);

  --ns-bg: var(--brand-light);
  --ns-bg-soft: #f3f1ec;
  --ns-bg-white: #ffffff;
  --ns-border: #e6e3dc;
  --ns-border-subtle: #eeece6;
  --ns-border-dark: rgba(255, 255, 255, 0.08);

  --ns-text-dark: #101114;
  --ns-text-muted: #5e636e;
  --ns-text-light: #f7f6f4;
  --ns-text-light-muted: var(--brand-muted);

  /* Architectural Accents */
  --ns-gold: var(--brand-primary);
  --ns-gold-light: #ecc47f;
  --ns-gold-dark: var(--brand-secondary);
  --ns-gold-soft: rgba(223, 155, 53, 0.12);
  --ns-gold-glow: rgba(223, 155, 53, 0.28);

  --ns-blueprint: var(--brand-blueprint);
  --ns-blueprint-light: #e9f0f8;
  --ns-cyan: #0284c7;

  /* Typography */
  --ns-font-display: 'Plus Jakarta Sans', 'Montserrat', -apple-system, sans-serif;
  --ns-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ns-font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Shadows */
  --ns-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --ns-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --ns-shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
  --ns-shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.12);
  --ns-shadow-3d: 0 25px 50px -12px rgba(11, 12, 14, 0.25), 0 0 25px rgba(197, 160, 89, 0.08);

  /* Radii */
  --ns-radius-sm: 8px;
  --ns-radius-md: 14px;
  --ns-radius-lg: 22px;
  --ns-radius-xl: 32px;
  --ns-radius-full: 9999px;

  /* Transitions */
  --ns-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ns-ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   RESET & CORE FOUNDATIONS
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.ns-body {
  margin: 0;
  padding: 0;
  font-family: var(--ns-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ns-text-dark);
  background-color: var(--ns-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Headings */
.ns-body h1, .ns-body h2, .ns-body h3, .ns-body h4, .ns-body h5, .ns-body h6 {
  font-family: var(--ns-font-display);
  font-weight: 700;
  color: var(--ns-text-dark);
  line-height: 1.25;
  margin-top: 0;
  letter-spacing: -0.02em;
}

.ns-body p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.ns-body a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ns-ease-smooth);
}

.ns-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Containers */
.ns-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.ns-container-wide {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.ns-section {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

.ns-section-dark {
  background-color: var(--ns-obsidian);
  color: var(--ns-text-light);
}

.ns-section-dark h1,
.ns-section-dark h2,
.ns-section-dark h3,
.ns-section-dark h4,
.ns-section-dark h5,
.ns-section-dark h6 {
  color: var(--ns-text-light);
}

.ns-section-soft {
  background-color: var(--ns-bg-soft);
}

/* Architectural Kicker & Section Titles */
.ns-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ns-font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ns-gold);
  margin-bottom: 14px;
}

.ns-kicker::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.ns-heading-lg {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
}

.ns-heading-md {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}

.ns-sublead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--ns-text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.ns-section-dark .ns-sublead {
  color: var(--ns-text-light-muted);
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */

.ns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ns-font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--ns-radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ns-ease-out);
  white-space: nowrap;
  user-select: none;
}

.ns-btn-gold {
  background: linear-gradient(135deg, var(--ns-gold-light) 0%, var(--ns-gold) 100%);
  color: #0d0f12 !important;
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.ns-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(197, 160, 89, 0.45);
  filter: brightness(1.06);
}

.ns-btn-dark {
  background-color: var(--ns-obsidian);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ns-btn-dark:hover {
  background-color: var(--ns-charcoal);
  border-color: var(--ns-gold);
  color: var(--ns-gold) !important;
  transform: translateY(-2px);
}

.ns-btn-outline {
  background-color: transparent;
  color: var(--ns-text-dark) !important;
  border: 1px solid var(--ns-border);
}

.ns-btn-outline:hover {
  border-color: var(--ns-gold);
  color: var(--ns-gold) !important;
  transform: translateY(-2px);
}

.ns-section-dark .ns-btn-outline {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.2);
}

.ns-section-dark .ns-btn-outline:hover {
  border-color: var(--ns-gold);
  color: var(--ns-gold) !important;
}

.ns-btn-wa {
  background-color: #25d366;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.ns-btn-wa:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

.ns-btn-sm {
  padding: 10px 20px;
  font-size: 13.5px;
}

.ns-btn-lg {
  padding: 17px 36px;
  font-size: 16px;
}

/* ==========================================================================
   HEADER & LUXURY ARCHITECTURAL NAVBAR
   ========================================================================== */

.ns-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.35s var(--ns-ease-out);
  background: rgba(11, 12, 14, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ns-header.scrolled {
  background: rgba(11, 12, 14, 0.95);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(223, 155, 53, 0.2);
}

.ns-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  transition: height 0.3s var(--ns-ease-out);
}

.ns-header.scrolled .ns-nav-inner {
  height: 68px;
}

.ns-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.25s ease;
}

.ns-brand-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(223, 155, 53, 0.35);
}

.ns-brand-logo img {
  max-height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: max-height 0.3s ease;
  filter: none !important;
}

.ns-header.scrolled .ns-brand-logo {
  padding: 4px 10px;
}

.ns-header.scrolled .ns-brand-logo img {
  max-height: 34px;
}

.ns-desktop-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ns-desktop-menu .ns-nav-link,
.ns-header .ns-nav-link {
  font-family: var(--ns-font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff !important;
  opacity: 0.92;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.ns-desktop-menu .ns-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s var(--ns-ease-out);
}

.ns-desktop-menu .ns-nav-link:hover,
.ns-header .ns-desktop-menu .ns-nav-item.active .ns-nav-link,
.ns-header .ns-nav-item.active .ns-nav-link {
  color: var(--brand-primary) !important;
  opacity: 1;
}

.ns-desktop-menu .ns-nav-link:hover::after,
.ns-header .ns-desktop-menu .ns-nav-item.active .ns-nav-link::after,
.ns-header .ns-nav-item.active .ns-nav-link::after {
  width: 100%;
}

.ns-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile Toggle Hamburger */
.ns-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.ns-mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s var(--ns-ease-out);
}

.ns-mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--ns-gold);
}

.ns-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.ns-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--ns-gold);
}

/* ==========================================================================
   OFF-CANVAS MOBILE DRAWER
   ========================================================================== */

.ns-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 12, 14, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.ns-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ns-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  background: var(--ns-obsidian);
  color: #fff;
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.4s var(--ns-ease-out);
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.4);
}

.ns-drawer-overlay.active .ns-mobile-drawer {
  transform: translateX(0);
}

.ns-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ns-drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

.ns-drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  overflow-y: auto;
}

.ns-drawer-link {
  font-family: var(--ns-font-display);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  padding: 6px 0;
}

.ns-drawer-link:hover,
.ns-drawer-menu li.active .ns-drawer-link {
  color: var(--ns-gold);
}

.ns-drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   01. CINEMATIC 3D ARCHITECTURAL HERO (MASTER DIRECTION)
   ========================================================================== */

.ns-hero-cinematic {
  position: relative;
  min-height: calc(100vh - 82px);
  padding-top: 120px;
  padding-bottom: 40px;
  background: radial-gradient(circle at 72% 42%, #182030 0%, #0b0c0e 68%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* CAD Technical Grid Overlay */
.ns-hero-cad-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(223, 155, 53, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(223, 155, 53, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.25s cubic-bezier(0.1, 0.9, 0.2, 1);
  will-change: transform;
}

/* Coordinate Crosshairs */
.ns-cad-crosshair {
  position: absolute;
  font-family: var(--ns-font-mono);
  font-size: 11px;
  color: rgba(223, 155, 53, 0.35);
  letter-spacing: 1px;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

/* Hero Content (Left) */
.ns-hero-content-col {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ns-hero-kicker-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ns-font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ns-hero-kicker-bar::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand-primary);
}

.ns-hero-cinematic-h1 {
  font-family: var(--ns-font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 22px;
}

.ns-hero-cinematic-h1 .ns-hero-highlight {
  color: var(--brand-primary);
  background: linear-gradient(135deg, #f7d292 0%, var(--brand-primary) 65%, var(--brand-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ns-hero-cinematic-lead {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 34px;
}

.ns-hero-cinematic-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.ns-hero-cinematic .ns-btn-outline {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ns-hero-cinematic .ns-btn-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary) !important;
  background: rgba(223, 155, 53, 0.12);
  transform: translateY(-2px);
}


.ns-hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ns-font-mono);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 6px 14px;
}

.ns-hero-status-pill .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseBeacon 2s infinite;
}

@keyframes pulseBeacon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* 3D Building Viewport & Perspective Stage */
.ns-hero-3d-stage {
  position: relative;
  perspective: 1600px;
  transform-style: preserve-3d;
  width: 100%;
  z-index: 4;
}

.ns-hero-building-wrapper {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.1, 0.9, 0.2, 1);
  will-change: transform;
}

.ns-hero-building-art {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.65), 0 0 50px rgba(223, 155, 53, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d1017;
}

.ns-hero-building-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Architectural Hotspots */
.ns-hotspots-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  transition: transform 0.25s cubic-bezier(0.1, 0.9, 0.2, 1);
  will-change: transform;
}

.ns-hotspot {
  position: absolute;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.25s var(--ns-ease-out);
  text-decoration: none !important;
}

.ns-hotspot:hover {
  transform: scale(1.06);
  z-index: 25;
}

.ns-hotspot-badge {
  background: rgba(11, 13, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(223, 155, 53, 0.4);
  border-radius: 10px;
  padding: 7px 13px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ns-hotspot:hover .ns-hotspot-badge {
  border-color: var(--brand-primary);
  box-shadow: 0 8px 28px rgba(223, 155, 53, 0.35);
}

.ns-hotspot-title {
  font-family: var(--ns-font-mono);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.ns-hotspot-sub {
  font-family: var(--ns-font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.ns-beacon {
  position: relative;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ns-beacon-core {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 10px var(--brand-primary);
}

.ns-beacon-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-primary);
  opacity: 0.8;
  animation: beaconWave 2.2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes beaconWave {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Positions of the 6 Architectural Hotspots (Desktop) */
.ns-hs-architecture { top: 12%; left: -2%; }
.ns-hs-structure    { top: 44%; left: -8%; }
.ns-hs-execution    { bottom: 8%; left: 8%; }
.ns-hs-visualization{ top: 8%; right: 2%; }
.ns-hs-interior     { top: 48%; right: 10%; }
.ns-hs-epd          { bottom: 12%; right: -2%; }

/* Hero Bottom Stats Grounding Bar */
.ns-hero-bottom-stats {
  position: relative;
  z-index: 5;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ns-hero-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.ns-hero-stat-box {
  display: flex;
  flex-direction: column;
}

.ns-hero-stat-number {
  font-family: var(--ns-font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.ns-hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Responsive Rules for Hero */
@media (max-width: 1199px) {
  .ns-hs-structure { left: 0; }
  .ns-hs-epd { right: 0; }
}

@media (max-width: 991px) {
  .ns-hero-cinematic {
    padding-top: 110px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .ns-hero-content-col {
    margin-bottom: 40px;
  }
  .ns-hotspots-layer {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
    pointer-events: auto;
  }
  .ns-hotspot {
    position: static;
    transform: none !important;
  }
  .ns-hotspot-sub {
    white-space: normal;
  }
  .ns-hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .ns-hotspots-layer {
    grid-template-columns: 1fr;
  }
  .ns-hero-stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Previous Hero Components Preserved */
.ns-hero-section {
  position: relative;
  padding-top: 130px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--ns-bg) 100%);
}

/* Blueprint Grid Lines (Subtle Depth) */
.ns-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.ns-hero-content {
  position: relative;
  z-index: 3;
}

.ns-hero-h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.ns-hero-h1 span.ns-text-gold {
  color: var(--ns-gold);
  background: linear-gradient(135deg, var(--ns-gold-dark) 0%, var(--ns-gold) 60%, var(--ns-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ns-hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ns-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 35px;
}

.ns-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* Trust Indicators */
.ns-trust-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--ns-border-subtle);
}

.ns-trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ns-text-muted);
}

.ns-trust-pill i {
  color: var(--ns-gold);
  font-size: 18px;
}

/* 3D Depth Viewport Container */
.ns-3d-viewport {
  position: relative;
  perspective: 1400px;
  transform-style: preserve-3d;
  width: 100%;
}

.ns-3d-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--ns-radius-xl);
  overflow: hidden;
  box-shadow: var(--ns-shadow-3d);
  transition: transform 0.2s cubic-bezier(0.1, 0.9, 0.2, 1);
  will-change: transform;
}

/* Before / After Slider Component */
.ns-split-slider {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
  overflow: hidden;
  --split-pos: 50%;
}

.ns-split-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ns-split-before {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--split-pos)) 0 0);
  will-change: clip-path;
}

.ns-split-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split-pos);
  width: 3px;
  background: var(--ns-gold);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.7);
}

.ns-split-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--ns-gold);
  color: #0b0c0e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ns-split-badge {
  position: absolute;
  bottom: 20px;
  padding: 6px 14px;
  background: rgba(11, 12, 14, 0.75);
  color: #fff;
  border-radius: var(--ns-radius-full);
  font-family: var(--ns-font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
  z-index: 5;
}

.ns-split-badge-before {
  left: 20px;
}

.ns-split-badge-after {
  right: 20px;
}

/* Floating Architectural Tag */
.ns-hero-floating-card {
  position: absolute;
  bottom: -25px;
  left: -20px;
  background: #ffffff;
  padding: 16px 22px;
  border-radius: var(--ns-radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--ns-border-subtle);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ns-hero-floating-card .ns-float-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--ns-gold-soft);
  color: var(--ns-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ==========================================================================
   METRIC / PROOF STRIP
   ========================================================================== */

.ns-stats-bar {
  background: var(--ns-obsidian);
  color: #fff;
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ns-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.ns-stat-item {
  position: relative;
}

.ns-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.ns-stat-val {
  font-family: var(--ns-font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--ns-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.ns-stat-lbl {
  font-size: 14px;
  color: var(--ns-text-light-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   SERVICES GRID (ARCHITECTURAL CARDS)
   ========================================================================== */

.ns-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.ns-service-card {
  background: var(--ns-bg-white);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--ns-shadow-sm);
  transition: all 0.4s var(--ns-ease-out);
  position: relative;
  height: 100%;
}

.ns-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--ns-gold);
  box-shadow: var(--ns-shadow-lg);
}

.ns-service-media {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: var(--ns-bg-soft);
}

.ns-service-media img,
.ns-service-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ns-service-card:hover .ns-service-media img,
.ns-service-card:hover .ns-service-media video {
  transform: scale(1.06);
}

.ns-service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 12, 14, 0.8);
  color: var(--ns-gold);
  font-family: var(--ns-font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--ns-radius-sm);
  backdrop-filter: blur(6px);
  letter-spacing: 0.05em;
}

.ns-service-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ns-service-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ns-text-dark);
}

.ns-service-desc {
  font-size: 14.5px;
  color: var(--ns-text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}

.ns-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ns-gold-dark);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.ns-service-link i {
  transition: transform 0.25s ease;
}

.ns-service-card:hover .ns-service-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   COORDINATED DRAWING / BLUEPRINT STACK COMPONENT
   ========================================================================== */

.ns-stack-section {
  background: var(--ns-obsidian);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ns-stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ns-stack-visual {
  position: relative;
  perspective: 1200px;
  padding: 40px 20px;
}

.ns-stack-layers {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 420px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transform: rotateX(55deg) rotateZ(-35deg);
}

.ns-stack-layer {
  position: absolute;
  inset: 0;
  border-radius: var(--ns-radius-md);
  border: 1px solid rgba(197, 160, 89, 0.4);
  background: rgba(26, 33, 48, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.5s var(--ns-ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.ns-stack-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(197, 160, 89, 0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(197, 160, 89, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

.ns-layer-1 { transform: translateZ(0px); z-index: 1; }
.ns-layer-2 { transform: translateZ(60px); z-index: 2; }
.ns-layer-3 { transform: translateZ(120px); z-index: 3; }
.ns-layer-4 { transform: translateZ(180px); z-index: 4; }
.ns-layer-5 { transform: translateZ(240px); z-index: 5; }

.ns-stack-layer:hover,
.ns-stack-layer.active {
  border-color: var(--ns-gold);
  box-shadow: 0 0 35px rgba(197, 160, 89, 0.35);
  transform: translateZ(calc(var(--layer-z, 100px) + 30px));
}

.ns-layer-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.ns-layer-tag {
  font-family: var(--ns-font-mono);
  font-size: 12px;
  color: var(--ns-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ns-layer-title {
  font-family: var(--ns-font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

.ns-stack-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ns-stack-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--ns-radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
}

.ns-stack-feat-item:hover {
  background: rgba(197, 160, 89, 0.06);
  border-color: rgba(197, 160, 89, 0.3);
}

.ns-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ns-gold-soft);
  color: var(--ns-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   PORTFOLIO & PROJECT SHOWCASE
   ========================================================================== */

.ns-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 45px;
}

.ns-filter-btn {
  font-family: var(--ns-font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--ns-radius-full);
  border: 1px solid var(--ns-border);
  background: var(--ns-bg-white);
  color: var(--ns-text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.ns-filter-btn:hover,
.ns-filter-btn.active {
  background: var(--ns-obsidian);
  color: #fff;
  border-color: var(--ns-obsidian);
}

.ns-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.ns-project-card {
  background: var(--ns-bg-white);
  border-radius: var(--ns-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ns-border);
  box-shadow: var(--ns-shadow-sm);
  transition: all 0.4s var(--ns-ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}

.ns-project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ns-shadow-lg);
  border-color: rgba(197, 160, 89, 0.4);
}

.ns-project-thumb {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  background: var(--ns-bg-soft);
}

.ns-project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ns-project-card:hover .ns-project-thumb img {
  transform: scale(1.08);
}

.ns-project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 14, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease;
}

.ns-project-card:hover .ns-project-overlay {
  opacity: 1;
}

.ns-view-btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ns-gold);
  color: #0b0c0e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.ns-project-card:hover .ns-view-btn-icon {
  transform: scale(1);
}

.ns-project-info {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}

.ns-project-cat {
  font-family: var(--ns-font-mono);
  font-size: 12px;
  color: var(--ns-gold-dark);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ns-project-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ns-text-dark);
}

.ns-project-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--ns-border-subtle);
  font-size: 13px;
  color: var(--ns-text-muted);
}

.ns-project-spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   WORK PROCESS (ARCHITECTURAL TIMELINE)
   ========================================================================== */

.ns-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.ns-process-card {
  background: var(--ns-bg-white);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.ns-process-card:hover {
  transform: translateY(-6px);
  border-color: var(--ns-gold);
  box-shadow: var(--ns-shadow-md);
}

.ns-process-num {
  font-family: var(--ns-font-mono);
  font-size: 32px;
  font-weight: 800;
  color: var(--ns-gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.ns-process-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--ns-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ns-process-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ns-process-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ns-process-card p {
  font-size: 14px;
  color: var(--ns-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.ns-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.ns-testi-card {
  background: var(--ns-bg-white);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  padding: 35px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--ns-shadow-xs);
  transition: all 0.35s ease;
  position: relative;
}

.ns-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ns-shadow-md);
  border-color: var(--ns-gold);
}

.ns-testi-stars {
  color: var(--ns-gold);
  font-size: 15px;
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
}

.ns-testi-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ns-text-dark);
  font-style: italic;
  margin-bottom: 25px;
}

.ns-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--ns-border-subtle);
}

.ns-testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ns-gold);
}

.ns-testi-meta h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px 0;
}

.ns-testi-meta span {
  font-size: 13px;
  color: var(--ns-text-muted);
}

/* ==========================================================================
   HOUSE PLANS CARDS
   ========================================================================== */

.ns-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.ns-plan-card {
  background: var(--ns-bg-white);
  border-radius: var(--ns-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ns-border);
  box-shadow: var(--ns-shadow-xs);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.ns-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ns-shadow-md);
  border-color: var(--ns-gold);
}

.ns-plan-thumb {
  height: 230px;
  width: 100%;
  background: var(--ns-bg-soft);
  position: relative;
  overflow: hidden;
}

.ns-plan-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ns-plan-card:hover .ns-plan-thumb img {
  transform: scale(1.05);
}

.ns-plan-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ns-plan-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ns-plan-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.ns-plan-badge {
  font-size: 12px;
  background: var(--ns-bg-soft);
  padding: 4px 10px;
  border-radius: var(--ns-radius-full);
  color: var(--ns-text-muted);
}

.ns-plan-price {
  font-family: var(--ns-font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ns-gold-dark);
  margin-bottom: 16px;
}

/* ==========================================================================
   TOPIC CLUSTER & SEO MODULE
   ========================================================================== */

.ns-seo-cluster {
  background: var(--ns-bg-soft);
  border-radius: var(--ns-radius-xl);
  padding: 50px 40px;
  border: 1px solid var(--ns-border);
}

.ns-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.ns-seo-block h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ns-text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ns-seo-block h4 i {
  color: var(--ns-gold);
}

.ns-seo-block p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ns-text-muted);
  margin: 0;
}

/* ==========================================================================
   HIGH-CONVERSION QUOTE MODAL
   ========================================================================== */

.ns-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 12, 14, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.ns-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ns-modal-dialog {
  background: #ffffff;
  width: 100%;
  max-width: 620px;
  border-radius: var(--ns-radius-xl);
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: all 0.35s var(--ns-ease-out);
  max-height: 92vh;
  overflow-y: auto;
}

.ns-modal-overlay.active .ns-modal-dialog {
  transform: scale(1) translateY(0);
}

.ns-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ns-bg-soft);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ns-text-muted);
  transition: all 0.2s ease;
}

.ns-modal-close:hover {
  background: var(--ns-obsidian);
  color: #fff;
}

.ns-form-group {
  margin-bottom: 18px;
}

.ns-form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ns-text-dark);
  margin-bottom: 6px;
}

.ns-form-input,
.ns-form-select,
.ns-form-textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--ns-radius-md);
  border: 1px solid var(--ns-border);
  background: var(--ns-bg-white);
  font-family: inherit;
  font-size: 15px;
  color: var(--ns-text-dark);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ns-form-input:focus,
.ns-form-select:focus,
.ns-form-textarea:focus {
  outline: none;
  border-color: var(--ns-gold);
  box-shadow: 0 0 0 3px var(--ns-gold-soft);
}

/* ==========================================================================
   FIXED CONVERSION / WHATSAPP ACTIONS DOCK
   ========================================================================== */

.ns-floating-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.ns-dock-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s var(--ns-ease-out);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.ns-dock-btn:hover {
  transform: scale(1.1);
}

.ns-dock-wa {
  background-color: #25d366;
}

.ns-dock-call {
  background-color: var(--ns-obsidian);
}

.ns-dock-quote {
  background: linear-gradient(135deg, var(--ns-gold-light), var(--ns-gold));
  color: #0b0c0e;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.ns-footer {
  background: var(--ns-obsidian);
  color: var(--ns-text-light);
  padding-top: 80px;
  padding-bottom: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ns-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 45px;
  margin-bottom: 60px;
}

.ns-footer-brand p {
  color: var(--ns-text-light-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.ns-footer-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ns-gold);
  margin-bottom: 22px;
}

.ns-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ns-footer-link {
  color: var(--ns-text-light-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.ns-footer-link:hover {
  color: var(--ns-gold);
}

.ns-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ns-text-light-muted);
  margin-bottom: 14px;
}

.ns-footer-contact-item i {
  color: var(--ns-gold);
  font-size: 16px;
  margin-top: 3px;
}

.ns-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: var(--ns-text-light-muted);
}

.ns-footer-socials {
  display: flex;
  gap: 12px;
}

.ns-footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s ease;
}

.ns-footer-social:hover {
  background: var(--ns-gold);
  color: #0b0c0e;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .ns-desktop-menu {
    display: none;
  }
  .ns-mobile-toggle {
    display: flex;
  }
  .ns-stack-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ns-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .ns-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .ns-stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .ns-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .ns-hero-section {
    padding-top: 105px;
    padding-bottom: 50px;
  }
  .ns-hero-floating-card {
    display: none;
  }
  .ns-footer-grid {
    grid-template-columns: 1fr;
  }
  .ns-floating-dock {
    bottom: 18px;
    right: 18px;
  }
  .ns-modal-dialog {
    padding: 26px 20px;
  }
}

@media (max-width: 480px) {
  .ns-hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .ns-hero-cta-group .ns-btn {
    width: 100%;
  }
  .ns-stats-grid {
    grid-template-columns: 1fr;
  }
  .ns-stat-item::after {
    display: none !important;
  }
}

/* Pricing, FAQ & Calculator Enhancements */
.ns-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.ns-faq-card:hover {
  border-color: rgba(197, 160, 89, 0.4) !important;
}

.ns-faq-toggle:hover .ns-faq-icon {
  background: rgba(197, 160, 89, 0.12) !important;
  color: var(--ns-gold) !important;
  border-color: var(--ns-gold) !important;
}

.preset-chip:hover {
  border-color: var(--ns-gold) !important;
  color: var(--ns-gold) !important;
}

/* ==========================================================================
   ACCESSIBILITY & PREFERS-REDUCED-MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ns-3d-scene,
  .ns-stack-layers {
    transform: none !important;
  }
}

/* ==========================================================================
   ACCESSIBILITY & SEO ANCHOR HELPERS
   ========================================================================== */
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
