
:root {
  
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;

  
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  --secondary-300: #cbd5e1;
  --secondary-400: #94a3b8;
  --secondary-500: #64748b;
  --secondary-600: #475569;
  --secondary-700: #334155;
  --secondary-800: #1e293b;
  --secondary-900: #0f172a;

  
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;

  
  --success-500: #10b981;
  --warning-500: #f59e0b;
  --error-500: #ef4444;

  
  --neuro-bg: #e0e5ec;
  --neuro-light: #ffffff;
  --neuro-dark: #a3b1c6;
  --neuro-shadow-light: rgba(255, 255, 255, 0.8);
  --neuro-shadow-dark: rgba(163, 177, 198, 0.4);

  
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-backdrop: blur(10px);

  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  
  --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --fs-base: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --fs-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  --fs-3xl: clamp(1.875rem, 1.6rem + 1.2vw, 2.5rem);
  --fs-4xl: clamp(2.25rem, 2rem + 1.5vw, 3rem);
  --fs-5xl: clamp(2.5rem, 2.2rem + 2vw, 4rem);

  
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-base: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  
  --border-radius-sm: 0.375rem;
  --border-radius-base: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-full: 50%;

  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 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);

  
  --neuro-shadow-inset: inset 6px 6px 12px var(--neuro-shadow-dark), inset -6px -6px 12px var(--neuro-shadow-light);
  --neuro-shadow-outset: 6px 6px 12px var(--neuro-shadow-dark), -6px -6px 12px var(--neuro-shadow-light);
  --neuro-shadow-pressed: inset 3px 3px 6px var(--neuro-shadow-dark), inset -3px -3px 6px var(--neuro-shadow-light);

  
  --transition-fast: 0.15s ease-in-out;
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;

  
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}


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

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

body {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  color: var(--neutral-900);
  margin-bottom: var(--space-base);
}

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

p {
  margin-bottom: var(--space-base);
  color: var(--neutral-600);
}

a {
  color: var(--primary-600);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-700);
  text-decoration: underline;
}

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


.btn,
button,
input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-xl);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: none;
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  min-width: 120px;
  margin-bottom: 10px;
}

.btn::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 var(--transition-slow);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: white;
  text-decoration: none;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-base);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-500), var(--secondary-600));
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-600), var(--secondary-700));
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: white;
  text-decoration: none;
}

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

.btn-outline-primary:hover {
  background: var(--primary-600);
  color: white;
  text-decoration: none;
}

.btn-neumorphic {
  background: var(--neuro-bg);
  color: var(--neutral-700);
  box-shadow: var(--neuro-shadow-outset);
  border: none;
}

.btn-neumorphic:hover {
  background: var(--neuro-bg);
  color: var(--neutral-800);
  box-shadow: var(--neuro-shadow-pressed);
  transform: scale(0.98);
}

.btn-sm {
  padding: var(--space-xs) var(--space-lg);
  font-size: var(--fs-sm);
  min-width: 80px;
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--fs-lg);
  min-width: 160px;
}


.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-base) 0;
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--primary-600) !important;
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--primary-700) !important;
  text-decoration: none;
}

.brand-text {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--neutral-700);
  padding: var(--space-sm) var(--space-base);
  margin: 0 var(--space-xs);
  border-radius: var(--border-radius-base);
  transition: all var(--transition-base);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-600);
  background-color: rgba(14, 165, 233, 0.1);
  text-decoration: none;
}

.navbar-toggler {
  border: none;
  padding: var(--space-xs);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

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

.hero-title {
  font-size: var(--fs-5xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: var(--fs-2xl);
  font-weight: 500;
  margin-bottom: var(--space-xl);
  color: white !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.section-title {
  font-size: var(--fs-4xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: 2px;
}

.section-subtitle {
  font-size: var(--fs-xl);
  color: var(--neutral-600);
  text-align: center;
  margin-bottom: var(--space-2xl);
}


.card {
  background: white;
  border: none;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.card-content h4,
.card-content h5 {
  margin-bottom: var(--space-base);
  color: var(--neutral-900);
}

.card-content p {
  flex-grow: 1;
  margin-bottom: var(--space-lg);
  color: var(--neutral-600);
}


.service-card {
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-base);
}

.service-card:hover {
  border-color: var(--primary-300);
  transform: translateY(-5px);
}

.service-card .card-content h4 {
  color: var(--primary-700);
  font-size: var(--fs-xl);
}


.statistics-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

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

.stat-card {
  text-align: center;
  padding: var(--space-xl);
}

.stat-number {
  font-size: var(--fs-4xl);
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: var(--space-sm);
  color: white;
}

.stat-label {
  font-size: var(--fs-lg);
  color: white;
  opacity: 0.9;
}


.pricing-card {
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-500);
  box-shadow: var(--shadow-2xl);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--border-radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  z-index: 10;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pricing-header h4 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-base);
}

.price {
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--primary-600);
  font-family: var(--font-primary);
}

.price span {
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--neutral-500);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-2xl);
}

