/* ==========================================================================
   PEARL COMPUTERS (PCS) - WORLD-CLASS ULTRA-LUXURY DESIGN SYSTEM 8.0
   Fibonacci Proportion Grid & Strict Two-Tone Obsidian/Copper Palette
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=Noto+Sans+Arabic:wght@400;500;600;700;800;900&family=Noto+Nastaliq+Urdu:wght@400;600;700&family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

:root {
  /* ==========================================================================
     FIBONACCI SPACING & GEOMETRY TOKENS (1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144)
     ========================================================================== */
  --fib-1: 1px;
  --fib-2: 2px;
  --fib-3: 3px;
  --fib-5: 5px;
  --fib-8: 8px;
  --fib-13: 13px;
  --fib-21: 21px;
  --fib-34: 34px;
  --fib-55: 55px;
  --fib-89: 89px;
  --fib-144: 144px;

  /* Fibonacci Border Radii */
  --radius-xs: 5px;
  --radius-sm: 8px;
  --radius-md: 13px;
  --radius-lg: 21px;
  --radius-xl: 34px;
  --radius-full: 9999px;

  /* ==========================================================================
     STRICT TWO-TONE LUXURY PALETTE
     Tone 1: Deep Obsidian / Cyber Navy
     Tone 2: Pearl Copper / Amber Flame
     ========================================================================== */
  /* Tone 1: Obsidian Foundations */
  --bg-deep: #02040A;
  --bg-surface: #060B18;
  --bg-card: rgba(6, 12, 28, 0.78);
  --bg-card-hover: rgba(10, 20, 44, 0.94);
  --bg-glass: rgba(4, 9, 24, 0.90);
  
  /* Tone 2: Pearl Amber-Copper Accents */
  --pcs-copper: #FF8C42;
  --pcs-copper-light: #FFA585;
  --pcs-copper-dark: #E65100;
  --pcs-copper-glow: rgba(255, 140, 66, 0.38);
  --pcs-gold-tint: #FFE0B2;
  --pcs-amethyst: #FF8C42; /* Strict Two-Tone: Harmonized with Copper */
  --pcs-violet: #FFA585;

  /* Glowing Borders */
  --border-subtle: rgba(255, 140, 66, 0.18);
  --border-glow: rgba(255, 140, 66, 0.45);
  --border-highlight: rgba(255, 165, 133, 0.75);

  /* High-Contrast Crisp Typography */
  --text-white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: #E2E8F0;
  --text-muted: #94A3B8;

  /* Status Tokens (Subtle) */
  --pcs-emerald: #10B981;
  --pcs-crimson: #EF4444;

  /* Dynamic Accessibility */
  --font-scale: 1.0;
  --ui-zoom: 1.0;

  /* Fibonacci Sized Shadows */
  --shadow-luxury: 0 var(--fib-21) var(--fib-55) rgba(0, 0, 0, 0.92), 0 0 var(--fib-34) rgba(255, 140, 66, 0.14);
  --shadow-glow-copper: 0 0 var(--fib-21) rgba(255, 140, 66, 0.45);
}

/* Light Mode */
[data-theme="light"] {
  --bg-deep: #060A1A;
  --bg-surface: #0B1228;
  --bg-card: rgba(14, 22, 48, 0.85);
  --bg-card-hover: rgba(20, 32, 68, 0.95);
  --border-subtle: rgba(255, 140, 66, 0.25);
  --border-glow: rgba(255, 140, 66, 0.6);
  --text-white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: #E2E8F0;
}

/* High Contrast Mode */
[data-contrast="high"] {
  --bg-deep: #000000;
  --bg-surface: #000000;
  --bg-card: #050505;
  --bg-card-hover: #101010;
  --border-subtle: #FACC15;
  --border-glow: #00FFFF;
  --text-white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: #FFFFFF;
  --pcs-copper: #FACC15;
  --pcs-amethyst: #00FFFF;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

/* ==========================================================================
   HIGH-TECH ANIMATED PCS LOGO PRELOADER (FIBONACCI & TWO-TONE)
   ========================================================================== */
.app-preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: #02040A;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--fib-21);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s ease;
  pointer-events: all;
}

.app-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-center-box {
  position: relative;
  width: var(--fib-89);
  height: var(--fib-89);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CCTV Optical Reticle */
.preloader-cctv-reticle {
  position: absolute;
  inset: -21px;
  border-radius: 50%;
  border: 1px solid rgba(255, 140, 66, 0.25);
  pointer-events: none;
  animation: rotatePreloaderRing 16s linear infinite;
}

.preloader-cctv-reticle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--pcs-copper) 0%, transparent 25%, transparent 75%, var(--pcs-copper) 100%);
  transform: translateX(-50%);
}

.preloader-cctv-reticle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--pcs-copper) 0%, transparent 25%, transparent 75%, var(--pcs-copper) 100%);
  transform: translateY(-50%);
}

.preloader-holo-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.preloader-holo-ring.outer {
  inset: -13px;
  border: 1.5px dashed rgba(255, 140, 66, 0.5);
  animation: rotatePreloaderRing 8s linear infinite;
  box-shadow: 0 0 21px rgba(255, 140, 66, 0.2);
}

.preloader-holo-ring.inner {
  inset: -5px;
  border: 1.5px solid transparent;
  border-top-color: var(--pcs-copper);
  border-bottom-color: var(--pcs-copper-light);
  animation: rotatePreloaderCounter 3s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.preloader-logo-wrapper {
  position: relative;
  width: var(--fib-55);
  height: var(--fib-55);
  border-radius: 50%;
  background: rgba(6, 12, 28, 0.95);
  border: 1.5px solid var(--border-glow);
  box-shadow: 0 0 34px rgba(255, 140, 66, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: preloaderLogoPulse 2.4s ease-in-out infinite alternate;
}

.preloader-logo-img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 140, 66, 0.8));
  animation: preloaderLogoFloat 3s ease-in-out infinite;
}

.preloader-scanline-laser {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 140, 66, 0.6) 50%, transparent 100%);
  animation: preloaderLaserScan 1.8s ease-in-out infinite;
  pointer-events: none;
}

/* Floating CCTV Widget Icon Satellite Badge */
.preloader-cctv-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #070E24 0%, #15082A 100%);
  border: 1.5px solid var(--pcs-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pcs-copper-light);
  box-shadow: 0 0 15px var(--pcs-copper-glow);
  z-index: 2;
  animation: preloaderBadgeFloat 2.5s ease-in-out infinite;
}

.cctv-badge-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pcs-emerald);
  box-shadow: 0 0 8px var(--pcs-emerald);
  animation: blinkStatus 1.2s infinite;
}

@keyframes preloaderBadgeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2px, -3px) scale(1.08); }
}

@keyframes blinkStatus {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes rotatePreloaderRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotatePreloaderCounter {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes preloaderLogoPulse {
  0% { transform: scale(0.96); box-shadow: 0 0 21px rgba(255, 140, 66, 0.35); }
  100% { transform: scale(1.04); box-shadow: 0 0 40px rgba(255, 140, 66, 0.7); }
}

@keyframes preloaderLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes preloaderLaserScan {
  0% { top: -100%; }
  100% { top: 120%; }
}

.preloader-meta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fib-8);
}

.preloader-brand-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE0B2 50%, #FF8C42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-status-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pcs-copper-light);
  letter-spacing: 0.8px;
}

.preloader-progress-track {
  width: var(--fib-144);
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
  margin-top: 4px;
}

