/* 1NDYGO AI Business Consultancy - Professional Styles */

/* 1NDYGO AI Elite Design System - Brand Psychology Colors */
:root {
  /* Brand Psychology Color System */
  --deep-navy: #0C0F30;           /* Authority, trust, professionalism, technological sophistication */
  --metallic-gold: #D4AF37;       /* Premium quality, innovation, excellence, luxury */
  --glossy-blue: #12468B;         /* Technology, reliability, intelligence, AI innovation */
  
  /* Legacy colors for compatibility */
  --indygo-deep-navy: #0C0F30;
  --indygo-luxurious-gold: #D4AF37;
  --indygo-blue-gradient-start: #0C0F30;
  --indygo-blue-gradient-mid: #12468B;
  --indygo-blue-gradient-end: #1e5fa8;
  
  /* Glass Effects - Modern transparency, cutting-edge technology, precision */
  --glass-white: rgba(255, 255, 255, 0.15);
  --glass-navy: rgba(12, 15, 48, 0.2);
  --glass-blue: rgba(18, 70, 139, 0.15);
  --glass-gold: rgba(212, 175, 55, 0.1);
  
  /* Professional Text Colors */
  --text-primary: #0C0F30;
  --text-secondary: #64748b;
  --text-light: #ffffff;
  --text-gold: #D4AF37;
  
  /* Advanced Shadows & Depth */
  --shadow-soft: rgba(12, 15, 48, 0.08);
  --shadow-medium: rgba(12, 15, 48, 0.15);
  --shadow-strong: rgba(12, 15, 48, 0.25);
  --shadow-glow: rgba(212, 175, 55, 0.3);
  
  /* Brand Color Variables for Components */
  --brand-primary: #12468B;       /* Glossy Blue for buttons and primary elements */
  --brand-secondary: #0C0F30;     /* Deep Navy for secondary elements */
  --brand-accent: #D4AF37;        /* Metallic Gold for accents and highlights */
}

/* Force visibility for buttons using brand colors */
.bg-brand-primary {
  background-color: #12468B !important;
  border-color: #12468B !important;
}

.bg-brand-secondary {
  background-color: #0C0F30 !important;
  border-color: #0C0F30 !important;
}

.bg-brand-accent {
  background-color: #D4AF37 !important;
  border-color: #D4AF37 !important;
}

/* Hover states for brand buttons */
.hover\:bg-brand-primary\/90:hover {
  background-color: #0F3A73 !important;
}

.hover\:bg-brand-secondary\/90:hover {
  background-color: #090C26 !important;
}