.pricing-features li {
  padding: var(--space-sm) 0;
  position: relative;
  padding-left: var(--space-xl);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-500);
  font-weight: bold;
}


.event-toggles {
  display: flex;
  gap: var(--space-base);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.toggle-btn {
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--primary-300);
  background: transparent;
  color: var(--primary-600);
  border-radius: var(--border-radius-full);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
}

.toggle-btn.active,
.toggle-btn:hover {
  background: var(--primary-600);
  color: white;
}

.event-card {
  border: 1px solid var(--neutral-200);
}

.event-card .card-image {
  height: 200px;
}

.event-date {
  display: inline-block;
  background: var(--primary-100);
  color: var(--primary-700);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-base);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-base);
}


.gallery-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-base);
}

.gallery-image:hover {
  transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  color: var(--primary-600);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-600);
  border-radius: var(--border-radius-full);
  width: 40px;
  height: 40px;
}


.behind-scenes-section {
  padding: var(--space-4xl) 0;
}

.section-text {
  font-size: var(--fs-lg);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  color: var(--neutral-600);
}

.behind-features {
  margin-top: var(--space-2xl);
}

.feature-item {
  margin-bottom: var(--space-lg);
  padding: var(--space-lg);
  background: var(--neutral-50);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--primary-500);
}

.feature-item h5 {
  color: var(--primary-700);
  margin-bottom: var(--space-sm);
}

.feature-item p {
  margin-bottom: 0;
  color: var(--neutral-600);
}


.accolade-card {
  text-align: center;
  padding: var(--space-2xl);
  height: 100%;
}

.award-icon {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-lg);
}

.award-organization {
  font-weight: 600;
  color: var(--primary-600);
  margin-bottom: var(--space-base);
}


.resource-card {
  border: 1px solid var(--neutral-200);
  padding: var(--space-xl);
  height: 100%;
}

.resource-card h5 {
  color: var(--primary-700);
  margin-bottom: var(--space-base);
}


.news-card {
  padding: var(--space-2xl);
  border: 1px solid var(--neutral-200);
  border-radius: var(--border-radius-lg);
  background: white;
  height: 100%;
  transition: var(--transition-base);
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.news-date {
  font-size: var(--fs-sm);
  color: var(--primary-600);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.news-card h4 {
  margin-bottom: var(--space-base);
  color: var(--neutral-900);
}

.news-card p {
  flex-grow: 1;
  margin-bottom: var(--space-lg);
}


.blog-card {
  border: 1px solid var(--neutral-200);
  overflow: hidden;
}

.blog-card .card-image {
  height: 220px;
}

.blog-category {
  display: inline-block;
  background: var(--secondary-100);
  color: var(--secondary-700);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-base);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-base);
}


.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-600);
  text-decoration: none;
  transition: var(--transition-base);
  position: relative;
}

.read-more::after {
  content: '→';
  margin-left: var(--space-xs);
  transition: transform var(--transition-base);
}

.read-more:hover {
  color: var(--primary-700);
  text-decoration: none;
}

.read-more:hover::after {
  transform: translateX(4px);
}


.contact-section {
  background: linear-gradient(135deg, var(--neutral-50), var(--neutral-100));
  padding: var(--space-4xl) 0;
}

.contact-form-container {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-label {
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: var(--space-sm);
}

.form-control,
.form-select {
  padding: var(--space-sm) var(--space-base);
  border: 2px solid var(--neutral-200);
  border-radius: var(--border-radius-base);
  font-size: var(--fs-base);
  transition: all var(--transition-base);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
  outline: none;
}

.contact-info {
  padding: var(--space-2xl);
}

.contact-item {
  margin-bottom: var(--space-2xl);
}

.contact-item h5 {
  color: var(--primary-700);
  margin-bottom: var(--space-base);
}

.contact-item p {
  color: var(--neutral-600);
  line-height: 1.8;
}

.map-container {
  margin-top: var(--space-lg);
}

.map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--neutral-200);
  border-radius: var(--border-radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-500);
  text-align: center;
}


.footer {
  background: linear-gradient(135deg, var(--neutral-800), var(--neutral-900));
  color: var(--neutral-300);
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-brand h4 {
  color: white;
  margin-bottom: var(--space-base);
  font-size: var(--fs-2xl);
}

.footer-brand p {
  color: var(--neutral-400);
  line-height: 1.8;
}

.footer-links h5 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: var(--fs-lg);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: var(--space-sm);
}

.footer-links ul li a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-links ul li a:hover {
  color: white;
  text-decoration: none;
}

.footer-contact h5 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: var(--fs-lg);
}

.footer-contact p {
  color: var(--neutral-400);
  line-height: 1.8;
  margin-bottom: var(--space-base);
}

.social-links {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.social-links a {
  color: var(--neutral-400);
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-sm) var(--space-base);
  border: 1px solid var(--neutral-600);
  border-radius: var(--border-radius-base);
  transition: all var(--transition-base);
  font-size: var(--fs-sm);
}

