/* ===========================================
   AGENTIC.BH - Shared Styles
   AI-Native Futuristic Neon Theme
   =========================================== */

/* Import Space Grotesk - Clean, Modern, Readable */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --neon-cyan: #00f5ff;
  --neon-blue: #0080ff;
  --neon-purple: #8b5cf6;
  --neon-magenta: #ff00ff;
  --neon-pink: #ff0080;
  --neon-green: #00ff88;
  --neon-orange: #ff6b35;
  --neon-yellow: #ffd700;
  --dark-bg: #0a0a0f;
  --darker-bg: #050508;
  --card-bg: rgba(15, 15, 25, 0.8);
  --card-bg-hover: rgba(20, 20, 35, 0.9);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border-subtle: rgba(0, 245, 255, 0.2);
  --border-glow: rgba(0, 245, 255, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Exo 2", sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============ BACKGROUND ANIMATIONS ============ */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 20% 20%,
      rgba(0, 245, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(0, 128, 255, 0.05) 0%,
      transparent 70%
    );
  animation: bgPulse 8s ease-in-out infinite;
}

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

.grid-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

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

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
  animation: floatParticle 15s infinite linear;
  opacity: 0.6;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.glow-line {
  position: fixed;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--neon-cyan), transparent);
  opacity: 0.3;
  animation: glowLineMove 10s linear infinite;
}

@keyframes glowLineMove {
  0% { transform: translateY(-100px); }
  100% { transform: translateY(100vh); }
}

/* ============ HEADER & NAVIGATION ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.8rem 1.5rem;
  z-index: 100;
  background: rgba(5, 5, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

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

.logo {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  position: relative;
  text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.logo:hover {
  filter: brightness(1.3);
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  min-width: 90px;
}

.nav-link .nav-icon {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  transition: transform 0.3s ease;
}

.nav-link .nav-text {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-link .nav-sub {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
  text-transform: none;
  letter-spacing: 0;
}

/* Hover state */
.nav-link:hover {
  background: rgba(0, 245, 255, 0.1);
}

.nav-link:hover .nav-icon {
  transform: scale(1.15);
}

.nav-link:hover .nav-text {
  color: var(--neon-cyan);
}

/* Active state - Neon Glow */
.nav-link.active {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(139, 92, 246, 0.1));
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3), inset 0 0 20px rgba(0, 245, 255, 0.05);
  border: 1px solid rgba(0, 245, 255, 0.3);
}

.nav-link.active .nav-text {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.8), 0 0 20px rgba(0, 245, 255, 0.5);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  border-radius: 3px;
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* Service-specific active colors */
.nav-link.active.ai-active {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(0, 128, 255, 0.1));
  border-color: rgba(0, 245, 255, 0.4);
}

.nav-link.active.security-active {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 245, 255, 0.1));
  border-color: rgba(0, 255, 136, 0.4);
}

.nav-link.active.security-active .nav-text {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.8), 0 0 20px rgba(0, 255, 136, 0.5);
}

.nav-link.active.security-active::after {
  background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
  box-shadow: 0 0 10px var(--neon-green);
}

.nav-link.active.data-active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(255, 0, 128, 0.1));
  border-color: rgba(139, 92, 246, 0.4);
}

.nav-link.active.data-active .nav-text {
  color: var(--neon-purple);
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.8), 0 0 20px rgba(139, 92, 246, 0.5);
}

.nav-link.active.data-active::after {
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
  box-shadow: 0 0 10px var(--neon-purple);
}

.bahrain-badge {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.7rem;
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 245, 255, 0.4);
  padding: 0.3rem 0.6rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
  white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--neon-cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px var(--neon-cyan);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Navigation */
@media (max-width: 1100px) {
  .nav-link {
    min-width: 80px;
    padding: 0.5rem 0.7rem;
  }

  .nav-link .nav-icon {
    font-size: 1.2rem;
  }

  .nav-link .nav-text {
    font-size: 0.65rem;
  }

  .nav-link .nav-sub {
    display: none;
  }

  .bahrain-badge {
    display: none;
  }
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 55px);
    min-height: calc(100dvh - 55px);
    background: rgba(5, 5, 10, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem;
    padding-bottom: 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-width: unset;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-subtle);
    background: rgba(15, 15, 25, 0.8);
    border-radius: 12px;
  }

  .nav-link .nav-icon {
    font-size: 1.4rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .nav-link .nav-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link .nav-text {
    font-size: 0.9rem;
  }

  .nav-link .nav-sub {
    display: block;
    font-size: 0.7rem;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    border-color: var(--neon-cyan);
  }

  .bahrain-badge {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

/* ============ MAIN CONTENT ============ */
main {
  min-height: 100vh;
  padding-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .icon-large {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: iconFloat 3s ease-in-out infinite;
}

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

.page-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--neon-cyan) 50%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .subtitle {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-hero .highlight {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* ============ SERVICE CARDS ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15), 0 0 100px rgba(0, 245, 255, 0.05);
}

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

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neon-cyan);
}

.service-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card .features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-card .features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-card .features li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
  font-family: monospace;
  font-weight: bold;
}

.service-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 1px solid var(--neon-cyan);
  border-radius: 30px;
  color: var(--neon-cyan);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card .btn:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

/* Service Card Color Variants */
.service-card.ai-theme { --card-accent: var(--neon-cyan); }
.service-card.security-theme { --card-accent: var(--neon-green); }
.service-card.data-theme { --card-accent: var(--neon-purple); }

.service-card.ai-theme h3 { color: var(--neon-cyan); }
.service-card.security-theme h3 { color: var(--neon-green); }
.service-card.data-theme h3 { color: var(--neon-purple); }

.service-card.ai-theme::before {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
}
.service-card.security-theme::before {
  background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
}
.service-card.data-theme::before {
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
}

/* ============ SECTION STYLES ============ */
.section {
  padding: 5rem 0;
}

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

.section-header h2 {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-label {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--neon-purple);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
  font-weight: 500;
}

/* ============ FEATURE GRID ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.1);
}

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

.feature-item h4 {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--neon-cyan);
  margin-bottom: 0.8rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.05) 0%, transparent 50%);
  animation: ctaPulse 10s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10%, 10%); }
}

.cta-section h2 {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  border: none;
  border-radius: 50px;
  color: var(--dark-bg);
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  border-radius: 50px;
  color: var(--neon-cyan);
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

/* ============ STATS BAR ============ */
.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2rem 0;
}

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

.stat-item .number {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ============ PROCESS STEPS ============ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

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

.process-step .step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-bg);
}

.process-step h4 {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--neon-cyan);
  margin: 1rem 0 0.8rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============ FOOTER ============ */
footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

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

.footer-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--neon-cyan);
  font-family: "Rajdhani", sans-serif;
  margin-top: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--neon-cyan);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

/* ============ UTILITIES ============ */
.text-gradient {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-cyan { color: var(--neon-cyan); }
.text-green { color: var(--neon-green); }
.text-purple { color: var(--neon-purple); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .page-hero {
    padding: 4rem 0 3rem;
  }

  .page-hero .icon-large {
    font-size: 3rem;
  }

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

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
