/* ============================================
   MySock - Mind-Blowing Design System
   Premium Dark Theme with Advanced Animations
   ============================================ */

/* === CSS Variables === */
:root {
  /* Colors */
  --bg-deep: #030014;
  --bg-dark: #0a0a1a;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --text-primary: #f0f0ff;
  --text-secondary: #8892b0;
  --text-muted: #5a6389;

  /* Accent Gradient */
  --accent-1: #7c3aed;
  /* Violet */
  --accent-2: #ec4899;
  /* Pink */
  --accent-3: #06b6d4;
  /* Cyan */
  --accent-4: #10b981;
  /* Emerald */

  /* Glow Colors */
  --glow-primary: rgba(124, 58, 237, 0.4);
  --glow-secondary: rgba(236, 72, 153, 0.4);

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s var(--ease-out-expo);
  --transition-smooth: 0.4s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

body.loading {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* === Custom Cursor === */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, opacity 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--accent-1);
  background: rgba(124, 58, 237, 0.1);
}

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

.morph-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: morphMove 20s ease-in-out infinite;
}

.morph-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.morph-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  bottom: -150px;
  right: -150px;
  animation-delay: -7s;
}

.morph-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-4));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
  opacity: 0.3;
}

@keyframes morphMove {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }

  25% {
    transform: translate(50px, -30px) scale(1.1) rotate(90deg);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    transform: translate(-30px, 50px) scale(0.95) rotate(180deg);
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  75% {
    transform: translate(-50px, -20px) scale(1.05) rotate(270deg);
    border-radius: 50% 30% 50% 70% / 30% 70% 50% 60%;
  }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* === Page Loader === */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.loader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.loader-logo span {
  color: var(--accent-2);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  animation: loadProgress 1.5s var(--ease-out-expo) forwards;
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(3, 0, 20, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.dot {
  color: var(--accent-2);
}

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

.nav-link {
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  transition: var(--transition-smooth);
}

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

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

.mobile-toggle {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  box-shadow: 0 4px 20px var(--glow-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--glow-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-xl {
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-4);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title .line {
  display: block;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: revealWord 0.8s var(--ease-out-expo) forwards;
}

.hero-title .word:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-title .word:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-title .word:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-title .line:nth-child(2) .word:nth-child(1) {
  animation-delay: 0.4s;
}

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

.hero-title .line:nth-child(2) .word:nth-child(3) {
  animation-delay: 0.6s;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {

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

  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out-expo) 0.7s forwards;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out-expo) 0.9s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out-expo) 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-1), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

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

  50% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
}

/* Floating 3D Elements */
.hero-3d-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.3));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.el-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 10%;
  animation: float3D 6s ease-in-out infinite;
}

.el-2 {
  width: 120px;
  height: 120px;
  top: 25%;
  right: 8%;
  animation: float3D 8s ease-in-out infinite reverse;
}

.el-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 15%;
  animation: float3D 7s ease-in-out infinite 1s;
}

.el-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 12%;
  animation: float3D 9s ease-in-out infinite 2s reverse;
}

@keyframes float3D {

  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }

  25% {
    transform: translateY(-20px) rotateX(10deg) rotateY(10deg);
  }

  50% {
    transform: translateY(10px) rotateX(-5deg) rotateY(-10deg);
  }

  75% {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  }
}

/* === Trust Bar === */
.trust-bar {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.trust-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 20s linear infinite;
}

.client-logo {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.5;
  transition: var(--transition-fast);
}

.client-logo:hover {
  opacity: 1;
  color: var(--text-primary);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* === Stats Section === */
.stats-section {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  opacity: 0;
  transition: var(--transition-smooth);
}

.stat-card:hover::before {
  opacity: 0.1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  display: inline;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-2);
  display: inline;
}

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

/* === Section Styles === */
.section {
  padding: 6rem 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent-1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(124, 58, 237, 0.3);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, var(--glow-primary), transparent 70%);
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.service-card:hover .card-glow {
  opacity: 0.5;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border-radius: 16px;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.card-features i {
  color: var(--accent-4);
}

.card-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.service-card:hover .card-cta {
  gap: 0.75rem;
}

/* Step number as link */
a.step-number {
  display: flex;
  transition: all 0.3s;
}

a.step-number:hover {
  background: var(--accent-1);
  color: white;
  border-color: var(--accent-1);
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--glow-primary);
}

/* === Why Us Section === */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-text .section-title {
  text-align: left;
}

.why-us-text>p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(124, 58, 237, 0.2);
  transform: translateX(10px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--accent-1);
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* === Process Timeline === */
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-3), var(--accent-4));
}

.process-step {
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--bg-dark);
  border: 2px solid var(--accent-1);
  border-radius: 50%;
  color: var(--accent-1);
  position: relative;
  z-index: 1;
}

.step-card {
  padding: 2rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--accent-1);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* === Testimonials === */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(124, 58, 237, 0.3);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.author-info strong {
  display: block;
  font-size: 1rem;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* === FAQ Section === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.3);
}

.faq-item.active {
  border-color: var(--accent-1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-glass);
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
  font-size: 1.25rem;
  color: var(--accent-1);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === Contact Section === */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text .section-title {
  text-align: left;
}

.contact-text>p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 100px;
  color: #ef4444;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-1);
}

