/* Offline-safe font stacks mimicking Orbitron & Rajdhani */
@font-face {
  font-family: 'OrbitronFallback';
  src: local('Orbitron'), local('Eurostile'), local('Microgramma'), local('Bank Gothic'), local('Segoe UI');
  font-weight: 400 900;
}

/* ═══════════════════════════════════════════════════════════
   INDORE EYE TECH — CINEMATIC SURVEILLANCE AESTHETIC
   Color DNA: Deep Black → Teal → Cyan → Electric Blue
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg-void: #050a0e;
  --bg-deep: #0a1118;
  --bg-panel: #0d1a24;
  --bg-card: #111f2c;
  --bg-card-hover: #162a3a;
  --teal-dark: #1a4a5a;
  --teal: #1e7a8a;
  --teal-bright: #22a0b0;
  --cyan: #2dd4d4;
  --cyan-glow: #3aeaea;
  --cyan-light: #7df3f3;
  --blue-accent: #4a9eff;
  --text-primary: #e8f4f8;
  --text-secondary: #8fb8c8;
  --text-muted: #5a8898;
  --danger: #ff4757;
  --success: #2ed573;
  --warning: #ffa502;
  --glow-cyan: 0 0 20px rgba(45, 212, 212, 0.3), 0 0 60px rgba(45, 212, 212, 0.1);
  --glow-intense: 0 0 30px rgba(45, 212, 212, 0.5), 0 0 80px rgba(45, 212, 212, 0.2);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--bg-deep);
}

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

/* ═══ CUSTOM SCROLLBAR ═══ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ═══ SCANLINE OVERLAY ═══ */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(45, 212, 212, 0.015) 2px,
    rgba(45, 212, 212, 0.015) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ═══ GRID BACKGROUND ═══ */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(30, 122, 138, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45, 212, 212, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(74, 158, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

/* ═══ ANIMATED GRID PATTERN ═══ */
.grid-pattern {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(45, 212, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 212, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  background: rgba(5, 10, 14, 0.85);
  border-bottom: 1px solid rgba(45, 212, 212, 0.1);
}

.nav.scrolled {
  background: rgba(5, 10, 14, 0.95);
  border-bottom-color: rgba(45, 212, 212, 0.2);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 8px rgba(45, 212, 212, 0.4));
}

.nav-logo-text {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.nav-logo-text span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(45, 212, 212, 0.5);
}

.nav-links a:hover { color: var(--cyan-glow); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--bg-void) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 15px rgba(45, 212, 212, 0.2);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  box-shadow: var(--glow-cyan) !important;
  transform: translateY(-1px);
  color: var(--bg-void) !important;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cyan);
  transition: all 0.3s ease;
  display: block;
}

/* ═══ HERO SECTION ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 72px 2rem 4rem;
}

.hero-bg-effects {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

/* Animated surveillance rings */
.surveillance-ring {
  position: absolute;
  border: 1px solid rgba(45, 212, 212, 0.08);
  border-radius: 50%;
  animation: pulse-ring 4s ease-in-out infinite;
}

.ring-1 {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}
.ring-2 {
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
}
.ring-3 {
  width: 1000px; height: 1000px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.3; border-color: rgba(45, 212, 212, 0.08); }
  50% { opacity: 1; border-color: rgba(45, 212, 212, 0.15); }
}

/* Corner brackets */
.hero-corner {
  position: absolute;
  width: 80px; height: 80px;
  opacity: 0.4;
}
.hero-corner::before, .hero-corner::after {
  content: '';
  position: absolute;
  background: var(--cyan);
}
.corner-tl { top: 12%; left: 8%; }
.corner-tl::before { top: 0; left: 0; width: 40px; height: 2px; }
.corner-tl::after { top: 0; left: 0; width: 2px; height: 40px; }
.corner-tr { top: 12%; right: 8%; }
.corner-tr::before { top: 0; right: 0; width: 40px; height: 2px; }
.corner-tr::after { top: 0; right: 0; width: 2px; height: 40px; }
.corner-bl { bottom: 12%; left: 8%; }
.corner-bl::before { bottom: 0; left: 0; width: 40px; height: 2px; }
.corner-bl::after { bottom: 0; left: 0; width: 2px; height: 40px; }
.corner-br { bottom: 12%; right: 8%; }
.corner-br::before { bottom: 0; right: 0; width: 40px; height: 2px; }
.corner-br::after { bottom: 0; right: 0; width: 2px; height: 40px; }

