/* ===============================================
    LEVEL PROGRAMMER WEBTECH
   =============================================== */

/* =============== ROOT VARIABLES =============== */
:root {
  /* Primary Colors - Deep Blue to Purple */
  --primary-900: #0a0a1a;
  --primary-800: #0d1025;
  --primary-700: #111430;
  --primary-600: #1a1d3a;
  --primary-500: #252850;
  
  /* Accent Colors - Neon */
  --accent-blue: #00d4ff;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;
  --accent-cyan: #22d3ee;
  --accent-green: #10b981;
  --accent-orange: #f97316;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a1d3a 50%, #1e1046 100%);
  --gradient-card: linear-gradient(145deg, rgba(30, 35, 60, 0.8) 0%, rgba(20, 25, 45, 0.9) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --gradient-glow: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  --gradient-neon: linear-gradient(90deg, #00d4ff, #a855f7, #ec4899);
  
  /* Glass Effect */
  --glass-bg: rgba(15, 20, 40, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  
  /* Typography */
  --font-primary: 'Inter', 'Poppins', sans-serif;
  --font-display: 'Space Grotesk', 'Poppins', sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-max: 1400px;
}

/* =============== GLOBAL RESETS =============== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--gradient-hero);
  color: #e0e0e0;
  overflow-x: hidden;
  min-height: 100vh;
}

body.dark-theme {
  background: var(--primary-900);
}

/* =============== GLASSMORPHISM UTILITIES =============== */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: linear-gradient(135deg, rgba(30, 35, 60, 0.6) 0%, rgba(20, 25, 45, 0.8) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 
    0 20px 60px rgba(168, 85, 247, 0.2),
    0 0 40px rgba(0, 212, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* =============== NEON GLOW EFFECTS =============== */
.neon-text {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.neon-border {
  position: relative;
}

.neon-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-neon);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.neon-border:hover::after {
  opacity: 1;
}

.glow-blue {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.glow-purple {
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.glow-pink {
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

/* =============== PREMIUM BUTTONS =============== */
.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--gradient-glow);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-blue);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-premium:hover::before {
  left: 100%;
}

/* Floating Button Ripple */
.btn-ripple-effect {
  position: relative;
  overflow: hidden;
}

.btn-ripple-effect::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.btn-ripple-effect:active::after {
  transform: scale(2);
  opacity: 1;
  transition: 0s;
}

/* =============== 3D FLOATING ELEMENTS =============== */
.floating-3d {
  animation: floating3d 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes floating3d {
  0%, 100% {
    transform: translateY(0) rotateX(0) rotateY(0);
  }
  25% {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
  }
  50% {
    transform: translateY(-25px) rotateX(0) rotateY(10deg);
  }
  75% {
    transform: translateY(-10px) rotateX(-5deg) rotateY(5deg);
  }
}

.float-slow {
  animation: floatSlow 8s ease-in-out infinite;
}

.float-medium {
  animation: floatMedium 5s ease-in-out infinite;
}

.float-fast {
  animation: floatFast 3s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes floatMedium {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes floatFast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* =============== HERO SECTION =============== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 26, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent-purple);
  margin-bottom: 24px;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.3); }
  50% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.6); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}

.hero-title .gradient-word {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Hero 3D Objects */
.hero-3d-objects {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: floatSlow 10s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation: floatMedium 8s ease-in-out infinite;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
  top: 30%;
  left: 10%;
  animation: floatFast 6s ease-in-out infinite;
}

/* Hero Floating Cards */
.hero-floating-card {
  position: absolute;
  padding: 16px 24px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  color: white;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floating3d 6s ease-in-out infinite;
  z-index: 3;
}

.hero-floating-card i {
  font-size: 1.5rem;
}

.floating-card-1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.floating-card-2 {
  top: 25%;
  right: 5%;
  animation-delay: 1s;
}

.floating-card-3 {
  bottom: 25%;
  left: 8%;
  animation-delay: 2s;
}

.floating-card-4 {
  bottom: 20%;
  right: 8%;
  animation-delay: 3s;
}

/* =============== STATS COUNTER =============== */
.stats-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.05), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  transition: all 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-blue);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border-radius: 50%;
  font-size: 1.75rem;
  color: white;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* =============== SECTION HEADERS =============== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(0, 212, 255, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============== SERVICES SECTION =============== */
.services-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--primary-900), var(--primary-800));
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.service-card {
  position: relative;
  padding: 40px 30px;
  background: var(--gradient-card);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-neon);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(168, 85, 247, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(0, 212, 255, 0.2));
  border-radius: 20px;
  margin-bottom: 24px;
  font-size: 2rem;
  color: var(--accent-blue);
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover .service-icon {
  background: var(--gradient-glow);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.service-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-blue);
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 12px;
  color: var(--accent-purple);
}

/* =============== PROJECTS SECTION =============== */
.projects-section {
  padding: var(--section-padding) 0;
  background: var(--primary-800);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.project-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

.project-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 26, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay-btn {
  padding: 12px 24px;
  background: var(--accent-blue);
  color: var(--primary-900);
  font-weight: 600;
  border-radius: 50px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.project-card:hover .project-overlay-btn {
  transform: translateY(0);
  opacity: 1;
}

.project-status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-completed {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.status-running {
  background: rgba(249, 115, 22, 0.2);
  color: var(--accent-orange);
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.project-content {
  padding: 24px;
}

.project-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.project-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  padding: 4px 12px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--accent-purple);
}

/* =============== TEAM SECTION =============== */
.team-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--primary-800), var(--primary-900));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.team-card {
  position: relative;
  padding: 40px 30px;
  background: var(--gradient-card);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--gradient-neon);
  border-radius: 0 0 10px 10px;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 25px 50px rgba(236, 72, 153, 0.15);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
  background: var(--gradient-neon);
  padding: 4px;
  transition: all 0.4s ease;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
}

