/* APPRO SOFTWARE LTD - Custom Design System */

/* Custom Color Palette - Logo Colors */
:root {
  --a1-yellow: #FAEC19;
  --a1-orange: #FFC117;
  --a1-white: #FFFFFF;
  --a1-dark: #071421;
  --a1-blue: #4F9CF9;
  --a1-blue-2: #3B82F6;
  --a1-blue-light: #60A5FA;
  --a1-blue-bright: #7BB3FF;
  --a1-purple: #A78BFA;
  --a1-purple-bright: #C4B5FD;
  --a1-purple-vibrant: #8B5CF6;
  --a1-navy: #1E293B;
  --a1-dark-blue: #0F172A;
  --a1-green: #10B981;
  --a1-silver-50: #0F172A;
  --a1-silver-100: #1E293B;
  --a1-silver-200: #334155;
  --a1-muted: #94A3B8;
  --a1-text: #FFFFFF;
  --a1-text-dark: #E2E8F0;
  --a1-card-bg: #1E293B;
  --a1-card-border: rgba(79, 156, 249, 0.4);
  --a1-glow-blue: rgba(79, 156, 249, 0.6);
  --a1-glow-purple: rgba(167, 139, 250, 0.6);
  --a1-glow-yellow: rgba(250, 236, 25, 0.6);
  --a1-glow-orange: rgba(255, 193, 23, 0.6);
}

/* Tailwind CSS Custom Colors */
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  html {
    scroll-behavior: smooth;
    background-color: var(--a1-dark);
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: var(--a1-dark) !important;
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 40% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 60% 30%, rgba(250, 236, 25, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--a1-text) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
  }
  
  * {
    box-sizing: border-box;
  }
  
  /* Professional Header Design - Dark Theme with Glassmorphism */
  nav {
    background: rgba(7, 20, 33, 0.85) !important;
    backdrop-filter: blur(24px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(250, 236, 25, 0.05) inset !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
  
  /* Professional navigation links with glow effect */
  nav .nav-link {
    font-weight: 500;
    letter-spacing: -0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    color: rgba(241, 245, 249, 0.9);
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
  }
  
  nav .nav-link:hover {
    color: var(--a1-blue-light) !important;
    text-shadow: 0 0 15px rgba(79, 156, 249, 0.7);
    transform: translateY(-1px);
  }
  
  nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--a1-blue-light), var(--a1-purple));
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
  }
  
  nav .nav-link:hover::after {
    width: calc(100% - 1.5rem);
  }
  
  nav .nav-link.active {
    background: rgba(96, 165, 250, 0.1);
    color: var(--a1-blue-light) !important;
  }
  
  nav .nav-link.active::after {
    width: calc(100% - 1.5rem);
  }
  
  /* Logo enhancement for professional look */
  nav svg {
    transition: all 0.3s ease-in-out;
  }
  
  nav svg:hover {
    transform: scale(1.02);
  }
  
  /* Enhanced text shadows for better contrast */
  nav svg text {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  }
  
  /* Mobile menu button styling */
  nav button {
    transition: all 0.2s ease-in-out;
  }
  
  nav button:hover {
    transform: scale(1.05);
  }
  
  /* Mobile menu styling - Dark Theme */
  #mobile-menu {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  }
  
  /* Professional focus states */
  nav a:focus,
  nav button:focus {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
    border-radius: 4px;
  }
  
  
  /* Hero content centered properly */
  #home .relative {
    padding-top: 0;
    min-height: auto;
    margin: 0;
  }
  
  #home .relative > div {
    margin: 0;
  }
  
  /* Custom scrollbar - Dark Theme */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--a1-dark);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--a1-yellow);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--a1-orange);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--a1-blue);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--a1-blue-light);
  }
}

