/* ===== CSS VARIABLES ===== */
:root {
  /* Analogous Color Scheme - Orange to Red */
  --primary-color: #ff6b35;
  --primary-light: #ff8f65;
  --primary-dark: #e55a2b;
  --secondary-color: #ff9500;
  --secondary-light: #ffb143;
  --secondary-dark: #cc7700;
  --accent-color: #ff3366;
  --accent-light: #ff5577;
  --accent-dark: #d62651;
  --tertiary-color: #ffcc00;
  --tertiary-light: #ffd633;
  --tertiary-dark: #ccaa00;
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --dark: #1a1a1a;
  --gray-900: #2d2d2d;
  --gray-800: #404040;
  --gray-700: #525252;
  --gray-600: #737373;
  --gray-500: #a3a3a3;
  --gray-400: #d4d4d4;
  --gray-300: #e5e5e5;
  --gray-200: #f0f0f0;
  --gray-100: #f7f7f7;
  
  /* Glassmorphism Colors */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-bg-dark: rgba(0, 0, 0, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  
  /* Gradient Backgrounds */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  --gradient-tertiary: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  --gradient-dark: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3rem;
  --space-4xl: 4rem;
  --space-5xl: 5rem;
  --space-6xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px 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);
  --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.37);
  --shadow-brutal: 4px 4px 0px var(--black);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Container */
  --container-max-width: 1280px;
  --container-padding: var(--space-lg);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

html, body, section, footer  {
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

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

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

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

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

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

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: var(--space-lg);
  position: relative;
}

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

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===== GLOBAL BUTTON STYLES ===== */
.btn, button, input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 48px;
  white-space: nowrap;
}

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

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-brutal);
  border: 2px solid var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px var(--black);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-brutal);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px var(--black);
}

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

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

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--font-size-lg);
}

.btn-sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-sm);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
background-color: #000000 !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-normal);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}

.navbar-brand .logo {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
}

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

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

.navbar-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: var(--space-sm);
}

.navbar-burger span {
  width: 25px;
  height: 3px;
  background: var(--black);
  margin: 2px 0;
  transition: var(--transition-fast);
  border-radius: var(--radius-sm);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-dark);
  z-index: 1;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

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

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

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

.parallax-element {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('image/hero-parallax-overlay.jpg') center/cover no-repeat;
  opacity: 0.1;
  animation: parallaxFloat 20s ease-in-out infinite;
}

/* ===== CARD STYLES ===== */
.card, .item, .testimonial, .team-member, .product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  border: 2px solid var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card:hover, .item:hover, .testimonial:hover, .team-member:hover, .product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

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

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

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

.card-content {
  padding: var(--space-xl);
  flex: 1;
}

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

.card-content p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies {
  background: var(--gray-100);
  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(--gradient-primary);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

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

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: 50%;
  padding-right: var(--space-2xl);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  margin-right: 0;
  padding-left: var(--space-2xl);
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 4px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--black);
  transition: var(--transition-normal);
}

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

.case-study-meta {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.meta-item {
  padding: var(--space-sm) var(--space-md);
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border: 1px solid var(--black);
}

/* ===== AWARDS SECTION ===== */
.awards {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.awards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('image/awards-background-pattern.jpg') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.awards .container {
  position: relative;
  z-index: 1;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
}

.award-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-glass);
  border: 2px solid var(--black);
}

.award-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-2xl);
  background: rgba(255, 255, 255, 0.2);
}

.award-icon {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-lg);
  display: block;
  animation: bounce 2s infinite;
}

.animated-icon {
  animation: pulse 2s ease-in-out infinite;
}

.award-item h3 {
  color: var(--dark);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-xl);
}

.award-item p {
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
}

.award-year {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-size-sm);
  border: 1px solid var(--black);
}

/* ===== ACCOLADES SECTION ===== */
.accolades {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
}

.accolades .section-title {
  color: var(--white);
}

.accolades .section-title::after {
  background: var(--white);
}

.accolades .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.accolades-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-2xl);
}

.accolade-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: var(--transition-normal);
  border: 2px solid var(--white);
}

.accolade-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.quote-content blockquote {
  font-size: var(--font-size-lg);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  position: relative;
}

.quote-content blockquote::before {
  content: '"';
  font-size: var(--font-size-5xl);
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: serif;
}

.quote-content cite {
  display: block;
  margin-top: var(--space-lg);
}

.quote-content cite strong {
  display: block;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.quote-content cite span {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
}

/* ===== BEHIND THE SCENES SECTION ===== */
.behind-scenes {
  background: var(--gray-100);
  position: relative;
}

.behind-scenes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
}

