/* Base Variables */
:root {
  /* Color Palette - Analogous */
  --primary-color: #4a7aff;
  --primary-dark: #3560d0;
  --primary-light: #6b93ff;
  --secondary-color: #4f55e8;
  --secondary-dark: #3a40b3;
  --secondary-light: #7078ff;
  --accent-color: #5c4ae8;
  --accent-dark: #4335b3;
  --accent-light: #7b6aff;
  
  /* Neutrals */
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --medium-gray: #e0e5ee;
  --gray: #8c9aad;
  --dark-gray: #3e4758;
  --black: #1c2331;
  
  /* Shadows for Neuromorphism */
  --shadow-light: rgba(255, 255, 255, 0.7);
  --shadow-dark: rgba(174, 174, 192, 0.4);
  --shadow-inset-light: rgba(255, 255, 255, 0.9);
  --shadow-inset-dark: rgba(174, 174, 192, 0.25);
  
  /* Typography */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 2rem;
  --space-l: 3rem;
  --space-xl: 5rem;
  
  /* Border Radius */
  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 20px;
  --radius-circle: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--light-gray);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--black);
  margin-bottom: var(--space-m);
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

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

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;
  border-radius: var(--radius-s);
  object-fit: cover;
}

ul, ol {
  list-style: none;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-l);
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: var(--space-s) auto;
  border-radius: var(--radius-s);
}

/* Neuromorphic Card Styles */
.card {
  background: var(--light-gray);
  border-radius: var(--radius-m);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  padding: var(--space-m);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  margin-bottom: var(--space-m);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 
    10px 10px 20px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light);
}

.card-image {
  width: 100%;
  height: 240px;
  margin-bottom: var(--space-s);
  border-radius: var(--radius-s);
  overflow: hidden;
  text-align: center;
}

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

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

.card-content {
  text-align: center;
  padding: var(--space-s);
  width: 100%;
}

/* Button Styles */
.btn, 
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-m);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: 
    5px 5px 10px var(--shadow-dark),
    -5px -5px 10px var(--shadow-light);
  text-align: center;
  text-decoration: none;
}

.btn:hover, 
button:hover,
input[type="submit"]:hover {
  color: #fff;
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 
    7px 7px 15px var(--shadow-dark),
    -7px -7px 15px var(--shadow-light);
}

.btn:active, 
button:active,
input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 
    inset 3px 3px 5px var(--shadow-dark),
    inset -3px -3px 5px var(--shadow-light);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

.btn-tertiary {
  background: transparent;
  color: var(--primary-color);
  box-shadow: none;
  padding: var(--space-xs) var(--space-s);
}

.btn-tertiary:hover {
  background: transparent;
  color: var(--primary-dark);
  box-shadow: none;
  transform: translateY(0);
}

/* Header & Navigation */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: var(--light-gray);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: var(--space-s) 0;
  transition: all var(--transition-medium);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-list li {
  margin-left: var(--space-m);
}

.nav-list li a {
  color: var(--dark-gray);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-list li a:hover {
  color: var(--primary-color);
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-medium);
}

.nav-list li a:hover::after {
  width: 100%;
}

/* Burger Menu for Mobile */
.burger-menu {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--dark-gray);
  position: absolute;
  left: 0;
  transition: all var(--transition-fast);
}

.burger-menu span:nth-child(1) {
  top: 0;
}

.burger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-menu span:nth-child(3) {
  bottom: 0;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

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

.hero-content {
  max-width: 650px;
  margin-right: auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-s);
  color: var(--white);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: var(--space-m);
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: var(--space-s);
  margin-top: var(--space-m);
}

/* Mission Section */
.mission {
  background-color: var(--white);
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-l);
}

.mission-text {
  flex: 1;
  min-width: 300px;
}

.mission-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

/* Insights Section */
.insights {
  background-color: var(--light-gray);
}

.insights-slider {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  justify-content: center;
}

.insights-slide {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-s);
  margin-top: var(--space-m);
}