/* REC indicator */
.rec-indicator {
  position: absolute;
  top: 14%;
  right: 10%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  color: var(--danger);
  letter-spacing: 3px;
  opacity: 0.7;
}

.rec-dot {
  width: 8px; height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 71, 87, 0.6);
}

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

/* Timestamp */
.timestamp {
  position: absolute;
  bottom: 14%;
  left: 10%;
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  opacity: 0.5;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text { animation: fadeSlideUp 1s ease forwards; opacity: 0; }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 212, 212, 0.08);
  border: 1px solid rgba(45, 212, 212, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-title .line-1 { display: block; color: var(--text-primary); }
.hero-title .line-2 {
  display: block;
  background: linear-gradient(135deg, var(--cyan), var(--blue-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-3 {
  display: block;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.5em;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 0.3em;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--cyan));
  color: var(--bg-void);
  box-shadow: 0 4px 20px rgba(45, 212, 212, 0.25);
}
.btn-primary:hover {
  box-shadow: var(--glow-intense);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(45, 212, 212, 0.3);
}
.btn-outline:hover {
  background: rgba(45, 212, 212, 0.08);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

/* Hero visual — eye surveillance graphic */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeSlideUp 1s ease 0.3s forwards;
  opacity: 0;
}

.eye-container {
  position: relative;
  width: 420px;
  height: 420px;
}

.eye-outer-ring {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 2px solid rgba(45, 212, 212, 0.15);
  border-radius: 50%;
  animation: rotate-slow 20s linear infinite;
}

.eye-outer-ring::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(45, 212, 212, 0.6);
}

.eye-mid-ring {
  position: absolute;
  top: 40px; left: 40px; right: 40px; bottom: 40px;
  border: 1px solid rgba(45, 212, 212, 0.1);
  border-radius: 50%;
  animation: rotate-slow 15s linear infinite reverse;
}

.eye-mid-ring::before {
  content: '';
  position: absolute;
  bottom: -3px; right: 30%;
  width: 6px; height: 6px;
  background: var(--teal-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 160, 176, 0.5);
}

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

.eye-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.eye-core svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(45, 212, 212, 0.3));
}

/* Scanning line */
.scan-line {
  position: absolute;
  top: 0; left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
  opacity: 0.3;
  transform-origin: center center;
  animation: scan-rotate 6s linear infinite;
}

@keyframes scan-rotate {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

/* Status tags */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  display: block;
  text-shadow: 0 0 20px rgba(45, 212, 212, 0.3);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2px;
}

/* ═══ SECTION STYLES ═══ */
section {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-tag::before, .section-tag::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}
.section-tag::after {
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* ═══ SERVICES SECTION ═══ */
.services {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 50%, var(--bg-void) 100%);
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-panel);
  border: 1px solid rgba(45, 212, 212, 0.08);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  background: var(--bg-card);
  border-color: rgba(45, 212, 212, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(45, 212, 212, 0.05);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(45, 212, 212, 0.08);
  border: 1px solid rgba(45, 212, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: rgba(45, 212, 212, 0.15);
  box-shadow: 0 0 20px rgba(45, 212, 212, 0.15);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
}

.service-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
  flex-grow: 1;
}