.preloader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pcs-copper), var(--pcs-copper-light));
  box-shadow: 0 0 10px var(--pcs-copper);
  transition: width 0.08s linear;
}

.preloader-percentage {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #94A3B8;
  font-weight: 700;
}

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  scroll-behavior: smooth;
  font-size: calc(15.5px * var(--font-scale));
  zoom: var(--ui-zoom);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Urdu Typography Hierarchy & Zero-Overlap Engine */
html[lang^="ur"],
[dir="rtl"] {
  font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, 'Noto Nastaliq Urdu', sans-serif;
  line-height: 1.85;
}

html[lang^="ur"] h1,
html[lang^="ur"] h2,
html[lang^="ur"] h3,
html[lang^="ur"] h4,
html[lang^="ur"] .hero-title,
html[lang^="ur"] .section-title,
html[lang^="ur"] .brand-title-main,
html[lang^="ur"] .nav-item-link,
html[lang^="ur"] .icon-pill-btn,
html[lang^="ur"] .nav-cta-btn,
html[lang^="ur"] .btn-primary-glow,
html[lang^="ur"] .btn-whatsapp-glow {
  font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
  letter-spacing: 0;
}

html[lang^="ur"] .hero-title {
  font-size: 2.5rem;
  line-height: 1.55;
  margin-bottom: 22px;
  word-break: keep-all;
}

html[lang^="ur"] .section-title {
  font-size: 2.1rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

html[lang^="ur"] .hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.95;
  margin-bottom: 34px;
}

html[lang^="ur"] .brand-text-stack {
  gap: 1px;
}

html[lang^="ur"] .brand-title-main {
  font-size: 1.12rem;
  line-height: 1.35;
}

html[lang^="ur"] .brand-title-sub {
  font-size: 0.65rem;
  line-height: 1.25;
  margin-top: 1px;
}

html[lang^="ur"] .nav-item-link {
  font-size: 0.90rem;
  line-height: 1.3;
}

html[lang^="ur"] .hero-badge-pill {
  line-height: 1.45;
  padding: 6px 18px;
}

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

html {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
  margin: 0;
  padding: 0;
  background-color: var(--bg-deep);
  min-height: 100vh;
  background-image: 
    radial-gradient(at 15% 10%, rgba(255, 140, 66, 0.12) 0px, transparent 45%),
    radial-gradient(at 85% 15%, rgba(124, 58, 237, 0.15) 0px, transparent 45%),
    radial-gradient(at 50% 80%, rgba(0, 102, 204, 0.1) 0px, transparent 50%);
  background-attachment: fixed;
}

.app-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative;
}

/* Ambient Cyber Grid Overlay */
.cyber-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(255, 140, 66, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient Glow Orbs */
.bg-glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(180px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.orb-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.35) 0%, transparent 70%);
  top: -120px;
  right: -120px;
}

.orb-2 {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  bottom: 10%;
  left: -200px;
}

.app-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 var(--fib-21);
}

/* ==========================================================================
   PERFECTLY ALIGNED FLOATING LUXURY NAVBAR (FIBONACCI DESIGNED)
   ========================================================================== */
.floating-nav-wrapper {
  position: sticky;
  top: var(--fib-13);
  z-index: 1000;
  padding: 0 var(--fib-13);
  margin-bottom: var(--fib-21);
  width: 100%;
}

.floating-navbar {
  background: rgba(4, 8, 20, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  min-height: 56px;
  height: 56px;
  padding: 0 var(--fib-13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 var(--fib-13) var(--fib-34) rgba(0, 0, 0, 0.85), 0 0 var(--fib-21) var(--pcs-copper-glow);
  max-width: 1380px;
  margin: 0 auto;
  gap: var(--fib-8);
  box-sizing: border-box;
}

[dir="rtl"] .floating-navbar {
  flex-direction: row;
}

/* Brand Area */
.nav-brand-area {
  display: inline-flex;
  align-items: center;
  gap: var(--fib-8);
  text-decoration: none;
  flex-shrink: 0;
  height: 100%;
}

.brand-emblem-box {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-emblem-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 140, 66, 0.7));
}

.brand-text-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title-main {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.15;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE0B2 45%, #FF8C42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.brand-title-sub {
  font-size: 0.6rem;
  color: var(--pcs-copper-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.brand-title-sub::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pcs-emerald);
  box-shadow: 0 0 6px var(--pcs-emerald);
}

/* Navigation Links */
.nav-links-list {
  display: flex;
  align-items: center;
  gap: var(--fib-13);
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-item-link {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  padding: var(--fib-5) var(--fib-3);
  position: relative;
}

.nav-item-link:hover, .nav-item-link.active {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 140, 66, 0.6);
}

.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pcs-copper), var(--pcs-copper-light));
  transition: width 0.25s ease;
}

.nav-item-link:hover::after {
  width: 100%;
}

/* Right Controls Cluster */
.nav-controls-cluster {
  display: inline-flex;
  align-items: center;
  gap: var(--fib-5);
  flex-shrink: 0;
  height: 100%;
}

.icon-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fib-5);
  height: 34px;
  padding: 0 var(--fib-13);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  line-height: 1;
}

.icon-pill-btn:hover {
  background: rgba(255, 140, 66, 0.25);
  border-color: var(--pcs-copper);
  box-shadow: 0 0 15px rgba(255, 140, 66, 0.4);
}

.icon-pill-btn.active {
  background: linear-gradient(135deg, var(--pcs-copper) 0%, var(--pcs-copper-dark) 100%);
  border-color: #FFE0B2;
  color: #FFFFFF;
  box-shadow: 0 0 var(--fib-13) var(--pcs-copper-glow);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fib-5);
  height: 34px;
  padding: 0 var(--fib-13);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--pcs-copper) 0%, var(--pcs-copper-dark) 100%);
  border: 1px solid var(--pcs-gold-tint);
  color: #FFFFFF;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.78rem;
  box-shadow: 0 var(--fib-3) var(--fib-13) var(--pcs-copper-glow);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 var(--fib-5) var(--fib-21) rgba(255, 140, 66, 0.75);
}

/* Mobile Bottom App Navigation Bar (Fibonacci Proportioned) */
.mobile-bottom-app-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid var(--border-glow);
  z-index: 1005;
  padding: 0 var(--fib-8);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8), 0 0 15px var(--pcs-copper-glow);
}

.mobile-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: relative;
}

.mobile-tab-item .mobile-tab-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.mobile-tab-item.active,
.mobile-tab-item:hover {
  color: var(--pcs-copper-light);
}

.mobile-tab-item.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  width: 16px;
  height: 3px;
  background: var(--pcs-copper);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--pcs-copper);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: var(--fib-34) 0 var(--fib-55);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 20px;
  border-radius: 9999px;
  background: rgba(255, 140, 66, 0.15);
  border: 1px solid rgba(255, 140, 66, 0.6);
  color: #FFA585;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 22px;
  box-shadow: var(--shadow-glow-copper);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE0B2 30%, #FF8C42 60%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 140, 66, 0.3);
}

.hero-subtitle {
  font-size: 1.16rem;
  line-height: 1.8;
  color: #E2E8F0;
  margin-bottom: 36px;
  max-width: 660px;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 48px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--pcs-copper) 0%, #E65100 100%);
  border: 1px solid #FFE0B2;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 140, 66, 0.5);
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 140, 66, 0.8);
}

