/* About Page Specific Styles */

/* About Hero */
.about-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--olive-leaf-4);
  opacity: 0.65;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  width: 100%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumb-link {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.breadcrumb-link:hover,
.breadcrumb-link:focus {
  color: var(--golden-bronze);
}

.breadcrumb-separator {
  opacity: 0.7;
}

.breadcrumb-current {
  opacity: 0.8;
}

/* About Intro */
.about-intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.intro-content {
  padding: 20px 0;
}

.intro-chip {
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  color: var(--golden-bronze);
  border: 1px solid var(--golden-bronze);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.intro-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--olive-leaf);
  margin-bottom: 24px;
}

.intro-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--olive-leaf-2);
  margin-bottom: 20px;
}

/* Vision Section */
.vision-section {
  background: #f9f9f9;
  position: relative;
}

.vision-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60px;
  background: var(--golden-bronze);
  border-radius: 2px;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.vision-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--olive-leaf);
  margin-bottom: 24px;
}

.vision-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--olive-leaf-2);
  margin-bottom: 20px;
}

.vision-highlights {
  margin-top: 32px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--golden-bronze);
}

.highlights-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--olive-leaf);
  margin-bottom: 16px;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--olive-leaf-2);
}

.highlights-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--golden-bronze);
  font-weight: bold;
  font-size: 18px;
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-photo {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.team-info {
  padding: 24px;
  position: relative;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--olive-leaf);
  margin-bottom: 8px;
}

.team-designation {
  font-size: 14px;
  color: var(--golden-bronze);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}

.team-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--olive-leaf-2);
  margin-bottom: 16px;
}

.team-linkedin {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--olive-leaf-4);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.team-linkedin img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.team-linkedin:hover,
.team-linkedin:focus {
  background: var(--golden-bronze);
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
  background: #f9f9f9;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: var(--olive-leaf-2);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-quote::before {
  content: """;
  font-size: 3rem;
  color: var(--golden-bronze);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 600;
  color: var(--olive-leaf);
  font-size: 16px;
}

.author-role {
  font-size: 14px;
  color: var(--olive-leaf-2);
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-dot.active,
.testimonial-dot:hover {
  background: var(--golden-bronze);
}

/* Clients Section */
.clients {
  background: var(--white);
}

.clients-slider {
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
}

.client-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 150px;
}

.client-logo img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition-smooth);
}

.clients-slider:hover .client-logo img {
  filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--olive-leaf-4);
  opacity: 0.6;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* Get in Touch Form */
.get-in-touch {
  background: #f9f9f9;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .about-hero {
    height: 350px;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .intro-img {
    height: 400px;
  }
  
  .vision-content {
    padding-left: 24px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-form {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .about-hero {
    height: 300px;
  }
  
  .intro-img {
    height: 300px;
  }
  
  .vision-section::before {
    display: none;
  }
  
  .vision-content {
    padding-left: 0;
  }
  
  .vision-highlights {
    padding: 20px;
  }
  
  .team-photo {
    height: 250px;
  }
  
  .team-info {
    padding: 20px;
  }
  
  .team-linkedin {
    top: 20px;
    right: 20px;
  }
  
  .testimonial-card {
    padding: 32px 24px;
  }
  
  .testimonial-quote {
    font-size: 16px;
  }
  
  .clients-track {
    gap: 40px;
  }
  
  .client-logo {
    min-width: 120px;
  }
  
  .cta-section {
    min-height: 300px;
  }
  
  .contact-form {
    padding: 24px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
  }
  
  .testimonial-card.active {
    animation: none;
  }
}
