:root {
  /* Color Palette */
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --secondary: #14b8a6;
  --secondary-dark: #0f766e;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --neon-blue: #00f3ff;
  --neon-pink: #ff00ff;
  --neon-green: #00ff9d;
  --whatsapp-green: #25d366;
  --whatsapp-dark-green: #128c7e;
  --dark: #0b1220;
  --darker: #060b14;
  --light: #f8fafc;
  --gray: #94a3b8;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 100%
  );
  --gradient-dark: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  --gradient-hologram: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.12) 0%,
    rgba(20, 184, 166, 0.1) 50%,
    rgba(245, 158, 11, 0.1) 100%
  );
  --gradient-whatsapp: linear-gradient(135deg, #25d366 0%, #128c7e 100%);

  /* Shadows & Glows */
  --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.2);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.5);
  --glow-primary: 0 0 30px rgba(14, 165, 233, 0.4);
  --glow-secondary: 0 0 30px rgba(20, 184, 166, 0.4);
  --glow-accent: 0 0 30px rgba(245, 158, 11, 0.35);
  --glow-whatsapp: 0 0 30px rgba(37, 211, 102, 0.4);

  /* Typography */
  --font-primary: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "SF Mono", "Monaco", "Inconsolata", monospace;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50%;
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Accessible focus styles */
:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link:focus {
  position: static;
  left: auto;
  top: auto;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--primary);
  color: white;
  z-index: 10001;
  border-radius: 6px;
}

body {
  font-family: var(--font-primary);
  background: var(--darker);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 15%,
      rgba(14, 165, 233, 0.14),
      transparent 40%
    ),
    radial-gradient(
      circle at 84% 80%,
      rgba(20, 184, 166, 0.12),
      transparent 42%
    );
  pointer-events: none;
  z-index: -1;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SECTIONS */
section {
  padding: 100px 0;
  position: relative;
}

/* LOADING OVERLAY */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
}

.loading-title {
  color: var(--primary);
  margin-bottom: 10px;
}

.loading-subtitle {
  color: var(--gray);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(108, 99, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* PARTICLE BACKGROUND */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    border-color var(--transition);
  mix-blend-mode: difference;
  display: none; /* Hidden by default, shown by JS */
}

.cursor-follower {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    background-color var(--transition);
  display: none; /* Hidden by default, shown by JS */
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

header.scrolled {
  padding: 15px 0;
  box-shadow: var(--shadow-medium);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: white;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* NAVIGATION */
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition);
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

.nav-link.active::before {
  width: 100%;
}

/* MOBILE MENU */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--light);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-case {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.case-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: 12px;
  text-align: left;
}

.case-card h4 {
  margin: 8px 0 6px;
}

.case-sub {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-size: 5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--light) 0%,
    var(--primary) 50%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradient 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes titleGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 48px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-dark);
  color: white;
  box-shadow: var(--glow-primary);
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(14, 165, 233, 0.18);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
  border: 1px solid var(--secondary-dark);
  box-shadow: var(--glow-secondary);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.accent-text {
  color: var(--primary);
}

/* WhatsApp Button */
.whatsapp-btn {
  background: var(--whatsapp-green);
  color: white;
  border: none;
  box-shadow: var(--glow-whatsapp);
  margin-top: 20px;
  width: 100%;
}

.whatsapp-btn:hover {
  background: var(--whatsapp-dark-green);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-submit-btn {
  background: var(--whatsapp-green);
  border: none;
  width: 100%;
  box-shadow: var(--glow-whatsapp);
}

.whatsapp-submit-btn:hover {
  background: var(--whatsapp-dark-green);
  transform: translateY(-5px);
}

.btn-has-icon::after {
  content: "→";
  transition: transform var(--transition);
}

.btn-has-icon:hover::after {
  transform: translateX(5px);
}

/* HERO DECORATIONS */
.hero-decoration {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  opacity: 0.1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--primary);
  animation: rotate 20s linear infinite;
}

.circle-1 {
  width: 400px;
  height: 400px;
  animation-delay: 0s;
}
.circle-2 {
  width: 300px;
  height: 300px;
  animation-delay: -5s;
}
.circle-3 {
  width: 200px;
  height: 200px;
  animation-delay: -10s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* PROJECTS SECTION */
.projects {
  background: rgba(0, 0, 0, 0.3);
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* PROJECT GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* PROJECT CARD */
.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: var(--glow-primary), var(--shadow-medium);
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hologram);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
}

.project-card:hover::before {
  opacity: 0.2;
}