.btn-whatsapp-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 48px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-full);
  background: rgba(37, 211, 102, 0.16);
  border: 1.5px solid #25D366;
  color: #25D366;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp-glow:hover {
  background: #25D366;
  color: #02040A;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.7);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

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

.hero-stat-num {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--pcs-copper-light);
  font-family: 'JetBrains Mono', monospace;
  text-shadow: 0 0 15px rgba(255, 140, 66, 0.5);
}

.hero-stat-txt {
  font-size: 0.84rem;
  color: #CBD5E1;
  font-weight: 600;
}

/* Tactical Radar Console */
.hero-tactical-console {
  background: var(--bg-card);
  backdrop-filter: blur(28px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-luxury);
  position: relative;
  overflow: hidden;
}

.radar-sweep-container {
  width: 210px;
  height: 210px;
  margin: 0 auto 20px;
  position: relative;
  border-radius: 50%;
  border: 2px solid var(--border-glow);
  background: radial-gradient(circle, rgba(255, 140, 66, 0.22) 0%, transparent 70%);
}

.radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 140, 66, 0.4);
}

.radar-circle.c1 { width: 60px; height: 60px; }
.radar-circle.c2 { width: 130px; height: 130px; }
.radar-circle.c3 { width: 190px; height: 190px; }

.radar-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 50%;
  background: linear-gradient(45deg, rgba(255, 140, 66, 0.9), transparent 70%);
  transform-origin: bottom left;
  animation: radarSpin 4s linear infinite;
  border-radius: 100% 0 0 0;
}

@keyframes radarSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.live-feed-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 6, 18, 0.88);
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.86rem;
}

.pulsing-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #EF4444;
  box-shadow: 0 0 14px #EF4444;
  animation: pulseBeacon 1.5s infinite;
}

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

/* ==========================================================================
   AI VISION STUDIO (PERSONNEL, VEHICLE & ASSET SCANNER)
   ========================================================================== */
.vision-studio-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(28px);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-luxury);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
}

.vision-main-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Unified Top Controls Bar */
.vision-top-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 8px 14px;
}

.vision-segmented-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.control-inline-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-right: 4px;
  white-space: nowrap;
}

.vision-tab-btn {
  padding: 6px 14px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #E2E8F0;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.vision-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.vision-tab-btn.active {
  background: linear-gradient(135deg, var(--pcs-copper) 0%, #E65100 100%);
  border-color: #FFE0B2;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 140, 66, 0.4);
}

.vision-detector-btn,
.vision-filter-btn {
  height: 34px;
  padding: 6px 14px !important;
  font-size: 0.82rem !important;
}

.vision-bottom-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 8px 14px;
}

.vision-scenarios-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.vision-scenario-pill {
  padding: 8px 14px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.vision-scenario-pill:hover,
.vision-scenario-pill.selected {
  background: linear-gradient(135deg, var(--pcs-copper) 0%, #E65100 100%);
  border-color: #FFE0B2;
  box-shadow: 0 4px 14px rgba(255, 140, 66, 0.35);
  color: #FFFFFF;
}

.vision-action-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vision-viewport-box {
  position: relative;
  background: #01040B;
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-lg);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.95);
}

#visionCanvas {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

#cameraVideo {
  max-width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: none;
}

.vision-upload-dropzone {
  border: 2px dashed var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 50px 32px;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 140, 66, 0.05);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 90%;
  max-width: 520px;
  margin: 20px auto;
  transition: all 0.25s ease;
}

.vision-upload-dropzone:hover {
  background: rgba(255, 140, 66, 0.15);
  border-color: var(--pcs-copper-light);
  transform: translateY(-2px);
}

.vision-hud-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.84rem;
}

.vision-hud-badge {
  background: rgba(3, 6, 18, 0.88);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: 8px;
  color: var(--pcs-copper-light);
  font-weight: 800;
}

.vision-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

/* Threat Sidebar Panel */
.vision-sidebar-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.threat-score-card {
  background: rgba(3, 6, 18, 0.92);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.threat-score-card.threat-critical {
  border-color: var(--pcs-crimson);
  box-shadow: 0 0 35px rgba(239, 68, 68, 0.6);
  background: rgba(30, 8, 12, 0.92);
}

.threat-score-card.threat-safe {
  border-color: var(--pcs-emerald);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.35);
  background: rgba(6, 24, 18, 0.92);
}

.threat-level-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.threat-level-badge {
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
}

.threat-level-badge.critical {
  background: rgba(239, 68, 68, 0.25);
  border: 1px solid #EF4444;
  color: #EF4444;
}

.threat-level-badge.safe {
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid #10B981;
  color: #10B981;
}

.threat-meter-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.threat-meter-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.6s ease;
}

.threat-meter-fill.critical {
  background: linear-gradient(90deg, #F59E0B, #EF4444);
  box-shadow: 0 0 15px #EF4444;
}

.threat-meter-fill.safe {
  background: linear-gradient(90deg, #38BDF8, #10B981);
}

.detected-objects-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 230px;
  overflow-y: auto;
  padding-right: 4px;
}

.detected-item-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.detected-item-row.is-alert,
.detected-item-row.is-weapon {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.15);
  color: #FFA585;
}

.detected-item-row.is-human {
  border-color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  color: #A7F3D0;
}

.detected-item-row.is-object {
  border-color: #38BDF8;
  background: rgba(56, 189, 248, 0.12);
  color: #BAE6FD;
}

.btn-emergency-dispatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  border: 1px solid #EF4444;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
  animation: sirenPulse 2s infinite;
}

@keyframes sirenPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.6); }
  50% { box-shadow: 0 0 35px rgba(239, 68, 68, 0.95); }
}

/* ==========================================================================
   INTERACTIVE LIVE CCTV SIMULATOR SECTION
   ========================================================================== */
.simulator-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(28px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-luxury);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
}

.cctv-monitor-screen {
  background: #01040D;
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-lg);
  min-height: 440px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.95);
}

.cctv-scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 3px, 6px 100%;
  pointer-events: none;
  z-index: 5;
}

.cctv-osd-top, .cctv-osd-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  color: var(--pcs-copper-light);
  z-index: 6;
  text-shadow: 0 0 10px rgba(255, 140, 66, 0.85);
  font-weight: 700;
}

.cctv-stream-img {
  transition: opacity 0.3s ease;
}

.cctv-ai-box-overlay {
  position: absolute;
  border: 1.5px solid #10B981;
  background: rgba(16, 185, 129, 0.08);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.35);
  border-radius: 4px;
  animation: aiOverlayPulse 3s ease-in-out infinite alternate;
}

@keyframes aiOverlayPulse {
  0% { transform: scale(1) translate(0, 0); opacity: 0.9; }
  50% { transform: scale(1.02) translate(2px, -2px); opacity: 1; }
  100% { transform: scale(0.99) translate(-2px, 1px); opacity: 0.9; }
}

.cctv-corner-bracket {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #FFFFFF;
}

.cctv-corner-bracket.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.cctv-corner-bracket.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.cctv-corner-bracket.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.cctv-corner-bracket.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.cctv-ai-tag {
  position: absolute;
  top: -24px;
  left: -1px;
  background: var(--pcs-copper);
  color: #01040D;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 3px;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
}

