:root {
  /* Primary Colors - Split Complementary Scheme */
  --primary-color: #4a90e2; /* Base blue */
  --primary-dark: #2c65b1;
  --primary-light: #7db0f2;
  
  --secondary-color: #e24a90; /* Split complementary - pink */
  --secondary-dark: #b12c65;
  --secondary-light: #f27db0;
  
  --tertiary-color: #e29e4a; /* Split complementary - orange */
  --tertiary-dark: #b17a2c;
  --tertiary-light: #f2c17d;
  
  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f7f9fc;
  --neutral-300: #e6ecf5;
  --neutral-400: #ccd7e6;
  --neutral-500: #9bacc4;
  --neutral-600: #5d7290;
  --neutral-700: #3a4859;
  --neutral-800: #1e2736;
  --neutral-900: #0f1723;
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --glass-blur: 10px;
  
  /* Typography */
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  
  /* Spacing */
  --section-spacing: 5rem;
  --element-spacing: 2rem;
  --small-spacing: 1rem;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Border Radius */
  --border-radius-small: 5px;
  --border-radius-medium: 10px;
  --border-radius-large: 15px;
  --border-radius-xl: 25px;
  --border-radius-circle: 50%;
  
  /* Shadows */
  --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.1);
  
  /* Z-index layers */
  --z-background: -1;
  --z-normal: 1;
  --z-overlay: 10;
  --z-dropdown: 20;
  --z-sticky: 30;
  --z-fixed: 40;
  --z-modal: 50;
  --z-popover: 60;
  --z-tooltip: 70;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--neutral-700);
  line-height: 1.6;
  background-color: var(--neutral-200);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--small-spacing);
}

p {
  margin-bottom: var(--small-spacing);
}

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

a:hover {
  color: var(--primary-dark);
}

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

/* Glassmorphism card style */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 8px 32px var(--glass-shadow);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.glassmorphism:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--glass-shadow);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background-color: rgba(15, 23, 35, 0.8);
  backdrop-filter: blur(8px);
  transition: background-color var(--transition-fast);
}

.navbar {
  padding: 1rem 0;
  transition: padding var(--transition-fast);
}

.navbar-brand h1 {
  color: #000;
  margin-bottom: 0;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-item {
  color: #000;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius-small);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.navbar-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-light);
}

/* Buttons - Global styles */
.button {
  border-radius: var(--border-radius-medium);
  font-weight: 600;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.button.is-primary {
  background-color: var(--primary-color);
  border-color: transparent;
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
}

.button.is-link {
  background-color: var(--secondary-color);
  border-color: transparent;
}

.button.is-link:hover {
  background-color: var(--secondary-dark);
}

.button.is-rounded {
  border-radius: 2rem;
}

/* Hero Section */
.hero.is-fullheight {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(15, 23, 35, 0.8), rgba(15, 23, 35, 0.5));
  z-index: var(--z-background);
}

.hero-body {
  display: flex;
  align-items: center;
  z-index: var(--z-normal);
  padding: 3rem 1.5rem;
}

.hero-body .title,
.hero-body .subtitle,
.hero-body p {
  color: var(--neutral-100);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-foot {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  z-index: var(--z-normal);
}

.scroll-down {
  display: inline-block;
  position: relative;
  height: 50px;
  width: 30px;
  border: 2px solid var(--neutral-100);
  border-radius: 20px;
}

.scroll-down span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--neutral-100);
  border-radius: 50%;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Parallax Section */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--section-spacing) 0;
  overflow: hidden;
}

/* Methodology Section */
#methodology {
  position: relative;
  padding: var(--section-spacing) 0;
}

.timeline-container {
  position: relative;
  margin: 3rem 0;
}

.progress-container {
  position: relative;
  padding-left: 2rem;
}

.progress-icon {
  position: absolute;
  left: -1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius-circle);
  background-color: var(--primary-color);
  color: var(--neutral-100);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  box-shadow: var(--shadow-medium);
}

/* Stories Section */
#stories {
  position: relative;
  padding: var(--section-spacing) 0;
  color: var(--neutral-100);
}

.progress-bar {
  position: relative;
  height: 8px;
  width: 100%;
  background-color: var(--neutral-300);
  border-radius: 4px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s ease-in-out;
}

.progress-text {
  position: absolute;
  top: -25px;
  left: 0;
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--neutral-700);
}

/* Resources Section */
#resources {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-200);
}

/* News Section */
#news {
  padding: var(--section-spacing) 0;
}

/* Awards Section */
#awards {
  position: relative;
  padding: var(--section-spacing) 0;
  color: var(--neutral-100);
}

.recognition-stats {
  margin-top: 3rem;
}

.stat-container {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.stat-label {
  font-size: 1.2rem;
  color: var(--neutral-100);
}

/* Contact Section */
#contact {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-200);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-block;
  margin: 0 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-dark);
}

/* Footer */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-400);
  padding: 4rem 0 2rem;
}

.footer h3 {
  color: var(--neutral-100);
}

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

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--primary-light);
}

/* Card Styles */
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}

.card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

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

.card-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

/* Utility Classes */
.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 2rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 2rem !important;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .navbar-menu.is-active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1rem;
  }
  
  .columns.is-multiline .column {
    padding: 0.75rem;
  }
  
  .hero-body .title.is-1 {
    font-size: 2.5rem;
  }
  
  .hero-body .subtitle.is-3 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3rem 1.5rem;
  }
  
  .stat-container {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-body .title.is-1 {
    font-size: 2rem;
  }
  
  .hero-body .subtitle.is-3 {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 2.5rem 1rem;
  }
  
  .buttons .button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* Animation for Progress Bars */
@keyframes fillProgress {
  from { width: 0; }
  to { width: var(--progress-width); }
}

[data-value] .progress-fill {
  --progress-width: 0%;
  animation: fillProgress 1.5s ease-out forwards;
}

[data-value="90"] .progress-fill { --progress-width: 90%; }
[data-value="85"] .progress-fill { --progress-width: 85%; }
[data-value="95"] .progress-fill { --progress-width: 95%; }

/* Parallax Effect */
.parallax-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  z-index: -1;
  transform: translateZ(-1px) scale(1.5);
}

/* Biomorphic Design Elements */
.biomorphic-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.15;
  filter: blur(40px);
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-light);
  top: -150px;
  left: -150px;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background-color: var(--secondary-light);
  bottom: -100px;
  right: -100px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background-color: var(--tertiary-light);
  top: 30%;
  right: -100px;
}

.image.is-16by9,
.image.is-4by3,
.image.is-1by1, .image.is-square {
  height: 100%;
  width: 100%;
}