.service-features {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-feat {
  font-size: 0.7rem;
  padding: 4px 10px;
  background: rgba(45, 212, 212, 0.06);
  border: 1px solid rgba(45, 212, 212, 0.1);
  border-radius: 100px;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ═══ WHY US — FEATURE BLOCKS ═══ */
.why-us {
  padding: 6rem 2rem;
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-panel);
  border: 1px solid rgba(45, 212, 212, 0.06);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.4s ease;
}

.why-card:hover {
  border-color: rgba(45, 212, 212, 0.15);
  background: var(--bg-card);
}

.why-card:nth-child(1) { grid-column: span 2; }

.why-card:nth-child(1) .why-number {
  font-size: 4rem;
}

.why-number {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(45, 212, 212, 0.12);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.why-info h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══ BRANDS / TRUST STRIP ═══ */
.brands-strip {
  padding: 4rem 2rem;
  background: var(--bg-deep);
  border-top: 1px solid rgba(45, 212, 212, 0.06);
  border-bottom: 1px solid rgba(45, 212, 212, 0.06);
}

.brands-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.brands-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.brands-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.4;
}

.brand-item {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 3px;
  transition: all 0.3s ease;
}

.brand-item:hover {
  opacity: 1;
  color: var(--cyan);
}

/* ═══ PROCESS SECTION ═══ */
.process {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), rgba(45, 212, 212, 0.1));
}

.process-step {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
}

.process-step:last-child { padding-bottom: 0; }

.step-marker {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-marker span {
  font-family: 'Orbitron', monospace;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cyan);
}

.process-step:hover .step-marker {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(45, 212, 212, 0.2);
}

.step-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 600px;
}

/* ═══ PRICING SECTION ═══ */
.pricing {
  padding: 6rem 2rem;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.price-card {
  background: var(--bg-panel);
  border: 1px solid rgba(45, 212, 212, 0.08);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.price-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-panel));
  box-shadow: 0 0 40px rgba(45, 212, 212, 0.08);
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; right: 24px;
  background: linear-gradient(135deg, var(--teal-bright), var(--cyan));
  color: var(--bg-void);
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 2px;
  border-radius: 0 0 6px 6px;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 212, 0.2);
}

.price-name {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.price-amount span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45, 212, 212, 0.08);
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-features li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.price-btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(45, 212, 212, 0.3);
}
.price-btn-outline:hover {
  background: rgba(45, 212, 212, 0.08);
  border-color: var(--cyan);
}

.price-btn-solid {
  background: linear-gradient(135deg, var(--teal-bright), var(--cyan));
  color: var(--bg-void);
  box-shadow: 0 4px 20px rgba(45, 212, 212, 0.2);
}
.price-btn-solid:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-1px);
}

/* ═══ TESTIMONIALS ═══ */
.testimonials {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-void) 100%);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-panel);
  border: 1px solid rgba(45, 212, 212, 0.06);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--warning);
}

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

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

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg-void);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

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

/* ═══ CTA SECTION ═══ */
.cta-section {
  padding: 6rem 2rem;
  position: relative;
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-panel));
  border: 1px solid rgba(45, 212, 212, 0.15);
  border-radius: 12px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(45, 212, 212, 0.04) 0%, transparent 50%);
  animation: rotate-slow 30s linear infinite;
}

.cta-box > * { position: relative; z-index: 2; }

.cta-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  color: var(--cyan);
  letter-spacing: 2px;
}

.cta-phone svg {
  width: 18px;
  height: 18px;
  animation: ring-shake 2s ease-in-out infinite;
}

