:root {
  /* Primary Color Palette */
  --primary-100: #1a6aff;
  --primary-200: #0052cc;
  --primary-300: #003d99;
  
  /* Secondary Color Palette */
  --secondary-100: #00c875;
  --secondary-200: #00a35c;
  --secondary-300: #007d45;
  
  /* Accent Color Palette */
  --accent-100: #ff7a59;
  --accent-200: #e65c3e;
  --accent-300: #cc4025;
  
  /* Neutral Color Palette */
  --neutral-100: #ffffff;
  --neutral-200: #f5f7fa;
  --neutral-300: #e5e9f0;
  --neutral-400: #d0d7e3;
  --neutral-500: #a0a8b8;
  --neutral-600: #6e7a8a;
  --neutral-700: #4d5766;
  --neutral-800: #2c3645;
  --neutral-900: #1a202c;
  
  /* Gradient Backgrounds */
  --gradient-primary: linear-gradient(135deg, var(--primary-100), var(--primary-300));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-100), var(--secondary-300));
  --gradient-accent: linear-gradient(135deg, var(--accent-100), var(--accent-300));
  --gradient-blue-purple: linear-gradient(135deg, #3a7bd5, #6c5ce7);
  --gradient-green-blue: linear-gradient(135deg, #00d2ff, var(--primary-100));
  --gradient-orange-red: linear-gradient(135deg, var(--accent-100), #ff4757);
  --gradient-dark: linear-gradient(135deg, var(--neutral-800), var(--neutral-900));
  
  /* Shadow Variables */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Spacing System */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  --space-3xl: 4rem;    /* 64px */
  
  /* Typography */
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  
  /* Z-index */
  --z-below: -1;
  --z-normal: 1;
  --z-above: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

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

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

body {
  font-family: var(--font-body);
  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(--font-sans);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

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

a {
  color: var(--primary-100);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

ul, ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

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

/* Buttons */
.btn, 
button, 
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  border: none;
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn:active, 
button:active, 
input[type="submit"]:active {
  transform: translateY(1px);
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-200), var(--primary-100));
  color: white;
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-200), var(--secondary-100));
  color: white;
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-200), var(--accent-100));
  color: white;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
}

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

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--neutral-600);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Header & Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
}

.logo a {
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neutral-900);
  text-decoration: none;
}

.logo span {
  color: var(--primary-100);
  margin-right: 2px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: var(--space-lg);
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--neutral-700);
  text-decoration: none;
  padding: var(--space-xs) 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-100);
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -3px;
  left: 0;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: var(--radius-full);
}

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

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-menu span {
  width: 2rem;
  height: 0.25rem;
  background: var(--neutral-800);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 12rem 0 6rem;
  color: white;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 106, 255, 0.8), rgba(0, 61, 153, 0.8));
  z-index: 1;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  color: white;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-out;
}

