/* Change Counseling Center - Main Stylesheet */
/* Clean version without mobile menu complications */

:root {
  /* Primary Colors - Blue Gradient Theme */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;
  
  /* Enhanced Glassmorphism Colors */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-bg-strong: rgba(255, 255, 255, 0.25);
  --glass-bg-subtle: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-border-strong: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --glass-shadow-strong: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
  --glass-shadow-subtle: 0 4px 16px 0 rgba(31, 38, 135, 0.2);
  
  /* Warm Accent Colors */
  --accent-orange: #f97316;
  --accent-yellow: #eab308;
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Transitions */
  --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-colors: color, background-color, border-color, text-decoration-color, fill, stroke 0.15s ease-in-out;
  --transition-transform: transform 0.15s ease-in-out;
  --transition-opacity: opacity 0.15s ease-in-out;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-family: var(--font-family);
  color: var(--gray-800);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-600);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 1000;
  transition: var(--transition-all);
}

.skip-link:focus {
  top: 0;
}

/* Navigation Styles */
.nav-link-simple {
  position: relative;
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: var(--transition-colors);
  display: inline-flex;
  align-items: center;
}

.nav-link-simple:hover {
  color: var(--primary-600);
  background-color: var(--primary-50);
}

.nav-link-simple.active {
  color: var(--primary-600);
  background-color: var(--primary-100);
  font-weight: 600;
}

.nav-link-simple.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--primary-600);
  border-radius: 1px;
}

/* Button Styles */
.btn-primary-new {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-width: fit-content;
}

.btn-primary-new:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  color: white !important;
}

.btn-primary-new:active {
  transform: translateY(0) scale(1.02);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary-new {
  background: transparent;
  color: var(--gray-600);
  border: 2px solid var(--gray-300);
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-all);
  cursor: pointer;
}

.btn-secondary-new:hover {
  color: var(--primary-600);
  border-color: var(--primary-300);
  background-color: var(--primary-50);
  transform: translateY(-1px);
}

/* Header Styles */
.sticky-header {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-header.scrolled {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

/* Banner Styles */
.hero-banner {
  position: relative;
  overflow: hidden;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slide.active {
  opacity: 1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 0 2rem;
}

.banner-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-all);
}

.banner-dot:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.banner-dot.active {
  background: white;
  border-color: white;
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 1s ease-out;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section for Non-Homepage */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Alert Styles */
.alert {
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
}

.alert-success {
  background-color: #dcfce7;
  border-color: #22c55e;
  color: #166534;
}

.alert-danger {
  background-color: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

.alert-warning {
  background-color: #fefce8;
  border-color: #eab308;
  color: #a16207;
}

.alert-primary {
  background-color: var(--primary-50);
  border-color: var(--primary-300);
  color: var(--primary-700);
}

/* Breadcrumb Styles */
.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-colors);
}

.breadcrumb-item a:hover {
  color: white;
}

.breadcrumb-item.active {
  color: white;
  font-weight: 500;
}

/* Main Content */
.main-content {
  min-height: 100vh;
  padding-top: 2rem;
}

/* Modern Navigation Link Styles */
.modern-nav-link {
    display: block;
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.modern-nav-link:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.modern-nav-link.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}
.mobile-menu-panel {
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-panel.open {
    transform: translateX(0);
}

/* Mobile Menu Overlay Animation */
.mobile-menu-overlay {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu-overlay.open {
    opacity: 1;
}

/* Staggered Animation for Navigation Links */
.mobile-nav-link {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease-out forwards;
}

.mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-link:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-link:nth-child(6) { animation-delay: 0.35s; }
.mobile-nav-link:nth-child(7) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse Animation for Menu Toggle */
.mobile-menu-toggle {
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
}

.mobile-menu-toggle.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

/* Floating Animation for CTA Buttons */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.mobile-cta-float {
    animation: float 3s ease-in-out infinite;
}

/* Ripple Effect for Button Clicks */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::before {
    width: 300px;
    height: 300px;
}

/* Smooth Backdrop Blur */
.backdrop-blur-custom {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Enhanced Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Gradient Animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-animate {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* Icon Rotation Animation */
.icon-rotate {
    transition: transform 0.3s ease;
}

.icon-rotate:hover {
    transform: rotate(10deg);
}

/* Menu Close Button Animation */
.close-button-animate {
    transition: all 0.3s ease;
}

.close-button-animate:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(239, 68, 68, 0.1);
}

/* Smooth Scale Animation */
.scale-on-hover {
    transition: transform 0.2s ease;
}

.scale-on-hover:hover {
    transform: scale(1.02);
}

/* Text Glow Effect */
.text-glow {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Border Glow Animation */
@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.6); }
}

.border-glow {
    animation: borderGlow 2s ease-in-out infinite;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  color: #374151 !important;
  background-color: #ffffff !important;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease-in-out;
}

.mobile-nav-link:hover {
  background-color: #eff6ff !important;
  color: #3b82f6 !important;
  transform: translateX(5px);
  padding-left: 2rem;
}

.mobile-nav-link.active {
  background-color: var(--primary-50);
  color: var(--primary-600);
  border-left: 4px solid var(--primary-600);
}

.mobile-nav-link svg {
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.mobile-nav-link:hover svg {
  color: #3b82f6 !important;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.mobile-cta-primary {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
  margin-top: 0.25rem;
  white-space: nowrap;
  justify-content: center;
}

.mobile-cta-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  color: white !important;
}

.mobile-cta-donate-green {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(34, 197, 94, 0.2);
  margin-top: 0.25rem;
  white-space: nowrap;
  justify-content: center;
}

.mobile-cta-donate-green:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
  color: white !important;
}

.mobile-cta-secondary {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: var(--transition-all);
}

.mobile-cta-secondary:hover {
  color: #3b82f6 !important;
  border-color: #3b82f6 !important;
  background-color: #eff6ff !important;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Ensure mobile menu is hidden on desktop */
@media (min-width: 1024px) {
  #mobile-menu-overlay {
    display: none !important;
  }
}

/* Mobile Menu Overlay and Panel */
#mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

#mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 24rem; /* 384px */
  background-color: #ffffff !important;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  z-index: 9999;
}