@keyframes ring-shake {
  0%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
  50% { transform: rotate(0); }
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(45, 212, 212, 0.08);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul a:hover { color: var(--cyan); }

.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(45, 212, 212, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(45, 212, 212, 0.06);
  border: 1px solid rgba(45, 212, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-social:hover {
  background: rgba(45, 212, 212, 0.15);
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(45, 212, 212, 0.2);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
}

/* ═══ GALLERY / PORTFOLIO ═══ */
.gallery {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 50%, var(--bg-void) 100%);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(45, 212, 212, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 14, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* Service card images */
.service-img {
  width: calc(100% + 4rem);
  margin: -2.5rem -2rem 1.5rem -2rem;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(45, 212, 212, 0.1);
  filter: brightness(0.7) saturate(0.8);
  transition: filter 0.4s ease;
}
.service-card:hover .service-img {
  filter: brightness(0.85) saturate(1);
}

/* Promo banner */
.promo-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #c89b3c, #f5d76e, #c89b3c);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

.promo-text h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.promo-text p {
  font-size: 1.05rem;
  color: #333;
  font-weight: 500;
}

.promo-price {
  font-family: 'Orbitron', monospace;
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.promo-price span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #444;
  text-transform: uppercase;
}

.promo-section {
  padding: 3rem 2rem;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .promo-banner { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .promo-price { font-size: 2rem; }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ FLOATING WHATSAPP BUTTON ═══ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); }
.wa-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.15);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-icon svg { width: 32px; height: 32px; fill: #fff; }
.wa-label {
  background: #fff; color: #333;
  padding: 8px 16px; border-radius: 8px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  white-space: nowrap; opacity: 0; transform: translateX(10px);
  transition: all 0.3s ease; pointer-events: none;
}
.whatsapp-float:hover .wa-label { opacity: 1; transform: translateX(0); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 60px rgba(37, 211, 102, 0.2); }
}

/* ═══ SOCIAL MEDIA SECTION ═══ */
.social-bar { padding: 3rem 2rem; text-align: center; background: var(--bg-deep); border-top: 1px solid rgba(45,212,212,0.06); }
.social-bar-title { font-family: 'Orbitron', monospace; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 1.5rem; }
.social-icons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 8px; text-decoration: none;
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.5px; transition: all 0.3s ease; border: 1px solid transparent;
}
.social-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.sl-whatsapp { background: rgba(37,211,102,0.1); color: #25D366; border-color: rgba(37,211,102,0.2); }
.sl-whatsapp:hover { background: rgba(37,211,102,0.2); box-shadow: 0 0 20px rgba(37,211,102,0.15); }
.sl-instagram { background: rgba(225,48,108,0.1); color: #E1306C; border-color: rgba(225,48,108,0.2); }
.sl-instagram:hover { background: rgba(225,48,108,0.2); box-shadow: 0 0 20px rgba(225,48,108,0.15); }
.sl-facebook { background: rgba(24,119,242,0.1); color: #1877F2; border-color: rgba(24,119,242,0.2); }
.sl-facebook:hover { background: rgba(24,119,242,0.2); box-shadow: 0 0 20px rgba(24,119,242,0.15); }
.sl-email { background: rgba(234,67,53,0.1); color: #EA4335; border-color: rgba(234,67,53,0.2); }
.sl-email:hover { background: rgba(234,67,53,0.2); box-shadow: 0 0 20px rgba(234,67,53,0.15); }

/* ═══ BUSINESS HOURS STRIP ═══ */
.hours-strip {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 1rem; padding: 8px 14px;
  background: rgba(45,212,212,0.06); border: 1px solid rgba(45,212,212,0.1);
  border-radius: 6px;
}
.hours-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: blink 2s ease-in-out infinite; }
.hours-text { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.hours-text strong { color: var(--cyan); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .eye-container { width: 300px; height: 300px; }
  .hero-stats { justify-content: center; }
  .why-card:nth-child(1) { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(5, 10, 14, 0.98);
    padding: 2rem;
    border-bottom: 1px solid rgba(45, 212, 212, 0.1);
    gap: 1.5rem;
  }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 3rem; }
  .hero-corner, .rec-indicator, .timestamp { display: none; }
  .eye-container { width: 240px; height: 240px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; gap: 1.5rem; }
  .whatsapp-float { bottom: 16px; right: 16px; }
  .wa-icon { width: 52px; height: 52px; }
  .wa-icon svg { width: 28px; height: 28px; }
  .wa-label { display: none; }
  .social-icons { flex-direction: column; align-items: center; }
  .social-link { width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ═══ WP THEME ADDITIONS ═══ */
.wa-float-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
@media (max-width: 768px) { .wa-float-wrap { bottom: 16px; right: 16px; } }
body.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nav { top: 46px; } }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { max-height: 40px; width: auto; filter: drop-shadow(0 0 8px rgba(45,212,212,0.4)); }