@layer utilities {
/* Custom color utilities */
.text-a1-blue { color: var(--a1-blue); }
.text-a1-blue-2 { color: var(--a1-blue-2); }
.text-a1-navy { color: var(--a1-navy); }
.text-a1-dark-blue { color: var(--a1-dark-blue); }
.text-a1-green { color: var(--a1-green); }
.text-a1-silver-50 { color: var(--a1-silver-50); }
.text-a1-silver-100 { color: var(--a1-silver-100); }
.text-a1-muted { color: var(--a1-muted); }
.text-a1-text { color: var(--a1-text); }
.text-a1-text-dark { color: var(--a1-text-dark); }

.bg-a1-blue { background-color: var(--a1-blue); }
.bg-a1-blue-2 { background-color: var(--a1-blue-2); }
.bg-a1-navy { background-color: var(--a1-navy); }
.bg-a1-dark-blue { background-color: var(--a1-dark-blue); }
.bg-a1-green { background-color: var(--a1-green); }
.bg-a1-silver-50 { background-color: var(--a1-silver-50); }
.bg-a1-silver-100 { background-color: var(--a1-silver-100); }
.bg-a1-dark { background-color: var(--a1-dark); }
.bg-a1-navy { background-color: var(--a1-navy); }
.bg-a1-card-bg { background-color: var(--a1-card-bg); }

/* Hero gradient utilities */
.bg-gradient-to-br.from-a1-dark-blue.via-a1-navy.to-a1-dark-blue {
  background: linear-gradient(135deg, var(--a1-dark-blue) 0%, var(--a1-navy) 50%, var(--a1-dark-blue) 100%);
}
  
  .border-a1-blue { border-color: var(--a1-blue); }
  .border-a1-silver-100 { border-color: var(--a1-silver-100); }
  .border-a1-silver-200 { border-color: var(--a1-silver-200); }
  .border-a1-card-border { border-color: var(--a1-card-border); }
  
  /* Gradient utilities */
  .bg-gradient-a1-blue {
    background: linear-gradient(135deg, var(--a1-blue) 0%, var(--a1-blue-2) 100%);
  }
  
  .bg-gradient-a1-dark {
    background: linear-gradient(135deg, var(--a1-dark-blue) 0%, var(--a1-navy) 50%, var(--a1-dark-blue) 100%);
  }
  
  /* Font family utility */
  .font-inter {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
}

@layer components {
  /* Navigation Styles */
  .nav-link {
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--a1-blue-light), var(--a1-purple));
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
  }
  
  .nav-link:hover {
    color: var(--a1-blue-light) !important;
  }
  
  .nav-link:hover::after {
    width: calc(100% - 1.5rem);
  }
  
  .nav-link.active {
    background: rgba(96, 165, 250, 0.1);
  }
  
  .nav-link.active::after {
    width: calc(100% - 1.5rem);
  }
  
  .mobile-nav-link {
    transition: all 0.2s ease;
  }
  
  /* Button Styles - Blue/Purple with Yellow Touch */
  .btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%) !important;
    @apply text-white font-semibold px-6 py-3 rounded-lg transition-all duration-300;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
  }
  
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }
  
  .btn-primary:hover::before {
    left: 100%;
  }
  
  .btn-primary:hover {
    background: linear-gradient(135deg, #818CF8 0%, #A78BFA 100%) !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
  }
  
  .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
  }
  
  .btn-secondary {
    @apply font-semibold px-6 py-3 rounded-lg transition-all duration-300;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--a1-text);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
  }
  
  .btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Card Styles - Transparent Background with Glowing Border */
  .card {
    background: transparent;
    border: 2px solid rgba(96, 165, 250, 0.5);
    @apply rounded-2xl transition-all duration-300;
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.2), 0 4px 12px rgba(96, 165, 250, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }
  
  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60A5FA, #A78BFA, transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .card:hover::before {
    opacity: 1;
  }
  
  .card:hover {
    background: rgba(30, 41, 59, 0.2);
    border-color: rgba(96, 165, 250, 0.9);
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.4), 0 8px 24px rgba(96, 165, 250, 0.3), 0 0 20px rgba(96, 165, 250, 0.2);
    transform: translateY(-4px);
  }
  
  /* Contact Form Card - Dark Blue Background */
  
  .card-gradient {
    background: linear-gradient(135deg, var(--a1-blue) 0%, var(--a1-purple) 100%);
    @apply rounded-2xl text-white;
  }
  
  /* Form Styles - Dark Theme */
  .form-input {
    @apply w-full px-4 py-3 bg-a1-navy border border-a1-card-border rounded-xl focus:ring-2 focus:ring-a1-blue focus:border-a1-blue transition-all duration-200 text-a1-text;
  }
  
  .form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  }
  
  .placeholder-a1-muted::placeholder {
    color: var(--a1-muted);
  }
  
  /* Section Spacing */
  .section-padding {
    @apply py-20;
  }
  
  /* Container */
  .container-custom {
    @apply max-w-7xl mx-auto px-4 sm:px-6 lg:px-8;
  }
}

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

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0,-4px,0);
  }
}

