/* ========================================
   About Pages - Dark Modern Theme
   ======================================== */

/* Hero Section */
.about-hero {
  position: relative;
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, #0a0612 0%, #1a0a2e 50%, #0d1033 100%);
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.about-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: aboutOrbFloat 20s ease-in-out infinite;
}

@keyframes aboutOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.about-hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.35) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.about-hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: -7s;
}

.about-hero-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(167,139,250,0.2) 0%, transparent 70%);
  top: 40%;
  right: 10%;
  animation-delay: -14s;
}

.about-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  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;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Navigation Tabs */
.about-nav {
  background: linear-gradient(180deg, #0d1033 0%, #0a0a1a 100%);
  border-bottom: 1px solid rgba(139,92,246,0.15);
  position: sticky;
  top: 70px;
  z-index: 100;
}

.about-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
}

.about-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.about-nav-link:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(139,92,246,0.05);
}

.about-nav-link.active {
  color: #a78bfa;
  border-bottom-color: #8b5cf6;
}

.about-nav-link svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

/* Main Content */
.about-content {
  background: linear-gradient(180deg, #0a0a1a 0%, #0d0d1a 100%);
  min-height: 60vh;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* About Us Section */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-intro-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.about-intro-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.about-intro-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(139,92,246,0.3);
  border-radius: 20px;
  z-index: -1;
}

/* Values Section */
.about-values {
  margin-bottom: 80px;
}

.about-values-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-value-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-value-card:hover {
  background: rgba(139,92,246,0.08);
  border-color: rgba(139,92,246,0.2);
  transform: translateY(-4px);
}

.about-value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2) 0%, rgba(99,102,241,0.2) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-value-icon svg {
  width: 28px;
  height: 28px;
  color: #a78bfa;
}

.about-value-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.about-value-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Vision Section */
.about-vision {
  background: rgba(139,92,246,0.05);
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
}

.about-vision h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.about-vision p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.about-vision .en {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: 16px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(139,92,246,0.08);
  border-color: rgba(139,92,246,0.2);
  transform: translateY(-4px);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 1.05rem;
  color: #a78bfa;
  font-weight: 500;
}

.contact-card a {
  color: #a78bfa;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: #c4b5fd;
}

/* HR / Jobs Section */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.job-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}

.job-card:hover {
  background: rgba(139,92,246,0.05);
  border-color: rgba(139,92,246,0.15);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.job-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.job-meta {
  display: flex;
  gap: 16px;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(139,92,246,0.15);
  border-radius: 20px;
  font-size: 0.9rem;
  color: #a78bfa;
}

.job-tag svg {
  width: 16px;
  height: 16px;
}

.job-section {
  margin-bottom: 20px;
}

.job-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.job-section p,
.job-section li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.job-section ul {
  list-style: none;
  padding: 0;
}

.job-section li {
  padding-left: 20px;
  position: relative;
}

.job-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #8b5cf6;
  border-radius: 50%;
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.job-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,92,246,0.4);
}

/* Terms Section */
.terms-content {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 50px;
}

.terms-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

.terms-section {
  margin-bottom: 32px;
}

.terms-section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-section h3::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border-radius: 2px;
}

.terms-section p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 10px;
  padding-left: 14px;
}

.terms-footer {
  text-align: right;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.terms-footer p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-intro-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 20px 60px;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-nav-inner {
    justify-content: flex-start;
    padding: 0 10px;
  }

  .about-nav-link {
    padding: 14px 16px;
    font-size: 14px;
  }

  .about-section {
    padding: 50px 20px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-vision {
    padding: 40px 24px;
  }

  .job-card {
    padding: 30px 24px;
  }

  .job-header {
    flex-direction: column;
  }

  .terms-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.8rem;
  }

  .about-nav-link span {
    display: none;
  }

  .about-nav-link svg {
    width: 22px;
    height: 22px;
  }
}