.cam-switch-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cam-switch-btn {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #FFFFFF;
  font-size: 0.98rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

[dir="rtl"] .cam-switch-btn {
  text-align: right;
}

.cam-switch-btn:hover, .cam-switch-btn.active {
  background: linear-gradient(135deg, var(--pcs-copper) 0%, #E65100 100%);
  border-color: #FFE0B2;
  box-shadow: var(--shadow-glow-copper);
}

/* ==========================================================================
   PARTNERS STRIP
   ========================================================================== */
.partners-section {
  padding: 44px 0;
  background: rgba(2, 6, 18, 0.85);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.partners-heading {
  text-align: center;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 26px;
  font-weight: 800;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-weight: 800;
  font-size: 0.98rem;
  color: #FFFFFF;
}

.partner-badge:hover {
  border-color: var(--pcs-copper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-copper);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-wrapper {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 54px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(255, 140, 66, 0.16);
  border: 1px solid rgba(255, 140, 66, 0.5);
  color: var(--pcs-copper-light);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.15rem;
  color: #CBD5E1;
  line-height: 1.8;
}

/* ==========================================================================
   SOLUTIONS SECTION & CARDS
   ========================================================================== */
.solutions-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 12px 26px;
  border-radius: 9999px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: #FFFFFF;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.98rem;
}

.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--pcs-copper) 0%, #E65100 100%);
  border-color: #FFE0B2;
  color: #FFFFFF;
  box-shadow: 0 6px 30px rgba(255, 140, 66, 0.6);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
}

.solution-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 30px 70px rgba(255, 140, 66, 0.35);
}

.sol-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.35) 0%, rgba(124, 58, 237, 0.25) 100%);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}

.sol-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.sol-desc {
  font-size: 1rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 26px;
  flex-grow: 1;
}

.sol-features-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sol-features-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 700;
}

.sol-features-list li svg {
  color: var(--pcs-emerald);
  flex-shrink: 0;
}

/* ==========================================================================
   LIVE ESTIMATOR SECTION (SLEEK, COMPACT & BALANCED)
   ========================================================================== */
.estimator-card {
  background: var(--bg-card);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: var(--fib-34);
  box-shadow: var(--shadow-luxury);
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: var(--fib-34);
}

.est-form-group {
  margin-bottom: var(--fib-21);
}

.est-group-label {
  display: block;
  font-size: 0.96rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

/* 1. Solution Type (2x2 Balanced Grid) */
.est-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.est-service-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  min-height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: #CBD5E1;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] .est-service-btn {
  text-align: right;
}

.est-service-btn .est-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.est-service-btn .est-label {
  line-height: 1.25;
}

.est-service-btn:hover {
  background: rgba(255, 140, 66, 0.12);
  border-color: var(--pcs-copper);
  color: #FFFFFF;
}

.est-service-btn.selected {
  background: linear-gradient(135deg, var(--pcs-copper) 0%, var(--pcs-copper-dark) 100%);
  border-color: var(--pcs-gold-tint);
  color: #FFFFFF;
  box-shadow: 0 4px 16px var(--pcs-copper-glow);
}

/* 2. Project Scope (3-Column Segment) */
.est-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.est-scope-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  padding: 10px 12px;
  min-height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: #CBD5E1;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] .est-scope-btn {
  text-align: right;
  align-items: flex-end;
}

.est-scope-btn .scope-tag {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: var(--pcs-copper-light);
}

.est-scope-btn .scope-desc {
  font-size: 0.76rem;
  font-weight: 600;
  color: #E2E8F0;
  line-height: 1.2;
}

.est-scope-btn:hover {
  background: rgba(255, 140, 66, 0.12);
  border-color: var(--pcs-copper);
  color: #FFFFFF;
}

.est-scope-btn.selected {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.22) 0%, rgba(255, 140, 66, 0.06) 100%);
  border: 1.5px solid var(--pcs-copper);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(255, 140, 66, 0.35);
}

.est-scope-btn.selected .scope-tag {
  color: #FFA585;
}

/* 3. Slider */
.est-slider {
  width: 100%;
  accent-color: var(--pcs-copper);
  cursor: pointer;
  height: 6px;
  border-radius: 4px;
}

/* 4. Add-ons (2x2 Grid) */
.est-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.est-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  min-height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: #CBD5E1;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0;
  box-sizing: border-box;
}

.est-checkbox-item:hover {
  border-color: rgba(255, 140, 66, 0.4);
  background: rgba(255, 140, 66, 0.08);
  color: #FFFFFF;
}

.est-checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--pcs-copper);
  cursor: pointer;
  flex-shrink: 0;
}

/* Summary Panel */
.estimator-summary-panel {
  background: linear-gradient(135deg, rgba(2, 6, 18, 0.95) 0%, rgba(6, 12, 30, 0.98) 100%);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: var(--fib-21);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
}

.est-currency-btn {
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #94A3B8;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.est-currency-btn.active {
  background: var(--pcs-copper);
  border-color: #FFE0B2;
  color: #FFFFFF;
  box-shadow: 0 2px 10px var(--pcs-copper-glow);
}

.est-price-display {
  font-size: 1.75rem;
  font-weight: 900;
  color: #FFA585;
  font-family: 'JetBrains Mono', monospace;
  margin: 12px 0;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(255, 140, 66, 0.4);
}

.est-timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 140, 66, 0.15);
  border: 1px solid rgba(255, 140, 66, 0.45);
  color: #FFA585;
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

@media (max-width: 960px) {
  .estimator-card {
    grid-template-columns: 1fr;
    padding: var(--fib-21);
    gap: var(--fib-21);
  }
}

@media (max-width: 640px) {
  .est-services-grid,
  .est-scope-grid,
  .est-addons-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GOOGLE REVIEWS SECTION
   ========================================================================== */
.reviews-score-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.score-big-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-luxury);
}

.score-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: #FBBF24;
  font-family: 'JetBrains Mono', monospace;
}

.stars-rating {
  color: #FBBF24;
  font-size: 1.35rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
}

.rev-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.rev-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pcs-copper), var(--pcs-amethyst));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #FFFFFF;
  font-size: 1.2rem;
}

.rev-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: #FFFFFF;
}

.rev-role {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.rev-text {
  font-size: 1rem;
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.rev-tag-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 8px;
  background: rgba(255, 140, 66, 0.18);
  color: var(--pcs-copper-light);
  font-size: 0.8rem;
  font-weight: 900;
}

/* ==========================================================================
   QR CODE HUB SECTION
   ========================================================================== */
.qr-hub-card {
  background: var(--bg-card);
  backdrop-filter: blur(28px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-luxury);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.qr-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}

.qr-tab-btn {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.qr-tab-btn.active {
  background: linear-gradient(135deg, var(--pcs-copper) 0%, #E65100 100%);
  border-color: #FFE0B2;
  color: #FFFFFF;
  box-shadow: var(--shadow-glow-copper);
}

.qr-display-box {
  background: #FFFFFF;
  padding: 30px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.75);
}

.qr-svg-container {
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-scan-label {
  color: #020612;
  font-weight: 900;
  font-size: 0.98rem;
  margin-top: 18px;
  text-align: center;
}

/* ==========================================================================
   CONTACT FORM & FAQ
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-luxury);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 140, 66, 0.25);
  border: 1px solid var(--pcs-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pcs-copper);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.form-luxury {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-luxury);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.98rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #FFFFFF;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--pcs-copper);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 20px rgba(255, 140, 66, 0.45);
}

.form-select option {
  background-color: #001F3F;
  color: #FFFFFF;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

[dir="rtl"] .faq-question {
  text-align: right;
}

.faq-answer {
  padding: 0 28px 24px;
  color: #E2E8F0;
  font-size: 1.02rem;
  line-height: 1.8;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open {
  border-color: var(--border-glow);
}

/* ==========================================================================
   DISPLAY & ACCESSIBILITY SUITE MODAL
   ========================================================================== */
.display-suite-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  padding: 20px;
}

.display-suite-modal.open {
  display: flex;
}

.display-suite-box {
  background: var(--bg-card);
  backdrop-filter: blur(32px);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 38px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-luxury);
}

/* ==========================================================================
   INTELLIGENT AI CHATBOT FLOATING WIDGET
   ========================================================================== */
.chatbot-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pcs-copper) 0%, var(--pcs-amethyst) 100%);
  border: 2px solid #FFFFFF;
  box-shadow: 0 10px 40px rgba(255, 140, 66, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  z-index: 999;
  animation: pulseFab 3s infinite;
}

