/* Custom Colors & Tokens V2 */
:root {
  --bg-dark: #0b0a0f;
  /* Deep, dark charcoal/blue tint */
  --bg-card: #14121a;
  /* Distinct card background */
  --brand-purple: #8B5CF6;
  /* Sleek, vibrant purple */
  --brand-purple-dark: #6D28D9;
  --accent-lime: #D9F950;
  /* Lime green for contrasts / buttons */
  --accent-lime-hover: #bceb14;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --border-light: rgba(255, 255, 255, 0.05);
}

/* Base Styles & Resets */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  /* Custom scrollbar */
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

body::-webkit-scrollbar-thumb {
  background: #2a2835;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--brand-purple);
}

/* Logo Sizing - prevents logo from growing beyond navbar */
nav img {
  max-height: 48px;
  width: auto;
  height: auto;
}

footer img {
  max-height: 48px;
  width: auto;
  height: auto;
}

/* Typography Classes mapping to Tailwind */
.font-outfit {
  font-family: 'Outfit', sans-serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

/* Buttons & Elements */
.btn-primary {
  display: inline-flex;
  background-color: var(--accent-lime);
  color: #050505;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent-lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(217, 249, 80, 0.4);
}

.btn-secondary {
  display: inline-flex;
  background-color: var(--brand-purple);
  color: white;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--brand-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.shadow-lime-glow {
  box-shadow: 0 0 30px rgba(217, 249, 80, 0.15);
}

/* Specific Card Layouts */
.service-card {
  background-color: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.service-card:hover {
  background-color: #111018;
  /* Slight lift */
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.location-card {
  background-color: #111018;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.location-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: #14121a;
}

.location-card:hover::before {
  background-color: var(--accent-lime);
}

/* Animations */
/* Subtle grid line background for hero */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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: 50px 50px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}

.mask-gradient-bottom {
  mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
}

.form-container input:focus+.neon-border {
  opacity: 1;
}

/* Reveal Animations (Controlled via JS) */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0, 0, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

/* Enhanced Animations & Effects */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 15px rgba(217, 249, 80, 0.2);
  }

  50% {
    box-shadow: 0 0 30px rgba(217, 249, 80, 0.5);
  }

  100% {
    box-shadow: 0 0 15px rgba(217, 249, 80, 0.2);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* V3 Specific Utilities */
.text-gradient-purple {
  background: linear-gradient(90deg, #9f75ff 0%, #d8cfff 100%, #9f75ff 0%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s linear infinite;
  transition: all 0.5s ease;
}

.text-accent-lime {
  transition: all 0.5s ease;
}

.hero-title-group:hover .text-gradient-purple {
  background: linear-gradient(90deg, var(--accent-lime) 0%, #ffffff 100%, var(--accent-lime) 0%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(217, 249, 80, 0.4));
}

.hero-title-group:hover .text-accent-lime {
  color: var(--brand-purple);
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.4));
}

.service-card-v3 {
  background-color: #0d0c12;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card-v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
}

.service-card-v3:hover {
  background-color: #111018;
  border-color: rgba(217, 249, 80, 0.25);
  box-shadow: 0 0 20px rgba(217, 249, 80, 0.08), 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(217, 249, 80, 0.03);
  transform: translateY(-5px);
}

.service-card-v3:hover .icon-box-dark {
  background-color: #1a1f12;
  border-color: rgba(217, 249, 80, 0.3);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(217, 249, 80, 0.15);
}

.service-card-v3:hover .icon-box-dark i {
  color: var(--accent-lime);
}

.service-card-v3.active::before,
.service-card-v3:hover::before {
  background: linear-gradient(90deg, var(--accent-lime), var(--brand-purple));
}

.service-card-v3 h3 {
  transition: color 0.3s ease;
}

.service-card-v3:hover h3 {
  color: var(--accent-lime) !important;
}

.card-link {
  transition: color 0.3s ease, gap 0.3s ease;
}

.service-card-v3:hover .card-link {
  color: var(--accent-lime) !important;
}

.service-card-v3:hover span[style*="rgba(255,255,255,0.04)"] {
  color: rgba(255, 255, 255, 0.08) !important;
}

.icon-box-dark {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  background-color: #1a1722;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

/* Why Choose Us Feature Items */
.why-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-lime);
  background: rgba(217, 249, 80, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.why-feature:hover .why-icon-circle {
  background: rgba(217, 249, 80, 0.1);
  box-shadow: 0 0 20px rgba(217, 249, 80, 0.2), 0 0 40px rgba(217, 249, 80, 0.08);
  transform: scale(1.1);
}

.why-feature:hover h4 {
  color: var(--accent-lime) !important;
}

.why-feature h4 {
  transition: color 0.3s ease;
}

.location-card-v3 {
  background-color: #0b0a0f;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left-width: 4px;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.border-left-purple {
  border-left-color: var(--brand-purple);
}

.border-left-lime {
  border-left-color: var(--accent-lime);
}

.location-card-v3.border-left-purple:hover {
  background-color: #111018;
  box-shadow: -4px 0 15px rgba(139, 92, 246, 0.1);
}

.location-card-v3.border-left-lime:hover {
  background-color: #111018;
  box-shadow: -4px 0 15px rgba(217, 249, 80, 0.1);
}

/* Form Styles */
.form-input:focus {
  border-color: var(--brand-purple) !important;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
}

.form-input:hover {
  border-color: #3a3545 !important;
}

#submit-btn:hover {
  background: var(--brand-purple-dark) !important;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.4), 0 0 50px rgba(139, 92, 246, 0.15) !important;
  transform: translateY(-2px);
}

#submit-btn:active {
  transform: translateY(0);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Tailwind simulated utility classes */
.max-w-\[1400px\] {
  max-width: 1400px;
}

.max-w-\[1200px\] {
  max-width: 1200px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lg\:px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-40 {
  padding-top: 10rem;
}

.pb-32 {
  padding-bottom: 8rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.lg\:flex-row {
  flex-direction: row;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.lg\:gap-24 {
  gap: 6rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lg\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.w-full {
  width: 100%;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.h-14 {
  height: 3.5rem;
}

.min-w-6 {
  min-width: 1.5rem;
}

.w-5\/12 {
  width: 41.666667%;
}

.w-7\/12 {
  width: 58.333333%;
}

.w-3\/4 {
  width: 75%;
}

.h-\[800px\] {
  height: 800px;
}

.min-h-\[90vh\] {
  min-height: 90vh;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.z-50 {
  z-index: 50;
}

.z-40 {
  z-index: 40;
}

.z-10 {
  z-index: 10;
}

.z-\[-1\] {
  z-index: -1;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pt-0\.5 {
  padding-top: 0.125rem;
}

.text-white {
  color: #fff;
}

.text-brand-purple {
  color: var(--brand-purple);
}

.text-accent-lime {
  color: var(--accent-lime);
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.md\:text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

.lg\:text-\[80px\] {
  font-size: 80px;
  line-height: 1;
}

.font-black {
  font-weight: 900;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-light {
  font-weight: 300;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.leading-\[1\.1\] {
  line-height: 1.1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Backgrounds & borders */
.bg-\[\#0b0a0f\] {
  background-color: #0b0a0f;
}

.bg-\[\#0d0c12\] {
  background-color: #0d0c12;
}

.bg-\[\#111\] {
  background-color: #111;
}

.bg-\[\#111018\] {
  background-color: #111018;
}

.bg-\[\#14121a\] {
  background-color: #14121a;
}

.bg-\[\#181721\] {
  background-color: #181721;
}

.bg-brand-purple\/5 {
  background-color: rgba(139, 92, 246, 0.05);
}

.border {
  border-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}

.border-brand-purple\/20 {
  border-color: rgba(139, 92, 246, 0.2);
}

.border-\[\#222\] {
  border-color: #222;
}

.border-\[\#2a2835\] {
  border-color: #2a2835;
}

.border-\[\#1a1722\] {
  border-color: #1a1722;
}

.border-accent-lime {
  border-color: var(--accent-lime);
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.pointer-events-none {
  pointer-events: none;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:border-brand-purple:focus {
  border-color: var(--brand-purple);
}

.appearance-none {
  -webkit-appearance: none;
  appearance: none;
}

.resize-none {
  resize: none;
}

.transition {
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.translate-x-full {
  transform: translateX(100%);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}