@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  color-scheme: dark;
  --bg: #050608;
  --panel: #0e1118;
  --accent: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --border: rgba(255, 255, 255, 0.15);
  --line: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: #fff;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(5, 9, 21, 0.9)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
  opacity: 0.35;
  z-index: -2;
}

body.showing-splash {
  overflow: hidden;
}

.splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(circle at 30% 20%, rgba(0, 100, 200, 0.15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.1), transparent 50%),
    linear-gradient(135deg, rgba(1, 1, 5, 0.98), rgba(5, 10, 25, 0.98), rgba(1, 1, 5, 0.98));
  z-index: 999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float linear infinite;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(50px) rotate(360deg);
    opacity: 0;
  }
}

.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

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

.splash-logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

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

.splash-logo {
  width: 200px;
  max-width: 60vw;
  height: 200px;
  max-height: 200px;
  min-height: 100px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
  position: relative;
  z-index: 2;
  animation: rotateGlow 3s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.05);
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border-radius: 50%;
  padding: 10px;
  box-sizing: border-box;
}

@keyframes rotateGlow {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 60px rgba(0, 150, 255, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 80px rgba(0, 150, 255, 0.4));
  }
}

.splash-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.3), transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.splash-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.splash-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
  letter-spacing: 0.05em;
  animation: fadeIn 1.2s ease-out 0.3s both;
}

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

.splash-quote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  animation: slideInLeft 1s ease-out 0.6s both;
}

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

.splash-quote p {
  margin: 0;
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.splash-progress {
  width: 100%;
  max-width: 400px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 2rem auto;
  overflow: hidden;
  position: relative;
}

.splash-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(0, 150, 255, 0.8), rgba(255, 107, 53, 0.8));
  border-radius: 2px;
  transition: width 2.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(0, 150, 255, 0.6);
  position: relative;
}

.splash-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmerProgress 1.5s infinite;
}

@keyframes shimmerProgress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.splash-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 1s both;
}

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

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  background: linear-gradient(135deg, #fff, rgba(0, 150, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.lang-switch {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  display: flex;
  gap: 0.4rem;
  z-index: 20;
}

.lang-switch button {
  background: rgba(10, 14, 25, 0.8);
  color: #fff;
  border: 2px solid rgba(0, 150, 255, 0.3);
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.lang-switch button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 150, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.lang-switch button:hover::before {
  width: 200%;
  height: 200%;
}

.lang-switch button.active,
.lang-switch button:hover {
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.2), rgba(255, 107, 53, 0.1));
  color: #fff;
  border-color: rgba(0, 150, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 150, 255, 0.4);
  transform: translateY(-1px);
}

.brand-chip {
  position: fixed;
  top: 1rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem 0.5rem 0.5rem;
  background: rgba(8, 10, 17, 0.9);
  border: 2px solid rgba(0, 150, 255, 0.3);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.1em;
  z-index: 20;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.brand-chip img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.5));
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 4px;
  box-sizing: border-box;
}

.brand-chip:hover {
  border-color: rgba(0, 150, 255, 0.8);
  box-shadow: 0 6px 25px rgba(0, 150, 255, 0.4);
  transform: translateY(-2px);
}

.brand-chip:hover img {
  transform: rotate(5deg) scale(1.05);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.8) 0%, rgba(5, 5, 8, 0.95) 85%),
    url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?auto=format&fit=crop&w=2200&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.overlay {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.brand-logo {
  width: 180px;
  max-width: 60vw;
  height: 180px;
  max-height: 180px;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.05);
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  padding: 12px;
  box-sizing: border-box;
}

h1 {
  margin: 0;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overlay p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.cta,
.ghost {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta::before,
.ghost::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: left 0.5s;
}

.cta:hover::before,
.ghost:hover::before {
  left: 100%;
}

.cta {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  color: #000;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(0, 150, 255, 0.2);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4), 0 0 40px rgba(0, 150, 255, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(0, 150, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 150, 255, 0.2);
}

.ghost:hover {
  background: rgba(0, 150, 255, 0.15);
  border-color: rgba(0, 150, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 150, 255, 0.4);
}

.section {
  padding: 6rem 8vw;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.85);
}

.section.mission {
  background:
    linear-gradient(120deg, rgba(5, 6, 8, 0.95), rgba(9, 13, 22, 0.9)),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  background-attachment: fixed;
}

