/* ======== About Page Styles ======== */

/* ====== Enhanced Hero Section ====== */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #007f80 100%);
  min-height: 500px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 87px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-branding {
  margin-bottom: 2rem;
}

.hero-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.brand-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007f80, #fff);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  /* display: flex;
  flex-direction: column; */
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #007f80;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  min-width: 2.5rem;
  text-align: center;
  display: inline-block;
}

.stat-plus,
.stat-percent,
.stat-slash {
  font-size: 2rem;
  font-weight: 700;
  color: #007f80;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-plus,
.stat-percent,
.stat-slash {
  font-size: 2rem;
  font-weight: 700;
  color: #007f80;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====== Values Section ====== */
.values-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.value-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  background: linear-gradient(135deg, #007f80, #005f60);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 127, 128, 0.3);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* ====== Story Section ====== */
.story-section {
  background: white;
  padding: 4rem 0;
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
}

.story-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #007f80;
  font-weight: 500;
}

.trust-item i {
  font-size: 1.2rem;
  color: #007f80;
}

.story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.experience-badge {
  background: linear-gradient(135deg, #007f80, #005f60);
  color: white;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 127, 128, 0.3);
  position: relative;
}

.experience-badge::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(0, 127, 128, 0.2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-content .years {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  min-width: 3.5rem;
  text-align: center;
  display: inline-block;
}

.years-plus {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.badge-content .text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 0.5rem;
}

/* ====== Specialized Services Section ====== */
.specialized-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-category {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.service-category h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
}

.service-category p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ====== Environmental Section ====== */
.eco-section {
  background: white;
  padding: 4rem 0;
}

.eco-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.eco-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
}

.eco-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.eco-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #007f80;
  font-weight: 500;
}

.benefit-item i {
  font-size: 1.2rem;
  color: #007f80;
}

.eco-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eco-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(40, 167, 69, 0.3);
}

.eco-badge i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.eco-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}

/* ====== CTA Section ====== */
.about-cta {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #007f80 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: white;
  color: #007f80;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ====== Responsive Design ====== */
@media (max-width: 1024px) {
  .story-content,
  .eco-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 400px;
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .stat-item {
    flex-direction: row;
    gap: 0.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .story-text h2,
  .eco-text h2 {
    font-size: 2rem;
  }
  
  .values-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-logo {
    height: 60px;
  }
  
  .experience-badge,
  .eco-badge {
    width: 150px;
    height: 150px;
  }
  
  .badge-content .years {
    font-size: 2.5rem;
  }
  
  .eco-badge i {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .story-text h2,
  .eco-text h2 {
    font-size: 1.8rem;
  }
  
  .trust-indicators,
  .eco-benefits {
    gap: 0.75rem;
  }
  
  .trust-item,
  .benefit-item {
    font-size: 0.9rem;
  }
}
