/* Vertizone Website - Common CSS for all pages */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Color Variables - Darker text colors */
:root {
  --primary-color: #18a558;
  --secondary-color: #0b1c2d;
  --accent-red: #FF6B6B;
  --accent-teal: #4ECDC4;
  --accent-yellow: #FFD166;
  --accent-purple: #A599E9;
  --accent-blue: #118AB2;
  --accent-pink: #EF476F;
  --gradient-primary: linear-gradient(135deg, #FF6B6B, #4ECDC4, #FFD166, #A599E9);
  --gradient-dark: linear-gradient(135deg, #0b1c2d, #1a3a5f);
  --gradient-light: linear-gradient(135deg, #ffffff, #f8f9fa);
  --text-dark: #222222;
  --text-medium: #444444;
  --text-light: #666666;
  --accent-red-rgb: 255, 107, 107;
  --accent-teal-rgb: 78, 205, 196;
  --accent-yellow-rgb: 255, 209, 102;
  --accent-purple-rgb: 165, 153, 233;
  --accent-blue-rgb: 17, 138, 178;
  --accent-pink-rgb: 239, 71, 111;
}

body {
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
  position: relative;
}

/* Animated Background Gradient - Very subtle */
.bg-gradient-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #f8f9fa, #ffffff, #f0f0f0, #f8f9fa);
  background-size: 400% 400%;
  animation: gradient 20s ease infinite;
  opacity: 0.2;
  z-index: -1;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Modern AI Robot with peeking effect */
.robot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9997;
  animation: robotPeek 40s infinite ease-in-out;
  pointer-events: none;
  transform-origin: center bottom;
}

@keyframes robotPeek {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  10% {
    transform: translate(-50px, -100px) scale(1.05);
    opacity: 0.9;
  }
  20% {
    transform: translate(calc(100vw - 150px), -200px) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translate(calc(100vw - 150px), -200px) scale(0.8);
    opacity: 0.7;
  }
  30% {
    transform: translate(calc(100vw - 150px), -200px) scale(1);
    opacity: 0.9;
  }
  40% {
    transform: translate(calc(50vw - 50px), -150px) scale(1.1);
    opacity: 0.8;
  }
  45% {
    transform: translate(calc(50vw - 50px), -150px) scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: translate(calc(50vw - 50px), -150px) scale(1);
    opacity: 0.9;
  }
  60% {
    transform: translate(100px, -300px) scale(1.05);
    opacity: 0.8;
  }
  65% {
    transform: translate(100px, -300px) scale(0.85);
    opacity: 0.6;
  }
  70% {
    transform: translate(100px, -300px) scale(1);
    opacity: 0.9;
  }
  80% {
    transform: translate(calc(80vw - 100px), -100px) scale(1.08);
    opacity: 0.8;
  }
  85% {
    transform: translate(calc(80vw - 100px), -100px) scale(0.9);
    opacity: 0.7;
  }
  90% {
    transform: translate(calc(80vw - 100px), -100px) scale(1);
    opacity: 0.9;
  }
}

.robot {
  width: 80px;
  height: 100px;
  position: relative;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
}

.robot-body {
  width: 70px;
  height: 80px;
  background: linear-gradient(135deg, #0b1c2d, #1a3a5f);
  border-radius: 15px 15px 8px 8px;
  position: relative;
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.3),
    inset 0 2px 10px rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.15);
  overflow: hidden;
}

.robot-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(90deg, 
    rgba(255,107,107,0.3) 0%,
    rgba(78,205,196,0.3) 50%,
    rgba(255,209,102,0.3) 100%);
}