[dir="rtl"] .chatbot-fab {
  right: auto;
  left: 32px;
}

@keyframes pulseFab {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(255, 140, 66, 0.8); }
  50% { transform: scale(1.08); box-shadow: 0 15px 50px rgba(124, 58, 237, 0.9); }
}

.chat-drawer {
  position: fixed;
  bottom: 112px;
  right: 32px;
  width: 420px;
  height: 600px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 130px);
  background: rgba(4, 9, 24, 0.98);
  backdrop-filter: blur(32px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.9);
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
}

[dir="rtl"] .chat-drawer {
  right: auto;
  left: 32px;
}

.chat-drawer.open {
  display: flex;
}

.chat-header {
  padding: 20px 22px;
  background: linear-gradient(135deg, #FF8C42 0%, #7C3AED 100%);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-messages-area {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-msg {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.chat-msg.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border-subtle);
  color: #FFFFFF;
  border-bottom-left-radius: 4px;
}

[dir="rtl"] .chat-msg.bot {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 4px;
}

.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--pcs-copper), #E65100);
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
  font-weight: 700;
}

[dir="rtl"] .chat-msg.user {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 4px;
}

.chat-chips-bar {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-chip {
  padding: 7px 14px;
  border-radius: 9999px;
  background: rgba(255, 140, 66, 0.18);
  border: 1px solid rgba(255, 140, 66, 0.45);
  color: var(--pcs-copper-light);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.chat-input-bar {
  padding: 14px 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 10px;
}

/* ==========================================================================
   PWA MODAL & TOAST
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-box {
  background: var(--bg-card);
  backdrop-filter: blur(32px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-luxury);
}

.toast-notification {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 16px 32px;
  border-radius: 9999px;
  background: #020612;
  border: 1px solid var(--pcs-copper);
  color: #FFFFFF;
  font-weight: 900;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(255, 140, 66, 0.6);
  z-index: 3000;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   FOOTER (ZERO-OVERLAP STRUCTURE & SOCIAL MEDIA CHANNELS)
   ========================================================================== */
.main-footer {
  background: #01030A;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 28px;
  color: #CBD5E1;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  clear: both;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--fib-34);
  margin-bottom: var(--fib-34);
  width: 100%;
  box-sizing: border-box;
  clear: both;
}

.footer-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-sizing: border-box;
}

.footer-brand-area {
  display: inline-flex;
  align-items: center;
  gap: var(--fib-8);
  margin-bottom: var(--fib-13);
  text-decoration: none;
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: var(--fib-13);
  max-width: 400px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.08rem;
  margin-bottom: var(--fib-13);
  font-weight: 900;
  letter-spacing: -0.2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--fib-8);
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--pcs-copper-light);
}

/* Social Media Channels Hub */
.footer-social-hub {
  margin-top: var(--fib-8);
  display: flex;
  flex-direction: column;
  gap: var(--fib-8);
}

.footer-social-heading {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--pcs-copper-light);
  display: block;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: var(--fib-8);
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.social-icon-btn svg {
  width: 19px;
  height: 19px;
}

.social-icon-btn:hover {
  transform: translateY(-3px) scale(1.08);
  color: #FFFFFF;
}

.social-icon-btn.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 4px 18px rgba(24, 119, 242, 0.6);
}

.social-icon-btn.linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  box-shadow: 0 4px 18px rgba(10, 102, 194, 0.6);
}

.social-icon-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.6);
}

.social-icon-btn.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 4px 18px rgba(255, 0, 0, 0.6);
}

.social-icon-btn.instagram:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  border-color: #DD2A7B;
  box-shadow: 0 4px 18px rgba(221, 42, 123, 0.6);
}

/* Distinct Zero-Overlap Legal Navigation Bar */
.footer-legal-bar {
  clear: both;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: var(--fib-21);
  padding: var(--fib-21) 0 var(--fib-8);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--fib-13);
  flex-wrap: wrap;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.legal-separator {
  color: #475569;
  user-select: none;
}

.legal-nav-link {
  color: #94A3B8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.legal-nav-link:hover {
  color: var(--pcs-copper-light);
  text-decoration: underline;
}

.footer-bottom {
  padding: var(--fib-8) 0 var(--fib-13);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  color: #94A3B8;
  width: 100%;
  clear: both;
  box-sizing: border-box;
}

/* Responsive Media Queries (Fibonacci Scaled) */
@media (max-width: 1100px) {
  .nav-links-list {
    display: none;
  }
  .hero-content-grid, .simulator-wrapper, .vision-studio-wrapper {
    grid-template-columns: 1fr;
  }
  .estimator-card, .qr-hub-card, .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--fib-21);
  }
}

