/* CSS Variables - Tetrada Color Scheme */
:root {
  /* Primary Colors (Tetrada) */
  --primary-color: #00d4ff;
  --secondary-color: #ff6b00;
  --tertiary-color: #ff0066;
  --quaternary-color: #66ff00;
  
  /* Supporting Colors */
  --accent-color: #0099cc;
  --accent-secondary: #cc4400;
  --accent-tertiary: #cc0044;
  --accent-quaternary: #44cc00;
  
  /* Neutral Colors */
  --dark-bg: #0a0a0a;
  --darker-bg: #000000;
  --light-bg: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #888888;
  --gray-dark: #333333;
  
  /* Text Colors */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #ffffff;
  --text-muted: #999999;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--quaternary-color));
  --gradient-dark: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  
  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.3);
  --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.5);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-elastic: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--light-bg);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
}

/* Global Button Styles */
.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-elastic);
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-width: 160px;
}

.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: var(--transition-medium);
  z-index: -1;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

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

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4);
}

.btn-bounce {
  animation: bounce 2s infinite;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.navbar-brand img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-medium);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.navbar-nav {
  display: flex;
  gap: var(--spacing-lg);
}

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

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

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

.nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

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

.navbar-burger span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  transition: var(--transition-medium);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

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

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

.hero-title {
  font-size: 4rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-xl);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

/* Section Styles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xxl);
  color: var(--text-primary);
  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: 2px;
}

/* Innovation Section */
.innovation-section {
  padding: var(--spacing-xxl) 0;
  background: var(--gray-light);
}

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

.innovation-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  transition: var(--transition-elastic);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innovation-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-heavy);
}

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

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

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

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

.card-content h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  font-size: 1.4rem;
}

/* Projects Section */
.projects-section {
  padding: var(--spacing-xxl) 0;
  background: var(--dark-bg);
  color: var(--text-light);
}

.projects-section .section-title {
  color: var(--text-light);
}

.projects-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
}

.project-slide {
  display: none;
  opacity: 0;
  transition: var(--transition-slow);
}

.project-slide.active {
  display: block;
  opacity: 1;
}

.project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
}

.project-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.project-info h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.project-stats {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.project-stats span {
  background: var(--gradient-primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.carousel-btn {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-elastic);
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-neon);
}

/* Gallery Section */
.gallery-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-elastic);
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-toggle {
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* Sustainability Section */
.sustainability-section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.sustainability-content {
  position: relative;
  z-index: 2;
}

.sustainability-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  color: var(--text-light);
  font-size: 1.1rem;
}

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

/* Team Section */
.team-section {
  padding: var(--spacing-xxl) 0;
  background: var(--gray-light);
}

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

.team-member {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  transition: var(--transition-elastic);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.team-member .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-member .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

/* Behind Scenes Section */
.behind-scenes-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-bg);
}

.behind-scenes-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.step-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.behind-scenes-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

/* External Resources Section */
.external-resources-section {
  padding: var(--spacing-xxl) 0;
  background: var(--dark-bg);
  color: var(--text-light);
}

.external-resources-section .section-title {
  color: var(--text-light);
}

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

.resource-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.resource-links a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-medium);
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid transparent;
}

.resource-links a:hover {
  color: var(--text-light);
  border-bottom-color: var(--primary-color);
  transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
  padding: var(--spacing-xxl) 0;
  background: var(--gray-light);
}

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

.faq-item {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.faq-question {
  padding: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-medium);
}

.faq-question:hover {
  background: var(--gray-light);
}

.faq-question h3 {
  margin: 0;
  color: var(--text-primary);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--transition-medium);
}

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

.faq-answer {
  padding:  var(--spacing-lg);
  max-height: 200px;
  overflow: hidden;
  transition: var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: var(--spacing-lg);
  max-height: 200px;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-bg);
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: var(--transition-slow);
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-content {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-medium);
  text-align: center;
}

.testimonial-text {
  margin-bottom: var(--spacing-lg);
}

.testimonial-text p {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  color: var(--text-primary);
}

.author-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Careers Section */
.careers-section {
  padding: var(--spacing-xxl) 0;
  background: var(--dark-bg);
  color: var(--text-light);
}

.careers-section .section-title {
  color: var(--text-light);
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.careers-text {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.job-openings {
  margin-top: var(--spacing-lg);
}

.job-item {
  background: rgba(0, 212, 255, 0.1);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  border-left: 4px solid var(--primary-color);
}

.job-item h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.careers-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xxl) 0;
  background: var(--gray-light);
}

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

.contact-info {
  background: var(--light-bg);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.contact-details {
  margin-top: var(--spacing-lg);
}

.contact-item {
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--gray-light);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.contact-form-container {
  background: var(--light-bg);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--spacing-md);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-medium);
  background: var(--light-bg);
}

.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(0, 212, 255, 0.1);
}

.btn-submit {
  margin-top: var(--spacing-md);
  align-self: flex-start;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

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

.footer-section h3,
.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

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

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-medium);
}

.footer-section a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.social-links a {
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: var(--transition-medium);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-bg);
  color: var(--text-light);
  padding: var(--spacing-lg);
  z-index: 10000;
  display: none;
  border-top: 2px solid var(--primary-color);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.cookie-accept {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-medium);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

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

.success-content {
  text-align: center;
  max-width: 600px;
  padding: var(--spacing-xl);
}

.success-content h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
}

.success-content p {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xl);
}

/* Privacy and Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xxl);
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl);
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    padding: var(--spacing-lg);
    transform: translateY(-100%);
    transition: var(--transition-medium);
    opacity: 0;
    visibility: hidden;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .navbar-burger {
    display: flex;
  }

  .navbar-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .navbar-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

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

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

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

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

  .project-content,
  .behind-scenes-content,
  .careers-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

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

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .parallax-bg {
    background-attachment: scroll;
  }
}

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

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

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

  .sustainability-stats {
    grid-template-columns: 1fr;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-elastic);
}

.slide-up.visible {
  transform: translateY(0);
  opacity: 1;
}

.scale-up {
  transform: scale(0.8);
  opacity: 0;
  transition: var(--transition-elastic);
}

.scale-up.visible {
  transform: scale(1);
  opacity: 1;
}

/* Glassmorphism Effects */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon);
}