.team-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.team-role {
  font-size: 0.9rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.team-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--gradient-glow);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.team-social-disabled {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.25);
  cursor: not-allowed;
}

/* =============== TESTIMONIALS =============== */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--primary-900);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.testimonial-card {
  padding: 40px;
  background: var(--gradient-card);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-blue);
  opacity: 0.5;
  margin-bottom: 16px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-purple);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-info span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.testimonial-stars {
  color: #fbbf24;
  margin-top: 4px;
}

/* =============== ABOUT/BRAND STORY =============== */
.about-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--primary-800), var(--primary-900));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-content h3 {
  color: var(--accent-blue);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature i {
  font-size: 1.25rem;
  color: var(--accent-green);
  margin-top: 4px;
}

.about-feature span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.about-image {
  position: relative;
}

.about-image-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-image-main img {
  width: 100%;
  height: auto;
}

.about-floating-stat {
  position: absolute;
  padding: 20px 30px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-align: center;
}

.about-floating-stat.stat-1 {
  bottom: -20px;
  left: -20px;
}

.about-floating-stat.stat-2 {
  top: -20px;
  right: -20px;
}

.about-floating-stat h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-floating-stat span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* =============== CONTACT SECTION =============== */
.contact-section {
  padding: var(--section-padding) 0;
  background: var(--primary-900);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-neon);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-method-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(0, 212, 255, 0.2));
  border-radius: 16px;
  font-size: 1.5rem;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.contact-method-info h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-method-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.contact-method-info a {
  color: var(--accent-blue);
  transition: color 0.3s ease;
}

.contact-method-info a:hover {
  color: var(--accent-purple);
}

/* Contact Form */
.contact-form-wrapper {
  padding: 40px;
  background: var(--gradient-card);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
}

