/* ================================================================
   SANRAM TECH - MODERN PROFESSIONAL DESIGN SYSTEM
   ================================================================ */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  /* Brand Colors - Professional & Trustworthy */
  --color-primary: #0A2540;
  --color-primary-light: #1E3A5F;
  --color-primary-dark: #051729;

  --color-secondary: #3B82F6;
  --color-secondary-light: #60A5FA;
  --color-secondary-dark: #2563EB;

  --color-accent: #8B5CF6;
  --color-accent-light: #A78BFA;

  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* Neutral Colors */
  --color-slate-50: #F8FAFC;
  --color-slate-100: #F1F5F9;
  --color-slate-200: #E2E8F0;
  --color-slate-300: #CBD5E1;
  --color-slate-400: #94A3B8;
  --color-slate-500: #64748B;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1E293B;
  --color-slate-900: #0F172A;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0A2540 0%, #1E3A5F 50%, #3B82F6 100%);
  --gradient-secondary: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.85) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-premium: 0 20px 40px -10px rgba(59, 130, 246, 0.15);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography Scale */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
}

/* ----------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   ---------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--color-slate-700);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

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

/* ----------------------------------------------------------------
   3. SECTION UTILITIES
   ---------------------------------------------------------------- */
.section-title {
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-slate-600);
  margin-bottom: var(--spacing-xl);
}

/* ----------------------------------------------------------------
   4. NAVIGATION / HEADER
   ---------------------------------------------------------------- */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  z-index: 1000;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-primary) !important;
  transition: transform var(--transition-base);
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand i {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-weight: 500;
  color: var(--color-slate-700) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: width var(--transition-base);
}

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

.nav-link:hover {
  color: var(--color-secondary) !important;
}

/* ----------------------------------------------------------------
   5. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  background: var(--gradient-primary);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -250px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

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

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.hero .highlight {
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero p {
  font-size: var(--text-xl);
  opacity: 0.95;
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero .btn-group {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image-container {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-image-container img {
  border-radius: var(--radius-2xl);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-slow);
}

.hero-image-container:hover img {
  transform: translateY(-10px) scale(1.02);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ----------------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  font-size: var(--text-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-secondary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: white;
}

.btn-light {
  background: white;
  color: var(--color-primary);
  border-color: white;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-light:hover {
  background: white;
  color: var(--color-primary);
  transform: translateY(-3px);
}

.btn-outline-primary {
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-3px);
}

/* ----------------------------------------------------------------
   7. CARDS & SERVICE COMPONENTS
   ---------------------------------------------------------------- */
.services-card,
.card-premium {
  background: var(--gradient-card);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  overflow: hidden;
  position: relative;
}

.services-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.services-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: var(--color-secondary);
}

.services-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  transition: all var(--transition-base);
  position: relative;
}

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

.services-icon i {
  font-size: 2.5rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-secondary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  display: inline-block;
  transition: all var(--transition-base);
}

.badge:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   8. DOMAIN/INDUSTRY CARDS
   ---------------------------------------------------------------- */
.domain-card {
  background: white;
  border: 2px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.domain-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--gradient-secondary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: all var(--transition-slow);
}

.domain-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-premium);
  transform: translateY(-5px);
}

.domain-card:hover::after {
  width: 200px;
  height: 200px;
  opacity: 0.1;
}

.domain-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: inline-block;
  transition: transform var(--transition-base);
}

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

/* ----------------------------------------------------------------
   9. TALENT/TEAM SECTIONS
   ---------------------------------------------------------------- */
.talent-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
  border: 2px solid transparent;
}

.talent-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
}

.talent-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  color: white;
  font-size: var(--text-3xl);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.skill-tag {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  background: var(--color-slate-100);
  color: var(--color-slate-700);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  margin: 0.25rem;
  transition: all var(--transition-base);
}

.skill-tag:hover {
  background: var(--color-secondary);
  color: white;
}

/* ----------------------------------------------------------------
   10. TESTIMONIALS
   ---------------------------------------------------------------- */
.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  border-left: 4px solid var(--color-secondary);
  transition: all var(--transition-slow);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.testimonial-quote {
  font-size: var(--text-4xl);
  color: var(--color-secondary);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: var(--text-lg);
  color: var(--color-slate-600);
  font-style: italic;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

/* ----------------------------------------------------------------
   11. STATS & METRICS
   ---------------------------------------------------------------- */
.stat-number {
  font-size: var(--text-5xl);
  font-weight: 800;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-weight: 600;
  color: var(--color-slate-600);
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------------
   12. TECH STACK & BACKGROUND SECTIONS
   ---------------------------------------------------------------- */
.tech-stack-dark {
  background: radial-gradient(circle at top center, #0F172A 0%, #020617 100%);
  color: white;
}

/* Fix Visibility of Section Title in Dark Mode */
.tech-stack-dark .section-title {
  background: none;
  -webkit-text-fill-color: white;
  color: white;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  border-bottom: none;
  /* Remove default underline if needed, or style it */
}

.tech-stack-dark .section-title::after {
  background: #3B82F6;
  box-shadow: 0 0 10px #3B82F6;
}

/* Neon Glow Cards */
.tech-card-glass {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  /* Blue tinted border */
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.1), inset 0 0 20px rgba(59, 130, 246, 0.05);
}

.tech-card-glass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
}

.tech-card-glass:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4), inset 0 0 20px rgba(59, 130, 246, 0.2);
  background: rgba(15, 23, 42, 0.8);
}