/* Animation Classes */
.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
  animation: fadeInRight 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Responsive Design Enhancements */
@media (max-width: 640px) {
  .container-custom {
    @apply px-4;
  }
  
  .section-padding {
    @apply py-12;
  }
  
  .card {
    @apply mx-2;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .container-custom {
    @apply px-6;
  }
}

@media (min-width: 1025px) {
  .container-custom {
    @apply px-8;
  }
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: loading 1.5s infinite;
}

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

/* Focus States for Accessibility */
.focus-visible:focus {
  outline: 2px solid var(--a1-blue);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --a1-blue: #0000FF;
    --a1-green: #008000;
    --a1-text: #FFFFFF;
    --a1-muted: #666666;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
  /* Dark mode styles can be added here when needed */
}

/* Custom Utilities for Specific Components */
.hero-gradient {
  background: linear-gradient(135deg, var(--a1-dark-blue) 0%, var(--a1-navy) 25%, var(--a1-blue-2) 50%, var(--a1-navy) 75%, var(--a1-dark-blue) 100%);
}

/* Hero Section - Professional Design */
#home {
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative !important;
  background: var(--a1-dark) !important;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow-x: hidden;
}

/* Hero Text Clarity */
#home h1 {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 800;
  letter-spacing: -0.02em;
  isolation: isolate;
}

#home h1 .text-white {
  text-shadow: none;
  filter: none;
  position: relative;
  z-index: 1;
}

#home h1 .text-gradient {
  text-shadow: none;
  position: relative;
  z-index: 1;
  will-change: background-position;
}

/* Section Titles - Same Style as Hero */
section h2 {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 800;
  letter-spacing: -0.02em;
  isolation: isolate;
}

section h2 .text-white {
  text-shadow: none;
  filter: none;
  position: relative;
  z-index: 1;
}

section h2 .text-gradient {
  text-shadow: none;
  position: relative;
  z-index: 1;
  will-change: background-position;
}

/* Hero Icon Cards - Same Style as Services Section */
.hero-icon-card {
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid rgba(96, 165, 250, 0.5);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 0.5px rgba(96, 165, 250, 0.2), 0 4px 12px rgba(96, 165, 250, 0.15);
  padding: 0;
  min-width: 0;
  width: 100%;
  max-width: 6rem;
}

.hero-icon-card:hover {
  border-color: rgba(96, 165, 250, 0.9);
  background: rgba(96, 165, 250, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.4), 0 8px 20px rgba(96, 165, 250, 0.3), 0 0 15px rgba(96, 165, 250, 0.2);
}

.hero-icon-card svg {
  width: 50%;
  height: 50%;
  color: white;
  stroke: currentColor;
}

/* Responsive adjustments for hero icon cards */
@media (max-width: 640px) {
  .hero-icon-card {
    max-width: 5rem;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero-icon-card {
    max-width: 5.5rem;
  }
}

@media (min-width: 1025px) {
  .hero-icon-card {
    max-width: 6rem;
  }
}


#about {
  margin: 0 !important;
  background: var(--a1-dark) !important;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.3) 0%, transparent 70%),
    radial-gradient(circle at 30% 40%, rgba(250, 236, 25, 0.03) 0%, transparent 50%);
  position: relative !important;
  z-index: 10 !important;
}

