/* CSS Variables for Complementary Color Scheme with Creative & Biomorphic Design */
:root {
  /* Primary Colors (Orange-Red) */
  --primary-color: #FF5722;
  --primary-light: #FF8A65;
  --primary-dark: #D84315;
  --primary-gradient: linear-gradient(135deg, #FF5722 0%, #FF8A65 100%);
  
  /* Complementary Colors (Blue-Cyan) */
  --secondary-color: #00BCD4;
  --secondary-light: #4DD0E1;
  --secondary-dark: #0097A7;
  --secondary-gradient: linear-gradient(135deg, #00BCD4 0%, #4DD0E1 100%);
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #E0E0E0;
  --dark-gray: #424242;
  --text-dark: #212121;
  --text-light: #757575;
  
  /* Biomorphic Gradients */
  --bio-gradient-1: linear-gradient(45deg, #FF5722 0%, #FF8A65 50%, #00BCD4 100%);
  --bio-gradient-2: linear-gradient(135deg, #00BCD4 0%, #4DD0E1 50%, #FF5722 100%);
  --bio-shadow: 0 20px 40px rgba(255, 87, 34, 0.2);
  --bio-shadow-secondary: 0 20px 40px rgba(0, 188, 212, 0.2);
  
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-backdrop: blur(20px);
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  --card-padding: 30px;
  
  /* Border Radius for Biomorphic Design */
  --border-radius-sm: 20px;
  --border-radius-md: 30px;
  --border-radius-lg: 50px;
  --border-radius-xl: 80px;
  
  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Particle Canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}



/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-dark);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--text-dark);
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Global Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  min-width: 150px;
  text-align: center;
}

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

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

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--bio-shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(255, 87, 34, 0.3);
}

.btn-secondary {
  background: var(--secondary-gradient);
  color: var(--white);
  box-shadow: var(--bio-shadow-secondary);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(0, 188, 212, 0.3);
}

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

.btn-outline:hover {
  background: var(--primary-gradient);
  color: var(--white);
  transform: translateY(-3px);
}

button, input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  min-width: 150px;
  text-align: center;
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--bio-shadow);
}

button:hover, input[type='submit']:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(255, 87, 34, 0.3);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: all var(--transition-fast);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.navbar-brand h1 {
  font-size: 1.8rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-sm);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-color);
}

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

.navbar-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.navbar-burger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6);
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-title {
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 3rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Styles */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

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

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin: 0;
}

/* Card Styles */
.card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--card-padding);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bio-gradient-1);
  border-radius: var(--border-radius-sm);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--bio-shadow);
}

.card-image {
  width: 100%;
  height: 250px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 1rem;
}

.card-content p {
  flex: 1;
  margin-bottom: 1.5rem;
}

/* Grid Layouts */
.methodology-section {
  background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255,87,34,0.05) 100%);
}

.timeline-container {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-sm);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 4rem;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 4rem;
}

.timeline-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-gradient);
  border-radius: 50%;
  top: 2rem;
  border: 4px solid var(--white);
  box-shadow: 0 0 20px rgba(255,87,34,0.3);
}

.timeline-item:nth-child(odd) .timeline-marker {
  right: -14px;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -14px;
}

/* Research Section */
.research-section {
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-widget {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-xl);
  text-align: center;
  box-shadow: var(--bio-shadow);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.stat-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bio-gradient-2);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.stat-widget:hover::before {
  opacity: 0.1;
}

.stat-widget:hover {
  transform: translateY(-10px) rotate(2deg);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.stat-number::after {
  content: '%';
  font-size: 2rem;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.stat-description {
  font-size: 0.9rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

/* Stories Section */
.stories-section {
  background: linear-gradient(135deg, rgba(0,188,212,0.05) 0%, var(--light-gray) 100%);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.story-card .card {
  height: auto;
  min-height: 500px;
}

.testimonial {
  text-align: center;
}

.testimonial p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 1rem;
}

.testimonial p::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: var(--font-heading);
}

.testimonial-author strong {
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  background: var(--white);
}

.behind-scenes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  align-items: center;
}

.scene-item .card {
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,87,34,0.02) 100%);
  border: 2px solid var(--medium-gray);
}

.scene-item .card-image {
  height: 300px;
}

/* Insights Section */
.insights-section {
  background: linear-gradient(135deg, var(--light-gray) 0%, rgba(0,188,212,0.05) 100%);
}

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

.insight-card .card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--border-radius-xl);
}

.insight-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

/* Resources Section */
.resources-section {
  background: var(--white);
}

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

.resource-item .card {
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid var(--medium-gray);
  transition: all var(--transition-smooth);
}

.resource-item .card:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,87,34,0.05) 100%);
}

/* Blog Section */
.blog-section {
  background: linear-gradient(135deg, rgba(255,87,34,0.05) 0%, var(--light-gray) 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card .card {
  height: auto;
  min-height: 450px;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-date, .blog-category {
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
}

.blog-date {
  background: rgba(0,188,212,0.1);
  color: var(--secondary-dark);
}

.blog-category {
  background: rgba(255,87,34,0.1);
  color: var(--primary-dark);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,87,34,0.02) 100%);
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(255,87,34,0.05) 0%, rgba(255,87,34,0.1) 100%);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.faq-toggle {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item.active .faq-answer {
  padding: 2rem;
  max-height: 200px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--light-gray) 0%, rgba(0,188,212,0.05) 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--bio-shadow);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255,87,34,0.1);
}

.contact-info {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--bio-shadow);
  height: fit-content;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-item h4 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  margin: 0;
  color: var(--text-dark);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

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

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

.footer-section ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

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

.social-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.social-links a:hover {
  color: var(--white);
  border-color: var(--primary-color);
  background: rgba(255,87,34,0.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

/* Success Page Styles */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-gray) 0%, rgba(0,188,212,0.1) 100%);
}

.success-content {
  text-align: center;
  background: var(--white);
  padding: 4rem 3rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--bio-shadow);
  max-width: 600px;
  width: 100%;
  margin: 2rem;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

/* Privacy and Terms Pages */
.privacy-content,
.terms-content {
  padding-top: 120px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2,
.terms-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.privacy-content p,
.terms-content p {
  margin-bottom: 1.5rem;
}

.privacy-content ul,
.terms-content ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.privacy-content li,
.terms-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* About and Contact Pages */
.about-content,
.contact-page-content {
  padding-top: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .navbar-nav.active {
    display: flex;
  }

  .navbar-burger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .timeline::before {
    left: 2rem;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 5rem !important;
    padding-right: 1rem !important;
  }

  .timeline-marker {
    left: 1.25rem !important;
    right: auto !important;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .behind-scenes-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 200px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .stories-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .success-content {
    padding: 3rem 2rem;
    margin: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .card {
    padding: 1.5rem;
  }

  :root {
    --section-padding: 60px 0;
  }
}

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

/* AOS Animation Overrides */
[data-aos="fade-up"] {
  animation: fadeInUp 0.8s ease-out;
}

[data-aos="zoom-in"] {
  animation: zoomIn 0.8s ease-out;
}

[data-aos="fade-right"] {
  animation: slideInRight 0.8s ease-out;
}

[data-aos="fade-left"] {
  animation: slideInLeft 0.8s ease-out;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .container {
    max-width: none;
    padding: 0;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --text-light: var(--text-dark);
    --medium-gray: var(--dark-gray);
  }
  
  .card {
    border: 2px solid var(--text-dark);
  }
}

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