#mobile-menu-overlay.show #mobile-menu-panel {
  transform: translateX(0);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Mobile menu button animation */
#mobile-menu-button {
  position: relative;
  z-index: 10000;
}

#mobile-menu-button svg {
  transition: transform 0.3s ease;
}

#mobile-menu-button.active svg {
  transform: rotate(90deg);
}

/* Mobile Menu Button Animation */
#mobile-menu-button svg {
  transition: transform 0.3s ease;
}

#mobile-menu-button.active svg {
  transform: rotate(90deg);
}

/* Mobile Menu Header Hover Effects */
#mobile-menu-panel .flex.items-center:first-child:hover .text-lg {
  color: #3b82f6 !important;
  transition: color 0.3s ease;
}

#mobile-menu-panel .flex.items-center:first-child:hover .w-8 {
  transform: rotate(5deg) scale(1.1);
  transition: transform 0.3s ease;
}

/* Mobile Menu Close Button Hover */
#mobile-menu-close:hover {
  background-color: #fee2e2 !important;
  color: #dc2626 !important;
  transform: scale(1.1);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

/* Text hover effects for better interactivity */
#mobile-menu-panel .text-lg:hover {
  color: #3b82f6 !important;
  cursor: pointer;
}

/* Green Donate Button Styles */
.btn-donate-green {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
  border: none;
}

.btn-donate-green:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  color: white !important;
}

.btn-donate-green:active {
  transform: translateY(0) scale(1.02);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Mobile Green Donate Button */
.mobile-cta-donate-green {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
  margin-top: 0.5rem;
}

.mobile-cta-donate-green:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  color: white !important;
}

/* Pulse animation for green donate buttons */
@keyframes green-pulse {
  0% {
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.4), 0 0 0 4px rgba(16, 185, 129, 0.2);
  }
  100% {
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
  }
}

/* Pulse animation for blue book session buttons */
@keyframes blue-pulse {
  0% {
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
  }
  50% {
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.4), 0 0 0 4px rgba(59, 130, 246, 0.2);
  }
  100% {
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
  }
}

.btn-donate-green,
.mobile-cta-donate-green {
  animation: green-pulse 2s infinite;
}

.btn-primary-new,
.mobile-cta-primary {
  animation: blue-pulse 2s infinite;
}

/* Stronger hover effects for green buttons */
.btn-donate-green:hover,
.mobile-cta-donate-green:hover,
.btn-primary-new:hover,
.mobile-cta-primary:hover {
  animation: none;
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Utility Classes */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.backdrop-blur {
  backdrop-filter: blur(12px);
}

/* Responsive Design */
@media (max-width: 640px) {
  .banner-content h1 {
    font-size: 2rem !important;
  }
  
  .banner-content p {
    font-size: 1rem !important;
  }
  
  .banner-content .flex {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .banner-content {
    padding: 0 1rem;
  }
  
  .banner-nav {
    bottom: 1rem;
  }
}

/* Print Styles */
@media print {
  .sticky-header,
  .banner-nav,
  .btn-primary-new,
  .btn-secondary-new {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}

/* Footer CTA Button Styles */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  min-width: 140px;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

.footer-cta-btn:active {
  transform: translateY(0);
}

.footer-cta-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}

.footer-cta-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
}

.footer-cta-secondary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
}

.footer-cta-secondary:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
}

.footer-cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.footer-cta-shine {
  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.6s ease-in-out;
}

.footer-cta-btn:hover .footer-cta-shine {
  left: 100%;
}

/* Ripple effect for footer buttons */
.footer-cta-btn[data-ripple="true"] {
  position: relative;
  overflow: hidden;
}

.footer-cta-btn[data-ripple="true"]:active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  to {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* Timeline Styles */
.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        #3b82f6 0%, 
        #8b5cf6 20%, 
        #ec4899 40%, 
        #ef4444 60%, 
        #f97316 80%, 
        #10b981 100%);
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 1023px) {
    .timeline-line {
        display: none;
    }
}

.timeline-item {
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Responsive footer buttons */
@media (max-width: 640px) {
  .footer-cta-btn {
    padding: 10px 20px;
    min-width: 120px;
    font-size: 0.875rem;
  }
}