.robot-screen {
  position: absolute;
  top: 15px;
  left: 10px;
  width: 50px;
  height: 30px;
  background: linear-gradient(135deg, #000428, #004e92);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.screen-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: screenGlitch 5s infinite;
}

@keyframes screenGlitch {
  0%, 100% {
    opacity: 1;
    transform: translate(0, 0);
  }
  95% {
    opacity: 1;
    transform: translate(0, 0);
  }
  96% {
    opacity: 0.8;
    transform: translate(-1px, 1px);
  }
  97% {
    opacity: 0.9;
    transform: translate(1px, -1px);
  }
  98% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.screen-line {
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4ECDC4, transparent);
  margin: 2px 0;
  animation: lineScan 2s infinite;
}

@keyframes lineScan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.screen-line:nth-child(2) {
  animation-delay: 0.5s;
}

.screen-line:nth-child(3) {
  animation-delay: 1s;
}

.robot-face {
  position: absolute;
  top: 50px;
  left: 15px;
  width: 40px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.robot-eye {
  width: 12px;
  height: 12px;
  background: #4ECDC4;
  border-radius: 50%;
  position: relative;
  animation: eyeGlow 3s infinite alternate;
  box-shadow: 
    0 0 10px #4ECDC4,
    0 0 20px rgba(78, 205, 196, 0.5);
}

@keyframes eyeGlow {
  0%, 100% {
    opacity: 1;
    box-shadow: 
      0 0 10px #4ECDC4,
      0 0 20px rgba(78, 205, 196, 0.5);
  }
  50% {
    opacity: 0.7;
    box-shadow: 
      0 0 5px #4ECDC4,
      0 0 10px rgba(78, 205, 196, 0.3);
  }
}

.robot-eye::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
}

.robot-eye.left {
  animation-delay: 0s;
}

.robot-eye.right {
  animation-delay: 1.5s;
}

.robot-mouth {
  width: 25px;
  height: 8px;
  background: linear-gradient(90deg, #FF6B6B, #A599E9);
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: 12.5px;
  animation: mouthTalk 4s infinite;
  overflow: hidden;
}

@keyframes mouthTalk {
  0%, 100% {
    height: 8px;
    opacity: 0.8;
  }
  25% {
    height: 12px;
    opacity: 1;
  }
  50% {
    height: 6px;
    opacity: 0.6;
  }
  75% {
    height: 10px;
    opacity: 0.9;
  }
}

.robot-mouth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: mouthShine 2s infinite;
}

@keyframes mouthShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.robot-antenna {
  position: absolute;
  top: -25px;
  left: 30px;
}

.antenna-base {
  width: 8px;
  height: 20px;
  background: linear-gradient(to top, #A599E9, #4ECDC4);
  border-radius: 4px 4px 0 0;
}

.antenna-light {
  width: 15px;
  height: 15px;
  background: radial-gradient(circle at 30% 30%, #FF6B6B, transparent 70%);
  border-radius: 50%;
  position: absolute;
  top: -15px;
  left: -3.5px;
  animation: antennaPulse 2s infinite;
  box-shadow: 
    0 0 20px #FF6B6B,
    0 0 40px rgba(255, 107, 107, 0.3);
}

@keyframes antennaPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.robot-wheels {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.wheel {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #333, #666);
  border-radius: 50%;
  position: relative;
  animation: wheelSpin 10s infinite linear;
}

@keyframes wheelSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.wheel::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: #222;
  border-radius: 50%;
}

.robot-arms {
  position: absolute;
  top: 20px;
  left: -15px;
  width: calc(100% + 30px);
  display: flex;
  justify-content: space-between;
}

.arm {
  width: 15px;
  height: 40px;
  background: linear-gradient(to bottom, #1a3a5f, #0b1c2d);
  border-radius: 8px;
  animation: armSwing 8s infinite ease-in-out;
}

.arm.left {
  transform-origin: top right;
  animation-delay: 0s;
}

.arm.right {
  transform-origin: top left;
  animation-delay: 4s;
}

@keyframes armSwing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(15deg);
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappFloat 3s ease-in-out infinite;
  visibility: visible !important;
  opacity: 1 !important;
}

@keyframes whatsappFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.float-glow {
  position: absolute;
  inset: -10px;
  background: #25D366;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(20px);
  animation: floatGlow 2s infinite alternate;
}

@keyframes floatGlow {
  0% { opacity: 0.3; transform: scale(0.9); }
  100% { opacity: 0.6; transform: scale(1.1); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* HEADER - Updated height for larger logo */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(24, 165, 88, 0.1);
  z-index: 1000;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  height: 90px !important;
  min-height: 90px !important;
  max-height: 100px;
  overflow: visible;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 64px !important;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  height: 90px !important;
}

.logo-container {
  position: relative;
}

.logo {
  height: 50px;
  max-height: 60px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  background: transparent !important;
  mix-blend-mode: multiply;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.1;
  z-index: -1;
  animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.1); }
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
}

.nav-link span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  z-index: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-link:hover span {
  color: var(--primary-color);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pulse-phone {
  position: relative;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--primary-color);
}

.phone-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.phone-ring {
  position: absolute;
  inset: -5px;
  border: 2px solid var(--accent-teal);
  border-radius: 50%;
  animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 30px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  z-index: 1001;
  margin-left: 15px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-dark) !important;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding-top: 90px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 20px 0;
}

.mobile-nav-link {
  display: block;
  padding: 18px 64px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-color);
  background: rgba(24, 165, 88, 0.05);
}

