/* ============================================================
   PRM Live Monitoring System — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary:     #ffffff;
  --bg-secondary:   #f1f5f9;
  --bg-card:        rgba(255, 255, 255, 0.95);
  --bg-glass:       rgba(14, 165, 233, 0.04);

  --accent-blue:    #0ea5e9;
  --accent-cyan:    #06b6d4;
  --accent-electric:#3b82f6;
  --accent-glow:    rgba(14, 165, 233, 0.3);

  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;

  --border-glass:   rgba(14, 165, 233, 0.2);
  --border-subtle:  rgba(0,0,0,0.08);

  --gradient-hero:  linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #e0f2fe 100%);
  --gradient-blue:  linear-gradient(135deg, #0ea5e9, #06b6d4);
  --gradient-card:  linear-gradient(135deg, rgba(14,165,233,0.06), rgba(6,182,212,0.03));

  --shadow-glow:    0 0 40px rgba(14, 165, 233, 0.2);
  --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-btn:     0 4px 20px rgba(14, 165, 233, 0.35);

  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--accent-blue); border-radius: 3px; }

/* ── Typography ── */
.font-tech { font-family: 'Orbitron', sans-serif; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.section-title { margin-bottom: 16px; }
.section-desc { color: var(--text-secondary); font-size: 1.1rem; max-width: 560px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-blue);
  color: white;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.6);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  border: 1.5px solid var(--accent-blue);
}
.btn-outline:hover {
  background: var(--accent-blue);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* ── ================================================================
   NAVIGATION
   ================================================================ ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px; height: 44px;
  background: var(--gradient-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: white;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.1));
}

.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  line-height: 1;
}
.brand-tagline {
  font-size: 0.65rem;
  color: var(--accent-cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-blue);
  background: rgba(14, 165, 233, 0.08);
}

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Live indicator in nav */
.nav-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #22c55e;
  font-weight: 600;
}
.nav-live .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: livePulse 2s infinite;
}

/* ── ================================================================
   HERO SECTION
   ================================================================ ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 80px;
}

/* Animated grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  width: fit-content;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: livePulse 2s infinite;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero visual — camera/radar animation */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.radar-container {
  position: relative;
  width: 380px;
  height: 380px;
}

.radar-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, 0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.radar-circle:nth-child(1) { width: 100%; height: 100%; }
.radar-circle:nth-child(2) { width: 75%; height: 75%; border-color: rgba(14,165,233,0.3); }
.radar-circle:nth-child(3) { width: 50%; height: 50%; border-color: rgba(14,165,233,0.4); }
.radar-circle:nth-child(4) { width: 25%; height: 25%; border-color: rgba(14,165,233,0.6); background: rgba(14,165,233,0.05); }

.radar-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(14,165,233,0.8), transparent);
  animation: radarSweep 3s linear infinite;
}
.radar-sweep::after {
  content: '';
  position: absolute;
  top: -80px; right: 0;
  width: 160px; height: 160px;
  background: conic-gradient(from 0deg, rgba(14,165,233,0.15) 0deg, transparent 90deg);
  transform: rotate(-90deg);
}

.radar-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: dotPulse 2s ease-in-out infinite;
}
.radar-dot:nth-child(5) { top: 25%; left: 60%; animation-delay: 0.5s; }
.radar-dot:nth-child(6) { top: 55%; left: 30%; animation-delay: 1s; }
.radar-dot:nth-child(7) { top: 70%; left: 65%; animation-delay: 1.5s; }
.radar-dot:nth-child(8) { top: 35%; left: 35%; animation-delay: 0.8s; }

.radar-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 30px rgba(14,165,233,0.5);
  z-index: 2;
}

