/* ============================================================
   Tar3eo Security Systems – Main Stylesheet
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --black: #0a0a0f;
  --dark: #0e0e1a;
  --dark-2: #12121f;
  --card-bg: #141424;
  --card-border: rgba(0, 150, 255, 0.12);
  --blue: #0096ff;
  --blue-glow: rgba(0, 150, 255, 0.3);
  --blue-light: #33aaff;
  --green: #00e676;
  --green-glow: rgba(0, 230, 118, 0.3);
  --text: #e4e4f0;
  --text-muted: #8888aa;
  --white: #ffffff;
  --font: 'Cairo', sans-serif;
  --font-en: 'Rajdhani', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --glow-blue: 0 0 24px rgba(0, 150, 255, 0.4);
  --glow-green: 0 0 24px rgba(0, 230, 118, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #0096ff, #006acc);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 150, 255, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 150, 255, 0.65);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

/* ===== SECTION SHARED ===== */
section {
  padding: 6rem 0;
}

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

.section-tag {
  display: inline-block;
  background: rgba(0, 150, 255, 0.12);
  border: 1px solid rgba(0, 150, 255, 0.3);
  color: var(--blue-light);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.highlight {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== TOP BAR ===== */
.top-bar {
  background: rgba(0, 150, 255, 0.08);
  border-bottom: 1px solid rgba(0, 150, 255, 0.15);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 100;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue-light);
  font-weight: 600;
  font-family: var(--font-en);
}

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

.top-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #25d366;
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  transition: var(--transition);
}

.top-whatsapp:hover {
  background: #1da851;
  transform: scale(1.05);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 1rem 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 150, 255, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(10, 10, 15, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 150, 255, 0.25));
  transition: var(--transition);
}

.logo-img:hover {
  filter: drop-shadow(0 0 14px rgba(0, 150, 255, 0.5));
  transform: scale(1.04);
}

.logo-icon {
  color: var(--blue);
  filter: drop-shadow(0 0 8px var(--blue));
}

.logo-text {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo-dot {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--blue);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 10%;
  right: 10%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), #006acc);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  box-shadow: var(--glow-blue);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 150, 255, 0.6);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 150, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 150, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(60px);
  }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-30px, 30px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: scan 4s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes scan {
  0% {
    top: 0;
    opacity: 0;
  }

  10% {
    opacity: 0.5;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
}

/* Camera animation */
.hero-camera-anim {
  position: absolute;
  top: 15%;
  left: 5%;
  opacity: 0.15;
  pointer-events: none;
}

.cam-body {
  width: 80px;
  height: 55px;
  background: rgba(0, 150, 255, 0.2);
  border: 1px solid rgba(0, 150, 255, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: camPan 6s ease-in-out infinite;
}

@keyframes camPan {

  0%,
  100% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(15deg);
  }
}

.cam-lens {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(0, 150, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cam-iris {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: var(--glow-blue);
  animation: iris 3s ease-in-out infinite;
}

@keyframes iris {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.7);
  }
}

.cam-blink {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: var(--glow-green);
  animation: blink 1.5s step-start infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.cam-signal {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 150, 255, 0.4);
  animation: signalRing 2s linear infinite;
}

.cam-signal.s1 {
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.cam-signal.s2 {
  width: 40px;
  height: 40px;
  animation-delay: 0.5s;
}

.cam-signal.s3 {
  width: 60px;
  height: 60px;
  animation-delay: 1s;
}

@keyframes signalRing {
  0% {
    opacity: 0.6;
    transform: translateX(-50%) scale(0.5);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.5);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.25);
  color: var(--blue-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: var(--glow-green);
  animation: blink 1.5s step-start infinite;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s 0.2s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-name {
  font-family: var(--font-en);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0096ff, #00e676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.5));
}

.hero-sub {
  display: block;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--text-muted);
  font-weight: 600;
}

.hero-typing-wrap {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
  min-height: 2em;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.static-text {
  color: var(--text-muted);
}

.typing-text {
  color: var(--blue-light);
  text-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
}

.cursor {
  color: var(--blue);
  animation: blink 0.8s step-start infinite;
  font-weight: 300;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 550px;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.7s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.trust-icon {
  font-size: 1rem;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.scroll-down span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  animation: scrollAnim 1.5s ease-in-out infinite;
}

.scroll-down span:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes scrollAnim {

  0%,
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(-3px, -3px);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) translate(3px, 3px);
  }
}

/* ===== SERVICES ===== */
.services {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

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

.service-card:hover {
  border-color: rgba(0, 150, 255, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--glow-blue);
}

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

.service-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 150, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.service-icon-wrap {
  display: flex;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(0, 150, 255, 0.2);
  box-shadow: var(--glow-blue);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.service-tagline {
  color: var(--blue-light);
  font-size: 0.9rem;
  font-style: italic;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.service-brands {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.brand-tag {
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.2);
  color: var(--blue-light);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-en);
}

.service-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue-light);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.service-cta span {
  transition: var(--transition);
}

.service-cta:hover {
  color: var(--blue);
}

.service-cta:hover span {
  transform: translateX(-4px);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--black);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
}

.step:hover {
  border-color: rgba(0, 150, 255, 0.3);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 150, 255, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.step-line {
  display: none;
  position: absolute;
  top: 50%;
  left: -1rem;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 150, 255, 0.4));
}

/* ===== STATS ===== */
.stats {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.stats-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stats-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 150, 255, 0.08), transparent 70%);
  filter: blur(40px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 150, 255, 0.05), transparent 70%);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(0, 150, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-blue);
}

.stat-card:hover::before {
  background: radial-gradient(circle at center, rgba(0, 150, 255, 0.12), transparent 70%);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-size: 1.5rem;
  color: var(--green);
  font-family: var(--font-en);
  font-weight: 700;
  display: inline;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--dark);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 1rem);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.testimonial-card:hover {
  border-color: rgba(0, 150, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-blue);
}

.testimonial-stars {
  font-size: 1rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

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

.author-name {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.author-role {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: var(--glow-blue);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-border);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--blue);
  transform: scale(1.3);
  box-shadow: var(--glow-blue);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(0, 150, 255, 0.3);
  transform: translateX(-4px);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-card h4 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.map-placeholder {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  min-height: 120px;
  position: relative;
  overflow: hidden;
}

.map-placeholder svg {
  color: var(--blue);
}

.map-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(0, 150, 255, 0.3);
  animation: mapPulse 2s ease-out infinite;
}

@keyframes mapPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Contact Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.1);
  background: rgba(0, 150, 255, 0.04);
}

.form-group select option {
  background: var(--dark-2);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1rem;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-weight: 600;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(0, 150, 255, 0.1);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0, 150, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: var(--glow-blue);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a,
.footer-services a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--blue-light);
  padding-right: 4px;
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-slogan {
  color: var(--blue-light);
  font-weight: 600;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: waPulse 2s ease-in-out infinite;
  transition: var(--transition);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

.whatsapp-float:hover {
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.wa-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  background: var(--card-bg);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

/* ===== PARTICLES ===== */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  10% {
    opacity: 0.7;
    transform: scale(1);
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(14, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--card-border);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.35s ease;
    z-index: 998;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 999;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-camera-anim {
    display: none;
  }

  .testimonial-card {
    min-width: calc(100% - 1rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .top-tagline {
    display: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}