.mobile-nav-link.phone {
  color: var(--primary-color);
  font-weight: 600;
  background: rgba(24, 165, 88, 0.1);
}

/* Button Styles */
.btn-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.rainbow-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rainbow-hover:hover::before {
  opacity: 1;
}

.rainbow-hover:hover {
  border-color: transparent;
}

.btn-primary:hover {
  background: #148c4a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(24, 165, 88, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* TRUST */
.trust {
  padding: 60px 0;
  background: #f8f9fa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.color-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    var(--accent-red) 0%, 
    var(--accent-teal) 25%, 
    var(--accent-yellow) 50%, 
    var(--accent-purple) 75%, 
    var(--accent-red) 100%);
  background-size: 200% 100%;
  animation: waveMove 10s infinite linear;
  opacity: 0.05;
}

@keyframes waveMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.trust-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--icon-color, var(--primary-color));
}

.trust-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trust-icon {
  width: 70px;
  height: 70px;
  background: rgba(var(--icon-color-rgb, 24, 165, 88), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--icon-color, var(--primary-color));
  font-size: 2rem;
  position: relative;
}

.icon-glow {
  position: absolute;
  inset: -10px;
  background: var(--icon-color, var(--primary-color));
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(10px);
  animation: iconGlow 2s infinite alternate;
}

@keyframes iconGlow {
  0% { opacity: 0.1; transform: scale(1); }
  100% { opacity: 0.2; transform: scale(1.1); }
}

.trust-item span {
  font-size: 1rem;
  max-width: 200px;
  line-height: 1.4;
}

/* SERVICES */
.services {
  padding: 80px 64px;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--secondary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.service-card {
  padding: 35px 25px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--card-color, var(--primary-color));
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-color, var(--primary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--card-color, var(--primary-color));
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, 
    rgba(var(--card-color-rgb, 24, 165, 88), 0.1), 
    rgba(var(--card-color-rgb, 24, 165, 88), 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--card-color, var(--primary-color));
  font-size: 1.8rem;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.icon-sparkle {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.8) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(15deg) scale(1.1);
}

.service-card:hover .icon-sparkle {
  opacity: 0.5;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--secondary-color);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: 24px;
  flex-grow: 1;
}

.tech-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tech-tags span {
  background: rgba(var(--card-color-rgb, 24, 165, 88), 0.1);
  color: var(--card-color, var(--primary-color));
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tech-tags span:hover {
  background: var(--card-color, var(--primary-color));
  color: white;
  transform: translateY(-2px);
}

.service-link {
  color: var(--card-color, var(--primary-color));
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--card-color-rgb, 24, 165, 88), 0.2);
}

.service-link:hover {
  gap: 12px;
}

.link-arrow {
  width: 40px;
  height: 40px;
  background: var(--card-color, var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.service-link:hover .link-arrow {
  transform: translateX(5px) rotate(360deg);
  background: var(--secondary-color);
}

/* VISUAL BREAK - FIXED FOR MOBILE */
.visual-break {
  position: relative;
  height: 50vh;
  min-height: 350px;
  background: #0b1c2d;
  overflow: hidden; /* ADD THIS - prevents overflow */
}

.color-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, 
    rgba(255, 107, 107, 0.3), 
    rgba(78, 205, 196, 0.3), 
    rgba(255, 209, 102, 0.3));
  mix-blend-mode: overlay;
  z-index: 1;
}