.floating-card {
  position: absolute;
  background: rgba(10, 20, 40, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  animation: floatCard 3s ease-in-out infinite;
}
.floating-card:nth-child(9) {
  top: 5%; right: -10%;
  animation-delay: 0s;
}
.floating-card:nth-child(10) {
  bottom: 10%; left: -15%;
  animation-delay: 1.5s;
}
.floating-card .icon { font-size: 1rem; }

.status-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: livePulse 2s infinite;
}
.status-indicator.yellow { background: #eab308; }
.status-indicator.red { background: #ef4444; }

/* ── ================================================================
   STATS BAR
   ================================================================ ── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 32px 0;
  backdrop-filter: blur(20px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  border-right: 1px solid var(--border-subtle);
}
.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 48px; height: 48px;
  background: var(--gradient-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── ================================================================
   SERVICES SECTION
   ================================================================ ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-blue);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px; height: 60px;
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gradient-blue);
  border-color: transparent;
  box-shadow: var(--shadow-btn);
  transform: scale(1.1);
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-tag {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--accent-blue);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ── ================================================================
   WHY CHOOSE US
   ================================================================ ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.why-visual {
  position: relative;
}

.why-image-frame {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.why-image-frame::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(14,165,233,0.05), transparent);
  animation: rotate 8s linear infinite;
}

.noc-screen {
  background: #0a0f1e;
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  z-index: 1;
}

.noc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.noc-dot { width: 10px; height: 10px; border-radius: 50%; }
.noc-dot.red { background: #ef4444; }
.noc-dot.yellow { background: #eab308; }
.noc-dot.green { background: #22c55e; }
.noc-title { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; font-family: 'Orbitron', sans-serif; letter-spacing: 0.1em; }

.camera-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.cam-feed {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cam-feed::before {
  content: '⬤ REC';
  position: absolute;
  top: 4px; left: 4px;
  font-size: 0.5rem;
  color: #ef4444;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.cam-feed .cam-num {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  font-family: 'Orbitron', sans-serif;
}

.cam-feed.active {
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: inset 0 0 20px rgba(14, 165, 233, 0.05);
}

.cam-feed.alert-cam {
  border-color: rgba(239, 68, 68, 0.5);
  animation: alertFlash 2s ease-in-out infinite;
}

.noc-status {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.status-badge {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
}
.status-badge.green { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.status-badge.blue { background: rgba(14,165,233,0.15); color: var(--accent-blue); border: 1px solid rgba(14,165,233,0.3); }
.status-badge.red { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }

.why-features { }
.why-feature {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.why-feature:last-child { border-bottom: none; }

.why-feature-icon {
  width: 52px; height: 52px;
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-feature:hover .why-feature-icon {
  background: var(--gradient-blue);
  box-shadow: var(--shadow-btn);
}

.why-feature h4 { margin-bottom: 6px; font-size: 1.05rem; }
.why-feature p { color: var(--text-secondary); font-size: 0.88rem; }

/* ── ================================================================
   INDUSTRIES
   ================================================================ ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.industry-card {
  padding: 28px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-blue);
  opacity: 0;
  transition: var(--transition);
  border-radius: inherit;
}
.industry-card:hover::after { opacity: 0.05; }

.industry-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  transition: var(--transition);
}
.industry-card:hover .industry-emoji { transform: scale(1.2); }

.industry-card h3 { font-size: 1rem; margin-bottom: 8px; }
.industry-card p { color: var(--text-secondary); font-size: 0.82rem; }

/* ── ================================================================
   TESTIMONIALS
   ================================================================ ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card { padding: 28px; }

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #eab308;
  font-size: 1rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 0.92rem; }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── ================================================================
   CTA SECTION
   ================================================================ ── */
.cta-section {
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(6,182,212,0.05));
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.1), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.cta-badge .fire { animation: floatCard 2s ease-in-out infinite; }

.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.trust-badge .icon { color: var(--accent-cyan); font-size: 1rem; }

/* ── ================================================================
   FOOTER
   ================================================================ ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 72px 0 32px;
}

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

.footer-brand { }
.footer-brand .brand-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 16px 0 24px;
}

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(14,165,233,0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gradient-blue);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--accent-blue); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-icon { color: var(--accent-cyan); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

/* ── ================================================================
   FLOATING ELEMENTS
   ================================================================ ── */
.float-btn {
  position: fixed;
  z-index: 999;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.float-quote {
  bottom: 28px; right: 24px;
  background: var(--gradient-blue);
  color: white;
  box-shadow: var(--shadow-btn);
  animation: floatPulse 3s ease-in-out infinite;
}
.float-quote:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(14,165,233,0.6);
}

.float-whatsapp {
  bottom: 28px; left: 24px;
  background: #25d366;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.float-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

/* ── ================================================================
   PAGE HERO (inner pages)
   ================================================================ ── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 60%, transparent 80%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── ================================================================
   CONTACT PAGE
   ================================================================ ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-top: 60px;
}

.contact-info { }
.contact-info-card {
  padding: 28px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--gradient-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.88rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.contact-info-card p { font-size: 0.95rem; color: var(--text-primary); }
.contact-info-card a { color: var(--accent-blue); }
.contact-info-card a:hover { color: var(--accent-cyan); }

.contact-form-card { padding: 40px; }

/* ── ================================================================
   FORMS
   ================================================================ ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-control {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent-blue);
  background: rgba(14,165,233,0.05);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.form-control::placeholder { color: var(--text-muted); }

select.form-control option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ── ================================================================
   ALERT MESSAGES
   ================================================================ ── */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.alert-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
.alert-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

/* ── ================================================================
   QUOTE PAGE — MULTI-STEP
   ================================================================ ── */
.quote-wrapper {
  max-width: 700px;
  margin: 60px auto 0;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid var(--border-glass);
  background: var(--bg-card);
  color: var(--text-muted);
}
.step.active .step-num {
  background: var(--gradient-blue);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-btn);
}
.step.done .step-num {
  background: rgba(34,197,94,0.2);
  border-color: rgba(34,197,94,0.5);
  color: #22c55e;
}
.step-label { font-size: 0.72rem; color: var(--text-muted); text-align: center; white-space: nowrap; }
.step.active .step-label { color: var(--accent-blue); }
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border-subtle);
  max-width: 80px;
  margin: 0 8px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.step-line.done { background: var(--gradient-blue); }

