/* ===== AWWWARDS-WORTHY DESIGN SYSTEM ===== */

:root {
  /* Typography Scale */
  --font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  --font-size-5xl: 3rem;      /* 48px */
  --font-size-6xl: 3.75rem;   /* 60px */
  --font-size-7xl: 4.5rem;    /* 72px */

  /* Professional Color Palette - Trust, Accountability, Professionalism */
  --color-primary: #1e40af;        /* Deep Professional Blue - Trust & Reliability */
  --color-primary-light: #3b82f6;  /* Lighter Blue for hover states */
  --color-primary-dark: #1e3a8a;   /* Darker Blue for active states */
  --color-secondary: #059669;      /* Professional Green - Growth & Accountability */
  --color-secondary-light: #10b981; /* Lighter Green */
  --color-secondary-dark: #047857;  /* Darker Green */
  --color-accent: #dc2626;          /* Professional Red - Urgency & Action */
  --color-accent-light: #ef4444;   /* Lighter Red */
  --color-accent-dark: #b91c1c;    /* Darker Red */
  
  /* Professional Neutrals */
  --color-success: #059669;        /* Success Green */
  --color-warning: #d97706;        /* Professional Orange */
  --color-danger: #dc2626;         /* Danger Red */
  --color-info: #0284c7;           /* Information Blue */
  
  /* Text Colors */
  --color-text-primary: #1f2937;   /* Dark Gray for primary text */
  --color-text-secondary: #4b5563; /* Medium Gray for secondary text */
  --color-text-muted: #6b7280;     /* Light Gray for muted text */
  --color-text-inverse: #ffffff;   /* White text for dark backgrounds */
  
  /* Neutrals */
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-black: #000000;

  /* Professional Gradients */
  --gradient-hero: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, var(--color-secondary) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --gradient-button: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

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

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
  --transition-slow: 350ms ease-out;
}

/* ===== GLOBAL STYLES ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-gray-50);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--space-4);
}

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* ===== HERO SECTION ===== */

.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-content {
  text-align: center;
  z-index: 2;
  /*max-width: 800px;*/
  padding: var(--space-8);
}

.hero-title {
  font-size: clamp(var(--font-size-4xl), 8vw, var(--font-size-7xl));
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: scale(0.8);
  opacity: 0;
  animation: heroZoomIn 1.2s ease-out 0.5s forwards;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: var(--color-text-inverse);
  opacity: 0.9;
  margin-bottom: var(--space-8);
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1s forwards;
}

@keyframes heroZoomIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

/* ===== NAVBAR ===== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-100%);
  transition: all var(--transition-base);
}

.navbar.visible {
  transform: translateY(0);
}

.navbar.scrolled {
  background: rgba(14, 64, 175, 0.45);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand {
  color: var(--color-primary) !important;
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--color-white) !important;
  opacity: 0.8;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
  color: var(--color-white) !important;
  opacity: 1;
}

.navbar-brand {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--color-white) !important;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-nav .nav-link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-inverse) !important;
  opacity: 0.9;
  padding: var(--space-2) var(--space-4) !important;
  margin: 0 var(--space-1);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left var(--transition-base);
}

.navbar.scrolled .navbar-nav .nav-link::before {
  background: rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link:hover::before {
  left: 0;
}

.navbar-nav .nav-link:hover {
  color: var(--color-white) !important;
  transform: translateY(-2px);
}

/* ===== CONSENT OVERLAY ===== */

.consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all var(--transition-slow);
}

.consent-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.consent-content {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  max-width: 500px;
  margin: var(--space-4);
  text-align: center;
  transform: scale(0.9);
  animation: modalPop 0.3s ease-out forwards;
}

@keyframes modalPop {
  to {
    transform: scale(1);
  }
}

.consent-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
}

.consent-text {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

/* ===== BUTTONS ===== */

.btn-primary {
  background: var(--gradient-button);
  border: none;
  color: var(--color-white);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== COUNTERS SECTION ===== */

.counters-section {
  padding: var(--space-20) 0;
  background: var(--color-white);
  position: relative;
}

.counters-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--color-gray-50), transparent);
}

.counter-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
}

.counter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-button);
}

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

.counter-number {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  display: block;
}

.counter-label {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: var(--space-2);
}

.counter-updated {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
  font-weight: 400;
}

/* ===== FORMS ===== */

.content-container {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  margin: var(--space-8) 0;
  border: 1px solid var(--color-gray-100);
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: var(--space-2);
  display: block;
}

.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-family: var(--font-family);
  transition: all var(--transition-base);
  background: var(--color-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  transform: translateY(-1px);
}