.social-links a:hover {
  color: white;
  background-color: var(--primary-600);
  border-color: var(--primary-600);
  text-decoration: none;
  transform: translateY(-2px);
}

.footer-divider {
  border-color: var(--neutral-600);
  margin: var(--space-2xl) 0 var(--space-lg);
}

.footer-copyright {
  color: var(--neutral-500);
  text-align: center;
  font-size: var(--fs-sm);
  margin-bottom: 0;
}


.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--success-500), var(--primary-500));
  color: white;
}

.success-content {
  text-align: center;
  padding: var(--space-4xl);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-icon {
  font-size: var(--fs-5xl);
  margin-bottom: var(--space-xl);
}

.success-title {
  color: white !important;
  margin-bottom: var(--space-lg);
}

.success-text {
  color: white !important;
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
}


.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-4xl);
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: var(--space-3xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.privacy-content h1,
.terms-content h1 {
  color: var(--primary-700);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.privacy-content h2,
.terms-content h2 {
  color: var(--primary-600);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-2xl);
}

.privacy-content p,
.terms-content p {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.privacy-content ul,
.terms-content ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.privacy-content li,
.terms-content li {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}


@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 bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    transform: translate3d(0, -10px, 0);
  }
  70% {
    transform: translate3d(0, -5px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}


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

.animate-bounce:hover {
  animation: bounce 1s ease-in-out;
}

.animate-pulse:hover {
  animation: pulse 2s ease-in-out infinite;
}

.animate-wiggle:hover {
  animation: wiggle 0.5s ease-in-out;
}


@media (max-width: 1200px) {
  :root {
    --space-4xl: 4rem;
  }
  
  .pricing-card.featured {
    transform: none;
    margin-top: var(--space-lg);
  }
}

@media (max-width: 992px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    min-width: 200px;
  }
  
  .parallax-bg {
    background-attachment: scroll;
  }
  
  .event-toggles {
    flex-direction: column;
    align-items: center;
  }
  
  .toggle-btn {
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 2.5rem;
    --space-4xl: 3rem;
  }
  
  .section-title {
    font-size: var(--fs-3xl);
  }
  
  .hero-title {
    font-size: var(--fs-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--fs-xl);
  }
  
  .card-content {
    padding: var(--space-lg);
  }
  
  .contact-form-container,
  .contact-info {
    padding: var(--space-lg);
  }
  
  .footer-brand,
  .footer-links,
  .footer-contact {
    margin-bottom: var(--space-2xl);
  }
  
  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .gallery-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  :root {
    --space-2xl: 2rem;
    --space-3xl: 2rem;
    --space-4xl: 2.5rem;
  }
  
  .container {
    padding-left: var(--space-base);
    padding-right: var(--space-base);
  }
  
  .btn {
    min-width: 100px;
    padding: var(--space-sm) var(--space-lg);
  }
  
  .hero-buttons .btn {
    min-width: 280px;
  }
  
  .pricing-features {
    font-size: var(--fs-sm);
  }
  
  .stat-number {
    font-size: var(--fs-3xl);
  }
  
  .navbar-brand {
    font-size: var(--fs-xl);
  }
  
  .card-image {
    height: 200px;
  }
  
  .blog-card .card-image,
  .event-card .card-image {
    height: 180px;
  }
  
  .privacy-content,
  .terms-content {
    padding: var(--space-xl);
  }
  
  .success-content {
    padding: var(--space-2xl);
  }
}


.text-primary { color: var(--primary-600) !important; }
.text-secondary { color: var(--secondary-600) !important; }
.text-success { color: var(--success-500) !important; }
.text-warning { color: var(--warning-500) !important; }
.text-error { color: var(--error-500) !important; }

.bg-primary { background-color: var(--primary-600) !important; }
.bg-secondary { background-color: var(--secondary-600) !important; }
.bg-light { background-color: var(--neutral-100) !important; }
.bg-dark { background-color: var(--neutral-800) !important; }

.border-primary { border-color: var(--primary-600) !important; }
.border-secondary { border-color: var(--secondary-600) !important; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-base); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded { border-radius: var(--border-radius-base); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-xl { border-radius: var(--border-radius-xl); }
.rounded-full { border-radius: var(--border-radius-full); }

.transition { transition: all var(--transition-base); }
.transition-fast { transition: all var(--transition-fast); }
.transition-slow { transition: all var(--transition-slow); }


@media print {
  .navbar,
  .footer,
  .btn,
  button {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }
  
  .section-title::after {
    display: none;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid var(--neutral-300);
  }
}


@media (prefers-contrast: high) {
  :root {
    --primary-500: #0066cc;
    --primary-600: #0052a3;
    --primary-700: #003d7a;
  }
  
  .btn-primary {
    border: 2px solid var(--primary-700);
  }
  
  .card {
    border: 2px solid var(--neutral-300);
  }
}


@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;
  }
  
  .parallax-bg {
    background-attachment: scroll;
  }
}