
:root {
  --transition-duration: 0.28s;
  --transition-timing: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
}

body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background: var(--color-light);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Trust badge */
.popular-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #F59E0B;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}
/* FAQ Styles */
.faq-question {
  transition: all 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer:not(.hidden) {
  max-height: 500px;
}

/* Process steps */
.process-step {
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-3px);
}
/* Process steps animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.process-step:hover {
  animation: pulse 1s ease infinite;
}
/* Hero section */
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
}

/* Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Services cards */
.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* Premium Button Effects */
.btn-primary, .cta {
  position: relative;
  overflow: hidden;
  transition: all var(--transition-duration) var(--transition-timing);
  will-change: transform;
}

.cta-secondary {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.cta-secondary:hover {
  background: var(--color-primary-light);
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 86, 255, 0.15);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.btn-primary:focus:not(:active)::after {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.15;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Card Tilt Effect */
.card-tilt {
  transition: transform var(--transition-duration) var(--transition-timing);
  will-change: transform;
}
/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Form styles */
form input,
form textarea,
form select {
  transition: all 0.2s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 86, 255, 0.2);
  border-color: rgba(0, 86, 255, 0.5);
}

/* Mobile menu animation */
#mobileNav {
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

#mobileNav:not(.hidden) {
  max-height: 500px;
}
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Portfolio item hover effect */
.portfolio-item:hover {
  transform: translateY(-5px);
}

/* Smooth transitions */
a, button {
  transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #3B82F6;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2563EB;
}
/* Small text at bottom */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
.hero-image {
    margin-top: 2rem;
  }
}