.project-image {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.project-thumb-ecommerce {
  object-position: center 35%;
}

.project-thumb-netflix {
  object-position: center 28%;
}

.project-thumb-books {
  object-position: center 38%;
}

.project-thumb-corporate {
  object-position: center 18%;
}

.project-thumb-portfolio {
  object-position: center 24%;
}

.project-thumb-landing {
  object-position: center 40%;
}

.project-thumb-health {
  object-position: center 12%;
}

.project-thumb-devmart {
  object-position: center 22%;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.project-badge-streaming {
  background: rgba(229, 9, 20, 0.9);
}

.project-badge-success {
  background: rgba(34, 197, 94, 0.9);
}

.project-badge-latest {
  background: rgba(255, 107, 107, 0.95);
}

.project-image--gradient {
  position: relative;
  background: linear-gradient(135deg, #6c63ff 0%, #00d4aa 100%);
}

.project-image--emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 3rem;
  color: white;
}

.project-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.project-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light);
  margin: 0;
}

.project-featured {
  font-size: 0.75rem;
  background: rgba(108, 99, 255, 0.2);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 600;
}

.project-description {
  color: var(--gray);
  margin-bottom: 18px;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric {
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.metric small {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tech-tag {
  padding: 6px 12px;
  background: rgba(108, 99, 255, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(108, 99, 255, 0.3);
  transition: all var(--transition);
}

.tech-tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.project-links {
  display: flex;
  gap: 12px;
}

.project-link {
  flex: 1;
  padding: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--light);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.case-btn {
  background: rgba(108, 99, 255, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

.case-btn:hover {
  background: var(--primary);
  color: white;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.project-filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.project-filter-btn:hover,
.project-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.project-card.is-hidden {
  display: none;
}

/* PROJECT FEATURES SHOWCASE */
.features-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
  text-align: center;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--glow-primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary);
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--light);
}

.feature-description {
  color: var(--gray);
}

/* SERVICES, TESTIMONIALS, FAQ */
.services,
.testimonials,
.faq {
  position: relative;
}

.featured-case-study {
  padding: 100px 0 40px;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(108, 99, 255, 0.12),
      transparent 45%
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.1), transparent 45%);
}

.featured-case-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.featured-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.featured-case-copy,
.featured-case-visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.featured-case-copy h2 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.featured-case-copy p {
  color: var(--gray);
  margin-bottom: 20px;
}

.featured-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.featured-stats div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.featured-stats strong {
  display: block;
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.featured-stats span {
  color: var(--gray);
  font-size: 0.82rem;
}

.featured-case-visual {
  display: grid;
  gap: 16px;
}

.before-after {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 280px;
}

.before-after-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: white;
  box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.5);
  pointer-events: none;
  transform: translateX(-50%);
}

.before-after-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.before-label,
.after-label {
  position: absolute;
  top: 14px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.before-label {
  left: 14px;
}

.after-label {
  right: 14px;
}

.before-after-caption {
  color: var(--gray);
  font-size: 0.85rem;
  margin: 0;
}

.featured-case-visual figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.featured-case-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.featured-case-visual figcaption {
  color: var(--gray);
  font-size: 0.82rem;
  padding: 10px 12px;
}

.hiring-cta-strip {
  padding: 30px 0 80px;
}

.hiring-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  background: linear-gradient(
    130deg,
    rgba(108, 99, 255, 0.2),
    rgba(0, 212, 170, 0.12)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.hiring-cta-copy h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hiring-cta-copy p {
  color: #d2d5e2;
  max-width: 65ch;
}

.hiring-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-item {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  padding: 16px;
}

.proof-item strong {
  display: block;
  font-size: 1.2rem;
  color: var(--light);
  margin-bottom: 4px;
}

.proof-item span {
  color: #d2d5e2;
  font-size: 0.82rem;
}

.services {
  background: rgba(0, 0, 0, 0.18);
}

.services-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.timeline-section {
  background: rgba(0, 0, 0, 0.22);
}

.timeline-list {
  display: grid;
  gap: 18px;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.04em;
  padding-top: 18px;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.timeline-content h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.timeline-content p {
  margin: 0;
  color: var(--gray);
}

.testimonial-carousel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.testimonial-track {
  position: relative;
  min-height: 190px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-slide p {
  color: var(--light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 14px;
}

.testimonial-slide strong {
  display: block;
  margin-bottom: 4px;
}

.testimonial-slide span {
  color: var(--gray);
  font-size: 0.9rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.logo-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 10px;
  border-radius: 999px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--light);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--primary);
}

.service-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition);
}

.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-medium);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p,
.testimonial-card p {
  color: var(--gray);
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 4px;
}

.testimonial-card span {
  color: var(--gray);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--light);
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  transition: all var(--transition);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--primary);
  background: rgba(108, 99, 255, 0.08);
}