/* History Section */
.history {
  background-color: var(--white);
}

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

.history-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--primary-light);
  border-radius: var(--radius-s);
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  padding-left: 50%;
  position: relative;
  margin-bottom: var(--space-l);
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: 0;
  padding-right: 50%;
}

.timeline-year {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: var(--space-xs) var(--space-s);
  border-radius: var(--radius-circle);
  font-weight: bold;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.timeline-content {
  background: var(--light-gray);
  padding: var(--space-m);
  border-radius: var(--radius-m);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  width: 80%;
  max-width: 400px;
}

/* Resources Section */
.resources {
  background-color: var(--light-gray);
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  justify-content: center;
}

.resource-card {
  flex: 1;
  min-width: 280px;
  max-width: 340px;
}

.resource-link {
  display: inline-block;
  margin-top: var(--space-s);
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

.resource-link::after {
  content: '→';
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.resource-link:hover::after {
  transform: translateX(5px);
}

/* Pricing Section */
.pricing {
  background-color: var(--white);
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  justify-content: center;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  display: flex;
}

.pricing-card.featured {
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card .card {
  width: 100%;
  height: 100%;
}

.card-header {
  padding-bottom: var(--space-s);
  border-bottom: 1px solid var(--medium-gray);
  margin-bottom: var(--space-s);
  position: relative;
  text-align: center;
}

.tag {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--accent-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--radius-s);
  font-size: 0.8rem;
  font-weight: bold;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.features-list {
  margin-bottom: var(--space-m);
  text-align: left;
}

.features-list li {
  padding: var(--space-xs) 0;
  position: relative;
  padding-left: 25px;
}

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

.description {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: var(--space-m);
  text-align: left;
}

/* Webinars Section */
.webinars {
  background-color: var(--light-gray);
}

.webinars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  justify-content: center;
}

.webinar-card {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
}

.date-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-color);
  color: var(--white);
  padding: var(--space-xs);
  border-radius: var(--radius-s);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.day {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.webinar-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-s);
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Team Section */
.team {
  background-color: var(--white);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  justify-content: center;
}

.team-member {
  flex: 1;
  min-width: 280px;
  max-width: 300px;
}

.position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.bio {
  font-size: 0.9rem;
  margin-bottom: var(--space-s);
}

.social-links {
  display: flex;
  gap: var(--space-s);
  justify-content: center;
  margin-top: var(--space-s);
}

.social-link {
  color: var(--dark-gray);
  transition: color var(--transition-fast);
}

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

/* Events Section */
.events {
  background-color: var(--light-gray);
}

.events-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  gap: var(--space-m);
  margin-bottom: var(--space-l);
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  overflow: hidden;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  padding: var(--space-s);
  min-width: 100px;
}

.event-content {
  padding: var(--space-m);
  flex: 1;
}

.event-location {
  color: var(--gray);
  margin-bottom: var(--space-s);
}

.event-description {
  margin-bottom: var(--space-m);
}

/* Projects Section */
.projects {
  background-color: var(--white);
}

.projects-carousel {
  display: flex;
  overflow-x: auto;
  gap: var(--space-m);
  padding: var(--space-s) 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.projects-carousel::-webkit-scrollbar {
  display: none;
}

.project-item {
  flex: 0 0 auto;
  width: 100%;
  max-width: 450px;
  scroll-snap-align: start;
}

.client {
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.results {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-s);
}

.result-item {
  background: var(--primary-light);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--radius-s);
  font-size: 0.8rem;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-s);
  margin-top: var(--space-m);
}

/* FAQ Section */
.faq {
  background-color: var(--light-gray);
}

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

.accordion-item {
  margin-bottom: var(--space-s);
  border-radius: var(--radius-m);
  background: var(--white);
  box-shadow: 
    5px 5px 10px var(--shadow-dark),
    -5px -5px 10px var(--shadow-light);
  overflow: hidden;
}