.form-group select option {
  background: var(--primary-800);
  color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============== FLOATING CONTACT BUTTON =============== */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-whatsapp:hover {
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

.floating-scroll-top {
  background: var(--gradient-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.floating-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-scroll-top:hover {
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
}

/* =============== FOOTER =============== */
.footer {
  padding: 80px 0 30px;
  background: var(--primary-900);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand h3 .highlight {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gradient-glow);
  border-color: transparent;
  color: white;
  transform: translateY(-4px);
}

.footer-column h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column li a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column li a:hover {
  color: var(--accent-blue);
  padding-left: 8px;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 60px auto 0;
  padding: 30px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--accent-blue);
}

/* =============== NAVBAR =============== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
}

.navbar-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.navbar-brand .highlight {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-link {
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.navbar-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.navbar-link.active {
  color: var(--accent-blue);
  background: rgba(0, 212, 255, 0.1);
}

.navbar-cta {
  margin-left: 16px;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 968px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-800);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    gap: 8px;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-cta {
    margin-left: 0;
    margin-top: 24px;
    width: 100%;
  }

  .navbar-cta .btn-premium {
    width: 100%;
    justify-content: center;
  }
}

/* =============== PAGE TRANSITIONS =============== */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-900);
  z-index: 9999;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: right;
}

.page-transition.active {
  animation: pageTransition 1s ease-in-out;
}

@keyframes pageTransition {
  0% { transform: scaleX(0); transform-origin: right; }
  50% { transform: scaleX(1); transform-origin: right; }
  50.1% { transform-origin: left; }
  100% { transform: scaleX(0); transform-origin: left; }
}

/* =============== SCROLL PROGRESS =============== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-neon);
  z-index: 10001;
  transition: width 0.1s linear;
}

/* =============== PRELOADER =============== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preloader-text {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseText {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* =============== TIMELINE =============== */
.timeline-section {
  padding: var(--section-padding) 0;
  background: var(--primary-800);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  width: 50%;
  padding-right: 40px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  margin-left: 50%;
  padding-right: 0;
  padding-left: 40px;
}

@media (max-width: 768px) {
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 70px;
    padding-right: 0;
    justify-content: flex-start;
  }
}

.timeline-dot {
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--gradient-glow);
  border-radius: 50%;
  right: -10px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
  right: auto;
}

@media (max-width: 768px) {
  .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 20px;
    right: auto;
  }
}

.timeline-content {
  padding: 30px;
  background: var(--gradient-card);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.15);
}

.timeline-year {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gradient-glow);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.timeline-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* =============== TECHNOLOGIES SECTION =============== */
.tech-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--primary-900), var(--primary-800));
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.tech-item {
  padding: 30px 20px;
  background: var(--gradient-card);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.tech-item:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.tech-item i {
  font-size: 3rem;
  margin-bottom: 16px;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-item span {
  display: block;
  color: white;
  font-weight: 600;
}

/* =============== CTA SECTIONS =============== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(0, 212, 255, 0.15));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============== RESPONSIVE UTILITIES =============== */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .hero-floating-card {
    display: none;
  }

  .floating-contact {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* =============== ANIMATIONS =============== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in.visible,
.fade-in:not(.js-enabled) {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-left.visible,
.fade-in-left:not(.js-enabled) {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: fadeInRight 0.8s ease forwards;
}

.fade-in-right.visible,
.fade-in-right:not(.js-enabled) {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: scaleIn 0.8s ease forwards;
}

.scale-in.visible,
.scale-in:not(.js-enabled) {
  opacity: 1;
  transform: scale(1);
}

/* Animation keyframes for fallback */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Staggered animation delays */
.delay-1 { transition-delay: 0.1s; animation-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; animation-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; animation-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; animation-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; animation-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; animation-delay: 0.6s; }

/* =============== 3D CARD TILT =============== */
.tilt-3d {
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.tilt-3d-content {
  transform: translateZ(30px);
}

/* =============== PARTICLES BACKGROUND =============== */
.particles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-blue);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* =============== CURSOR GLOW =============== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: opacity 0.3s ease;
}

/* Map Styles */
.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  display: block;
  filter: grayscale(0.5) contrast(1.1);
  transition: filter 0.4s ease;
}

.map-container:hover iframe {
  filter: grayscale(0) contrast(1);
}