.faq-item > span {
  font-weight: 700;
}

.faq-item i {
  transition: transform var(--transition);
}

.faq-item.active i {
  transform: rotate(45deg);
}

.faq-answer {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease;
  color: var(--gray);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

/* ABOUT SECTION */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(108, 99, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.profile-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
  position: relative;
  z-index: 2;
}

.image-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

/* SKILLS */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.skill-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-item:hover {
  background: rgba(108, 99, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.skill-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.skill-name {
  font-weight: 600;
  margin-bottom: 10px;
}

.skill-level {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 1s ease;
}

.progress-95 {
  width: 95%;
}

.progress-90 {
  width: 90%;
}

.progress-85 {
  width: 85%;
}

.progress-50 {
  width: 50%;
}

/* CONTACT SECTION */
.contact {
  background: rgba(0, 0, 0, 0.5);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
  border-color: var(--primary);
  transform: translateX(10px);
}

.contact-item .contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.contact-item.whatsapp-item .contact-icon {
  background: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-green);
}

.contact-details h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--gray);
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* CONTACT FORM */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--light);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--light);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  background: rgba(37, 211, 102, 0.1);
  padding: 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border-left: 3px solid var(--whatsapp-green);
}

.contact-note,
.form-note-text {
  color: var(--gray);
  display: block;
}

.contact-note {
  font-size: 0.9rem;
  margin-top: 5px;
}

.form-note-text {
  margin-bottom: 15px;
}

.contact-form-title {
  margin-bottom: 30px;
  color: var(--light);
}

.form-note i {
  color: var(--whatsapp-green);
  margin-right: 8px;
}

/* FOOTER */
footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-mark {
  color: var(--primary);
}

