/* About Us Page Specific Styles */

/* About Hero */
.about-hero {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  text-align: center;
  padding-top: 10%;
}

.about-hero-content {
  max-width: 64rem;
  margin: 0 auto;
}

.about-hero-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-hero-description {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Story Section */
.story-section {
  background: #f9fafb;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .story-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.story-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.story-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.highlight-item {
  text-align: center;
}

.highlight-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.highlight-text {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.story-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(212, 175, 55, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
}

.overlay-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.overlay-content p {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.9;
}

/* Mission Vision Values */
.mvv-section {
  background: white;
}

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .mvv-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.mvv-card {
  background: #f9fafb;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.mvv-card:hover .mvv-icon {
  transform: scale(1.1);
}

.mvv-icon .icon {
  color: white;
  width: 2rem;
  height: 2rem;
}

.mvv-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.mvv-description {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Team Section */
.team-section {
  background: #f9fafb;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-member {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212, 175, 55, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #1f2937;
  color: white;
  transform: translateY(-2px);
}

.social-link .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.member-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* Certifications Section */
.certifications-section {
  background: white;
}

.certifications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.certification-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.certification-card:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.cert-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.certification-card:hover .cert-icon {
  transform: scale(1.1);
}

.cert-icon .icon {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

.cert-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.cert-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* Timeline Section */
.timeline-section {
  background: #f9fafb;
}

.timeline {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #d4af37, #f4e4bc);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 5rem;
}

@media (min-width: 768px) {
  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 2rem;
  }

  .timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
    padding-right: 0;
  }
}

.timeline-marker {
  position: absolute;
  left: 1rem;
  top: 0;
  width: 4rem;
  height: 4rem;
  background: white;
  border: 4px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

@media (min-width: 768px) {
  .timeline-marker {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item:nth-child(even) .timeline-marker {
    left: 50%;
    transform: translateX(-50%);
  }
}

.marker-inner {
  font-size: 0.875rem;
  font-weight: 700;
  color: #d4af37;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 1.5rem;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid white;
}

@media (min-width: 768px) {
  .timeline-item:nth-child(even) .timeline-content::before {
    left: auto;
    right: -10px;
    border-right: none;
    border-left: 10px solid white;
  }
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.timeline-description {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.about-cta {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta .btn-secondary {
  background: white;
  color: #d4af37;
  border: 2px solid white;
}

.about-cta .btn-secondary:hover {
  background: transparent;
  color: white;
  border-color: white;
}

/* Active Navigation Link */
.nav-link.active {
  color: #fbbf24 !important;
}

.nav-link.active::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .story-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .highlight-number {
    font-size: 2rem;
  }

  .mvv-grid {
    gap: 1.5rem;
  }

  .mvv-card {
    padding: 2rem 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline-item {
    padding-left: 4rem;
  }

  .timeline-marker {
    width: 3rem;
    height: 3rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Animation Classes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out;
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {

  .about-hero,
  .about-cta {
    background: none;
    color: black;
  }

  .mvv-card,
  .certification-card {
    background: white;
    border: 1px solid #ccc;
  }

  .timeline::before {
    background: #ccc;
  }

  .timeline-marker {
    border-color: #ccc;
  }

  .btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding-top: 8rem;
  }
}