.behind-item .card {
  height: 100%;
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0px var(--primary-color);
}

.behind-item .card:hover {
  box-shadow: 12px 12px 0px var(--primary-color);
}

/* ===== CAREERS SECTION ===== */
.careers {
  background: var(--white);
  position: relative;
}

.career-intro {
  max-width: 800px;
  margin: 0 auto var(--space-4xl);
  text-align: center;
  font-size: var(--font-size-lg);
  line-height: 1.8;
}

.job-openings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.job-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--black);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: var(--transition-normal);
  box-shadow: 4px 4px 0px var(--accent-color);
}

.job-item:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px var(--accent-color);
}

.job-content h3 {
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.job-meta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.job-meta span {
  padding: var(--space-sm) var(--space-md);
  background: var(--gradient-secondary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border: 1px solid var(--black);
}

.career-cta {
  text-align: center;
}

/* ===== RESOURCES SECTION ===== */
.resources {
  background: var(--gray-100);
}

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

.resource-item {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: 4px 4px 0px var(--tertiary-color);
}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px var(--tertiary-color);
}

.resource-link {
  display: inline-block;
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-xl);
  background: var(--gradient-tertiary);
  color: var(--dark);
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-normal);
  border: 2px solid var(--black);
}

.resource-link:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px var(--black);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--gradient-secondary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('image/contact-background-pattern.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

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

.contact .section-title {
  color: var(--white);
}

.contact .section-title::after {
  background: var(--white);
}

.contact .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.info-item h3, .info-item h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.info-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  line-height: 1.7;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  border: 2px solid var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-weight: 600;
  color: var(--white);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-md);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  backdrop-filter: blur(5px);
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== FOOTER ===== */
.footer {
  background: #000 !important;
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

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

.footer-section h3 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-xl);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-lg);
}

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

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition-normal);
  padding: var(--space-sm) 0;
}

.footer-nav a:hover {
  color: var(--white);
  padding-left: var(--space-sm);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.social-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition-normal);
  padding: var(--space-sm) 0;
  font-weight: 500;
}

.social-links a:hover {
  color: var(--primary-color);
  padding-left: var(--space-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-800);
  color: var(--gray-500);
}

/* ===== SUCCESS PAGE STYLES ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: var(--space-xl);
}

.success-content {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  border: 2px solid var(--white);
}

.success-icon {
  font-size: var(--font-size-6xl);
  margin-bottom: var(--space-lg);
  animation: bounce 2s infinite;
}

/* ===== PRIVACY & TERMS PAGES ===== */
.legal-page {
  padding-top: 100px;
  padding-bottom: var(--space-4xl);
  background: var(--gray-100);
}

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

.legal-content h2 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-xl);
}

.legal-content h3 {
  color: var(--dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

@keyframes parallaxFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(10px, -10px) rotate(1deg);
  }
  66% {
    transform: translate(-5px, 5px) rotate(-1deg);
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed,
.reveal-fade.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: var(--font-size-5xl);
  }
  
  .section-title {
    font-size: var(--font-size-3xl);
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: var(--space-xl);
    margin-right: var(--space-xl);
    padding: 0;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .navbar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-xl);
    z-index: 999;
  }
  
  .navbar-menu.active {
    left: 0;
  }
  
  .navbar-nav {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .navbar-burger {
    display: flex;
    z-index: 1000;
  }
  
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .awards-grid,
  .resources-grid,
  .job-openings {
    grid-template-columns: 1fr;
  }
  
  .accolades-carousel {
    grid-template-columns: 1fr;
  }
  
  .behind-scenes-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: var(--space-lg);
    margin-right: 0;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-marker {
    left: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .card-content,
  .contact-form-container,
  .legal-content {
    padding: var(--space-lg);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: var(--space-md);
  }
  
  .meta-item {
    font-size: var(--font-size-xs);
  }
  
  .job-meta {
    flex-direction: column;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .btn,
  button {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
    padding: var(--space-md) 0;
  }
  
  .hero {
    min-height: auto;
    padding: var(--space-xl) 0;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0066cc;
    --secondary-color: #ff6600;
    --accent-color: #cc0066;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.3);
  }
  
  .card,
  .btn,
  .award-item,
  .job-item {
    border-width: 3px;
  }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #000000;
    --black: #ffffff;
    --dark: #ffffff;
    --gray-100: #1a1a1a;
    --gray-200: #2d2d2d;
    --gray-800: #e5e5e5;
    --gray-700: #f0f0f0;
  }
  
  body {
    background: var(--dark);
    color: var(--white);
  }
  
  .card,
  .legal-content {
    background: var(--gray-200);
    color: var(--white);
  }
}