.hover\:bg-brand-accent\/90:hover {
  background-color: #BF9B2F !important;
  
  /* Glassmorphism Properties */
  --glass-backdrop: backdrop-filter: blur(20px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Premium Design System - Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ENHANCED ROI CALCULATOR STYLES */
.enhanced-input {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.enhanced-input:focus {
  border-color: #D4AF37 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2) !important;
}

.enhanced-input.valid {
  border-color: #10b981 !important;
  background-color: rgba(16, 185, 129, 0.05) !important;
}

.input-feedback {
  min-height: 20px;
  font-size: 0.75rem;
  margin-top: 4px;
  transition: all 0.3s ease;
  opacity: 0;
}

.input-feedback.show {
  opacity: 1;
}

.input-feedback.success {
  color: #10b981;
}

.input-feedback.info {
  color: #0369a1;
}

.input-feedback.warning {
  color: #d97706;
}

.roi-preview-card {
  background: linear-gradient(135deg, rgba(12, 15, 48, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
  animation: slideUp 0.5s ease;
}

.metric-card {
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0C0F30;
  transition: all 0.8s ease;
}

.metric-value.counting {
  animation: countUp 0.6s ease;
}

.metric-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.industry-insight {
  background: rgba(3, 105, 161, 0.1);
  border-left: 4px solid #0369a1;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin-top: 12px;
  animation: slideUp 0.5s ease;
}

.enhanced-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.enhanced-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.enhanced-btn:active {
  transform: translateY(0);
}

.enhanced-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Progress Bars */
.progress-bar {
  overflow: hidden;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #10b981 50%, #f59e0b 100%);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: inherit;
}

/* ANIMATION KEYFRAMES */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from { 
    opacity: 0; 
    transform: scale(0.8);
  }
  to { 
    opacity: 1; 
    transform: scale(1);
  }
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
  }
  50% { 
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
  }
}

.pulse-glow {
  animation: pulse-glow 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

body {
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Premium Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* Premium Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Delay Utilities */
.animation-delay-1000 {
  animation-delay: 1s;
}

/* Professional 3D Mockup Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes float-delayed {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.1);
  }
}

@keyframes rotate-y {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

/* 3D Perspective and Transform Utilities */
.perspective-1000 {
  perspective: 1000px;
}

.transform-style-preserve-3d {
  transform-style: preserve-3d;
}

.rotate-y-2 {
  transform: rotateY(2deg);
}

.rotate-y-12 {
  transform: rotateY(12deg);
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 8s ease-in-out infinite;
  animation-delay: 2s;
}

.animate-float-slow {
  animation: float-slow 10s ease-in-out infinite;
  animation-delay: 4s;
}

/* Professional Mockup Scene Styles */
.mockup-scene {
  min-height: 500px;
  position: relative;
  transform-style: preserve-3d;
}

.laptop-mockup,
.tablet-mockup,
.business-cards,
.letterhead,
.envelope {
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.laptop-mockup:hover {
  transform: translateY(-10px) scale(1.05);
}

.tablet-mockup:hover {
  transform: rotate(6deg) translateY(-8px) scale(1.05);
}

.business-cards:hover {
  transform: rotate(-6deg) translateY(-5px) scale(1.1);
}

.letterhead:hover {
  transform: rotate(3deg) translateY(-8px) scale(1.05);
}

.envelope:hover {
  transform: rotate(-3deg) translateY(-5px) scale(1.1);
}

/* Professional Device Mockup Shadows */
.laptop-mockup > div,
.tablet-mockup > div,
.business-cards > div > div,
.letterhead > div,
.envelope > div {
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 10px 20px -5px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Enhanced Floating Elements */
.floating-elements {
  animation: float 8s ease-in-out infinite;
}

/* Professional Gradient Overlays */
.mockup-scene::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(26, 82, 118, 0.1) 0%,
    transparent 50%
  ),
  radial-gradient(
    circle at 70% 80%,
    rgba(247, 220, 111, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 1;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Master Navigation Styles - Enhanced White Text */
.nav-link-master {
  @apply text-white hover:text-white font-semibold text-lg relative transition-all duration-300;
  position: relative;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link-master:hover {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.nav-link-master::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--indygo-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

/* Enhanced Navigation Bar */
nav {
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Button Enhancement */
.md\\:hidden {
  color: #ffffff !important;
}

/* Additional Navigation Text Enhancements */
nav a {
  color: #ffffff !important;
}

nav button {
  color: #ffffff !important;
}

/* Navigation CTA uses same format as service buttons */
.nav-cta-master {
  /* Removed - using inline service button format */
}

/* Legacy nav-link for compatibility */
.nav-link {
  @apply text-gray-700 hover:text-brand-primary font-medium transition-colors duration-200;
}

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

/* ===== MODERN HERO DESIGN EXCELLENCE ===== */

/* Hero Container with Glassmorphism */
.hero-modern {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Glassmorphism Calculator Card */
.glass-calculator-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--glass-border);
  border-radius: 24px;
  box-shadow: 
    0 25px 45px var(--shadow-strong),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-calculator-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 35px 60px var(--shadow-strong),
    0 0 0 1px var(--metallic-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Modern Statistics Cards */
.stat-glass-card {
  background: var(--glass-navy);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-glass-card:hover {
  background: var(--glass-blue);
  border-color: var(--metallic-gold);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-light);
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero Text Styling */
.hero-title-modern {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle-modern {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Calculator Form Styling */
.calculator-form-modern {
  padding: 2rem;
}

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

.form-label-modern {
  display: block;
  color: var(--deep-navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-input-modern {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(18, 70, 139, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input-modern:focus {
  border-color: var(--metallic-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 1);
}

.form-select-modern {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(18, 70, 139, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23D4AF37"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem;
}

.form-select-modern:focus {
  border-color: var(--metallic-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Premium Calculate Button */
.calculate-btn-modern {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, var(--glossy-blue) 0%, var(--deep-navy) 100%);
  color: var(--text-light);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 25px rgba(18, 70, 139, 0.3);
}

.calculate-btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 35px rgba(18, 70, 139, 0.4),
    0 0 0 2px var(--metallic-gold);
  background: linear-gradient(135deg, var(--metallic-gold) 0%, #B8860B 100%);
}

/* Testimonial Quote Styling */
.testimonial-quote {
  background: var(--glass-gold);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  font-style: italic;
  color: var(--deep-navy);
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 500;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0.7;
}

.trust-badge {
  color: rgba(255, 255, 255, 0.6);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  color: var(--metallic-gold);
  transform: scale(1.1);
}

/* Master-Level Hero Styles - 40 Years Design Excellence */

/* Master Animated Background */
@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

@keyframes master-gradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

/* Hero Particles System */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--indygo-gold);
  border-radius: 50%;
  animation: particle-float 8s infinite ease-in-out;
  opacity: 0.6;
}

.hero-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-particles::after {
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes particle-float {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}

/* Master Typography */
.hero-master-title {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Hero CTA Buttons - Now using service button format */
/* Removed - using inline service button classes for consistency */

/* Master Stats Cards */
.stats-card {
  @apply text-center p-6 rounded-2xl relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.stats-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stats-number {
  @apply text-4xl md:text-5xl font-black mb-2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-label {
  @apply text-white/80 text-sm uppercase tracking-[0.1em] font-semibold;
}

/* Master Scroll Indicator */
.scroll-indicator {
  @apply w-8 h-12 border-2 border-white/40 rounded-full flex items-start justify-center pt-3;
  animation: scroll-bounce 2s infinite;
}

.scroll-dot {
  @apply w-1 h-3 rounded-full;
  background: var(--indygo-gold);
  animation: scroll-dot 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { 
    transform: translateY(0);
    opacity: 0.7;
  }
  50% { 
    transform: translateY(5px);
    opacity: 1;
  }
}

@keyframes scroll-dot {
  0%, 100% { 
    transform: translateY(0);
  }
  50% { 
    transform: translateY(8px);
  }
}

/* Animation Delays */
.animation-delay-1000 {
  animation-delay: 1s;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

/* Blue-Dominant Expert Service Cards */
.executive-service-card {
  @apply relative overflow-hidden cursor-pointer;
  background: var(--indygo-deep-blue);
  border-radius: 24px;
  border: 2px solid var(--indygo-sky-blue);
  box-shadow: 
    0 16px 48px rgba(26, 82, 118, 0.3),
    0 0 0 1px rgba(133, 193, 233, 0.2) inset;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 3rem;
  position: relative;
}

/* Blue accent element */
.executive-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--indygo-gold) 0%, var(--indygo-sky-blue) 50%, var(--indygo-gold) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

/* Expert hover effect */
.executive-service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 32px 64px rgba(26, 82, 118, 0.4),
    0 0 0 3px var(--indygo-gold) inset,
    0 0 20px rgba(247, 220, 111, 0.3);
  border-color: var(--indygo-gold);
}

.executive-service-card:hover::before {
  animation-duration: 1s;
}

/* Unique keyframe animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Premium Featured Service */
.featured-service {
  background: linear-gradient(145deg, #ffffff 0%, #f1f8ff 100%);
  border: 1px solid rgba(26, 82, 118, 0.15);
}

.featured-service::before {
  background: linear-gradient(90deg, var(--brand-accent) 0%, #f39c12 100%);
  height: 6px;
}

/* Service Number */
.service-number {
  @apply text-6xl font-light text-gray-100 absolute top-4 right-6;
  line-height: 1;
  z-index: 1;
}

.featured-service .service-number {
  color: rgba(26, 82, 118, 0.1);
}

/* Blue-Dominant Category Badge */
.service-category {
  @apply inline-flex items-center px-6 py-2 mb-8 text-xs font-bold uppercase tracking-[0.2em] relative;
  background: var(--indygo-gold);
  color: var(--indygo-deep-blue);
  border-radius: 50px;
  box-shadow: 
    0 4px 16px rgba(247, 220, 111, 0.4),
    0 0 0 2px var(--indygo-sky-blue);
  position: relative;
  overflow: hidden;
}

.service-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Corporate Service Badge - Quote Section Style */
.service-featured-badge {
  @apply absolute top-4 right-4 text-xs font-semibold px-3 py-1 uppercase tracking-wider relative;
  background: var(--brand-accent);
  color: var(--brand-primary);
  z-index: 10;
}

/* Service Sections - Dark Blue Background */
.services-section {
  background: linear-gradient(135deg, #1A5276 0%, #154360 100%); /* Dark blue gradient */
  position: relative;
}

/* Enhanced Glow for Service Icons */
.service-icon-bg:hover {
  border: 2px solid #85C1E9;
  box-shadow: 
    0 0 15px rgba(133, 193, 233, 0.8), /* Stronger light blue glow on hover */
    0 0 30px rgba(133, 193, 233, 0.5),
    0 0 40px rgba(133, 193, 233, 0.3),
    0 8px 32px rgba(26, 82, 118, 0.3);
  transform: translateY(-2px) scale(1.05);
  transition: all 0.3s ease;
}

/* Training Module Cards - Dark Blue with Light Blue Border */
.module-card {
  @apply rounded-2xl shadow-xl p-8 relative overflow-hidden;
  background: linear-gradient(135deg, #1A5276 0%, #154360 100%); /* Dark blue background */
  border: 2px solid #85C1E9; /* Light blue border */
  box-shadow: 
    0 0 15px rgba(133, 193, 233, 0.4), /* Light blue glow */
    0 0 30px rgba(133, 193, 233, 0.2),
    0 25px 50px -12px rgba(26, 82, 118, 0.3); /* Dark blue shadow */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-card:hover {
  transform: translateY(-8px);
  border: 2px solid #85C1E9;
  box-shadow: 
    0 0 20px rgba(133, 193, 233, 0.6), /* Enhanced light blue glow on hover */
    0 0 40px rgba(133, 193, 233, 0.4),
    0 0 60px rgba(133, 193, 233, 0.2),
    0 25px 50px -12px rgba(26, 82, 118, 0.4);
}

/* Training Module Card Text Styling */
.module-level {
  @apply text-sm font-bold uppercase tracking-wider mb-2;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.module-title {
  @apply text-2xl font-bold mb-4;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.module-description {
  @apply mb-6 leading-relaxed;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.module-item {
  @apply flex items-center space-x-3 mb-3;
}

.module-number {
  @apply w-8 h-8 rounded-full flex items-center justify-center text-sm font-bold flex-shrink-0;
  background: #85C1E9;
  color: #1a5276;
}

.module-item span:not(.module-number) {
  @apply text-sm font-medium;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.module-pricing {
  @apply flex items-center justify-between mb-6 p-4 rounded-lg;
  background: rgba(255, 255, 255, 0.1);
}

.module-price {
  @apply text-2xl font-bold;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.module-duration {
  @apply text-sm;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.module-cta {
  @apply w-full py-3 px-6 rounded-lg font-bold text-center transition-all duration-300;
  background: #85C1E9;
  color: #1a5276;
  border: 2px solid transparent;
}

.module-cta:hover {
  background: transparent;
  border: 2px solid #85C1E9;
  color: white;
  box-shadow: 0 0 15px rgba(133, 193, 233, 0.5);
}

/* New Service Card Format Styles */
.service-summary {
  @apply mb-6 leading-relaxed text-center;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.learn-more-section {
  @apply mb-6;
}

.learn-more-btn {
  @apply w-full py-2 px-4 rounded-lg font-medium text-center transition-all duration-300 flex items-center justify-center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(133, 193, 233, 0.3);
}

.learn-more-btn:hover {
  background: rgba(133, 193, 233, 0.2);
  border-color: #85C1E9;
  box-shadow: 0 0 10px rgba(133, 193, 233, 0.3);
}

.learn-more-content {
  @apply mt-4 p-4 rounded-lg;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(133, 193, 233, 0.2);
}

.features-title {
  @apply text-lg font-semibold mb-3;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.detailed-features .feature-item {
  @apply flex items-center space-x-3 mb-2;
}

.purchase-options {
  @apply space-y-3;
}

.purchase-btn {
  @apply w-full py-3 px-6 rounded-xl font-bold text-center transition-all duration-300;
  background: #85C1E9;
  color: #1a5276;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(133, 193, 233, 0.2);
}

.purchase-btn:hover {
  transform: translateY(-2px);
  background: transparent;
  border: 2px solid #85C1E9;
  color: white;
  box-shadow: 
    0 0 15px rgba(133, 193, 233, 0.5),
    0 8px 25px rgba(133, 193, 233, 0.3);
}

.secondary-cta {
  @apply w-full py-2 px-6 rounded-xl font-medium text-center transition-all duration-300;
  background: transparent;
  color: white;
  border: 2px solid rgba(133, 193, 233, 0.5);
}

.secondary-cta:hover {
  background: rgba(133, 193, 233, 0.1);
  border-color: #85C1E9;
  box-shadow: 0 0 10px rgba(133, 193, 233, 0.3);
}

/* White Background Stats Cards */
.stats-card-white {
  @apply text-center p-6 rounded-2xl;
  background: white;
  border: 2px solid rgba(26, 82, 118, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stats-card-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-secondary);
}

.stats-number-white {
  @apply text-4xl font-black mb-2;
}

.stats-label-white {
  @apply text-sm font-medium uppercase tracking-wider;
  color: #6b7280;
}

/* Branded Section Header Banner */
.section-header-banner {
  @apply py-16 relative overflow-hidden;
  background: linear-gradient(135deg, #1A5276 0%, #2874a6 100%);
  margin-bottom: 0;
}

.section-header-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(133, 193, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(247, 220, 111, 0.05) 0%, transparent 50%);
  opacity: 0.7;
}

.section-header-content {
  @apply relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center;
}

.section-badge {
  @apply inline-flex items-center px-8 py-4 mb-8 text-sm font-bold uppercase tracking-wider rounded-full;
  background: var(--brand-accent);
  color: var(--brand-primary);
  box-shadow: 0 8px 32px rgba(247, 220, 111, 0.3);
}

.section-title-main {
  @apply text-5xl md:text-6xl lg:text-7xl font-bold mb-6 tracking-tight leading-tight text-white;
}

.section-title-accent {
  @apply text-4xl md:text-5xl lg:text-6xl font-light mb-6 tracking-wide;
  color: var(--brand-accent);
}

.section-description-banner {
  @apply text-xl text-white/90 max-w-4xl mx-auto leading-relaxed;
}

.section-description-banner .highlight {
  color: var(--brand-accent);
  font-weight: 600;
}

/* Blue-Dominant Icon Design */
.service-icon-wrapper {
  @apply mb-8 relative;
  display: flex;
  justify-content: center;
}

/* Moved to bottom of file - Updated service icon styles */

.executive-service-card:hover .service-icon-bg {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 
    0 16px 32px rgba(255, 255, 255, 0.3),
    0 0 0 4px var(--indygo-gold),
    0 0 20px rgba(247, 220, 111, 0.4);
  background: var(--indygo-gold);
  color: var(--indygo-deep-blue);
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.5); }
}

/* Blue-Dominant Title Design */
.service-title {
  @apply text-2xl mb-6 relative text-center;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes header-gradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

/* Blue-Dominant Description Design */
.service-description {
  @apply mb-8 leading-relaxed relative text-center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Corporate Service Titles - Quote Section Style */
.corporate-service-title {
  @apply text-xl font-bold text-white mb-4 text-center relative;
  z-index: 10;
}

.corporate-service-description {
  @apply text-blue-100 mb-6 leading-relaxed text-center relative;
  z-index: 10;
}

/* Service Features */
.service-features {
  @apply space-y-4 mb-8;
}

/* Blue-Dominant Feature Items */
.feature-item {
  @apply flex items-center space-x-3 py-3 px-4 mb-3 rounded-lg;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  color: var(--indygo-deep-blue);
  background: white;
  border-color: var(--indygo-gold);
  transform: translateX(4px);
}

.feature-dot {
  @apply w-3 h-3 rounded-full flex-shrink-0;
  background: var(--indygo-gold);
  box-shadow: 0 0 0 2px rgba(247, 220, 111, 0.3);
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.feature-item span {
  @apply leading-relaxed;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Blue-Dominant Investment Pricing */
.service-investment {
  @apply mb-8 relative text-center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 2px solid var(--indygo-sky-blue);
}

.investment-from {
  @apply text-xs font-semibold uppercase tracking-[0.15em] mb-2;
  color: var(--indygo-gold);
}

.investment-amount {
  @apply text-4xl font-bold;
  color: white;
  letter-spacing: -0.02em;
}

@keyframes price-gradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 50% 0%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 100%; }
}

/* Blue-Dominant CTA Button */
.service-cta {
  @apply px-8 py-4 font-bold text-center block relative;
  background: var(--indygo-gold);
  color: var(--indygo-deep-blue);
  border-radius: 12px;
  box-shadow: 
    0 4px 16px rgba(247, 220, 111, 0.4),
    0 0 0 2px var(--indygo-sky-blue);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.service-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 8px 24px rgba(247, 220, 111, 0.6),
    0 0 0 3px white,
    0 0 20px rgba(247, 220, 111, 0.4);
  background: white;
  color: var(--indygo-deep-blue);
}

@keyframes button-gradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 50% 0%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 100%; }
}

/* Corporate CTA Section */
.corporate-cta-section {
  @apply mt-16;
}

/* Utility Function */
function scrollToContact() {
  document.getElementById('contact').scrollIntoView({ behavior: 'smooth' });
}

/* Legacy Service Card Styles (for compatibility) */
.service-card {
  @apply bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-all duration-300 border border-gray-200 hover:border-brand-secondary/50 relative overflow-hidden;
}

.service-icon {
  @apply w-16 h-16 bg-brand-primary/10 rounded-2xl flex items-center justify-center mb-6;
}

.service-icon i {
  @apply text-2xl text-brand-primary;
}

.service-title {
  @apply text-xl font-bold text-gray-900 mb-4;
}

.service-description {
  @apply text-gray-600 mb-6 leading-relaxed;
}

.service-features {
  @apply space-y-3 mb-6;
}

.service-features li {
  @apply flex items-center text-sm text-gray-600;
}

.service-features li i {
  @apply text-green-500 mr-3 text-xs;
}

.service-price {
  @apply text-2xl font-bold text-brand-primary mb-6;
}

.service-cta {
  @apply w-full bg-brand-primary text-white py-3 px-6 rounded-lg font-medium hover:bg-brand-primary/90 transition-colors duration-200;
}

/* 1NDYGO AI Signature Training Service Cards */
.training-service-card {
  @apply relative overflow-hidden cursor-pointer;
  background: 
    linear-gradient(135deg, var(--glass-white) 0%, rgba(255, 255, 255, 0.95) 100%),
    linear-gradient(225deg, var(--indygo-sky-blue) 0%, transparent 50%),
    linear-gradient(315deg, var(--indygo-gold) 0%, transparent 30%);
  border-radius: 32px;
  border: 1px solid rgba(26, 82, 118, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px var(--shadow-soft),
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 0 0 1px rgba(26, 82, 118, 0.05) inset;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 3rem;
  position: relative;
}

.training-service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 0deg at 50% 50%, 
      transparent 0deg,
      var(--indygo-gold) 30deg,
      transparent 60deg,
      var(--indygo-sky-blue) 180deg,
      transparent 210deg,
      var(--indygo-deep-blue) 300deg,
      transparent 360deg
    );
  opacity: 0.03;
  animation: rotate 20s linear infinite;
}

.training-service-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 
    0 32px 64px var(--shadow-strong),
    0 0 0 1px var(--indygo-gold) inset,
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border-color: var(--indygo-gold);
}

.training-service-card:hover::before {
  opacity: 0.08;
  animation-duration: 8s;
}

/* 1NDYGO AI Signature Module Cards */
.module-card {
  @apply relative overflow-hidden cursor-pointer;
  background: 
    linear-gradient(135deg, var(--glass-white) 0%, rgba(255, 255, 255, 0.95) 100%),
    linear-gradient(225deg, var(--indygo-sky-blue) 0%, transparent 50%),
    linear-gradient(315deg, var(--indygo-gold) 0%, transparent 30%);
  border-radius: 32px;
  border: 1px solid rgba(26, 82, 118, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px var(--shadow-soft),
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 0 0 1px rgba(26, 82, 118, 0.05) inset;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.module-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 0deg at 50% 50%, 
      transparent 0deg,
      var(--indygo-gold) 30deg,
      transparent 60deg,
      var(--indygo-sky-blue) 180deg,
      transparent 210deg,
      var(--indygo-deep-blue) 300deg,
      transparent 360deg
    );
  opacity: 0.03;
  animation: rotate 20s linear infinite;
}

.module-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 
    0 32px 64px var(--shadow-strong),
    0 0 0 1px var(--indygo-gold) inset,
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border-color: var(--indygo-gold);
}

.module-card:hover::before {
  opacity: 0.08;
  animation-duration: 8s;
}

.module-header {
  @apply p-8 text-center relative;
  background: 
    linear-gradient(135deg, var(--indygo-deep-blue) 0%, var(--indygo-sky-blue) 100%);
  border-radius: 32px 32px 0 0;
  overflow: hidden;
}

.module-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle, var(--indygo-gold) 0%, transparent 50%);
  opacity: 0.1;
  animation: pulse-glow 4s ease-in-out infinite;
}

.module-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: 
    linear-gradient(90deg, 
      var(--indygo-gold) 0%, 
      var(--indygo-sky-blue) 50%, 
      var(--indygo-gold) 100%
    );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.module-level {
  @apply inline-flex items-center px-4 py-2 mb-4 text-xs font-semibold uppercase tracking-[0.15em];
  background: rgba(255, 255, 255, 0.2);
  color: var(--brand-accent);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.module-title {
  @apply text-xl font-bold text-white mb-2;
  letter-spacing: -0.025em;
}

.module-content {
  @apply p-8;
}

.module-description {
  @apply mb-8 leading-relaxed;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}

.module-list {
  @apply space-y-4 mb-8;
}

.module-item {
  @apply flex items-center space-x-4 py-2;
  transition: all 0.3s ease;
}

.module-item:hover {
  transform: translateX(4px);
}

.module-number {
  @apply w-10 h-10 rounded-full flex items-center justify-center text-sm font-bold;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(26, 82, 118, 0.25);
}

.module-item span:not(.module-number) {
  color: #475569;
  font-weight: 500;
  font-size: 0.95rem;
}

.module-pricing {
  @apply flex justify-between items-center mb-8 pb-6;
  border-bottom: 1px solid rgba(26, 82, 118, 0.1);
}

.module-price {
  @apply text-4xl font-bold;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
}

.module-duration {
  @apply text-sm font-semibold uppercase tracking-[0.1em];
  color: #64748b;
}

.module-cta {
  @apply w-full px-8 py-4 font-semibold text-center relative overflow-hidden;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: white;
  border-radius: 16px;
  box-shadow: 
    0 4px 20px rgba(26, 82, 118, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.module-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.module-cta:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(26, 82, 118, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.module-cta:hover::before {
  left: 100%;
}

/* Premium Section Backgrounds */
.premium-services-section {
  background: 
    radial-gradient(circle at 20% 80%, rgba(26, 82, 118, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(133, 193, 233, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(247, 220, 111, 0.02) 0%, transparent 50%);
  position: relative;
}

.premium-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 98%, rgba(26, 82, 118, 0.02) 100%),
    linear-gradient(0deg, transparent 98%, rgba(26, 82, 118, 0.02) 100%);
  background-size: 50px 50px;
  opacity: 0.3;
}

.services-grid-premium {
  @apply grid gap-8 relative z-10;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

@media (min-width: 1200px) {
  .services-grid-premium {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid-premium {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

/* Premium Badge Styles */
.premium-badge {
  @apply inline-flex items-center px-4 py-2 mb-6 text-xs font-semibold uppercase tracking-[0.15em];
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: white;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(26, 82, 118, 0.25);
  position: relative;
}

.premium-badge::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: inherit;
  border-radius: 46px;
  opacity: 0.1;
}

/* Form Styles */
.form-input {
  @apply w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-brand-primary/20 focus:border-brand-primary outline-none transition-colors duration-200;
}

/* Modal Styles */
.branding-quote-modal {
  @apply fixed inset-0 z-50 flex items-center justify-center p-4;
}

.modal-overlay {
  @apply absolute inset-0 bg-black/50 backdrop-blur-sm;
}

.modal-content {
  @apply relative bg-white rounded-2xl max-w-2xl w-full max-h-[90vh] overflow-y-auto shadow-2xl;
}

.modal-header {
  @apply flex justify-between items-center p-6 border-b border-gray-200;
}

.modal-close {
  @apply text-gray-400 hover:text-gray-600 text-xl p-2 hover:bg-gray-100 rounded-lg transition-colors;
}

.modal-body {
  @apply p-6;
}

/* Notification Styles */
.success-notification,
.error-notification {
  @apply fixed top-4 right-4 z-50 animate-pulse;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-cta-primary,
  .hero-cta-secondary {
    @apply w-full text-center;
  }
  
  .service-card {
    @apply text-center;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

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

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-5px);
}

.hero-cta-primary:hover,
.hero-cta-secondary:hover,
.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-secondary);
}

/* Focus States for Accessibility */
.form-input:focus,
.service-cta:focus,
.hero-cta-primary:focus,
.hero-cta-secondary:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Professional About Section */
.founder-image-container {
  position: relative;
}

.founder-image-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
  border-radius: 2rem;
  z-index: -1;
  opacity: 0.1;
}

/* Professional Grid Enhancement */
.professional-grid {
  display: grid;
  gap: 2rem;
}

/* Enhanced Image Aspect Ratio */
.aspect-4-5 {
  aspect-ratio: 4/5;
}

/* Professional Card Shadows */
.professional-shadow {
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Premium AI Consultation Styles */
.premium-consultation-card {
  @apply relative bg-white rounded-3xl shadow-2xl border border-gray-200 p-8 md:p-12;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 50%, #ffffff 100%);
  box-shadow: 
    0 25px 80px -12px rgba(26, 82, 118, 0.15),
    0 0 0 1px rgba(26, 82, 118, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.premium-badge {
  @apply inline-flex items-center px-6 py-3 rounded-full text-sm font-bold uppercase tracking-wider;
  background: linear-gradient(135deg, #f7dc6f 0%, #f4d03f 100%);
  color: #1a5276;
  box-shadow: 
    0 8px 32px rgba(247, 220, 111, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.premium-badge-small {
  @apply inline-flex items-center px-3 py-1 rounded-full text-xs font-bold uppercase tracking-wider mb-2;
  background: linear-gradient(135deg, #f7dc6f 0%, #f4d03f 100%);
  color: #1a5276;
}

.consultation-category {
  @apply text-sm font-semibold uppercase tracking-wider mb-3;
  color: #85c1e9;
}

.consultation-title {
  @apply text-4xl md:text-5xl font-bold mb-6 leading-tight;
  color: #1a5276;
  background: linear-gradient(135deg, #1a5276 0%, #2874a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.consultation-description {
  @apply text-xl text-gray-600 mb-8 leading-relaxed;
}

.consultation-highlights {
  @apply space-y-4;
}

.highlight-row {
  @apply flex items-center space-x-3 text-gray-700;
}

.highlight-row i {
  @apply w-6 h-6 flex items-center justify-center;
}

.consultation-agenda {
  @apply bg-gradient-to-br from-blue-50 to-indigo-50 rounded-2xl p-8;
}

.agenda-title {
  @apply text-2xl font-bold mb-6 text-gray-900;
}

.agenda-sections {
  @apply space-y-6;
}

.agenda-item {
  @apply flex items-start space-x-4;
}

.agenda-icon {
  @apply flex-shrink-0 w-12 h-12 bg-gradient-to-br from-blue-500 to-indigo-600 rounded-xl flex items-center justify-center;
}

.agenda-icon i {
  @apply text-white text-lg;
}

.agenda-content h5 {
  @apply font-bold text-gray-900 mb-1;
}

.agenda-content p {
  @apply text-gray-600 text-sm;
}

.consultation-footer {
  @apply mt-12 pt-8 border-t border-gray-200 flex flex-col lg:flex-row items-center justify-between gap-8;
}

.consultation-investment {
  @apply text-center lg:text-left;
}

.investment-details {
  @apply space-y-2;
}

.investment-value {
  @apply text-5xl font-black;
  color: #1a5276;
}

.investment-description {
  @apply text-lg text-gray-600 font-medium;
}

.investment-guarantee {
  @apply flex items-center justify-center lg:justify-start space-x-2 text-sm text-green-600 font-semibold mt-2;
}

.consultation-cta-section {
  @apply text-center;
}

.consultation-primary-cta {
  @apply px-12 py-4 rounded-2xl text-lg font-bold transition-all duration-300 transform hover:scale-105 hover:shadow-xl;
  background: linear-gradient(135deg, #1a5276 0%, #2874a6 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(26, 82, 118, 0.3);
}

.consultation-primary-cta:hover {
  box-shadow: 0 12px 40px rgba(26, 82, 118, 0.4);
}

.consultation-note {
  @apply flex items-center justify-center space-x-2 text-sm text-gray-500 mt-3;
}

/* Two-Session Structure */
.session-section {
  @apply mb-8 pb-8 border-b border-gray-200 last:border-b-0 last:mb-0 last:pb-0;
}

.session-header {
  @apply flex items-center justify-between mb-6;
}

.session-title {
  @apply text-xl font-bold text-gray-900;
}

.session-badge {
  @apply px-4 py-2 rounded-full text-sm font-semibold;
  background: linear-gradient(135deg, #f7dc6f 0%, #f4d03f 100%);
  color: #1a5276;
}

.agenda-content h6 {
  @apply font-bold text-gray-900 mb-1 text-base;
}

/* AI Consultation Modal */
.ai-consultation-modal {
  @apply fixed inset-0 z-50 flex items-center justify-center p-4;
}

.consultation-modal-content {
  @apply max-w-4xl w-full max-h-[90vh] overflow-y-auto;
}

.consultation-modal-header {
  @apply relative;
}

.consultation-modal-title {
  @apply text-center mb-6;
}

.consultation-modal-body {
  @apply space-y-8;
}

.consultation-value-prop {
  @apply bg-gradient-to-br from-blue-50 to-indigo-50 rounded-2xl p-6;
}

.value-highlights {
  @apply grid grid-cols-1 md:grid-cols-2 gap-4;
}

.value-item {
  @apply flex items-center space-x-3 text-gray-700 font-medium;
}

.value-item i {
  @apply text-lg;
}

.consultation-form {
  @apply space-y-8;
}

.form-section {
  @apply space-y-6;
}

.form-section-title {
  @apply text-lg font-bold text-gray-900 mb-4 pb-2 border-b border-gray-200;
}

.form-label {
  @apply block text-sm font-medium text-gray-700 mb-2;
}

.checkbox-grid {
  @apply grid grid-cols-1 md:grid-cols-2 gap-3 mt-3;
}

.checkbox-item {
  @apply flex items-center space-x-3 p-3 bg-gray-50 rounded-lg cursor-pointer hover:bg-gray-100 transition-colors;
}

.checkbox-item input[type="checkbox"] {
  @apply rounded border-gray-300;
}

.consultation-investment-summary {
  @apply bg-gradient-to-br from-blue-50 to-indigo-50 rounded-2xl p-8 space-y-6;
}

.investment-breakdown {
  @apply space-y-4;
}

.investment-breakdown h4 {
  @apply text-xl font-bold text-gray-900 mb-4;
}

.investment-line {
  @apply flex justify-between items-center py-2 border-b border-gray-200;
}

.investment-total {
  @apply flex justify-between items-center py-3 text-xl font-bold;
  color: #1a5276;
}

.satisfaction-guarantee {
  @apply flex items-start space-x-3 p-4 bg-green-50 rounded-xl border border-green-200;
}

.satisfaction-guarantee i {
  @apply text-2xl text-green-600 flex-shrink-0 mt-1;
}

.satisfaction-guarantee strong {
  @apply text-green-800;
}

.satisfaction-guarantee p {
  @apply text-green-700 text-sm mt-1;
}

.consultation-submit-btn {
  @apply w-full py-4 px-8 rounded-2xl text-lg font-bold transition-all duration-300 transform hover:scale-105;
  background: linear-gradient(135deg, #1a5276 0%, #2874a6 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(26, 82, 118, 0.3);
}

.consultation-submit-btn:hover {
  box-shadow: 0 12px 40px rgba(26, 82, 118, 0.4);
}

/* Enhanced Featured Service Cards */
.executive-service-card.featured-service {
  position: relative;
  overflow: hidden;
}

.executive-service-card.featured-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3px;
  background: linear-gradient(135deg, #f7dc6f 0%, #f4d03f 25%, #f7dc6f 50%, #f4d03f 75%, #f7dc6f 100%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  animation: golden-border-flow 3s linear infinite;
}

@keyframes golden-border-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.executive-service-card.featured-service:hover::before {
  animation-duration: 1.5s;
  background: linear-gradient(135deg, #f7dc6f 0%, #f1c40f 25%, #f7dc6f 50%, #f1c40f 75%, #f7dc6f 100%);
}

.executive-service-card.featured-service .service-category {
  background: linear-gradient(135deg, #f7dc6f 0%, #f4d03f 100%);
  color: #1a5276;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Premium Consultation Card Enhanced */
.premium-consultation-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #f7dc6f, #f4d03f, #f7dc6f, #f4d03f);
  border-radius: inherit;
  z-index: -1;
  animation: premium-glow 2s ease-in-out infinite alternate;
}

@keyframes premium-glow {
  from {
    box-shadow: 
      0 0 20px rgba(247, 220, 111, 0.4),
      0 0 40px rgba(247, 220, 111, 0.2);
  }
  to {
    box-shadow: 
      0 0 30px rgba(247, 220, 111, 0.6),
      0 0 60px rgba(247, 220, 111, 0.3);
  }
}

/* ===== ENHANCED 3D SERVICE CARDS WITH PREMIUM EFFECTS ===== */

/* Main Service Card with Advanced 3D Border Effects */
.executive-service-card {
  @apply rounded-3xl p-8 relative overflow-hidden;
  
  /* Advanced 3D Background with Multiple Layers */
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    linear-gradient(225deg, rgba(133, 193, 233, 0.1) 0%, transparent 30%),
    linear-gradient(135deg, #1A5276 0%, #154360 100%);
  
  /* Multi-Layered 3D Border System */
  border: 3px solid transparent;
  background-clip: padding-box;
  
  /* Advanced 3D Shadow System */
  box-shadow: 
    /* Inner glow for depth */
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    
    /* Primary 3D effect layers */
    0 0 0 1px rgba(133, 193, 233, 0.4),
    0 0 0 3px rgba(133, 193, 233, 0.2),
    0 0 0 5px rgba(133, 193, 233, 0.1),
    
    /* Outer glow layers */
    0 0 20px rgba(133, 193, 233, 0.3),
    0 0 40px rgba(133, 193, 233, 0.15),
    
    /* Physical depth shadows */
    0 8px 25px rgba(26, 82, 118, 0.25),
    0 15px 35px rgba(26, 82, 118, 0.15),
    0 25px 50px rgba(26, 82, 118, 0.1);
  
  /* Smooth 3D transitions */
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* 3D transform preparation */
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Advanced 3D Border Animation Layer */
.executive-service-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  padding: 3px;
  
  /* Animated gradient border */
  background: linear-gradient(
    45deg,
    #85C1E9 0%,
    #F7DC6F 25%,
    #85C1E9 50%,
    #5DADE2 75%,
    #85C1E9 100%
  );
  background-size: 300% 300%;
  
  /* Border mask for clean cutout */
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  
  /* Subtle border animation */
  animation: border-flow 4s ease-in-out infinite;
  z-index: -1;
}

/* Floating 3D Hover Effects */
.executive-service-card:hover {
  /* Enhanced 3D lift with rotation */
  transform: translateY(-15px) translateZ(20px) rotateX(5deg) rotateY(2deg);
  
  /* Dramatic shadow enhancement */
  box-shadow: 
    /* Enhanced inner glow */
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15),
    
    /* Expanded border layers */
    0 0 0 1px rgba(247, 220, 111, 0.6),
    0 0 0 4px rgba(133, 193, 233, 0.4),
    0 0 0 7px rgba(133, 193, 233, 0.2),
    0 0 0 10px rgba(133, 193, 233, 0.1),
    
    /* Intense glow effect */
    0 0 30px rgba(247, 220, 111, 0.4),
    0 0 50px rgba(133, 193, 233, 0.3),
    0 0 80px rgba(133, 193, 233, 0.15),
    
    /* Deep 3D shadows */
    0 20px 40px rgba(26, 82, 118, 0.3),
    0 30px 60px rgba(26, 82, 118, 0.2),
    0 40px 80px rgba(26, 82, 118, 0.1);
}

/* Faster border animation on hover */
.executive-service-card:hover::before {
  animation-duration: 2s;
  background: linear-gradient(
    45deg,
    #F7DC6F 0%,
    #85C1E9 25%,
    #F7DC6F 50%,
    #85C1E9 75%,
    #F7DC6F 100%
  );
}

/* 3D Border Flow Animation */
@keyframes border-flow {
  0%, 100% {
    background-position: 0% 50%;
    filter: brightness(1) saturate(1);
  }
  25% {
    background-position: 100% 0%;
    filter: brightness(1.1) saturate(1.2);
  }
  50% {
    background-position: 100% 100%;
    filter: brightness(1.2) saturate(1.4);
  }
  75% {
    background-position: 0% 100%;
    filter: brightness(1.1) saturate(1.2);
  }
}

/* Enhanced Service Icon with 3D Effects */
.service-icon-bg {
  @apply w-20 h-20 rounded-2xl flex items-center justify-center mb-8;
  
  /* 3D icon background */
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    linear-gradient(225deg, rgba(133, 193, 233, 0.15) 0%, transparent 40%),
    linear-gradient(135deg, #2E86AB 0%, #1A5276 100%);
  
  /* Multi-layer 3D borders */
  border: 2px solid rgba(133, 193, 233, 0.6);
  
  /* 3D shadow system */
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(133, 193, 233, 0.3),
    0 0 15px rgba(133, 193, 233, 0.4),
    0 8px 20px rgba(26, 82, 118, 0.2);
  
  /* Smooth 3D transitions */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* 3D Icon Hover Effects */
.executive-service-card:hover .service-icon-bg {
  transform: translateY(-8px) translateZ(15px) rotateX(10deg) rotateY(5deg) scale(1.1);
  
  /* Enhanced 3D icon shadows */
  box-shadow: 
    inset 0 3px 6px rgba(255, 255, 255, 0.3),
    inset 0 -3px 6px rgba(0, 0, 0, 0.15),
    0 0 0 2px rgba(247, 220, 111, 0.6),
    0 0 0 4px rgba(133, 193, 233, 0.4),
    0 0 25px rgba(247, 220, 111, 0.5),
    0 15px 35px rgba(26, 82, 118, 0.3);
  
  /* Enhanced icon background */
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    linear-gradient(225deg, rgba(247, 220, 111, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #F7DC6F 0%, #F4D03F 100%);
  
  border-color: rgba(247, 220, 111, 0.8);
}

/* 3D Icon Text Effects */
.service-icon-bg i {
  @apply text-3xl;
  color: white;
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.3),
    0 0 8px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.executive-service-card:hover .service-icon-bg i {
  color: var(--indygo-deep-navy);
  text-shadow: 
    1px 1px 2px rgba(26, 82, 118, 0.3),
    0 0 12px rgba(26, 82, 118, 0.2);
  transform: scale(1.1);
}

/* ===== MODERN FLOATING ANIMATIONS ===== */

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* ===== PROFESSIONAL AI ROI CALCULATOR STYLES ===== */

/* Calculator Modal Overlay */
.calculator-modal {
  @apply fixed inset-0 z-50 flex items-center justify-center;
  background: rgba(12, 35, 63, 0.95);
  backdrop-filter: blur(20px);
  animation: modalFadeIn 0.4s ease-out;
}

/* Calculator Container */
.calculator-container {
  @apply w-full max-w-7xl mx-auto p-6 relative;
  max-height: 95vh;
  overflow-y: auto;
}

/* Professional Calculator Header */
.calculator-header {
  @apply text-center mb-12 relative;
}

.calculator-close {
  @apply absolute top-4 right-4 text-white hover:text-gold text-2xl p-2 rounded-lg;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.calculator-close:hover {
  background: rgba(247, 220, 111, 0.2);
  transform: scale(1.1);
}

/* Expert Credentials Section */
.expert-credentials {
  @apply bg-white/10 backdrop-blur-lg rounded-2xl p-6 mb-8 border border-white/20;
}

.expert-stats {
  @apply grid grid-cols-1 md:grid-cols-3 gap-6 text-center;
}

.expert-stat {
  @apply text-white;
}

.expert-stat-number {
  @apply text-3xl font-bold text-gold mb-2;
  text-shadow: 0 2px 10px rgba(247, 220, 111, 0.4);
}

.expert-stat-label {
  @apply text-sm font-semibold uppercase tracking-wider text-white/90;
}

/* Industry Benchmarking Grid */
.industry-grid {
  @apply grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-12;
}

.industry-card {
  @apply bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20 hover:border-gold/50 transition-all duration-300;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(247, 220, 111, 0.2);
}

.industry-icon {
  @apply w-16 h-16 bg-gold/20 rounded-lg flex items-center justify-center mb-4 mx-auto;
}

.industry-icon i {
  @apply text-2xl text-gold;
}

.industry-name {
  @apply text-xl font-bold text-white mb-2 text-center;
}

.industry-roi {
  @apply text-3xl font-black text-gold mb-2 text-center;
  text-shadow: 0 2px 10px rgba(247, 220, 111, 0.4);
}

.industry-subtitle {
  @apply text-sm text-white/80 text-center mb-4;
}

.success-metrics {
  @apply space-y-2;
}

.success-metric {
  @apply flex items-center text-sm text-white/90;
}

.success-metric i {
  @apply text-green-400 mr-2;
}

/* Assessment Form Styles */
.assessment-section {
  @apply bg-white rounded-3xl p-8 mb-8 shadow-2xl;
}

.assessment-header {
  @apply text-center mb-8 pb-6 border-b border-gray-200;
}

.assessment-title {
  @apply text-3xl font-bold mb-4;
  color: var(--indygo-deep-navy);
}

.assessment-subtitle {
  @apply text-lg text-gray-600 max-w-3xl mx-auto leading-relaxed;
}

/* Form Grid Layout */
.assessment-grid {
  @apply grid grid-cols-1 lg:grid-cols-2 gap-8;
}

.form-section {
  @apply space-y-6;
}

.form-section-title {
  @apply text-xl font-bold mb-6 pb-2 border-b-2 border-gold;
  color: var(--indygo-deep-navy);
}

/* Professional Form Fields */
.form-group {
  @apply space-y-3;
}

.form-label {
  @apply block text-sm font-semibold text-gray-700 mb-2;
}

.form-input, .form-select {
  @apply w-full px-4 py-3 rounded-xl border-2 border-gray-200 focus:border-gold focus:ring-4 focus:ring-gold/20 outline-none transition-all duration-300;
  background: rgba(255, 255, 255, 0.9);
}

.form-input:focus, .form-select:focus {
  box-shadow: 0 8px 25px rgba(247, 220, 111, 0.15);
  transform: translateY(-2px);
}

/* Professional Range Sliders */
.slider-container {
  @apply space-y-4;
}

.slider-label {
  @apply flex items-center justify-between text-sm font-semibold text-gray-700;
}

.slider-value {
  @apply text-gold font-bold px-3 py-1 bg-gold/10 rounded-lg;
}

.form-range {
  @apply w-full h-3 bg-gray-200 rounded-lg appearance-none cursor-pointer;
  background: linear-gradient(to right, #f7dc6f 0%, #f4d03f 50%, #f7dc6f 100%);
}

.form-range::-webkit-slider-thumb {
  @apply appearance-none w-6 h-6 rounded-full cursor-pointer;
  background: linear-gradient(135deg, var(--indygo-deep-navy) 0%, #2874a6 100%);
  box-shadow: 0 4px 15px rgba(26, 82, 118, 0.3);
  transition: all 0.3s ease;
}

.form-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(26, 82, 118, 0.4);
}

/* Executive Calculate Button */
.calculate-button {
  @apply w-full py-4 px-8 rounded-xl font-bold text-xl transition-all duration-300 transform;
  background: linear-gradient(135deg, var(--indygo-deep-navy) 0%, #2874a6 100%);
  color: white;
  box-shadow: 
    0 8px 25px rgba(26, 82, 118, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.calculate-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 35px rgba(26, 82, 118, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Results Dashboard */
.results-dashboard {
  @apply bg-white rounded-3xl p-8 mt-8 shadow-2xl;
}

.dashboard-header {
  @apply text-center mb-8 pb-6 border-b border-gray-200;
}

.dashboard-title {
  @apply text-3xl font-bold mb-4;
  color: var(--indygo-deep-navy);
}

/* ROI Metrics Grid */
.roi-metrics {
  @apply grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8;
}

.roi-metric {
  @apply text-center p-6 rounded-xl;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  border: 2px solid rgba(26, 82, 118, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.roi-metric-value {
  @apply text-4xl font-black mb-2;
  background: linear-gradient(135deg, var(--indygo-deep-navy) 0%, #2874a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-metric-label {
  @apply text-sm font-semibold uppercase tracking-wider text-gray-600;
}

/* Executive Summary */
.executive-summary {
  @apply bg-gradient-to-br from-blue-50 to-indigo-50 rounded-2xl p-8 mb-8;
}

.executive-summary h4 {
  @apply text-2xl font-bold mb-6;
  color: var(--indygo-deep-navy);
}

.summary-highlights {
  @apply grid grid-cols-1 md:grid-cols-2 gap-6;
}

.highlight-item {
  @apply flex items-start space-x-3;
}

.highlight-icon {
  @apply w-8 h-8 bg-gold/20 rounded-lg flex items-center justify-center flex-shrink-0 mt-1;
}

.highlight-icon i {
  @apply text-sm text-gold;
}

/* Success Stories Section */
.success-stories {
  @apply bg-gradient-to-br from-green-50 to-emerald-50 rounded-2xl p-8 mb-8;
}

.success-stories h4 {
  @apply text-2xl font-bold mb-6 text-center;
  color: var(--indygo-deep-navy);
}

.success-grid {
  @apply grid grid-cols-1 md:grid-cols-2 gap-6;
}

.success-story {
  @apply bg-white rounded-xl p-6 shadow-lg;
}

.success-company {
  @apply font-bold text-gray-900 mb-2;
}

.success-result {
  @apply text-2xl font-bold text-green-600 mb-3;
}

.success-description {
  @apply text-gray-600 text-sm leading-relaxed;
}

/* Lead Capture CTA */
.lead-capture {
  @apply bg-gradient-to-br from-indigo-50 to-blue-50 rounded-2xl p-8 text-center;
}

.lead-capture h4 {
  @apply text-2xl font-bold mb-4;
  color: var(--indygo-deep-navy);
}

.lead-capture p {
  @apply text-lg text-gray-600 mb-6 max-w-2xl mx-auto;
}

.cta-buttons {
  @apply flex flex-col sm:flex-row gap-4 justify-center;
}

.primary-cta, .secondary-cta {
  @apply px-8 py-4 rounded-xl font-bold text-lg transition-all duration-300;
}

.primary-cta {
  background: linear-gradient(135deg, var(--indygo-deep-navy) 0%, #2874a6 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(26, 82, 118, 0.3);
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26, 82, 118, 0.4);
}

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

.secondary-cta:hover {
  background: var(--indygo-deep-navy);
  color: white;
}

/* Animation Keyframes */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .calculator-container {
    @apply p-4;
  }
  
  .industry-grid {
    @apply grid-cols-1;
  }
  
  .assessment-grid {
    @apply grid-cols-1;
  }
  
  .roi-metrics {
    @apply grid-cols-1 sm:grid-cols-2;
  }
  
  .summary-highlights {
    @apply grid-cols-1;
  }
  
  .success-grid {
    @apply grid-cols-1;
  }
}

/* Professional Loading States */
.calculating {
  @apply relative;
  pointer-events: none;
}

.calculating::after {
  content: '';
  @apply absolute inset-0 bg-white/80 rounded-xl flex items-center justify-center;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23DAA520"><circle cx="12" cy="12" r="3"><animateTransform attributeName="transform" type="rotate" dur="1s" values="0 12 12;360 12 12" repeatCount="indefinite"/></circle></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
}

/* Hero ROI Calculator Styles */
.hero-form-input {
  @apply w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-brand-primary/20 focus:border-brand-primary outline-none transition-colors duration-200 bg-white;
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(12, 35, 63, 0.2);
  color: #0C233F;
  font-weight: 500;
}

.hero-form-input:focus {
  border-color: #DAA520;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
  background-color: white;
}

.hero-form-input::placeholder {
  color: rgba(12, 35, 63, 0.6);
}

.hero-checkbox-label {
  @apply flex items-center p-4 border-2 border-gray-200 rounded-lg hover:border-brand-primary cursor-pointer transition-colors;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(12, 35, 63, 0.15);
  transition: all 0.3s ease;
}

.hero-checkbox-label:hover {
  border-color: #DAA520;
  background-color: rgba(218, 165, 32, 0.05);
  transform: translateY(-1px);
}

.hero-checkbox-label input[type="checkbox"]:checked + div,
.hero-checkbox-label:has(input[type="checkbox"]:checked) {
  border-color: #0C233F;
  background-color: rgba(12, 35, 63, 0.05);
}

/* ROI Calculator Styles */
.calculator-step {
  transition: all 0.3s ease-in-out;
}

.calculator-step.hidden {
  display: none;
}

.roi-results-modal {
  @apply fixed inset-0 z-50 flex items-center justify-center p-4;
}

.roi-results-modal .modal-content {
  @apply relative bg-white rounded-2xl w-full max-h-[90vh] overflow-y-auto shadow-2xl;
}

.roi-results-modal .modal-header {
  @apply p-8 text-center relative;
}

.roi-results-modal .modal-close {
  @apply absolute top-4 right-4 text-white hover:text-blue-200 text-2xl p-2 hover:bg-white/10 rounded-lg transition-colors;
}

/* ROI Calculator Form Styling */
#roiCalculatorForm input[type="checkbox"]:checked + div {
  @apply border-brand-primary bg-brand-primary/5;
}

#roiCalculatorForm label:has(input[type="checkbox"]:checked) {
  @apply border-brand-primary bg-brand-primary/5;
}

/* Enhanced Form Input Styles */
.form-input:focus {
  @apply ring-2 ring-brand-primary/20 border-brand-primary;
}

select.form-input {
  @apply appearance-none bg-white;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* ROI Results Cards */
.roi-results-modal .modal-body > div:first-child > div {
  @apply transition-all duration-300 hover:scale-105;
}

/* Checkbox Styling Enhancement */
input[type="checkbox"] {
  @apply w-5 h-5 text-brand-primary border-gray-300 rounded focus:ring-brand-primary/20 focus:ring-2;
}

/* Progress Indicator (if needed for future enhancement) */
.step-indicator {
  @apply flex items-center justify-center w-8 h-8 rounded-full font-bold text-sm;
}

.step-indicator.active {
  @apply bg-brand-primary text-white;
}

.step-indicator.completed {
  @apply bg-green-500 text-white;
}

.step-indicator.pending {
  @apply bg-gray-200 text-gray-600;
    0 0 8px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

/* Portfolio Gallery Styles */
.portfolio-gallery-container {
  @apply relative max-w-6xl mx-auto;
}

.portfolio-slider {
  @apply relative overflow-hidden rounded-2xl;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.portfolio-images {
  @apply relative overflow-hidden rounded-xl;
  height: 500px; /* Fixed height for consistent display */
}

.portfolio-track {
  @apply flex transition-transform duration-500 ease-in-out;
  width: 300%; /* 3 slides = 300% width */
}

.portfolio-slide {
  @apply flex-shrink-0;
  width: 33.333333%; /* Each slide is 1/3 of track width */
  height: 100%;
  padding: 0 1rem; /* Small padding between slides */
}

.portfolio-slide img {
  @apply w-full h-full object-cover rounded-lg;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.portfolio-controls {
  @apply flex items-center justify-between mt-8;
}

.portfolio-nav-btn {
  @apply p-4 rounded-full transition-all duration-300;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.portfolio-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-indicators {
  @apply flex items-center space-x-4;
}

.portfolio-indicators .indicator {
  @apply w-4 h-4 rounded-full cursor-pointer transition-all duration-300;
  background: rgba(255, 255, 255, 0.3);
}

.portfolio-indicators .indicator.active,
.portfolio-indicators .indicator:hover {
  background: var(--indygo-gold);
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(247, 220, 111, 0.5);
}

/* Portfolio Slide Content Overlay */
.portfolio-slide .relative .absolute {
  @apply transition-opacity duration-300;
}

/* Enhanced Portfolio Image Hover Effects */
.portfolio-slide img {
  transition: transform 0.3s ease;
}

.portfolio-slide .group:hover img {
  transform: scale(1.05);
}

/* Portfolio CTA Button */
.portfolio-cta {
  @apply px-8 py-4 rounded-lg font-bold transition-all duration-300;
  background: linear-gradient(135deg, var(--indygo-deep-blue) 0%, var(--indygo-sky-blue) 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(26, 82, 118, 0.3);
}

.portfolio-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 82, 118, 0.4);
}
}

.executive-service-card:hover .service-icon-bg i {
  color: #1A5276;
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.2),
    0 0 12px rgba(26, 82, 118, 0.3);
  transform: scale(1.1);
}

/* Enhanced Service Category Badge with 3D Effects */
.service-category {
  @apply inline-flex items-center px-6 py-3 rounded-full text-xs font-bold uppercase tracking-wider mb-8;
  
  /* 3D badge background */
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #F7DC6F 0%, #F4D03F 100%);
  
  color: #1A5276;
  
  /* 3D badge shadows */
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -1px 2px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(133, 193, 233, 0.3),
    0 4px 12px rgba(247, 220, 111, 0.3),
    0 8px 20px rgba(26, 82, 118, 0.15);
  
  /* Badge animation */
  animation: badge-pulse 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

/* 3D Badge Animation */
@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.05);
    filter: brightness(1.1);
  }
}

/* Enhanced Service Titles with 3D Text Effects */
.service-title {
  @apply text-2xl font-bold mb-6 text-center;
  color: white;
  
  /* 3D text shadow effects */
  text-shadow: 
    1px 1px 0 rgba(0, 0, 0, 0.3),
    2px 2px 0 rgba(0, 0, 0, 0.2),
    3px 3px 0 rgba(0, 0, 0, 0.1),
    0 0 15px rgba(255, 255, 255, 0.2);
  
  /* Subtle text animation */
  animation: text-glow 4s ease-in-out infinite;
}

@keyframes text-glow {
  0%, 100% {
    text-shadow: 
      1px 1px 0 rgba(0, 0, 0, 0.3),
      2px 2px 0 rgba(0, 0, 0, 0.2),
      3px 3px 0 rgba(0, 0, 0, 0.1),
      0 0 15px rgba(255, 255, 255, 0.2);
  }
  50% {
    text-shadow: 
      1px 1px 0 rgba(0, 0, 0, 0.3),
      2px 2px 0 rgba(0, 0, 0, 0.2),
      3px 3px 0 rgba(0, 0, 0, 0.1),
      0 0 25px rgba(247, 220, 111, 0.3);
  }
}

/* Enhanced Feature Items with 3D Effects */
.feature-item {
  @apply flex items-center space-x-4 py-3 px-4 mb-3 rounded-xl;
  
  /* 3D feature background */
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    rgba(255, 255, 255, 0.05);
  
  border: 1px solid rgba(133, 193, 233, 0.2);
  
  /* 3D feature shadows */
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 2px 8px rgba(26, 82, 118, 0.1);
  
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
  transform: translateX(8px) translateZ(5px);
  background: 
    linear-gradient(135deg, rgba(247, 220, 111, 0.15) 0%, transparent 50%),
    rgba(255, 255, 255, 0.1);
  
  border-color: rgba(247, 220, 111, 0.4);
  
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 15px rgba(247, 220, 111, 0.2),
    0 0 0 1px rgba(247, 220, 111, 0.3);
}

/* Enhanced Feature Dots with 3D Effects */
.feature-dot {
  @apply w-3 h-3 rounded-full flex-shrink-0;
  
  /* 3D dot with gradient */
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 50%),
    linear-gradient(135deg, #F7DC6F 0%, #F4D03F 100%);
  
  /* 3D dot shadow */
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 0 2px rgba(247, 220, 111, 0.3),
    0 2px 6px rgba(247, 220, 111, 0.2);
  
  /* Dot pulse animation */
  animation: dot-pulse-3d 2s ease-in-out infinite;
}

@keyframes dot-pulse-3d {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      0 0 0 2px rgba(247, 220, 111, 0.3),
      0 2px 6px rgba(247, 220, 111, 0.2);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 0 0 3px rgba(247, 220, 111, 0.4),
      0 3px 10px rgba(247, 220, 111, 0.3);
  }
}

/* Enhanced CTA Buttons with 3D Effects */
.service-cta {
  @apply w-full py-4 px-8 rounded-2xl font-bold text-center transition-all duration-500;
  
  /* 3D button background */
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #85C1E9 0%, #5DADE2 100%);
  
  color: #1A5276;
  
  /* 3D button borders and shadows */
  border: 2px solid rgba(133, 193, 233, 0.6);
  
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(133, 193, 233, 0.3),
    0 8px 20px rgba(133, 193, 233, 0.2),
    0 4px 15px rgba(26, 82, 118, 0.15);
  
  /* 3D button text shadow */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  
  transform-style: preserve-3d;
}

.service-cta:hover {
  transform: translateY(-5px) translateZ(10px) scale(1.02);
  
  /* Enhanced 3D hover state */
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #F7DC6F 0%, #F4D03F 100%);
  
  color: #1A5276;
  border-color: rgba(247, 220, 111, 0.8);
  
  box-shadow: 
    inset 0 3px 6px rgba(255, 255, 255, 0.3),
    inset 0 -3px 6px rgba(0, 0, 0, 0.15),
    0 0 0 2px rgba(247, 220, 111, 0.5),
    0 0 25px rgba(247, 220, 111, 0.4),
    0 15px 35px rgba(26, 82, 118, 0.25);
  
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-category {
  @apply inline-block px-4 py-2 rounded-full text-xs font-bold uppercase tracking-wider mb-6;
  background: linear-gradient(135deg, #1a5276 0%, #2874a6 100%);
  color: white;
}

.service-icon-wrapper {
  @apply mb-6;
}

.service-icon-bg {
  @apply w-16 h-16 rounded-2xl flex items-center justify-center mb-6;
  background: linear-gradient(135deg, #1A5276 0%, #154360 100%); /* Dark blue background to match card */
  border: 2px solid #85C1E9; /* Light blue border */
  box-shadow: 
    0 0 10px rgba(133, 193, 233, 0.5), /* Light blue glow */
    0 0 20px rgba(133, 193, 233, 0.3),
    0 8px 32px rgba(26, 82, 118, 0.2); /* Dark blue shadow */
}

.service-icon-bg i {
  @apply text-2xl;
  color: white; /* White text for clear visibility */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Subtle shadow for better readability */
}

.service-title {
  @apply text-2xl font-bold mb-4;
  color: white; /* White text for light blue background */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Subtle shadow for readability */
}

.service-description {
  @apply mb-6 leading-relaxed;
  color: white; /* White text for light blue background */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow for readability */
}

.service-features {
  @apply space-y-3 mb-8;
}

.feature-item {
  @apply flex items-center space-x-3;
}

.feature-dot {
  @apply w-2 h-2 rounded-full flex-shrink-0;
  background: #f7dc6f;
}

.feature-item span:not(.feature-dot) {
  @apply text-sm font-medium;
  color: white; /* White text for light blue background */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow for readability */
}

.service-investment {
  @apply text-center mb-8;
}

.investment-from {
  @apply text-sm uppercase tracking-wider mb-2;
  color: white; /* White text for light blue background */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.investment-amount {
  @apply text-3xl font-bold;
  color: white; /* White text for light blue background */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.service-cta {
  @apply w-full py-3 px-6 rounded-xl font-semibold transition-all duration-300;
  background: #85C1E9; /* Light blue background */
  color: #1a5276; /* Dark blue text */
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(133, 193, 233, 0.2);
}

.service-cta:hover {
  transform: translateY(-2px);
  background: transparent;
  border: 2px solid #85C1E9;
  color: white;
  box-shadow: 
    0 0 15px rgba(133, 193, 233, 0.5),
    0 8px 25px rgba(133, 193, 233, 0.3);
}

/* CSS Variables for Dynamic Colors */
:root {
  --indygo-gold: #f7dc6f;
  --indygo-deep-blue: #1a5276;
  --indygo-sky-blue: #85c1e9;
}

/* Print Styles */
@media print {
  .branding-quote-modal,
  .ai-consultation-modal,
  .success-notification,
  .error-notification {
    display: none !important;
  }
}
/* ===== PORTFOLIO GALLERY STYLES ===== */

/* Portfolio Gallery Container */
.portfolio-gallery-container {
  position: relative;
}

/* Portfolio Slider Styling */
.portfolio-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  
  /* 3D Effect Background */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
  /* Multi-layer border system */
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  /* 3D Shadow effects */
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.1);
  
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Portfolio Images Container */
.portfolio-images {
  position: relative;
  width: 100%;
  height: 400px; /* Fixed height for consistency */
  overflow: hidden; /* Critical: hides slides outside viewport */
  border-radius: 0.75rem;
}

/* Portfolio Track for Sliding */
.portfolio-track {
  display: flex;
  width: 300%; /* 3 slides = 300% width */
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Individual Portfolio Slides */
.portfolio-slide {
  flex: 0 0 33.333333%; /* Each slide is 1/3 of track width */
  width: 33.333333%; /* Ensure each slide takes exactly 1/3 width */
  height: 100%;
  position: relative;
  overflow: hidden; /* Prevent content overflow */
}

/* Portfolio Images */
.portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 0.75rem;
  display: block; /* Ensure proper image display */
}

/* Ensure proper slide positioning */
.portfolio-slide .group {
  width: 100%;
  height: 100%;
}

/* Image Hover Effects */
.portfolio-slide .group:hover img {
  transform: scale(1.05);
}

/* Portfolio Overlay Effects */
.portfolio-slide .group {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  height: 100%;
}

/* Overlay Gradient */
.portfolio-slide .absolute {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  transition: opacity 0.3s ease;
}

/* Portfolio Controls */
.portfolio-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}

/* Navigation Buttons */
.portfolio-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  
  /* 3D Button Effects */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.15);
  
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-nav-btn:active {
  transform: translateY(0);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Portfolio Indicators */
.portfolio-indicators {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.portfolio-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* 3D indicator effects */
  box-shadow: 
    inset 0 1px 2px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.portfolio-indicators .indicator:hover {
  transform: scale(1.2);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(0, 0, 0, 0.15);
}

.portfolio-indicators .indicator.active {
  background-color: #F7DC6F !important;
  transform: scale(1.3);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 0 12px rgba(247, 220, 111, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Portfolio CTA Section */
.portfolio-slider .text-center {
  margin-top: 1.5rem;
}

/* Responsive Design for Portfolio */
@media (max-width: 768px) {
  .portfolio-images {
    height: 300px; /* Smaller height on mobile */
  }
  
  .portfolio-controls {
    margin-top: 1rem;
  }
  
  .portfolio-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .portfolio-indicators .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .portfolio-images {
    height: 250px;
  }
  
  .portfolio-gallery-container h3 {
    font-size: 1.5rem;
  }
  
  .portfolio-gallery-container p {
    font-size: 0.875rem;
  }
}

/* Portfolio Loading States */
.portfolio-track.loading {
  pointer-events: none;
}

.portfolio-slide.loading img {
  opacity: 0.7;
  filter: blur(1px);
}

/* Portfolio Accessibility */
.portfolio-nav-btn:focus,
.portfolio-indicators .indicator:focus {
  outline: 2px solid #F7DC6F;
  outline-offset: 2px;
}

/* Portfolio Animation Enhancements */
.portfolio-slide {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.portfolio-track[data-transitioning="true"] .portfolio-slide:not(.active) {
  opacity: 0.7;
}

/* Portfolio Title and Description Enhancements */
.portfolio-gallery-container h3 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.025em;
}

.portfolio-gallery-container p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Auto-slide indicator animation */
@keyframes portfolio-progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.portfolio-indicators .indicator.active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: rgba(26, 82, 118, 0.8);
  border-radius: 50%;
  animation: portfolio-progress 8s linear infinite;
}

/* Enhanced hover states for portfolio overlay content */
.portfolio-slide h4 {
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.025em;
}

.portfolio-slide p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* ========================================
   AI ROI CALCULATOR MODAL STYLES
   ======================================== */

.ai-roi-calculator-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ai-roi-calculator-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.calculator-modal-content {
  position: relative;
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10000;
}

.calculator-modal-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.calculator-modal-title h3 {
  margin: 0;
  color: #1f2937;
  line-height: 1.2;
}

.premium-badge-small {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #e5e7eb;
  color: #374151;
}

.calculator-modal-body {
  padding: 32px;
}

/* Calculator Progress Steps */
.calculator-progress {
  margin-bottom: 32px;
}

.calculator-progress .flex {
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.step-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  transition: all 0.3s;
}

.step.active .step-number {
  background: linear-gradient(135deg, #1A5276, #85C1E9);
  color: white;
  box-shadow: 0 4px 12px rgba(26, 82, 118, 0.3);
}

.step.active .step-label {
  color: #1A5276;
}

.step.completed .step-number {
  background: #10b981;
  color: white;
}

.step.completed .step-label {
  color: #10b981;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin: 0 16px;
  position: relative;
  top: -12px;
}

/* Calculator Form Steps */
.calculator-step {
  display: none;
}

.calculator-step.active {
  display: block;
  animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Elements */
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.2s;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #1A5276;
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
}

/* Checkbox Cards */
.checkbox-card {
  display: block;
  cursor: pointer;
}

.checkbox-card-input {
  display: none;
}

.checkbox-card-content {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
  background: white;
}

.checkbox-card-input:checked + .checkbox-card-content {
  border-color: #1A5276;
  background: linear-gradient(135deg, rgba(26, 82, 118, 0.05), rgba(133, 193, 233, 0.05));
}

.checkbox-card:hover .checkbox-card-content {
  border-color: #85C1E9;
  background: rgba(133, 193, 233, 0.02);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #1A5276, #85C1E9);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 82, 118, 0.3);
}

.btn-secondary {
  background: white;
  color: #374151;
  padding: 12px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: #1A5276;
  color: #1A5276;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
}

/* ROI Results Display */
.roi-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.roi-card {
  background: white;
  border: 2px solid;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.roi-card.primary {
  border-color: #1A5276;
  background: linear-gradient(135deg, rgba(26, 82, 118, 0.05), rgba(26, 82, 118, 0.02));
}

.roi-card.secondary {
  border-color: #85C1E9;
  background: linear-gradient(135deg, rgba(133, 193, 233, 0.05), rgba(133, 193, 233, 0.02));
}

.roi-card.accent {
  border-color: #F7DC6F;
  background: linear-gradient(135deg, rgba(247, 220, 111, 0.05), rgba(247, 220, 111, 0.02));
}

.roi-card.success {
  border-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
}

.roi-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.roi-card.primary .roi-icon {
  background: #1A5276;
  color: white;
}

.roi-card.secondary .roi-icon {
  background: #85C1E9;
  color: #1A5276;
}

.roi-card.accent .roi-icon {
  background: #F7DC6F;
  color: #1A5276;
}

.roi-card.success .roi-icon {
  background: #10b981;
  color: white;
}

.roi-value {
  font-size: 28px;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 8px;
  line-height: 1;
}

.roi-label {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.roi-description {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
}

/* Lead Capture Section */
.lead-capture-section {
  border-top: 1px solid #e5e7eb;
  padding-top: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .calculator-modal-content {
    margin: 20px;
    border-radius: 16px;
  }
  
  .calculator-modal-header,
  .calculator-modal-body {
    padding: 24px;
  }
  
  .roi-results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .step-line {
    display: none;
  }
  
  .calculator-progress .flex {
    flex-direction: column;
    gap: 16px;
  }
  
  .step {
    flex-direction: row;
    gap: 12px;
  }
}

/* Advanced AI ROI Calculator Pro Styles */
.industry-preset-btn {
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
  background: white;
}

.industry-preset-btn:hover {
  border-color: var(--indygo-luxurious-gold);
  background: rgba(218, 165, 32, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(218, 165, 32, 0.15);
}

.industry-preset-btn.active {
  border-color: var(--indygo-deep-navy) !important;
  background: rgba(12, 35, 63, 0.05) !important;
}

/* Advanced Calculator Modal */
#advanced-calculator-modal {
  backdrop-filter: blur(8px);
}

/* Slider Styles */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--indygo-luxurious-gold), #e5e7eb);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--indygo-deep-navy);
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(12, 35, 63, 0.3);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--indygo-deep-navy);
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(12, 35, 63, 0.3);
}

/* Advanced Calculator Form Styling */
#advanced-roi-form .hero-form-input {
  border: 2px solid rgba(12, 35, 63, 0.15);
  transition: all 0.3s ease;
}

#advanced-roi-form .hero-form-input:focus {
  border-color: var(--indygo-luxurious-gold);
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

/* Results Cards Animation */
.results-card {
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive for Advanced Calculator */
@media (max-width: 768px) {
  #advanced-calculator-modal .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #advanced-calculator-modal .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  
  .industry-preset-btn {
    padding: 12px;
    text-align: center;
  }
  
  #advanced-calculator-modal .lg\\:grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Scrollbar Styling for Modal */
#advanced-calculator-modal::-webkit-scrollbar {
  width: 8px;
}

#advanced-calculator-modal::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#advanced-calculator-modal::-webkit-scrollbar-thumb {
  background: var(--indygo-luxurious-gold);
  border-radius: 4px;
}

#advanced-calculator-modal::-webkit-scrollbar-thumb:hover {
  background: var(--indygo-deep-navy);
}

/* 1NDYGO AI Logo Showcase Styles */
.logo-showcase-container {
  transform: translateY(0);
  transition: all 0.3s ease;
  animation: logoFloat 6s ease-in-out infinite;
}

.logo-glass-frame {
  display: inline-block;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.15) 0%, 
    rgba(18, 70, 139, 0.1) 50%,
    rgba(12, 15, 48, 0.2) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.logo-glass-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.logo-hero-image {
  width: auto;
  height: 200px;
  max-width: 400px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
}

.logo-hero-image:hover {
  filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.2));
  transform: scale(1.02);
}

.tagline-glass-container {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 1.5rem;
  background: rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.logo-tagline {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.02em;
}

.professional-badge-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.professional-badge {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.15) 0%, 
    rgba(212, 175, 55, 0.05) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  gap: 0.75rem;
}

.badge-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--metallic-gold);
  color: white;
  font-size: 0.875rem;
}

.badge-text {
  color: var(--metallic-gold);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* Logo Animations */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* Responsive Logo Design */
@media (max-width: 768px) {
  .logo-hero-image {
    height: 120px;
    max-width: 280px;
  }
  
  .logo-glass-frame {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  
  .logo-tagline {
    font-size: 1.25rem;
  }
  
  .tagline-glass-container {
    padding: 1rem 1.5rem;
  }
  
  .professional-badge {
    padding: 0.75rem 1.5rem;
  }
  
  .badge-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .logo-hero-image {
    height: 100px;
    max-width: 240px;
  }
  
  .logo-tagline {
    font-size: 1.1rem;
  }
}

/* Expert Design System - Premium Components */

/* Expert Button Styles */
.expert-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  color: #0C0F30;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.expert-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #E5C547 0%, #C8941B 100%);
}

.expert-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.expert-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* Expert Glass Card */
.expert-glass-card {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.expert-glass-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Expert Navigation Updates */
.nav-link-master {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link-master:hover {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
}

/* Expert Section Backgrounds */
.expert-section-light {
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.expert-section-dark {
  background: linear-gradient(135deg, #0C0F30 0%, #12468B 100%);
}

.expert-section-card {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
}

/* Expert Card Styles */
.expert-service-card {
  background: linear-gradient(135deg, #12468B 0%, #1A5276 100%);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(12, 15, 48, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.expert-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #D4AF37 0%, #12468B 100%);
}

.expert-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(12, 15, 48, 0.3);
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #1A5276 0%, #12468B 100%);
}

/* Expert Typography */
.expert-heading-xl {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.expert-heading-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: #0C0F30;
}

.expert-heading-md {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: #FFFFFF;
}

/* Expert Price Display */
.expert-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #D4AF37;
  text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

/* Expert Badge */
.expert-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(18, 70, 139, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 600;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Expert Modal Styles */
.expert-modal-overlay {
  background: rgba(12, 15, 48, 0.8);
  backdrop-filter: blur(8px);
}

.expert-modal-content {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(12, 15, 48, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Responsive Expert Design */
@media (max-width: 768px) {
  .expert-btn-primary,
  .expert-btn-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .expert-glass-card {
    padding: 20px;
  }
  
  .expert-service-card {
    padding: 24px;
  }
}
