/* ====== About Us Styles ====== */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: url('assets/Gallery/lotus-park7.webp') center/cover no-repeat;
  margin-bottom: 40px;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-overlay h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  padding: 0 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
}

.about-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: var(--gold);
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.values-section {
  margin: 80px 0;
  text-align: center;
}

.values-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.values-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-hero {
    height: 50vh;
  }
  
  .about-section {
    flex-direction: column;
  }
  
  .about-content, .about-image {
    min-width: 100%;
  }
  
  .values-grid, .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 40vh;
  }
  
  .hero-overlay h1 {
    font-size: 2rem;
  }
  
  .hero-overlay p {
    font-size: 1rem;
  }
}