.accordion-header {
  padding: var(--space-m);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.accordion-header:hover {
  background: var(--medium-gray);
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 var(--space-m);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.accordion-item.active .accordion-content {
  padding: 0 var(--space-m) var(--space-m);
  max-height: 1000px;
}

/* Contact Section */
.contact {
  background-color: var(--white);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-l);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-list {
  margin-bottom: var(--space-m);
}

.info-list li {
  margin-bottom: var(--space-s);
  display: flex;
  align-items: center;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
}

.form-group {
  width: calc(50% - var(--space-s) / 2);
  margin-bottom: var(--space-s);
}

.form-group.full-width {
  width: 100%;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

input, 
select, 
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  background: var(--medium-gray);
  border-radius: var(--radius-s);
  font-family: var(--body-font);
  transition: box-shadow var(--transition-fast);
}

input:focus, 
select:focus, 
textarea:focus {
  outline: none;
  box-shadow: inset 3px 3px 5px var(--shadow-dark), 
              inset -3px -3px 5px var(--shadow-light);
}

input[type="checkbox"] {
  width: auto;
  margin-right: var(--space-xs);
}

/* Footer Section */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: var(--space-l) 0 var(--space-s);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-l);
  margin-bottom: var(--space-l);
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.footer-logo p {
  margin-top: var(--space-s);
  color: var(--gray);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: var(--space-s);
  font-size: 1.2rem;
}

.footer-column ul li {
  margin-bottom: var(--space-xs);
}

.footer-column ul li a {
  color: var(--gray);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-m);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
  font-size: 0.9rem;
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--light-gray);
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: var(--space-l);
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-m);
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 120px;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  margin-bottom: var(--space-m);
}

.page-content h2 {
  margin-top: var(--space-l);
  margin-bottom: var(--space-s);
  font-size: 1.8rem;
}

.page-content p {
  margin-bottom: var(--space-s);
}

.page-content ul {
  list-style: disc;
  padding-left: var(--space-m);
  margin-bottom: var(--space-m);
}

.page-content ul li {
  margin-bottom: var(--space-xs);
}

/* Cookie Consent */
#cookie-consent {
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

#cookie-consent p {
  margin-bottom: var(--space-s);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-content {
    max-width: 500px;
  }
  
  .timeline-item, 
  .timeline-item:nth-child(even) {
    padding-left: 30px;
    padding-right: 0;
    justify-content: flex-start;
  }
  
  .timeline-year {
    left: 0;
    transform: none;
  }
  
  .history-timeline::before {
    left: 30px;
    transform: none;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section-title {
    margin-bottom: var(--space-m);
  }
  
  .main-nav {
    display: none;
  }
  
  .nav-list {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--light-gray);
    flex-direction: column;
    align-items: center;
    padding: var(--space-m) 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-list li {
    margin: 0 0 var(--space-s) 0;
  }
  
  .burger-menu {
    display: block;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .contact-container,
  .mission-content {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form {
    width: 100%;
  }
  
  .form-group {
    width: 100%;
  }
  
  .event-item {
    flex-direction: column;
  }
  
  .event-date {
    flex-direction: row;
    padding: var(--space-xs) var(--space-s);
    justify-content: center;
    gap: var(--space-xs);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-m);
  }
  
  .footer-logo,
  .footer-column {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section-title::after {
    width: 60px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-s);
  }
  
  .price {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: 100%;
  }
}

/* Animation Classes for AOS */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-s); }
.mt-3 { margin-top: var(--space-m); }
.mt-4 { margin-top: var(--space-l); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-s); }
.mb-3 { margin-bottom: var(--space-m); }
.mb-4 { margin-bottom: var(--space-l); }
.mb-5 { margin-bottom: var(--space-xl); }

.py-1 { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-2 { padding-top: var(--space-s); padding-bottom: var(--space-s); }
.py-3 { padding-top: var(--space-m); padding-bottom: var(--space-m); }
.py-4 { padding-top: var(--space-l); padding-bottom: var(--space-l); }
.py-5 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }