/* ================================================= */
/*  about.css – About Page Only (2025 Luxury)        */
/*  No shared styles – header/footer live in main.css */
/* ================================================= */

.about-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.15);
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg,
    rgba(0, 10, 40, 0.94) 0%,
    rgba(0, 238, 255, 0.14) 60%,
    rgba(0, 255, 136, 0.08) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.reveal-text {
  font-size: clamp(3.5rem, 9vw, 11rem);
  line-height: 0.92;
  font-weight: 700;
  overflow: hidden;
}

.reveal-text span {
  display: block;
  transform: translateY(100%);
}

.gradient-text {
  background: linear-gradient(90deg, #00eeff, #00ffcc, #88ffaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: clamp(1.2rem, 3.5vw, 1.9rem);
  margin-top: 32px;
  opacity: 0.92;
  font-weight: 300;
  max-width: 720px;
}

/* Story Section */
.story-section {
  padding: 140px 0 160px;
  background: #0f0f0f;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.story-text h2 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  margin-bottom: 40px;
  background: linear-gradient(90deg, #00eeff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-text p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 28px;
  opacity: 0.92;
  line-height: 1.7;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(30px, 5vw, 50px);
  margin-top: 60px;
}

.stat h3 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  background: linear-gradient(90deg, #00eeff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat p {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 8px;
}

.story-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  object-fit: cover;
}

/* Values Section */
.values-section {
  padding: 160px 0;
  background: #0a0a0a;
}

.section-title-center {
  text-align: center;
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 120px;
  background: linear-gradient(90deg, #00eeff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.value-card {
  text-align: center;
  padding: 60px 30px;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,238,255,0.15);
  border-radius: 32px;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.value-card:hover {
  transform: translateY(-24px);
  border-color: #00eeff;
  box-shadow: 0 50px 100px rgba(0,238,255,0.22);
}

.value-card i {
  font-size: 4.5rem;
  margin-bottom: 32px;
  background: linear-gradient(45deg, #00eeff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Team Teaser */
.team-teaser {
  padding: 180px 0;
  text-align: center;
  background: linear-gradient(to bottom, #0a0a0a, #000);
}

.team-teaser h2 {
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 24px;
}

.team-teaser p {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  max-width: 800px;
  margin: 0 auto 60px;
  opacity: 0.9;
}

.btn-glow.large {
  padding: 24px 68px;
  font-size: 1.3rem;
  box-shadow: 0 0 80px rgba(0,238,255,0.7);
}

/* Mobile */
@media (max-width: 992px) {
  .story-grid { grid-template-columns: 1fr; text-align: center; }
  .stats { justify-content: center; }
}
@media (max-width: 768px) {
  .story-section, .values-section, .team-teaser { padding: 120px 0; }
}
@media (max-width: 480px) {
  .about-hero { min-height: 640px; }
  .story-section, .values-section, .team-teaser { padding: 100px 0; }
}