.hero-content p {
  color: white;
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item .number {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-item .label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services {
  padding: var(--space-3xl) 0;
  background-color: var(--neutral-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.card-content h3 {
  color: var(--neutral-900);
  margin-bottom: var(--space-md);
}

/* Features Section */
.features {
  padding: var(--space-3xl) 0;
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  z-index: 0;
}

.features::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  z-index: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.feature-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--neutral-200);
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}

.feature-item h3 {
  margin-bottom: var(--space-md);
  color: var(--neutral-900);
}

/* Testimonials Section */
.testimonials {
  padding: var(--space-3xl) 0;
  background-color: var(--neutral-100);
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
  margin-top: var(--space-xl);
}

.testimonial-item {
  flex: 1 1 300px;
  max-width: 400px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.testimonial-content p {
  position: relative;
  padding: var(--space-md) 0;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  position: absolute;
  font-family: var(--font-sans);
  font-size: 3rem;
  line-height: 1;
  color: var(--primary-100);
  opacity: 0.3;
}

.testimonial-content p::before {
  top: 0;
  left: -10px;
}

.testimonial-content p::after {
  bottom: -20px;
  right: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: var(--space-md);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin-right: var(--space-md);
  border: 3px solid var(--primary-100);
}

.author-info {
  text-align: left;
}

.author-info h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.author-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--neutral-600);
}

/* Resources Section */
.resources {
  padding: var(--space-3xl) 0;
  background-color: var(--neutral-200);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.resource-item {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-item a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.resource-content {
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.resource-content h3 {
  color: var(--primary-100);
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.resource-content p {
  color: var(--neutral-700);
  font-size: 0.925rem;
  margin-bottom: 0;
}

/* Team Section */
.instructors {
  padding: var(--space-3xl) 0;
  background-color: var(--neutral-100);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.team-grid .card-image {
  height: 300px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.team-grid .card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-grid .card-content {
  padding: var(--space-lg);
  text-align: center;
}

.team-grid .position {
  color: var(--primary-100);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

/* Behind the Scenes Section */
.behind-scenes {
  padding: var(--space-3xl) 0;
  background-color: var(--neutral-200);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 300px;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h4 {
  color: white;
  margin-bottom: var(--space-xs);
}

.gallery-caption p {
  margin: 0;
  font-size: 0.875rem;
}

/* Awards Section */
.awards {
  padding: var(--space-3xl) 0;
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.awards::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--gradient-accent);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  z-index: 0;
}

.awards-timeline {
  position: relative;
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  padding: 0 var(--space-lg);
}

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

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  display: flex;
  width: 100%;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-year {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 700;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-year {
  right: -40px;
}

.timeline-item:nth-child(even) .timeline-year {
  left: -40px;
}

.timeline-content {
  width: calc(50% - 50px);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.timeline-content img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.timeline-content h3 {
  color: var(--neutral-900);
  margin-bottom: var(--space-sm);
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--neutral-700);
}

/* Contact Section */
.contact {
  padding: var(--space-3xl) 0;
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--gradient-green-blue);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.05;
  z-index: 0;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info {
  position: relative;
  z-index: 1;
}

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

.info-item h3 {
  color: var(--neutral-900);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.map-container {
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-sm);
  box-shadow: var(--shadow-md);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.stat-box {
  flex: 1 1 calc(33.333% - var(--space-lg));
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-100);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-text {
  font-size: 0.875rem;
  color: var(--neutral-700);
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.contact-form h3 {
  margin-bottom: var(--space-lg);
  text-align: center;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--neutral-800);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-400);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--neutral-900);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-100);
  box-shadow: 0 0 0 3px rgba(26, 106, 255, 0.1);
  outline: none;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: var(--space-sm);
  margin-top: 0.25rem;
}

/* Footer */
.main-footer {
  background: var(--gradient-dark);
  color: var(--neutral-300);
  padding: var(--space-2xl) 0;
}

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

.footer-column h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

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

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

.footer-links a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact p {
  margin-bottom: var(--space-sm);
}

.footer-contact a {
  color: var(--primary-100);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

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

.social-links a {
  display: inline-block;
  color: var(--neutral-400);
  margin-right: var(--space-md);
  transition: color 0.3s ease;
  text-decoration: none;
  padding: var(--space-xs) 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  color: var(--neutral-500);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--neutral-200);
  padding: var(--space-xl);
}

.success-content {
  max-width: 600px;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

/* Privacy & Terms Pages */
.privacy-page, 
.terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-3xl);
}

.privacy-content, 
.terms-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Media Queries */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .contact-columns {
    grid-template-columns: 1fr;
  }

  .stats-container {
    justify-content: space-around;
  }

  .timeline-content {
    width: calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .main-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .awards-timeline::before {
    left: 20px;
  }

  .timeline-item {
    justify-content: flex-start !important;
  }

  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    left: -20px;
    width: 60px;
    height: 60px;
    font-size: 0.875rem;
  }

  .timeline-content {
    width: calc(100% - 40px);
    margin-left: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }

  form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 10rem 0 4rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .services-grid, 
  .features-grid, 
  .team-grid, 
  .gallery {
    grid-template-columns: 1fr;
  }

  .stat-box {
    flex: 1 1 100%;
  }
}