@media (max-width: 768px) {
  /* Native Mobile App UI Feel */
  body {
    padding-bottom: 78px !important;
  }

  .mobile-bottom-app-bar {
    display: flex !important;
  }

  /* Zero-Overlap Mobile Navbar */
  .floating-nav-wrapper {
    top: 6px !important;
    padding: 0 8px !important;
    margin-bottom: var(--fib-13) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .floating-navbar {
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 8px 0 10px !important;
    border-radius: var(--radius-full) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    gap: 6px !important;
  }

  .nav-brand-area {
    gap: 6px !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .brand-emblem-box {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0 !important;
  }

  .brand-title-main {
    font-size: 0.85rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 110px !important;
  }

  .brand-title-sub {
    display: none !important;
  }

  .nav-controls-cluster {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
    flex-wrap: nowrap !important;
  }

  #openDisplaySuiteBtn {
    display: none !important;
  }

  .pwa-install-pill {
    height: 30px !important;
    padding: 0 8px !important;
    font-size: 0.72rem !important;
    gap: 4px !important;
  }

  #langToggleBtn {
    height: 30px !important;
    padding: 0 8px !important;
    font-size: 0.72rem !important;
  }

  .btn-nav-cta {
    height: 30px !important;
    padding: 0 10px !important;
    font-size: 0.72rem !important;
    white-space: nowrap !important;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  html[lang^="ur"] .hero-title {
    font-size: 1.65rem;
    line-height: 1.55;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--fib-8);
  }

  /* Universal Balanced CTA Alignment on Mobile */
  .hero-actions-row,
  .exotic-banner-actions,
  .est-submit-actions,
  .vision-controls,
  .vision-cam-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .btn-primary-glow,
  .btn-exotic-glow,
  .btn-whatsapp-glow,
  .btn-banner-cta,
  .btn-submit-calc,
  .est-whatsapp-btn,
  .btn-rig-inquire,
  .btn-scan-trigger {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.92rem !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    border-radius: var(--radius-full) !important;
  }

  /* Balanced Mobile Footer Grid */
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .footer-col-brand {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-brand-area {
    justify-content: center !important;
  }

  .footer-about-text {
    text-align: center !important;
    margin: 0 auto var(--fib-13) !important;
    max-width: 100% !important;
  }

  .footer-social-hub {
    align-items: center !important;
  }

  .footer-social-links {
    justify-content: center !important;
  }

  .footer-col:last-child {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-col:last-child .footer-links {
    align-items: center !important;
  }

  .footer-legal-bar {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
    padding: 16px 8px !important;
  }

  .footer-legal-bar .legal-separator {
    display: none !important;
  }

  .whatsapp-widget-container {
    bottom: 82px !important;
    left: var(--fib-13) !important;
    right: auto !important;
  }

  .whatsapp-fab {
    width: 40px !important;
    height: 40px !important;
  }

  .chatbot-fab {
    bottom: 82px !important;
    right: var(--fib-13) !important;
    width: 40px !important;
    height: 40px !important;
  }

  .back-to-top-btn {
    bottom: 132px !important;
    left: var(--fib-13) !important;
    width: 36px !important;
    height: 36px !important;
  }

  .cookie-consent-banner {
    bottom: 76px !important;
    width: calc(100% - 20px) !important;
    max-width: 100% !important;
    padding: var(--fib-13) !important;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ==========================================================================
   PWA INSTALL UI (NAV PILL, SMART FLOATING BANNER, IOS MODAL)
   ========================================================================== */
.pwa-install-pill {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.25) 0%, rgba(255, 140, 66, 0.08) 100%) !important;
  border: 1px solid var(--pcs-copper) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 6px 14px !important;
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px var(--pcs-copper-glow);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pwa-install-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 140, 66, 0.6);
  border-color: #FFA585 !important;
}

.mobile-install-tab {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--pcs-copper-light) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pwa-floating-banner {
  position: fixed;
  bottom: 84px;
  left: 50%;
  transform: translateX(-50%) translateY(180%);
  width: calc(100% - 24px);
  max-width: 520px;
  background: rgba(3, 7, 20, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid var(--pcs-copper);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.92), 0 0 25px var(--pcs-copper-glow);
  z-index: 1800;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.pwa-floating-banner.show {
  transform: translateX(-50%) translateY(0);
}

.pwa-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pwa-app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pwa-app-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px;
  border: 1px solid rgba(255, 140, 66, 0.3);
  flex-shrink: 0;
}

.pwa-app-name {
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
}

.pwa-app-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 2px 0;
}

.stars-gold {
  color: #F59E0B;
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.pwa-app-sub {
  color: #94A3B8;
  font-size: 0.74rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-banner-install {
  background: linear-gradient(135deg, var(--pcs-copper) 0%, var(--pcs-copper-dark) 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--pcs-gold-tint);
  cursor: pointer;
  box-shadow: 0 4px 14px var(--pcs-copper-glow);
  transition: all 0.2s ease;
}

.btn-banner-install:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.6);
}

.pwa-dismiss-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.pwa-dismiss-btn:hover {
  color: #FFFFFF;
}

/* iOS Step-by-Step Walkthrough Modal */
.ios-install-box {
  max-width: 480px;
  width: 92%;
  background: rgba(4, 8, 24, 0.98);
  border: 1.5px solid var(--pcs-copper);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95);
}

.ios-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.ios-step-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.ios-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pcs-copper);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ios-step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ios-step-main {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.88rem;
}

.ios-step-hint {
  color: #94A3B8;
  font-size: 0.78rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (SLEEK, COMPACT & BEST-FIT)
   ========================================================================== */

/* 1. FLOATING UP ARROW (BACK TO TOP) - BOTTOM LEFT */
.back-to-top-btn {
  position: fixed;
  bottom: var(--fib-21);
  left: var(--fib-21);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(4, 9, 24, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--border-glow);
  color: var(--pcs-copper-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 140, 66, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
}

[dir="rtl"] .back-to-top-btn {
  left: var(--fib-21);
  right: auto;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  background: linear-gradient(135deg, var(--pcs-copper) 0%, var(--pcs-copper-dark) 100%);
  border-color: #FFE0B2;
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.7);
}

/* 2. FLOATING WHATSAPP WIDGET - BOTTOM RIGHT */
.whatsapp-widget-container {
  position: fixed;
  bottom: var(--fib-21);
  right: var(--fib-21);
  z-index: 999;
}

[dir="rtl"] .whatsapp-widget-container {
  right: var(--fib-21);
  left: auto;
}

.whatsapp-fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #070E24 0%, #031526 100%);
  border: 1.5px solid var(--pcs-copper);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 18px rgba(255, 140, 66, 0.35);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulseWa 2.8s infinite;
}

@keyframes pulseWa {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 18px rgba(255, 140, 66, 0.35); }
  50% { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(37, 211, 102, 0.5); }
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  border-color: #25D366;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.95), 0 0 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-badge-pulse {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  border: 1.5px solid #FFFFFF;
  box-shadow: 0 0 6px #10B981;
}

.whatsapp-popup-card {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: rgba(4, 10, 26, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: 0 21px 55px rgba(0, 0, 0, 0.92), 0 0 25px rgba(255, 140, 66, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
  animation: slideUpWa 0.25s ease;
}

[dir="rtl"] .whatsapp-popup-card {
  right: 0;
  left: auto;
}

.whatsapp-popup-card.open {
  display: flex;
}

@keyframes slideUpWa {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-popup-header {
  padding: var(--fib-13);
  background: linear-gradient(135deg, #0A1938 0%, #152A56 100%);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-avatar-box {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  padding: 2px;
}

.whatsapp-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  border: 1px solid #FFFFFF;
}

.whatsapp-close-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}

.whatsapp-popup-body {
  padding: var(--fib-13);
  display: flex;
  flex-direction: column;
  gap: var(--fib-8);
}

.whatsapp-chat-bubble {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  border-top-left-radius: 3px;
  padding: 10px 12px;
  font-size: 0.82rem;
  color: #FFFFFF;
  line-height: 1.5;
  position: relative;
}

.whatsapp-msg-time {
  display: block;
  font-size: 0.68rem;
  color: #94A3B8;
  margin-top: 4px;
  text-align: right;
}

.whatsapp-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fib-5);
}

.whatsapp-quick-tag {
  padding: 4px 9px;
  border-radius: var(--radius-full);
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #A7F3D0;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.whatsapp-quick-tag:hover {
  background: #25D366;
  color: #02040A;
}

.whatsapp-popup-footer {
  padding: var(--fib-8) var(--fib-13);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: var(--fib-8);
  background: rgba(2, 6, 18, 0.7);
}

.whatsapp-input-field {
  flex-grow: 1;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 0.8rem;
  outline: none;
}

.whatsapp-input-field:focus {
  border-color: var(--pcs-copper);
}

.whatsapp-send-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  color: #02040A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.whatsapp-send-btn:hover {
  background: #10B981;
  color: #FFFFFF;
}

/* 3. FLOATING CHATBOT FAB (CCTV & AI THEMED - SLEEK & COMPACT) */
.chatbot-fab {
  position: fixed;
  bottom: 74px;
  right: var(--fib-21);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #070E24 0%, #15082A 100%);
  border: 1.5px solid var(--pcs-copper);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 18px var(--pcs-copper-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pcs-copper-light);
  cursor: pointer;
  z-index: 999;
  animation: pulseFab 3s infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@keyframes pulseFab {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 18px var(--pcs-copper-glow); }
  50% { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 140, 66, 0.55); }
}

