/* About Page - MetaSpatium */

.page-hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
}

.page-hero .hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.page-hero .btn {
  cursor: pointer;
  pointer-events: auto;
}

.page-hero .btn:hover {
  background: var(--color-accent1);
  color: var(--color-text);
}

.page-hero h1 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-hero .hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.page-hero .tagline {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.page-hero .tagline span {
  color: var(--color-accent1);
}

/* About sections */
.about-page section {
  padding: var(--section-padding) 0;
}

.about-page section:nth-child(even) {
  background: var(--color-bg-mid);
}

.about-page section:nth-child(odd) {
  background: var(--color-bg);
}

.about-page .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
  text-align: center;
}

.about-page .section-desc {
  text-align: center;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Company Overview */
.about-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-overview-text h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.about-overview-text p {
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-stats-row .stat-item {
  text-align: center;
}

.about-stats-row .stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-accent1);
  margin-bottom: 0.25rem;
}

.about-stats-row .stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.about-location-card {
  background: rgba(5, 10, 20, 0.6);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-accent1);
  padding: 2rem;
  transition: all var(--transition-base);
}

.about-location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 109, 170, 0.25);
  border-color: rgba(0, 109, 170, 0.4);
}

.about-location-card .map-img {
  width: 100%;
  height: 250px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
}

.about-location-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.about-location-card .info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.about-location-card .info-row i {
  color: var(--color-accent1);
  width: 20px;
  flex-shrink: 0;
}

.about-location-card .map-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-location-card .map-buttons a {
  flex: 1;
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.about-location-card .map-buttons a:first-child {
  background: #03c75a;
  border-color: #03c75a;
  color: white;
}

.about-location-card .map-buttons a:first-child:hover {
  background: #02b350;
}

.about-location-card .map-buttons a:last-child {
  background: #fee500;
  border-color: #fee500;
  color: #191919;
}

.about-location-card .map-buttons a:last-child:hover {
  background: #e6cf00;
}

/* Vision & Mission */
.about-vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-vm-card {
  background: rgba(5, 10, 20, 0.6);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-accent1);
  padding: 2rem;
  transition: all var(--transition-base);
}

.about-vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 245, 212, 0.1);
}

.about-vm-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-vm-card.vision .icon-wrap {
  background: rgba(0, 245, 212, 0.15);
  color: var(--color-accent1);
}

.about-vm-card.mission .icon-wrap {
  background: rgba(123, 47, 255, 0.15);
  color: var(--color-accent2);
}

.about-vm-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.about-vm-card h4 {
  font-size: 1rem;
  color: var(--color-accent1);
  margin-bottom: 1rem;
}

.about-vm-card.mission h4 {
  color: var(--color-accent2);
}

.about-vm-card p {
  color: var(--color-muted);
  line-height: 1.7;
}

/* Core Values */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-value-card {
  background: rgba(5, 10, 20, 0.6);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-accent1);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 245, 212, 0.1);
}

.about-value-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-accent1);
}

.about-value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.about-value-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Timeline */
.about-timeline {
  max-width: 700px;
  margin: 0 auto;
}

.about-timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.about-timeline-item::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: -2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent1), var(--color-accent2));
  opacity: 0.5;
}

.about-timeline-item:last-child::before {
  display: none;
}

.about-timeline-year {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent1);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.about-timeline-content {
  flex: 1;
  background: rgba(5, 10, 20, 0.6);
  border: 1px solid var(--color-border);
  padding: 1.25rem;
}

.about-timeline-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.about-timeline-content p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Leadership */
.about-leadership {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.about-ceo-card {
  background: rgba(5, 10, 20, 0.6);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-accent1);
  padding: 2rem;
  text-align: center;
}

.about-ceo-card .ceo-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(0, 245, 212, 0.2);
  margin-bottom: 1rem;
}

.about-ceo-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.about-ceo-card .role {
  color: var(--color-accent1);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-ceo-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.about-message-card {
  background: rgba(13, 27, 42, 0.8);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-accent2);
  padding: 3rem;
}

.about-message-card h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.about-message-card .message-body {
  max-width: 640px;
  margin: 0 auto;
}

.about-message-card .message-body p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  text-align: left;
  word-break: keep-all;
  letter-spacing: -0.01em;
}

.about-message-card .message-intro {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-message-card .message-close {
  font-weight: 600;
  margin-bottom: 2rem;
}

.about-message-card .signature {
  text-align: right;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.about-message-card .signature p {
  color: var(--color-muted);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.about-message-card .signature .name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent1);
}

/* CTA */
.about-cta {
  text-align: center;
  padding: 4rem 2rem;
}

.about-cta h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.about-cta p {
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .btn {
  margin: 0 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-overview {
    grid-template-columns: 1fr;
  }
  
  .about-vm-grid {
    grid-template-columns: 1fr;
  }
  
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-leadership {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 6rem 1.5rem 3rem;
  }
  
  .about-stats-row {
    grid-template-columns: 1fr;
  }
  
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .about-timeline-item::before {
    left: 23px;
    top: 48px;
  }
}
