/* =====================
   ABOUT PAGE STYLES
   ===================== */

/* Hero Section */
.about-hero {
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: floatParticle 15s linear infinite;
  opacity: 0.6;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-box {
  text-align: center;
  background: rgba(0, 255, 221, 0.1);
  border: 1px solid var(--accent-cyan);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  backdrop-filter: blur(10px);
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hero-image {
  position: relative;
  z-index: 2;
  text-align: center;
}

.image-frame {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

/* =====================
   SECTIONS LAYOUT
   ===================== */

.mission-section,
.team-section,
.values-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.contact-section {
  padding: 5rem 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* =====================
   MISSION CARDS
   ===================== */

.mission-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
}

.mission-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-black);
}

.mission-card h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* =====================
   TEAM CARDS
   ===================== */

.team-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--primary-black);
}

.team-info h4 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  color: var(--medium-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-cyan);
  color: var(--primary-black);
  transform: scale(1.1);
}

/* =====================
   CONTACT CARDS
   ===================== */

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--primary-black);
}

.contact-card h4 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.contact-detail {
  font-size: 1.1rem;
  color: var(--dark-gray);
  font-weight: 500;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.contact-detail:hover {
  color: var(--accent-cyan);
}

.contact-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--accent-cyan-dark);
  text-decoration: underline;
}

/* =====================
   VALUES CARDS
   ===================== */

.value-card {
  background: white;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-black);
}

.value-card h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--medium-gray);
  line-height: 1.5;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* =====================
   CTA SECTION
   ===================== */

.cta-section {
  background: var(--gradient-primary);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%2300ffdd" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%2300ffdd" opacity="0.2"/><circle cx="60" cy="80" r="1" fill="%2300ffdd" opacity="0.4"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
}

.cta-buttons .btn-primary {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--primary-black);
}

.cta-buttons .btn-primary:hover {
  background: var(--accent-cyan-light);
  border-color: var(--accent-cyan-light);
  transform: translateY(-3px);
}

.cta-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-3px);
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-box {
    padding: 1rem 0.5rem;
    min-width: 100px;
  }

  .section-title {
    font-size: 2rem;
  }

  .mission-card,
  .contact-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 80vh;
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .stat-box {
    width: 100%;
    max-width: 200px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .mission-section,
  .team-section,
  .contact-section,
  .values-section {
    padding: 3rem 0;
  }

  .mission-card,
  .team-card,
  .contact-card,
  .value-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .image-frame {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .mission-icon,
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .team-avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .mission-card h4,
  .contact-card h4 {
    font-size: 1.3rem;
  }

  .team-info h4 {
    font-size: 1.2rem;
  }

  .value-card h5 {
    font-size: 1.1rem;
  }
}

/* =====================
   ANIMATION HELPERS
   ===================== */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   ACCESSIBILITY
   ===================== */

@media (prefers-reduced-motion: reduce) {
  .particle,
  .hero-background::before,
  .cta-section::before {
    animation: none;
  }

  .mission-card:hover,
  .team-card:hover,
  .contact-card:hover,
  .value-card:hover,
  .cta-buttons .btn:hover {
    transform: none;
  }
}

/* =====================
   PRINT STYLES
   ===================== */

@media print {
  .hero-particles,
  .hero-background,
  .cta-section::before {
    display: none;
  }

  .about-hero,
  .cta-section {
    background: white !important;
    color: black !important;
  }

  .mission-card,
  .team-card,
  .contact-card,
  .value-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .cta-buttons {
    display: none;
  }
}
