/* ABOUT PAGE STYLES - All classes prefixed with 'about-' */
.about-main {
  padding-top: 70px;
  min-height: 100vh;
  background: var(--dark);
}

/* Header Section */
.about-header-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative;
  overflow: hidden;
}

.about-header-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-header-content {
  max-width: 900px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.about-header-title {
  font-size: clamp(48px, 8vw, 72px);
  margin-bottom: 30px;
  color: var(--text);
  line-height: 1.2;
}

.about-header-title span {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.about-header-title span::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255,107,53,0.2);
  z-index: -1;
}

.about-header-subtitle {
  color: var(--light);
  font-size: 20px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Story Section */
.about-story-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid-item {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: white;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.grid-item:nth-child(2) { animation-delay: 0.2s; }
.grid-item:nth-child(3) { animation-delay: 0.4s; }
.grid-item:nth-child(4) { animation-delay: 0.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-story-title {
  font-size: 42px;
  margin-bottom: 25px;
  color: var(--text);
}

.about-story-title span {
  color: var(--orange);
}

.about-story-text {
  color: var(--light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.story-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mission Section */
.about-mission-section {
  background: var(--dark2);
  padding: 80px 20px;
  border-top: 1px solid rgba(255,107,53,0.1);
  border-bottom: 1px solid rgba(255,107,53,0.1);
}

.about-mission-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-mission-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: var(--text);
}

.about-mission-title span {
  color: var(--orange);
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.mission-card {
  background: var(--dark);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 30px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(255,107,53,0.2);
}

.mission-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.mission-card-title {
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 15px;
}

.mission-card-text {
  color: var(--light);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-item {
  background: var(--dark);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--orange);
}

.value-title {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 10px;
}

.value-text {
  color: var(--light);
  font-size: 14px;
  line-height: 1.6;
}

/* Team Section */
.about-team-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-team-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--text);
}

.about-team-title span {
  color: var(--orange);
}

.about-team-subtitle {
  text-align: center;
  color: var(--light);
  font-size: 18px;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  height: 350px;
  perspective: 1500px;
  cursor: pointer;
}

.team-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
  transform: rotateY(180deg);
}

.team-card-front, .team-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 30px;
  box-sizing: border-box;
  background: var(--dark2);
  border: 1px solid rgba(255,107,53,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--orange), #ff8c5a);
  justify-content: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  color: white;
}

.team-name {
  color: var(--text);
  font-size: 20px;
  margin-bottom: 5px;
}

.team-role {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 30px;
  height: 30px;
  border: 1px solid var(--orange);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--orange);
  color: white;
}

.team-bio {
  color: white;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.team-expertise span {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 10px;
  color: white;
}

/* Timeline */
.about-timeline-section {
  background: var(--dark2);
  padding: 80px 20px;
  border-top: 1px solid rgba(255,107,53,0.1);
  border-bottom: 1px solid rgba(255,107,53,0.1);
}

.about-timeline-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: var(--text);
}

.about-timeline-title span {
  color: var(--orange);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 40px;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 40px;
}

.timeline-dot {
  position: absolute;
  right: -6px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--orange);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -6px;
}

.timeline-content {
  background: var(--dark);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 15px;
  padding: 20px;
}

.timeline-year {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.timeline-heading {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 8px;
}

.timeline-text {
  color: var(--light);
  font-size: 14px;
  line-height: 1.6;
}

/* Testimonials */
.about-testimonials-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-testimonials-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: var(--text);
}

.about-testimonials-title span {
  color: var(--orange);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 calc(50% - 20px);
  margin: 0 10px;
  background: var(--dark2);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(255,107,53,0.2);
}

.testimonial-rating {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: var(--light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.author-info h4 {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 3px;
}

.author-info p {
  color: var(--light);
  font-size: 12px;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  background: var(--dark2);
  border: 1px solid var(--orange);
  border-radius: 20px;
  color: var(--orange);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--orange);
  color: white;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--light);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 20px;
  background: var(--orange);
}

/* Partners */
.about-partners-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-partners-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--text);
}

.about-partners-title span {
  color: var(--orange);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.partner-item {
  aspect-ratio: 1;
  perspective: 1000px;
}

.partner-logo {
  width: 100%;
  height: 100%;
  background: var(--dark2);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-logo:hover {
  transform: rotateY(180deg);
  border-color: var(--orange);
  color: var(--orange);
}

/* CTA Section */
.about-cta-section {
  background: linear-gradient(135deg, var(--orange), #ff8c5a);
  padding: 80px 20px;
  text-align: center;
}

.about-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.about-cta-title {
  color: white;
  font-size: 36px;
  margin-bottom: 15px;
}

.about-cta-text {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 30px;
}

.about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.about-cta-btn {
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-cta-btn.primary {
  background: white;
  color: var(--orange);
}

.about-cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-cta-btn.secondary {
  border: 2px solid white;
  color: white;
}

.about-cta-btn.secondary:hover {
  background: white;
  color: var(--orange);
}

/* Responsive */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .about-story-container {
    grid-template-columns: 1fr;
  }
  
  .mission-cards {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-card {
    flex: 0 0 calc(100% - 20px);
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px !important;
    padding-right: 0 !important;
  }
  
  .timeline-dot {
    left: 14px !important;
    right: auto !important;
  }
}

@media (max-width: 768px) {
  .about-header-title {
    font-size: 36px;
  }
  
  .about-header-subtitle {
    font-size: 16px;
  }
  
  .about-story-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-cta-buttons {
    flex-direction: column;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .story-image-grid {
    grid-template-columns: 1fr;
  }
  
  .about-story-stats {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
}