.service-card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Service Icon Outline - Same Style as Hero with Glowing Border */
.service-icon-outline {
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid rgba(96, 165, 250, 0.5);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 0.5px rgba(96, 165, 250, 0.2), 0 4px 12px rgba(96, 165, 250, 0.15);
}

.service-icon-outline:hover {
  border-color: rgba(96, 165, 250, 0.9);
  background: rgba(96, 165, 250, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.4), 0 8px 20px rgba(96, 165, 250, 0.3), 0 0 15px rgba(96, 165, 250, 0.2);
}

.card:hover .service-icon-outline {
  border-color: rgba(96, 165, 250, 0.9);
  background: rgba(96, 165, 250, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.4), 0 8px 20px rgba(96, 165, 250, 0.3), 0 0 15px rgba(96, 165, 250, 0.2);
}

/* Checkmark Icon Styles for Why Choose Us Section */
.checkmark-icon {
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: 1px solid rgba(96, 165, 250, 0.5);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 0.5px rgba(96, 165, 250, 0.2), 0 4px 12px rgba(96, 165, 250, 0.15);
  background: rgba(96, 165, 250, 0.1);
}

.checkmark-icon:hover {
  border-color: rgba(96, 165, 250, 0.9);
  background: rgba(96, 165, 250, 0.2);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.4), 0 6px 16px rgba(96, 165, 250, 0.3), 0 0 12px rgba(96, 165, 250, 0.2);
}

/* Card Icon Styles for Hero Section */
.card-icon {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(79, 156, 249, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(79, 156, 249, 0.2);
}

.card-icon:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(79, 156, 249, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(79, 156, 249, 0.5), 0 0 20px rgba(167, 139, 250, 0.3);
}

/* Outline Icon Styles for Hero Section */
.card-icon-outline {
  background: transparent;
  border: 1px solid rgba(96, 165, 250, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 0.5px rgba(96, 165, 250, 0.2), 0 4px 12px rgba(96, 165, 250, 0.15);
}

.card-icon-outline:hover {
  border-color: rgba(96, 165, 250, 0.9);
  background: rgba(96, 165, 250, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.4), 0 8px 20px rgba(96, 165, 250, 0.3), 0 0 15px rgba(96, 165, 250, 0.2);
}

.contact-form-focus {
  transition: all 0.2s ease-in-out;
}

.contact-form-focus:focus {
  transform: scale(1.02);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Typography Enhancements - Blue/Purple with Yellow Touch */
.text-gradient {
  background: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 50%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
  filter: drop-shadow(0 0 2px rgba(167, 139, 250, 0.3));
}

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

.text-gradient-blue {
  background: linear-gradient(135deg, #4F9CF9 0%, #7BB3FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heading-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Glow Effects */
.glow-blue {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
}

.glow-purple {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
}

/* Smooth Color Transitions */
* {
  transition-property: color, background-color, border-color, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Hover States */
a, button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section Headings with Gradient Accent */
section h2.text-center {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

section h2.text-center::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--a1-blue), var(--a1-purple));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

/* Deploy Section Heading with Purple Underline */
section h2 .text-gradient {
  position: relative;
}

section h2 span:last-child {
  position: relative;
  display: inline-block;
}

/* Interactive Elements */
.interactive {
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.interactive:hover {
  transform: translateY(-2px);
}

.interactive:active {
  transform: translateY(0);
}

/* Status Indicators */
.status-success {
  @apply bg-green-100 text-green-800 border border-green-200;
}

.status-warning {
  @apply bg-yellow-100 text-yellow-800 border border-yellow-200;
}

.status-error {
  @apply bg-red-100 text-red-800 border border-red-200;
}

.status-info {
  @apply bg-blue-100 text-blue-800 border border-blue-200;
}