.info-item i {
  font-size: 1.25rem;
  color: var(--accent-1);
}

.trust-signals {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-item i {
  color: var(--accent-4);
}

/* Contact Form */
.contact-form {
  padding: 3rem;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(20px);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* === Footer === */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4rem;
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--accent-2);
}

.footer-brand p {
  color: var(--text-secondary);
  max-width: 300px;
}

.footer-links-group h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-links-group a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 0.4rem 0;
  transition: var(--transition-fast);
}

.footer-links-group a:hover {
  color: var(--accent-1);
  transform: translateX(5px);
}

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

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

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

/* === Reveal Animations === */
.reveal-text,
.reveal-up,
.reveal-fade,
.reveal-slide,
.reveal-split {
  opacity: 0;
}

.reveal-text.visible,
.reveal-up.visible,
.reveal-fade.visible,
.reveal-slide.visible,
.reveal-split.visible {
  opacity: 1;
}

/* === Responsive === */
@media (max-width: 1024px) {

  .services-grid,
  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .process-line {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Hide custom cursor on mobile */
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .services-grid,
  .testimonials-slider,
  .process-timeline,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-3d-elements {
    display: none;
  }
}

/* ============================================
   DASHING ANIMATIONS - Extra Effects
   ============================================ */

/* Shimmer Effect for Cards */
.service-card::after,
.step-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.service-card:hover::after,
.step-card:hover::after {
  left: 100%;
}

/* Neon Glow Text on Hover */
.gradient-text {
  text-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
  transition: text-shadow 0.3s ease;
}

.gradient-text:hover {
  text-shadow:
    0 0 20px rgba(124, 58, 237, 0.8),
    0 0 40px rgba(236, 72, 153, 0.6),
    0 0 60px rgba(6, 182, 212, 0.4);
}

/* Pulse Animation for Buttons */
.btn-primary {
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  }

  50% {
    box-shadow: 0 4px 40px rgba(124, 58, 237, 0.6), 0 0 60px rgba(236, 72, 153, 0.3);
  }
}

/* Glitch Effect for Logo */
.logo {
  position: relative;
}

.logo:hover {
  animation: glitchText 0.3s ease;
}

@keyframes glitchText {

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

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(2px, -2px);
  }

  60% {
    transform: translate(-1px, -1px);
  }

  80% {
    transform: translate(1px, 1px);
  }
}

/* Floating Animation for Icons */
.card-icon,
.feature-icon {
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

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

  50% {
    transform: translateY(-8px);
  }
}

/* Rainbow Border on Hover */
.service-card:hover,
.testimonial-card:hover {
  border-image: linear-gradient(135deg,
      var(--accent-1),
      var(--accent-2),
      var(--accent-3),
      var(--accent-4)) 1;
  border-width: 1px;
  border-style: solid;
}

/* Rotating Border Gradient */
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
      var(--accent-1),
      var(--accent-2),
      var(--accent-3),
      var(--accent-1));
  background-size: 400% 400%;
  border-radius: 30px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
  opacity: 0.5;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Stats Number Glow */
.stat-number {
  text-shadow: 0 0 20px currentColor;
}

/* Stagger Animation for Grid Items */
.services-grid .service-card:nth-child(1) {
  animation-delay: 0s;
}

.services-grid .service-card:nth-child(2) {
  animation-delay: 0.1s;
}

.services-grid .service-card:nth-child(3) {
  animation-delay: 0.2s;
}

.services-grid .service-card:nth-child(4) {
  animation-delay: 0.3s;
}

.services-grid .service-card:nth-child(5) {
  animation-delay: 0.4s;
}

.services-grid .service-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* Enhanced Scroll Indicator */
.hero-scroll-indicator .scroll-line {
  position: relative;
  overflow: hidden;
}

.hero-scroll-indicator .scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, var(--accent-1), transparent);
  animation: scrollIndicator 1.5s ease-in-out infinite;
}

@keyframes scrollIndicator {

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

  50% {
    top: 40px;
    opacity: 0;
  }
}

/* Hover Scale with Spring Effect */
.magnetic {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.magnetic:hover {
  transform: scale(1.05);
}

/* FAQ Accordion Smooth Expand */
.faq-answer {
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Input Focus Glow */
.form-group input:focus,
.form-group textarea:focus {
  box-shadow:
    0 0 0 4px rgba(124, 58, 237, 0.2),
    0 0 20px rgba(124, 58, 237, 0.3);
}

/* Testimonial Card Hover Lift */
.testimonial-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(124, 58, 237, 0.2);
}

/* Hero Badge Pulse */
.hero-badge {
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
  }
}

/* Trust Bar Marquee Speed Variation */
.logo-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Section Tag Underline Animation */
.section-tag {
  position: relative;
  overflow: hidden;
}

.section-tag::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  animation: underlineSweep 2s ease-in-out infinite;
}

@keyframes underlineSweep {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 100%;
  }
}

/* Process Step Number Pulse */
.step-number {
  animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(124, 58, 237, 0);
  }
}

/* Cursor Trail Style (added via JS but styled here) */
.cursor-trail {
  opacity: 0.8;
  transition: opacity 0.3s;
}

/* Hide cursor trail on mobile */
@media (max-width: 768px) {
  .cursor-trail {
    display: none;
  }
}