.visual-break video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.visual-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  background: rgba(11, 28, 45, 0.7);
  letter-spacing: 2px;
  z-index: 2;
  padding: 0 20px; /* ADD THIS - prevents text from touching edges */
  box-sizing: border-box; /* ADD THIS */
}

.visual-word {
  color: var(--word-color, white);
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 0 20px;
}

.visual-word::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20px;
  right: 20px;
  height: 5px;
  background: var(--word-color, white);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.visual-word:hover::after {
  transform: scaleX(1);
}

.floating-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: floatShape 20s infinite linear;
}

.shape.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-red);
  top: 20%;
  left: 10%;
}

.shape.triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid var(--accent-teal);
  top: 60%;
  left: 80%;
}

.shape.square {
  width: 80px;
  height: 80px;
  background: var(--accent-yellow);
  top: 40%;
  left: 70%;
  transform: rotate(45deg);
}

/* FIX FOR MOBILE OVERFLOW */
@media (max-width: 768px) {
  .visual-break {
    overflow: hidden !important; /* Force hidden on mobile */
    min-height: 250px;
    height: 40vh;
  }
  
  .floating-shapes {
    display: none; /* Hide floating shapes on mobile - they cause overflow */
  }
  
  .visual-text {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    padding: 0 15px; /* Increased padding for mobile */
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  
  .visual-word {
    font-size: 2rem;
    padding: 0 8px;
    margin: 0 2px;
    display: inline-block;
    white-space: nowrap;
    line-height: 1.2;
  }
  
  .visual-word::after {
    left: 8px;
    right: 8px;
  }
  
  /* Ensure video doesn't overflow */
  .visual-break video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .visual-text {
    font-size: 1.4rem;
    gap: 3px;
    padding: 0 10px;
  }
  
  .visual-word {
    font-size: 1.7rem;
    padding: 0 6px;
  }
}

/* Landscape mode */
@media (max-height: 600px) and (orientation: landscape) {
  .visual-break {
    height: 35vh;
    min-height: 200px;
  }
  
  .visual-text {
    font-size: 1.3rem;
  }
  
  .visual-word {
    font-size: 1.5rem;
    padding: 0 5px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .visual-text {
    font-size: 1.2rem;
    flex-direction: column;
    gap: 2px;
  }
  
  .visual-word {
    font-size: 1.4rem;
    padding: 0 4px;
    margin: 2px 0;
  }
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* WHY */
.why {
  padding: 80px 0;
  background: #ffffff;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.why-content {
  display: flex;
  gap: 80px;
  align-items: center;
}

.why-text {
  flex: 1;
}

.why-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.why-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 40px;
  line-height: 1.7;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, 
    var(--icon-color, var(--primary-color)), 
    rgba(var(--icon-color-rgb, 24, 165, 88), 0.7));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.why-list li:hover .why-icon {
  transform: rotate(15deg) scale(1.1);
}

.why-list li h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--secondary-color);
}

.why-list li p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.why-image {
  flex: 1;
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, 
    rgba(255, 107, 107, 0.2), 
    rgba(78, 205, 196, 0.2), 
    rgba(255, 209, 102, 0.2));
  mix-blend-mode: multiply;
}

.why-image:hover img {
  transform: scale(1.05);
}

.stats-overlay {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 2;
}

.stat-bubble {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--bubble-color, var(--primary-color));
  position: relative;
  overflow: hidden;
}

.stat-bubble::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bubble-color, var(--primary-color));
  opacity: 0.1;
}

.bubble-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bubble-color, var(--primary-color));
}

.bubble-text {
  font-size: 0.75rem;
  color: var(--text-medium);
  font-weight: 600;
}

/* CTA */
.cta {
  background: #0b1c2d;
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    #0b1c2d 0%, 
    #1a3a5f 25%, 
    #2a4a7f 50%, 
    #3a5a9f 75%, 
    #0b1c2d 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--feature-color, var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  border-color: var(--primary-color);
}