.footer-description {
  color: var(--gray);
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--light);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--gray);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .about-text h2,
  .contact-info h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: 700px;
    padding-top: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-case {
    display: none;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-decoration {
    right: 5%;
    width: 300px;
    height: 300px;
  }

  .circle-1 {
    width: 300px;
    height: 300px;
  }
  .circle-2 {
    width: 225px;
    height: 225px;
  }
  .circle-3 {
    width: 150px;
    height: 150px;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .project-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-case-grid,
  .hiring-cta-grid {
    grid-template-columns: 1fr;
  }

  .featured-case-copy h2,
  .hiring-cta-copy h2 {
    font-size: 1.8rem;
  }

  .timeline-item {
    grid-template-columns: 90px 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 8, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
  }

  .hero {
    padding-top: 120px;
    min-height: 550px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-decoration {
    display: none;
  }

  .project-filters {
    gap: 10px;
  }

  .project-filter-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .project-image {
    height: 200px;
  }

  .project-content {
    padding: 20px;
  }

  .project-title {
    font-size: 1.2rem;
  }

  .project-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-metrics {
    grid-template-columns: repeat(3, 1fr);
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .metric strong {
    font-size: 1.1rem;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .features-showcase {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .featured-case-copy,
  .featured-case-visual,
  .hiring-cta-grid {
    padding: 20px;
  }

  .featured-stats {
    grid-template-columns: 1fr;
  }

  .before-after-image {
    height: 250px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-year {
    padding-top: 0;
  }

  .testimonial-carousel {
    padding: 20px;
  }

  .hiring-proof {
    grid-template-columns: 1fr;
  }

  .service-card,
  .testimonial-card {
    padding: 24px;
  }

  .faq-item {
    padding: 18px 18px;
  }

  .contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-cta {
    gap: 10px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .project-image {
    height: 180px;
  }

  .project-content {
    padding: 16px;
  }

  .project-title {
    font-size: 1.1rem;
  }

  .project-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .metric {
    text-align: center;
  }

  .metric strong {
    font-size: 1rem;
  }

  .metric small {
    font-size: 0.7rem;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 12px;
  }

  .tech-tag {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .project-links {
    flex-direction: column;
    gap: 8px;
  }

  .project-link {
    padding: 10px;
    font-size: 0.85rem;
  }

  .project-filters {
    justify-content: flex-start;
  }

  .project-filter-btn {
    width: 100%;
  }

  .featured-case-visual img {
    height: 180px;
  }

  .before-after-image {
    height: 190px;
  }

  .testimonial-slide p {
    font-size: 1rem;
  }

  .service-card,
  .testimonial-card {
    padding: 20px;
  }

  .faq-item {
    grid-template-columns: 1fr auto;
    padding: 16px;
  }

  .about-text h2,
  .contact-info h2 {
    font-size: 2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* DARK/LIGHT MODE TOGGLE */
.theme-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.theme-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.theme-btn:hover {
  background: var(--primary);
  transform: rotate(180deg);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all var(--transition);
  z-index: 1000;
  animation: float-whatsapp 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark-green);
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

@keyframes float-whatsapp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Adjust other floating buttons for WhatsApp button */
.theme-toggle {
  bottom: 105px; /* Move theme toggle up */
}

.back-to-top {
  bottom: 165px; /* Move back-to-top up */
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

/* LOADING ANIMATIONS */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* GRID LINES */
.grid-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.05;
}

.grid-line {
  position: absolute;
  background: var(--light);
}

.grid-line.vertical {
  width: 1px;
  height: 100%;
  top: 0;
}

.grid-line.horizontal {
  width: 100%;
  height: 1px;
  left: 0;
}

/* NOTIFICATION */
.notification {
  position: fixed;
  top: 100px;
  right: 30px;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.9);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  color: var(--light);
  z-index: 10000;
  transform: translateX(100%);
  transition: transform var(--transition);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-left-color: var(--accent);
}

.notification.error {
  border-left-color: var(--secondary);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .theme-toggle {
    bottom: 90px;
    right: 20px;
  }

  .back-to-top {
    bottom: 150px;
    right: 20px;
  }

  .notification {
    top: 80px;
    right: 20px;
    left: 20px;
    max-width: none;
  }
}

/* LIGHT THEME OVERRIDES */
body.light-theme {
  background: var(--light);
  color: var(--dark);
}

body.light-theme::before {
  background:
    radial-gradient(
      circle at 18% 15%,
      rgba(14, 165, 233, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at 84% 80%,
      rgba(20, 184, 166, 0.08),
      transparent 42%
    );
}

body.light-theme .cursor {
  border-color: var(--primary-dark);
  mix-blend-mode: normal;
}

body.light-theme .cursor-follower {
  background: var(--primary-dark);
}

body.light-theme header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .logo {
  color: var(--dark);
}

body.light-theme .nav-link {
  color: var(--dark);
}

body.light-theme .nav-link:hover {
  color: var(--primary);
}

body.light-theme .mobile-menu-btn {
  background: rgba(0, 0, 0, 0.1);
  color: var(--dark);
}

body.light-theme .btn-secondary {
  color: var(--dark);
  border: 2px solid rgba(0, 0, 0, 0.2);
}

body.light-theme .project-card,
body.light-theme .feature-card,
body.light-theme .skill-item,
body.light-theme .contact-item,
body.light-theme .contact-form,
body.light-theme .featured-case-copy,
body.light-theme .featured-case-visual,
body.light-theme .testimonial-carousel,
body.light-theme .timeline-content,
body.light-theme .service-card,
body.light-theme .proof-item,
body.light-theme .form-control,
body.light-theme .social-link,
body.light-theme .project-link,
body.light-theme .theme-btn,
body.light-theme .back-to-top {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .footer-description,
body.light-theme .footer-col a,
body.light-theme .contact-details p,
body.light-theme .feature-description,
body.light-theme .project-description,
body.light-theme .before-after-caption,
body.light-theme .timeline-content p,
body.light-theme .logo-pill,
body.light-theme .proof-item span,
body.light-theme .about-text p,
body.light-theme .hero-subtitle {
  color: #4b5563;
}

body.light-theme .services,
body.light-theme .timeline-section,
body.light-theme .projects,
body.light-theme .contact,
body.light-theme .hiring-cta-strip {
  background: rgba(2, 6, 23, 0.02);
}

body.light-theme .hiring-cta-grid {
  background: linear-gradient(
    130deg,
    rgba(14, 165, 233, 0.14),
    rgba(20, 184, 166, 0.1)
  );
}

body.light-theme footer {
  background: rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .notification {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
}

/* CASE STUDY MODAL */
.case-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.case-modal.active {
  display: flex;
}

.case-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.case-modal-content {
  position: relative;
  z-index: 2001;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: var(--shadow-heavy);
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
  z-index: 2002;
}

.case-modal-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.case-study-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.case-study-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--gray);
  font-size: 0.9rem;
}

.case-study-section {
  margin-bottom: 30px;
}

.case-study-section h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.case-study-section p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.case-study-section ul {
  list-style: none;
  margin-left: 0;
}

.case-study-section li {
  color: var(--gray);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.case-study-section li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.case-study-cta {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 15px;
}

.case-study-cta .btn {
  flex: 1;
}

@media (max-width: 768px) {
  .case-modal-content {
    padding: 30px 20px;
    max-height: 90vh;
  }

  .case-study-header h2 {
    font-size: 1.5rem;
  }

  .case-study-section h3 {
    font-size: 1.1rem;
  }

  .case-study-cta {
    flex-direction: column;
  }
}