.section-content,
.section-header {
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.section h2 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.section p,
.section li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.split-visual img {
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.split ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.split li + li {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.capabilities {
  background: #050608;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  padding: 2.5rem;
  border: 2px solid rgba(0, 150, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  min-height: 260px;
  border-radius: 12px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 150, 255, 0.1), transparent);
  transition: left 0.6s;
}

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

.card:hover {
  border-color: rgba(0, 150, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 150, 255, 0.2);
}

.card span {
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0.5rem 0 1rem;
}

.panorama {
  background:
    linear-gradient(180deg, rgba(3, 3, 4, 0.85), rgba(3, 3, 4, 0.95)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=80') center/cover no-repeat;
  text-align: center;
}

.panorama-content {
  max-width: 800px;
  margin: 0 auto;
}

.gallery {
  background: #040507;
}

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

.gallery-item {
  margin: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: grayscale(30%);
  transition: all 0.5s ease;
}

.tech-gallery-item {
  position: relative;
}

.tech-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(255, 107, 53, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.tech-gallery-item:hover::before {
  opacity: 1;
}

.tech-gallery-item:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.gallery-label {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tech-visual-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.tech-visual-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9) contrast(1.1);
  transition: all 0.5s ease;
}

.tech-visual-wrapper:hover img {
  filter: brightness(1) contrast(1.2);
  transform: scale(1.02);
}

.tech-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(255, 107, 53, 0.05));
  pointer-events: none;
  border: 2px solid rgba(0, 150, 255, 0.3);
  border-radius: 8px;
}

.tech-button {
  position: relative;
}

.tech-button svg {
  transition: transform 0.3s ease;
}

.tech-button:hover svg {
  transform: translateX(4px);
}

/* Mission & Vision Hero Section */
.mission-vision-hero {
  background: 
    linear-gradient(135deg, rgba(5, 6, 8, 0.95), rgba(9, 13, 22, 0.9)),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  background-attachment: fixed;
  padding: 8rem 8vw;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.mission-vision-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.mission-vision-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mission-vision-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 1rem 0;
  background: linear-gradient(135deg, #fff 0%, rgba(0, 150, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tabs-enhanced {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tab-button-enhanced {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--border);
  color: var(--muted);
  padding: 1.5rem 2.5rem;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  border-radius: 12px;
  min-width: 160px;
  backdrop-filter: blur(10px);
}

.tab-button-enhanced:hover {
  border-color: rgba(0, 150, 255, 0.6);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 150, 255, 0.2);
}

.tab-button-enhanced.active {
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.2), rgba(255, 107, 53, 0.2));
  border-color: rgba(0, 150, 255, 0.8);
  color: #fff;
  box-shadow: 0 10px 40px rgba(0, 150, 255, 0.3);
}

.tab-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.tab-label {
  font-size: 1rem;
}

.tab-content-enhanced {
  display: none;
  animation: fadeInUp 0.6s ease-out;
}

.tab-content-enhanced.active {
  display: block;
}

.tab-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.tab-content-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  width: 100%;
  max-width: 350px;
}

.visual-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 150, 255, 0.6);
  box-shadow: 0 20px 50px rgba(0, 150, 255, 0.2);
}

.mission-card {
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 150, 255, 0.05));
}

.vision-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
}

.visual-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.visual-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  color: #fff;
}

.tab-content-text {
  color: #fff;
}

.tab-content-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: #fff;
}