/* FOOTER */
.footer {
  background: #f8f9fa;
  color: var(--text-dark);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--gradient-primary);
  opacity: 0.05;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  height: 45px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  background: transparent !important;
  mix-blend-mode: multiply;
}

.footer-description {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  color: var(--social-color, var(--text-medium));
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--social-color, var(--primary-color));
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.footer-social a:hover::before {
  transform: scale(1);
}

.footer-social a:hover {
  color: white;
  transform: translateY(-3px) scale(1.1);
}

.footer-social a i {
  position: relative;
  z-index: 2;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.contact-details {
  max-width: 250px;
}

.contact-details .address {
  margin-bottom: 15px;
}

.contact-details .address h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--secondary-color);
}

.contact-details .address p {
  font-size: 0.8rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-info i {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
}

.contact-info span {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-copyright p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 15px;
}

.footer-legal a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

.footer-credit {
  text-align: right;
}

.footer-credit p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin: 0;
}

.footer-credit a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .header-container {
    padding: 16px 32px;
  }
  .logo {
    height: 44px;
    max-height: 50px;
  }
  .header {
    height: 70px;
    min-height: 70px;
    max-height: 90px;
  }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  
  .mobile-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .why-content {
    flex-direction: column;
    gap: 60px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .robot {
    width: 60px;
    height: 80px;
  }
  
  .robot-body {
    width: 50px;
    height: 60px;
  }
  
  .robot-screen {
    width: 40px;
    height: 25px;
    top: 10px;
    left: 5px;
  }
  
  .logo {
    height: 45px;
  }
  
  .footer-logo {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 10px 15px;
  }
  
  .logo {
    height: 36px;
    max-height: 40px;
  }
  
  .header {
    height: 70px;
    min-height: 70px;
    max-height: 70px;
  }
  
  .header-actions .phone-link span {
    display: none;
  }
  
  .services, .why-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .visual-text {
    font-size: 2rem;
  }
  
  .visual-word {
    font-size: 2.5rem;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .contact-details {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-credit {
    text-align: center;
  }
  
  .stats-overlay {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .stat-bubble {
    width: 80px;
    height: 80px;
  }
  
  .bubble-number {
    font-size: 1.2rem;
  }
  
  .bubble-text {
    font-size: 0.7rem;
  }
  
  .trust-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    z-index: 9999;
  }
  
  .mobile-nav-link {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .btn-primary, .btn-secondary {
    min-height: 48px;
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .mobile-nav {
    padding: 15px 0;
  }
  
  .mobile-toggle {
    display: flex !important;
    width: 35px;
    height: 25px;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mobile-toggle span {
    height: 3px;
    background: var(--text-dark) !important;
  }
}

@media (max-width: 480px) {
  .section-header h2, .why-text h2, .cta h2 {
    font-size: 1.8rem;
  }
  
  .trust-item i {
    font-size: 2rem;
  }
  
  .trust-item span {
    font-size: 0.9rem;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .visual-word {
    font-size: 2rem;
  }
  
  .robot {
    width: 50px;
    height: 70px;
  }
  
  .robot-body {
    width: 40px;
    height: 50px;
  }
  
  .robot-screen {
    width: 30px;
    height: 20px;
    top: 8px;
    left: 5px;
  }
  
  .robot-eye {
    width: 8px;
    height: 8px;
  }
  
  .robot-mouth {
    width: 20px;
    height: 6px;
  }
  
  .header-container {
    padding: 12px 15px;
  }
  
  .logo {
    height: 40px;
  }
  
  .footer-logo {
    height: 35px;
  }
  
  .mobile-nav-link {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
  }
  
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .robot-container {
    display: none !important;
  }
  
  .mobile-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: 10px;
  }
}

/* For very tall screens (mobile portrait) */
@media (max-height: 700px) and (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

/* Mobile header layout fix */
@media (max-width: 768px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px !important;
  }
  
  .logo-container {
    flex: 0 0 auto;
  }
  
  .header-actions {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-toggle {
    margin-left: auto;
    flex: 0 0 auto;
  }
  
  /* Hide phone text in mobile, show only icon */
  .phone-link span {
    display: none;
  }
  
  .phone-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}