/* ================================
   ABOUT PAGE - DARK LUXURY THEME
================================ */

.about-page {
  background: var(--dark-bg);
  min-height: 100vh;
  position: relative;
}

/* Animated Background */
.about-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Hero Section */
.about-hero {
  padding: 12rem 0 6rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--dark-bg) 0%, transparent 100%);
}

/* About Content */
.about-content {
  padding: 4rem 0 8rem;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--text-white);
  margin-bottom: 2rem;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-image .image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image .image-placeholder > video,
.about-image .image-placeholder > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-image .image-placeholder span {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.about-image .image-placeholder p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ================================
   MISSION & VISION - DARK THEME
================================ */
.mission-vision-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--dark-bg-light) 0%, var(--dark-bg) 100%);
  position: relative;
  z-index: 1;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-card,
.vision-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.7s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
  left: 100%;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.mission-card h3,
.vision-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ================================
   WHY CHOOSE US - DARK THEME
================================ */
.why-choose-section {
  padding: 8rem 0;
  background: var(--dark-bg);
  position: relative;
  z-index: 1;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-choose-item {
  display: flex;
  gap: 2.5rem;
  padding: 2.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.why-choose-item:hover {
  transform: translateX(10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-choose-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 80px;
}

.why-choose-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 0.8rem;
}

.why-choose-text p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================
   PROCESS SECTION - DARK THEME
================================ */
.process-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--dark-bg-light) 0%, var(--dark-bg) 100%);
  position: relative;
  z-index: 1;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-gold), rgba(212, 175, 55, 0.2));
}

.process-step {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  position: relative;
}

.process-step-number {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-bg);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.process-step-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  flex: 1;
  transition: all 0.4s ease;
}

.process-step:hover .process-step-content {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(10px);
}

.process-step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.process-step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 10rem 0 4rem;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .why-choose-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .why-choose-number {
    font-size: 2.5rem;
    min-width: auto;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.2rem;
  }
}
