/* ===== Variables ===== */
:root {
  --primary: #2B7A78;
  --primary-light: #3AAFA9;
  --primary-lightest: #DEF2F1;
  --white: #FEFFFF;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --gray-dark: #4B5563;
  --dark: #17252A;
  --yellow: #F59E0B;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* ===== Base Styles ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--primary-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--primary-light);
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title {
  font-size: 2.25rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== Hero Section ===== */
.about-hero-section {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background: url('../images/about-hero.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== Info Cards Section ===== */
.about-info-section {
  padding: 6rem 0;
  background-color: var(--primary-lightest);
}

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

.info-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: var(--primary-lightest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 30px;
  height: 30px;
}

.info-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--gray-dark);
  line-height: 1.7;
}

.card-icon svg {
  width: 3rem;
  height: 3rem;
  stroke: var(--primary);
  transition: transform 0.3s ease;
}

.card-icon:hover svg {
  transform: scale(1.1);
  stroke: var(--primary-light);
}

/* ========================================
   🎯 OBJECTIVES SECTION (Updated Structure)
=========================================== */

.objectives-section {
  padding: 6rem 1.5rem;
  background-color: var(--white);
}

.objectives-header {
  text-align: center;
  margin-bottom: 3rem;
}

.objectives-subtitle {
  color: var(--primary-light);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.objectives-header h2 {
  font-size: 2.25rem;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.3;
}

.objectives-header .highlight {
  color: var(--primary);
}

/* === Grid Layout for Objectives === */
.objectives-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

/* === Individual Objective Card === */
.objective {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow, 0 6px 20px rgba(0, 0, 0, 0.05));
  border-top: 4px solid var(--primary-light);
  transition: all 0.3s ease;
}

.objective:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top-color: var(--primary);
}

.objective-green {
  border-top-color: var(--primary);
}

/* === Header inside each card === */
.objective-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.objective-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.objective-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

/* === Description Text === */
.objective p {
  font-size: 1rem;
  color: var(--gray-dark, #555);
  line-height: 1.7;
  margin-top: 1rem;
}

/* === Optional Image Section === */
.objectives-image {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 200px;
  align-items: center;
}

.objectives-image img {
  width: 120px;   /* Was 180px */
  height: 160px;  /* Was 240px */
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}


/* ===== Values Section ===== */
.about-values-section {
  padding: 6rem 0;
  background: var(--primary-lightest);
}

.about-highlights {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.about-highlights li {
  background: var(--white);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.about-highlights li:hover {
  transform: translateX(10px);
}

.highlight-icon {
  font-size: 1.5rem;
  margin-right: 1.5rem;
  min-width: 50px;
  text-align: center;
}

.highlight-content h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.highlight-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Team Section ===== */
.about-team-section {
  padding: 6rem 0;
  background: var(--white);
}

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

.team-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
}

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

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

.team-info h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: block;
}

.bio {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-lightest);
  color: var(--primary);
  border-radius: 50%;
  margin: 0 0.25rem;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.team-social svg {
  width: 16px;
  height: 16px;
}

/* ===== Animations ===== */
[data-aos] {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
  opacity: 0;
}

[data-aos="fade-left"] {
  transform: translateX(30px);
  opacity: 0;
}

[data-aos].aos-animate {
  transform: translate(0);
  opacity: 1;
}

/* ===== Responsive Styles ===== */
@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .objectives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}