/*
=====================================
AQUIBON WEBSITE - ABOUT PAGE CSS
=====================================
Project: Aquibon Water & Solar Solutions
Developer: Blaxium Hub
Author: Brian Guvava
Version: 1.0.0
=====================================
*/

/* ===== ABOUT HERO SECTION ===== */
.about-hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.85) 0%,
    rgba(33, 33, 33, 0.75) 50%,
    rgba(25, 118, 210, 0.85) 100%
  );
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
}

.about-hero-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: var(--font-regular);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.about-hero-scroll {
  margin-top: 3rem;
}

.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  color: var(--white);
  transform: translateY(-5px);
}

.scroll-indicator i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.scroll-indicator p {
  font-size: 0.9rem;
  margin: 0;
  font-weight: var(--font-medium);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ===== COMPANY OVERVIEW SECTION ===== */
.company-overview-section {
  padding: 5rem 0;
  background: var(--white);
}

.company-overview-content {
  padding-right: 2rem;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: var(--primary-black);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.lead {
  font-size: 1.2rem;
  font-weight: var(--font-medium);
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.company-image {
  padding-left: 2rem;
}

.company-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.company-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Stats Overview */
.stats-overview {
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 0;
  background: var(--light-gray);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-item:hover {
  background: var(--white);
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.15);
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: var(--font-medium);
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.mission-card,
.vision-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-green);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
}

.mission-card h3,
.vision-card h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: var(--font-semibold);
  color: var(--primary-black);
  margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 0;
}

/* ===== CORE VALUES SECTION ===== */
.core-values-section {
  padding: 5rem 0;
  background: var(--white);
}

.section-subtitle {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid var(--light-gray);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-green);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: 50%;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.1);
}

.value-card h4 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: var(--font-semibold);
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.value-card p {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

/* ===== TIMELINE SECTION ===== */
.history-timeline-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-green), var(--secondary-blue));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
  padding-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
  padding-left: 3rem;
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-family: var(--font-primary);
  font-weight: var(--font-bold);
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
  z-index: 2;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-green);
}

.timeline-content h4 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: var(--font-semibold);
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.timeline-content p {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

/* ===== LEADERSHIP TEAM SECTION ===== */
.leadership-team-section {
  padding: 5rem 0;
  background: var(--white);
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(46, 125, 50, 0.9));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 1rem;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.1);
}

.team-content {
  padding: 2rem;
  text-align: center;
}

.team-content h4 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: var(--font-semibold);
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.team-position {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: var(--font-medium);
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.team-quote {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
  font-style: italic;
  margin: 0;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.certification-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
}

.certification-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-green);
}

.cert-icon {
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
}

.cert-icon i {
  font-size: 3rem;
}

.certification-card h5 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: var(--font-semibold);
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.certification-card p {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
  padding: 5rem 0;
  background: var(--white);
}

.community-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.highlight-item:hover {
  background: var(--white);
  border-color: var(--primary-green);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.15);
}

.highlight-item i {
  font-size: 2rem;
  margin-right: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.highlight-item h5 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: var(--font-semibold);
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.highlight-item p {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

.community-image {
  padding-left: 2rem;
}

.community-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.community-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* ===== CALL TO ACTION SECTION ===== */
.about-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
  color: var(--white);
}

.about-cta-section h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  margin-top: 2rem;
}

.cta-buttons .btn {
  margin: 0.5rem;
  padding: 1rem 2rem;
  font-weight: var(--font-semibold);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
  .about-hero-title {
    font-size: 2.8rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .company-overview-content,
  .company-image {
    padding: 0;
    margin-bottom: 3rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 70px;
  }
  
  .timeline-item .timeline-content {
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .timeline-year {
    left: 30px !important;
    transform: translateX(-50%) !important;
  }
  
  .community-image {
    padding-left: 0;
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .about-hero-section {
    height: 60vh;
    min-height: 400px;
  }
  
  .about-hero-title {
    font-size: 2.2rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .mission-card,
  .vision-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .value-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .team-image {
    height: 250px;
  }
  
  .certification-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
  }
  
  .highlight-item i {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .about-cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .about-hero-title {
    font-size: 1.8rem;
  }
  
  .about-hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 50px;
  }
  
  .timeline-year {
    left: 20px !important;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .timeline-content {
    padding: 1rem;
  }
}