.tech-card-glass:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Neon Icon Wrapper */
.tech-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  font-size: 2.5rem;
  color: #60A5FA;
  /* Bright Blue */
  transition: all 0.4s ease;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.tech-card-glass:hover .tech-icon-wrapper {
  background: rgba(59, 130, 246, 0.2);
  color: white;
  transform: scale(1.1) rotate(5deg);
  border-color: #3B82F6;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
  text-shadow: 0 0 10px white;
}

.tech-stack,
.bg-section {
  background: var(--color-slate-50);
  position: relative;
}

/* ----------------------------------------------------------------
   13. AI SHOWCASE SECTION
   ---------------------------------------------------------------- */
.ai-showcase {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  color: white;
}

.ai-showcase::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

.ai-feature-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  transition: all var(--transition-slow);
  border: 2px solid transparent;
}

.ai-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-color: var(--color-accent);
}

/* ----------------------------------------------------------------
   14. CONTACT SECTION
   ---------------------------------------------------------------- */
.contact-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-2xl);
  border: 2px solid var(--color-slate-200);
  transition: all var(--transition-slow);
}

.contact-card:hover {
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-secondary);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-lg);
  transition: transform var(--transition-base);
}

.contact-info-item:hover {
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.contact-info-item:hover .contact-icon {
  background: var(--gradient-secondary);
  transform: scale(1.1) rotate(5deg);
}

.contact-info-item:hover .contact-icon i {
  color: white !important;
}

.contact-icon i {
  color: var(--color-secondary);
  font-size: var(--text-xl);
  transition: color var(--transition-base);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  margin-right: var(--spacing-sm);
  color: var(--color-secondary);
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--gradient-secondary);
  color: white;
  transform: translateY(-5px) rotate(5deg);
  box-shadow: var(--shadow-md);
}

/* ----------------------------------------------------------------
   15. FORMS
   ---------------------------------------------------------------- */
.form-control,
.form-select {
  border: 2px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  transition: all var(--transition-base);
  font-size: var(--text-base);
  background: white;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  outline: none;
}

.form-label {
  font-weight: 600;
  color: var(--color-slate-700);
  margin-bottom: var(--spacing-xs);
  font-size: var(--text-sm);
}

/* ----------------------------------------------------------------
   16. ABOUT SECTION
   ---------------------------------------------------------------- */
.about-img img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  transition: transform var(--transition-slow);
}

.about-img:hover img {
  transform: scale(1.05) rotate(2deg);
}

/* ----------------------------------------------------------------
   17. PREMIUM FOOTER
   ---------------------------------------------------------------- */
.footer-premium {
  background: radial-gradient(circle at top right, #0F172A 0%, #020617 100%);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  color: #94A3B8;
}

.footer-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  filter: blur(80px);
}

.text-blue-glow {
  color: #3B82F6;
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.footer-title {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #3B82F6;
  box-shadow: 0 0 10px #3B82F6;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a {
  color: #94A3B8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-list a:hover {
  color: white;
  transform: translateX(8px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.social-links-premium {
  display: flex;
  gap: 1rem;
}

.social-item {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-item:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #3B82F6;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.05);
  margin: 0;
}

.footer-contact li span {
  transition: color 0.3s ease;
}

.footer-contact li:hover span {
  color: white;
}

@media (max-width: 768px) {
  .footer-premium {
    padding: 60px 0 0;
  }
}


/* ----------------------------------------------------------------
   18. UTILITY CLASSES
   ---------------------------------------------------------------- */
.text-gradient {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

/* ----------------------------------------------------------------
   19. RESPONSIVE DESIGN
   ---------------------------------------------------------------- */
@media (max-width: 1200px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0 60px;
    min-height: 500px;
  }

  .hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .hero p {
    font-size: var(--text-lg);
  }

  :root {
    --spacing-3xl: 4rem;
    --spacing-2xl: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  }

  h2 {
    font-size: var(--text-3xl);
  }

  h3 {
    font-size: var(--text-2xl);
  }

  .btn {
    padding: 0.75rem 1.5rem;
  }

  .services-icon,
  .talent-avatar {
    width: 70px;
    height: 70px;
  }

  .stat-number {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .contact-card,
  .services-card {
    padding: var(--spacing-md);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------------------------------------
   20. ANIMATIONS & KEYFRAMES
   ---------------------------------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* ----------------------------------------------------------------
   21. LOADING & STATES
   ---------------------------------------------------------------- */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  border: 3px solid var(--color-slate-200);
  border-top: 3px solid var(--color-secondary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}