.quote-step { display: none; }
.quote-step.active { display: block; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.option-card {
  padding: 24px 16px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-glass);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
}
.option-card:hover, .option-card.selected {
  border-color: var(--accent-blue);
  background: rgba(14,165,233,0.08);
}
.option-card .option-icon { font-size: 2rem; margin-bottom: 10px; }
.option-card h4 { font-size: 0.9rem; }

/* ── ================================================================
   SERVICES DETAIL PAGE
   ================================================================ ── */
.service-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.service-detail:last-child { border-bottom: none; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { color: var(--text-secondary); margin-bottom: 28px; line-height: 1.8; }

.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.feature-list-item::before {
  content: '';
  width: 20px; height: 20px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.service-visual-box {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.service-visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(14,165,233,0.08), transparent 70%);
}
.service-visual-box h3 { font-size: 1.1rem; color: var(--text-primary); position: relative; }
.service-visual-box p { font-size: 0.85rem; color: var(--text-secondary); position: relative; max-width: 280px; }

/* ── ================================================================
   ABOUT PAGE
   ================================================================ ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card { padding: 28px; text-align: center; }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-btn);
}
.team-card h3 { font-size: 1rem; margin-bottom: 6px; }
.team-card p { font-size: 0.82rem; color: var(--accent-cyan); margin-bottom: 8px; }
.team-card span { font-size: 0.8rem; color: var(--text-muted); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cert-card {
  padding: 28px;
  text-align: center;
}
.cert-card .cert-icon { font-size: 2.5rem; margin-bottom: 12px; }
.cert-card h4 { font-size: 0.92rem; margin-bottom: 6px; }
.cert-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ── ================================================================
   ANIMATIONS
   ================================================================ ── */
@keyframes radarSweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

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

@keyframes floatPulse {
  0%, 100% { box-shadow: var(--shadow-btn); }
  50%       { box-shadow: 0 8px 40px rgba(14,165,233,0.7); }
}

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

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

@keyframes alertFlash {
  0%, 100% { border-color: rgba(239,68,68,0.5); }
  50%       { border-color: rgba(239,68,68,1); box-shadow: 0 0 10px rgba(239,68,68,0.3); }
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── ================================================================
   ADMIN STYLES
   ================================================================ ── */
.admin-body { background: var(--bg-secondary); min-height: 100vh; }
.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-login-card { padding: 48px; width: 100%; max-width: 420px; }
.admin-login-card h2 { text-align: center; margin-bottom: 8px; }
.admin-login-card .subtitle { text-align: center; color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 36px; }

.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--bg-card);
  border-right: 1px solid var(--border-glass);
  padding: 24px;
}
.admin-content { padding: 32px; }

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
  margin-bottom: 4px;
}
.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(14,165,233,0.1);
  color: var(--accent-blue);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
}
.data-table td {
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.data-table tr:hover td { background: rgba(14,165,233,0.03); }
.data-table .badge-new {
  background: rgba(14,165,233,0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(14,165,233,0.3);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ── ================================================================
   MOBILE MENU — always hidden off-screen until .open is toggled
   ================================================================ ── */
.nav-mobile {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 24px;
  gap: 8px;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.nav-mobile.open {
  transform: translateX(0);
  pointer-events: all;
}

/* ── ================================================================
   RESPONSIVE
   ================================================================ ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-subtle); padding: 20px 24px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile .nav-link { font-size: 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 24px; }
  .radar-container { width: 260px; height: 260px; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .hero-badge { font-size: 0.72rem; }
}