.chatbot-fab:hover {
  transform: scale(1.08);
  border-color: #FFE0B2;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 140, 66, 0.7);
}

[dir="rtl"] .chatbot-fab {
  right: var(--fib-21);
  left: auto;
}

@media (max-width: 640px) {
  .back-to-top-btn {
    bottom: 18px;
    left: 18px;
    width: 44px;
    height: 44px;
  }
  .whatsapp-widget-container {
    right: 18px;
    bottom: 18px;
  }
  .whatsapp-fab {
    width: 50px;
    height: 50px;
  }
  .chatbot-fab {
    right: 18px;
    bottom: 78px;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   ENTERPRISE COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: 92%;
  max-width: 960px;
  background: rgba(3, 8, 22, 0.96);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 20px 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 140, 66, 0.25);
  z-index: 1002;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.cookie-banner-text p {
  color: #CBD5E1;
  font-size: 0.85rem;
  line-height: 1.55;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ==========================================================================
   LEGAL MODALS & PREFERENCES CENTER
   ========================================================================== */
.legal-modal-box {
  max-width: 760px;
  width: 95%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background: rgba(4, 9, 24, 0.98);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-xl);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.95);
  overflow: hidden;
  padding: 0;
}

.legal-modal-header {
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-close-x {
  background: none;
  border: none;
  color: #CBD5E1;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close-x:hover {
  color: #FFFFFF;
}

.legal-modal-body {
  padding: 26px 28px;
  overflow-y: auto;
  font-size: 0.92rem;
  color: #CBD5E1;
  line-height: 1.75;
}

.legal-modal-body h4 {
  color: #FFFFFF;
  font-size: 1.08rem;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-modal-body h4:first-child {
  margin-top: 0;
}

.legal-modal-body p {
  margin-bottom: 12px;
}

.legal-modal-body ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-modal-body li {
  margin-bottom: 6px;
}

.legal-modal-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: flex-end;
  background: rgba(2, 6, 18, 0.75);
}

.legal-nav-link {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-nav-link:hover {
  color: var(--pcs-copper-light);
  text-decoration: underline;
}

/* ==========================================================================
   EXOTIC SYSTEMS, GAMING PCS & NETWORK INFRASTRUCTURE (FIBONACCI & TWO-TONE)
   ========================================================================== */
.btn-exotic-glow {
  display: inline-flex;
  align-items: center;
  gap: var(--fib-8);
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--pcs-copper) 0%, #E65100 100%);
  color: #FFFFFF !important;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  border: 1px solid var(--pcs-gold-tint);
  box-shadow: 0 8px 24px var(--pcs-copper-glow);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-exotic-glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 140, 66, 0.7);
}

/* Glassmorphic Category Tabs Bar */
.exotic-category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--fib-8);
  margin-bottom: var(--fib-34);
  padding: 6px;
  background: rgba(4, 9, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.filter-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--fib-8);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid transparent;
  color: #CBD5E1;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  line-height: 1;
}

.filter-pill-btn:hover {
  background: rgba(255, 140, 66, 0.15);
  border-color: var(--pcs-copper);
  color: #FFFFFF;
}

.filter-pill-btn.active {
  background: linear-gradient(135deg, var(--pcs-copper) 0%, var(--pcs-copper-dark) 100%);
  border-color: #FFE0B2;
  color: #FFFFFF;
  box-shadow: 0 4px 18px var(--pcs-copper-glow);
}

/* Perfectly Balanced 3-Column Showcase Grid */
.exotic-rigs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fib-21);
}

@media (max-width: 1100px) {
  .exotic-rigs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .exotic-rigs-grid {
    grid-template-columns: 1fr;
  }
  .exotic-category-tabs {
    border-radius: var(--radius-lg);
    width: 100%;
  }
  .filter-pill-btn {
    width: 100%;
    justify-content: center;
  }
}

.exotic-rig-card {
  position: relative;
  background: rgba(4, 9, 26, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--fib-21);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.exotic-rig-card:hover {
  transform: translateY(-8px);
  border-color: var(--pcs-copper);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px var(--pcs-copper-glow);
}

.exotic-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.25;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.exotic-rig-card:hover .exotic-card-glow {
  opacity: 0.45;
}

.glow-copper { background: #FF8C42; }
.glow-amethyst { background: #FF8C42; }
.glow-emerald { background: #10B981; }
.glow-cyan { background: #06B6D4; }

.exotic-card-header {
  margin-bottom: var(--fib-13);
  position: relative;
  z-index: 1;
}

.exotic-badge-top {
  display: inline-flex;
  align-items: center;
  gap: var(--fib-5);
  padding: 4px 12px;
  background: rgba(255, 140, 66, 0.12);
  border: 1px solid var(--pcs-copper);
  border-radius: var(--radius-full);
  color: #FFA585;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: var(--fib-8);
}

.exotic-rig-name {
  color: #FFFFFF;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 6px;
}

.exotic-rig-sub {
  color: #94A3B8;
  font-size: 0.82rem;
  line-height: 1.45;
}

.exotic-spec-list {
  display: flex;
  flex-direction: column;
  gap: var(--fib-8);
  margin-bottom: var(--fib-21);
  margin-top: var(--fib-13);
  position: relative;
  z-index: 1;
}

.exotic-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid rgba(255, 140, 66, 0.45);
}

[dir="rtl"] .exotic-spec-item {
  border-left: none;
  border-right: 3px solid rgba(255, 140, 66, 0.45);
}

.spec-label {
  color: #94A3B8;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.spec-val {
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.exotic-card-footer {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

/* High-Tech Card CTA Button */
.btn-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fib-8);
  width: 100%;
  height: 42px;
  padding: 0 var(--fib-13);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--pcs-copper) 0%, var(--pcs-copper-dark) 100%);
  border: 1px solid var(--pcs-gold-tint);
  color: #FFFFFF !important;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--pcs-copper-glow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  line-height: 1;
}

.btn-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.75);
}

/* Exotic Bottom Consultation Banner (Centrally Aligned & Symmetrical) */
.exotic-bottom-banner {
  margin-top: var(--fib-34);
  background: linear-gradient(135deg, rgba(6, 12, 32, 0.94) 0%, rgba(3, 8, 22, 0.98) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: var(--fib-34) var(--fib-34);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), inset 0 0 30px rgba(255, 140, 66, 0.08);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.exotic-banner-header {
  max-width: 840px;
  margin: 0 auto var(--fib-21);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.exotic-banner-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: var(--fib-8);
  letter-spacing: -0.3px;
}

.exotic-banner-desc {
  color: #CBD5E1;
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 700px;
}

.exotic-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--fib-13);
  flex-wrap: wrap;
  width: 100%;
}

.btn-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fib-8);
  height: 48px;
  min-width: 250px;
  padding: 0 var(--fib-21);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  white-space: nowrap;
}

.btn-banner-cta.primary {
  background: linear-gradient(135deg, var(--pcs-copper) 0%, var(--pcs-copper-dark) 100%);
  border: 1px solid var(--pcs-gold-tint);
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px var(--pcs-copper-glow);
}

.btn-banner-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.7);
}

.btn-banner-cta.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--pcs-copper);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.btn-banner-cta.secondary:hover {
  background: rgba(255, 140, 66, 0.15);
  border-color: #FFE0B2;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

@media (max-width: 640px) {
  .exotic-bottom-banner {
    padding: var(--fib-21) var(--fib-13);
  }
  .btn-banner-cta {
    width: 100%;
    min-width: unset;
  }
}

/* ==========================================================================
   RECENT KARACHI ENTERPRISE DEPLOYMENTS & CASE STUDIES
   ========================================================================== */
.deployments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fib-21);
}