.tab-content-text p {
  line-height: 1.9;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.mission-features,
.vision-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.mission-features li,
.vision-features li {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid rgba(0, 150, 255, 0.6);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mission-features li:hover,
.vision-features li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.vision-features li {
  border-left-color: rgba(255, 107, 53, 0.6);
}

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

/* Mission & Vision Tabs (old - keeping for compatibility) */
.mission-vision {
  background: #050608;
}

.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.tab-button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.tab-button:hover {
  border-color: #fff;
  color: #fff;
}

.tab-button.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

.tab-content h2 {
  margin-bottom: 1rem;
}

.tab-content p {
  line-height: 1.8;
  max-width: 800px;
}

/* Social Media Section */
.social-media {
  background: #040507;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  border: 2px solid rgba(0, 150, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 150, 255, 0.2), transparent);
  transition: left 0.5s;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: rgba(0, 150, 255, 0.15);
  border-color: rgba(0, 150, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 150, 255, 0.4);
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

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

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

.card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card.animate {
  opacity: 1;
  transform: translateY(0);
}

.card:nth-child(1) {
  transition-delay: 0.1s;
}

.card:nth-child(2) {
  transition-delay: 0.2s;
}

.card:nth-child(3) {
  transition-delay: 0.3s;
}

.gallery-item {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gallery-item.animate {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 6vw;
  }

  .lang-switch {
    right: 1rem;
  }

  .brand-chip {
    left: 1rem;
  }

  .gallery-item img {
    height: 180px;
  }

  .fade-in,
  .slide-in-left,
  .slide-in-up {
    transform: translateY(20px);
  }

  .slide-in-left {
    transform: translateX(-30px);
  }

  .splash-content {
    padding: 1.5rem;
  }

  .splash-logo {
    width: 150px;
    height: 150px;
    max-height: 150px;
    object-fit: cover;
    object-position: center;
  }

  .brand-chip img {
    width: 36px;
    height: 36px;
    object-fit: cover;
  }

  .brand-logo {
    width: 140px;
    height: 140px;
    max-height: 140px;
    object-fit: cover;
  }

  .splash-glow {
    width: 200px;
    height: 200px;
  }

  .splash-title {
    font-size: 1.8rem;
  }

  .splash-subtitle {
    font-size: 0.85rem;
  }

  .splash-quote {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .splash-quote p {
    font-size: 0.9rem;
  }

  .splash-stats {
    gap: 2rem;
    margin-top: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .mission-vision-hero {
    padding: 4rem 6vw;
    min-height: auto;
  }

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

  .tab-content-visual {
    order: -1;
  }

  .visual-card {
    max-width: 100%;
    padding: 2rem;
  }

  .visual-icon {
    font-size: 3.5rem;
  }

  .tabs-enhanced {
    gap: 1rem;
  }

  .tab-button-enhanced {
    min-width: 140px;
    padding: 1.2rem 1.5rem;
  }

  .tab-icon {
    font-size: 2rem;
  }

  .tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tab-button {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }

  .social-links {
    flex-direction: column;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }
}

/* Contact Page */
.contact-page {
  background: #040507;
  min-height: 100vh;
}

.contact-page::before {
  opacity: 0.2;
}

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

/* Ensure elements without data-lang are always visible */
.contact-page p:not([data-lang]) {
  display: block !important;
}

.contact-page li:not([data-lang]) {
  display: list-item !important;
}

.contact-page strong:not([data-lang]) {
  display: inline !important;
}

/* Make contact page animations visible by default */
.contact-page .slide-in-left,
.contact-page .slide-in-up,
.contact-page .fade-in {
  opacity: 1 !important;
  transform: none !important;
}

.contact-hero {
  min-height: 70vh;
  padding: 8rem 8vw 4rem;
  background:
    linear-gradient(120deg, rgba(3, 3, 6, 0.95), rgba(5, 8, 15, 0.95)),
    url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.contact-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 0 0 1rem;
  color: #fff;
}

.contact-hero-content p {
  color: var(--muted);
  max-width: 700px;
  line-height: 1.6;
}

.contact-hero-content .eyebrow {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.contact-main {
  padding: 4rem 8vw 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  z-index: 1;
  background: rgba(4, 5, 7, 0.95);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.info-card {
  border: 2px solid rgba(0, 150, 255, 0.2);
  padding: 2rem;
  background: rgba(14, 17, 24, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 150, 255, 0.8), rgba(255, 107, 53, 0.8));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  border-color: rgba(0, 150, 255, 0.5);
  background: rgba(14, 17, 24, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 150, 255, 0.2);
}

.info-card h2 {
  margin-top: 0;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.info-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0.5rem 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-list li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.contact-list li a {
  color: #7fc8ff;
  text-decoration: none;
}

.contact-form-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.form-content {
  border: 1px solid var(--border);
  padding: 2rem;
  background: rgba(14, 17, 24, 0.85);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-content h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.form-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: rgba(5, 5, 8, 0.9);
  border: 2px solid rgba(0, 150, 255, 0.2);
  padding: 1rem 1.25rem;
  color: #fff;
  font-family: inherit;
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 150, 255, 0.8);
  background: rgba(5, 5, 8, 0.95);
  box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.1), 0 4px 15px rgba(0, 150, 255, 0.2);
  transform: translateY(-1px);
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.map-frame {
  border: 1px solid var(--border);
  min-height: 420px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
}

.map-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .contact-main {
    padding: 3rem 6vw;
  }

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

  .form-actions {
    flex-direction: column;
  }

  .map-frame {
    min-height: 280px;
  }
}
