/* About Page Layout */
.about-hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.about-hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.about-hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 9, 0) 0%,
    rgba(9, 9, 9, 0) 40%,
    rgba(9, 9, 9, 0.85) 75%,
    rgba(9, 9, 9, 0.95) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.about-hero-content {
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .about-hero-content {
    padding: 0 30px;
    text-align: left;
    max-width: 900px;
  }
}

@media (min-width: 1920px) {
  .about-hero-content {
    max-width: 1200px;
    padding: 0 40px;
  }

  .about-hero-title {
    font-size: 72px;
  }

  .about-hero-desc {
    font-size: var(--text-lg);
    max-width: 800px;
  }
}

.about-hero-subtitle {
  display: block;
  font-family: var(--font-headings);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-orange);
  margin-bottom: var(--space-sm);
}

.about-hero-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.about-hero-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about-hero-desc {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .about-hero-content {
    bottom: 10%;
    padding: 0 20px;
    text-align: center;
  }

  .about-hero-title {
    font-size: clamp(28px, 5vw, 48px);
  }

  .about-hero-desc {
    font-size: var(--text-sm);
    max-width: 500px;
    margin: 0 auto;
  }

  .about-image-wrapper {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .about-hero-content {
    bottom: 8%;
    padding: 0 16px;
  }

  .about-hero-subtitle {
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  .about-hero-title {
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.15;
  }

  .about-hero-desc {
    font-size: 13px;
    line-height: 1.5;
    max-width: 100%;
  }

  .about-grid {
    gap: var(--space-md);
  }

  .about-image-wrapper {
    min-height: 220px;
  }

  .about-values-grid {
    gap: var(--space-sm);
  }
}

@media (max-width: 375px) {
  .about-hero-content {
    bottom: 6%;
    padding: 0 12px;
  }

  .about-hero-subtitle {
    font-size: 9px;
  }

  .about-hero-title {
    font-size: 22px;
  }

  .about-hero-desc {
    font-size: 12px;
  }

  .about-image-wrapper {
    min-height: 180px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow: 0 15px 30px var(--glass-shadow);
  min-height: 350px;
  background-color: var(--steel-gray-dark);
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 576px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  text-align: center;
}

.value-icon {
  font-size: var(--text-2xl);
  color: var(--accent-orange);
  margin-bottom: var(--space-sm);
}

.value-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}