.form-select {
  appearance: none;
  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 var(--space-3) center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  padding-right: var(--space-10);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.form-check-input {
  margin-right: var(--space-3);
  margin-top: var(--space-1);
}

.form-check-label {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  line-height: 1.5;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
}

.scroll-indicator:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator .scroll-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

.scroll-indicator .scroll-arrow::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ===== GLOBAL DISCLAIMER SYSTEM ===== */
.disclaimer-widget {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  max-width: 350px;
  border-radius: var(--radius-xl) !important;
  transition: all var(--transition-base);
}

.disclaimer-chat {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  animation: slideInUp 0.3s ease-out;
}

.disclaimer-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.disclaimer-chat-header h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin: 0;
}

.disclaimer-close {
  background: none;
  border: none;
  color: var(--color-gray-400);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius-base);
  transition: all var(--transition-base);
}

.disclaimer-close:hover {
  color: var(--color-gray-600);
  background: rgba(0, 0, 0, 0.05);
}

.disclaimer-content {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.disclaimer-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.disclaimer-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.disclaimer-btn.accept {
  background: var(--color-primary);
  color: white;
}

.disclaimer-btn.accept:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.disclaimer-btn.decline {
  background: transparent;
  color: var(--color-gray-600);
  border: 1px solid var(--color-gray-300);
}

.disclaimer-btn.decline:hover {
  background: var(--color-gray-50);
}

.disclaimer-minimized {
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.disclaimer-minimized:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.disclaimer-minimized .status-icon {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer-minimized .status-icon::after {
  content: '✓';
  font-size: 10px;
  font-weight: bold;
}

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

/* ===== FORM SECURITY WARNINGS ===== */
.security-warning {
  background: var(--gradient-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.security-warning .warning-icon {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.security-warning .warning-content h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  margin: 0 0 0.25rem 0;
}

.security-warning .warning-content p {
  font-size: var(--font-size-xs);
  color: var(--color-white);
  margin: 0;
  line-height: 1.4;
}

/* ===== PAGE SECTIONS ===== */

.page-section {
  min-height: auto;
  padding: 6rem 0 3rem;
  position: relative;
}

.page-section.hero {
  min-height: 100vh;
  padding: 12rem 0 8rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

/* Form Pages - Reduced spacing */
.form-page .page-section {
  min-height: auto;
  padding: 6rem 0 2rem;
}

/* Content Pages - Reduced spacing */
.page .page-section {
  min-height: auto;
  padding: 6rem 0 2rem;
}

.content-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-header {
  text-align: center;
  margin-bottom: 2rem;
}

.content-header h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.content-header p {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  max-width: 500px;
  margin: 0 auto;
}

.page-header {
  padding: var(--space-20) 0 var(--space-16);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-title {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 2;
}

.page-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 400;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.content-section {
  padding: var(--space-16) 0;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
  }

  .hero-content {
    padding: var(--space-4);
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

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

  .navbar-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    margin-top: var(--space-4);
    padding: var(--space-4);
  }

  .navbar-nav .nav-link {
    color: var(--color-gray-700) !important;
    margin: var(--space-1) 0;
  }

  .counter-card {
    margin-bottom: var(--space-6);
  }

  .content-container {
    padding: var(--space-6);
    margin: var(--space-6) 0;
  }

  .page-header {
    padding: var(--space-16) 0 var(--space-12);
  }

  .page-title {
    font-size: var(--font-size-4xl);
  }

  .content-section {
    padding: var(--space-12) 0;
  }
}

/* ===== UTILITY CLASSES ===== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* ===== ANIMATIONS ===== */

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

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
  40%, 43% { transform: translate3d(0,-30px,0); }
  70% { transform: translate3d(0,-15px,0); }
  90% { transform: translate3d(0,-4px,0); }
}

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

/* ===== SCROLL ANIMATIONS ===== */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== PROFESSIONAL FOOTER ===== */
.professional-footer {
  background: var(--gradient-hero);
  color: var(--color-text-inverse);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.professional-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e0e7ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-brand p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 15px;
}

.footer-links a:hover::before {
  width: 10px;
}

.footer-bottom {
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.footer-tagline {
  color: rgba(255,255,255,0.5) !important;
  margin-top: 0.25rem !important;
  font-weight: 300;
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-badges .badge {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .professional-footer {
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .footer-section:first-child {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(79,70,229,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(124,58,237,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  font-weight: 400;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.story-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  padding: 12px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.story-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.story-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  background: rgba(255, 255, 255, 0.8);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  margin-top: 3rem;
}

.cta-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

/* ===== STORY CONTENT STYLES ===== */
.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-section {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
}

.story-section h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.story-section p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.story-section p.lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: #334155;
}

.remedy-list {
  margin: 2rem 0;
}

.remedy-item {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border-left: 4px solid #4f46e5;
  color: #334155;
  line-height: 1.6;
}

.remedy-item strong {
  color: #4f46e5;
  font-weight: 600;
}

.emphasis {
  text-align: center;
  font-weight: 600;
  color: #4f46e5;
  font-size: 1.1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.quote-section {
  margin: 2rem 0;
  text-align: center;
}

.quote-section blockquote {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 1rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(124, 58, 237, 0.05));
  border-radius: 16px;
  border-left: 4px solid #4f46e5;
  position: relative;
}

.quote-section blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #4f46e5;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
}

.quote-attribution {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 400;
}

.final-message {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4f46e5;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
  border-radius: 16px;
  border: 2px solid rgba(79, 70, 229, 0.2);
}

.launch-info {
  margin: 3rem 0;
}

.launch-card {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.launch-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.launch-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.launch-date {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.hashtags {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .story-card {
    padding: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cta-section {
    padding: 2rem 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Professional Navbar Styles */
.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  padding: 0.5rem 0;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--color-accent);
  transform: translateY(-1px);
}

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

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

.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  color: var(--color-dark);
  transition: all 0.3s ease;
  font-size: var(--font-size-sm);
}

.dropdown-item:hover {
  border-left: 5px solid var(--color-primary);
  color: var(--color-primary);
}

.dropdown-divider {
  margin: 0.5rem 1rem;
  border-color: rgba(0, 0, 0, 0.1);
}

/* Professional Warning Icons */
.warning-icon svg {
  color: var(--color-white);
  filter: drop-shadow(0 2px 4px rgba(234, 179, 8, 0.3));
}

/* Thank You Page Styles */
.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.success-icon svg {
  width: 4rem;
  height: 4rem;
  color: var(--color-success);
  stroke-width: 2;
}

.success-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.success-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(var(--color-success-rgb), 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(var(--color-success-rgb), 0.1);
}

.success-feature svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-success);
  stroke-width: 2;
  flex-shrink: 0;
}

.success-feature span {
  font-weight: 500;
  color: var(--color-text);
}

.submission-details {
  background: var(--color-background-secondary);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 2rem 0;
  border: 1px solid var(--color-border);
}

.submission-details h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.submission-details p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.submission-details .highlight {
  color: var(--color-primary);
  font-weight: 600;
}

/* Floating Share Button Styles */
.floating-share-button {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.floating-share-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4), 0 6px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.floating-share-button:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.floating-share-button svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke-width: 2.5;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Responsive positioning for floating share button */
@media (max-width: 768px) {
    .floating-share-button {
        bottom: 100px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    
    .floating-share-button svg {
        width: 22px;
        height: 22px;
    }
}

/* Animation for floating share button */
@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5), 0 4px 10px rgba(0, 0, 0, 0.15);
    }
}

.floating-share-button {
    animation: floatingPulse 3s ease-in-out infinite;
}

/* Share Modal Styles */
.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
}

.share-modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.share-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.share-modal-header h4 {
  margin: 0;
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: 600;
}

.share-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

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

.share-modal-body {
  padding: 1.5rem;
}

.share-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-size: 0.875rem;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.share-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.share-option:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-1px);
}

.share-option svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.share-option:nth-child(1) {
  color: #1da1f2;
}

.share-option:nth-child(1):hover {
  background: rgba(29, 161, 242, 0.05);
  border-color: rgba(29, 161, 242, 0.2);
}

.share-option:nth-child(2) {
  color: #1877f2;
}

.share-option:nth-child(2):hover {
  background: rgba(24, 119, 242, 0.05);
  border-color: rgba(24, 119, 242, 0.2);
}

.share-option:nth-child(3) {
  color: #0a66c2;
}

.share-option:nth-child(3):hover {
  background: rgba(10, 102, 194, 0.05);
  border-color: rgba(10, 102, 194, 0.2);
}

.share-option:nth-child(4) {
  color: #6b7280;
}

.share-option:nth-child(4):hover {
  background: rgba(107, 114, 128, 0.05);
  border-color: rgba(107, 114, 128, 0.2);
}

@media (max-width: 991px) {
  .navbar-brand {
    align-items: center;
    text-align: center;
  }
  
  .brand-tagline {
    font-size: 0.7rem;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
}

.stats-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.stat-box {
    background: rgba(255, 255, 255, 0.3);  /* Semi-transparent white */
    backdrop-filter: blur(10px);            /* Blur effect */
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    color: white;
    margin-top: 12px;
    font-size: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* Optional shadow for depth */
}

.stat-box span {
    display: block;
}
.stat-box span:first-child {
    font-size: 12px !important;
    font-weight: thin !important;
 }
 .stat-box span:last-child {
    font-size: 32px;
    font-weight: bold;
 }