.deployment-card {
  background: rgba(4, 9, 26, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--fib-21);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-luxury);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.deployment-card:hover {
  transform: translateY(-6px);
  border-color: var(--pcs-copper);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--pcs-copper-glow);
}

.dep-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 140, 66, 0.15);
  border: 1px solid rgba(255, 140, 66, 0.4);
  color: #FFA585;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.dep-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
}

.dep-desc {
  color: #94A3B8;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.dep-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dep-metric {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
  color: #E2E8F0;
}

/* ==========================================================================
   MASTER RESPONSIVE & MOBILE POLISH SUITE (FINAL OVERRIDE LAYER)
   Guaranteed Zero-Overflow, 100% Symmetrical Viewport, Balanced CTAs
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .cctv-studio-grid,
  .estimator-card,
  .vision-studio-wrapper,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .exotic-rigs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .deployments-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  /* Absolute Viewport Lock */
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-bottom: 76px !important;
  }

  .app-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    box-sizing: border-box !important;
  }

  /* Deactivate Background Glowing Orbs that push document bounds */
  .bg-glow-orb {
    display: none !important;
  }

  /* 1. Ultra-Clean Mobile Floating Navbar */
  .floating-nav-wrapper {
    top: 6px !important;
    padding: 0 8px !important;
    margin-bottom: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .floating-navbar {
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 10px !important;
    border-radius: 9999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    gap: 6px !important;
  }

  .nav-brand-area {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
    text-decoration: none !important;
  }

  .brand-emblem-box {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0 !important;
  }

  .brand-title-main {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    color: #FFFFFF !important;
  }

  .brand-title-sub,
  .nav-links-list,
  #openDisplaySuiteBtn,
  #pwaNavInstallBtn,
  .pwa-install-pill {
    display: none !important;
  }

  .nav-controls-cluster {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
  }

  #langToggleBtn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 32px !important;
    padding: 0 12px !important;
    font-size: 0.76rem !important;
    font-weight: 800 !important;
    border-radius: 9999px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid var(--border-glow) !important;
    color: #FFFFFF !important;
  }

  .btn-nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 32px !important;
    padding: 0 14px !important;
    font-size: 0.76rem !important;
    font-weight: 800 !important;
    border-radius: 9999px !important;
    background: linear-gradient(135deg, var(--pcs-copper) 0%, #E65100 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid #FFE0B2 !important;
    box-shadow: 0 2px 10px var(--pcs-copper-glow) !important;
    white-space: nowrap !important;
  }

  /* 2. Hero Section Mobile Optimization */
  .hero-section {
    min-height: auto !important;
    padding: 20px 0 54px !important;
  }

  .hero-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }

  html[lang^="ur"] .hero-title {
    font-size: 1.65rem !important;
    line-height: 1.55 !important;
  }

  .hero-subtitle {
    font-size: 0.94rem !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }

  .hero-stats-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .hero-stat-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 12px !important;
    padding: 10px !important;
  }

  .hero-stat-num {
    font-size: 1.6rem !important;
  }

  .hero-tactical-console {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px !important;
    box-sizing: border-box !important;
  }

  .radar-sweep-container {
    width: 160px !important;
    height: 160px !important;
  }
  .radar-circle.c1 { width: 45px !important; height: 45px !important; }
  .radar-circle.c2 { width: 95px !important; height: 95px !important; }
  .radar-circle.c3 { width: 140px !important; height: 140px !important; }

  /* 3. Universal Aligned CTAs on Mobile */
  .hero-actions-row,
  .exotic-banner-actions,
  .est-submit-actions,
  .vision-controls,
  .vision-cam-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    margin-bottom: 36px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .hero-actions-row > a,
  .hero-actions-row .btn-exotic-glow,
  .hero-actions-row .btn-primary-glow,
  .hero-actions-row .btn-whatsapp-glow,
  .btn-primary-glow,
  .btn-exotic-glow,
  .btn-whatsapp-glow,
  .btn-banner-cta,
  .btn-submit-calc,
  .est-whatsapp-btn,
  .btn-rig-inquire,
  .btn-scan-trigger {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.94rem !important;
    font-weight: 800 !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    border-radius: 9999px !important;
  }

  /* 4. Partner Badges on Mobile */
  .partners-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .partner-badge {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 14px !important;
    font-size: 0.84rem !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
  }

  /* 5. All Core Content Grids on Mobile */
  .solutions-grid,
  .reviews-grid,
  .exotic-rigs-grid,
  .deployments-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .estimator-card {
    padding: 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .est-services-grid {
    grid-template-columns: 1fr !important;
  }

  .qr-hub-card {
    padding: 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 6. Balanced Footer on Mobile */
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .footer-col-brand,
  .footer-col:last-child {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-brand-area {
    justify-content: center !important;
  }

  .footer-about-text {
    text-align: center !important;
    margin: 0 auto 14px !important;
  }

  .footer-social-hub {
    align-items: center !important;
  }

  .footer-social-links {
    justify-content: center !important;
  }

  .footer-col:last-child .footer-links {
    align-items: center !important;
  }

  .footer-legal-bar {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
    padding: 16px 8px !important;
  }

  .footer-legal-bar .legal-separator {
    display: none !important;
  }

  /* 7. Native Mobile Bottom Bar (6 Tabs - Perfectly Formatted) */
  .mobile-bottom-app-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: 58px !important;
    background: rgba(2, 6, 18, 0.98) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    border-top: 1px solid var(--border-glow) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    padding: 0 2px !important;
    box-sizing: border-box !important;
    z-index: 9999 !important;
    margin: 0 !important;
  }

  .mobile-tab-item {
    all: unset !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 1 0 !important;
    height: 100% !important;
    color: #94A3B8 !important;
    text-decoration: none !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    background: transparent !important;
    border: none !important;
    box-sizing: border-box !important;
    text-align: center !important;
    min-width: 0 !important;
  }

  .mobile-tab-item.active,
  .mobile-tab-item:hover {
    color: var(--pcs-copper-light) !important;
  }

  .mobile-tab-icon {
    font-size: 1.15rem !important;
    line-height: 1.1 !important;
    display: block !important;
    margin-bottom: 2px !important;
  }

  .mobile-tab-label {
    font-size: 0.65rem !important;
    line-height: 1 !important;
    display: block !important;
    white-space: nowrap !important;
  }

  /* Floating Action Buttons (Right-Side Stacked) */
  .whatsapp-widget-container {
    position: fixed !important;
    bottom: 70px !important;
    right: 14px !important;
    left: auto !important;
    z-index: 1200 !important;
  }
  .whatsapp-fab {
    width: 44px !important;
    height: 44px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8) !important;
  }
  .chatbot-fab {
    position: fixed !important;
    bottom: 124px !important;
    right: 14px !important;
    left: auto !important;
    width: 44px !important;
    height: 44px !important;
    z-index: 1200 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8) !important;
  }
  .back-to-top-btn {
    position: fixed !important;
    bottom: 178px !important;
    right: 14px !important;
    left: auto !important;
    width: 38px !important;
    height: 38px !important;
    z-index: 1200 !important;
  }
  .pwa-floating-banner {
    bottom: 68px !important;
    width: calc(100% - 16px) !important;
  }
}