/* ── Color System ── */
:root {
  --c-primary: #1a6b4a;
  --c-primary-light: #e8f5ee;
  --c-primary-dark: #115237;
  --c-accent: #e8913a;
  --c-accent-light: #fef3e8;
  --c-accent-dark: #c97a2e;
  --c-neutral-900: #1a1a2e;
  --c-neutral-800: #2d2d44;
  --c-neutral-700: #4a4a5a;
  --c-neutral-600: #6b6b7b;
  --c-neutral-500: #8a8a9a;
  --c-neutral-400: #a8a8b8;
  --c-neutral-300: #d0d0da;
  --c-neutral-200: #e8e8ee;
  --c-neutral-100: #f4f4f8;
  --c-white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.12);
}


/* ── Base ── */
.about-page {
  font-family: var(--font-body);
  color: var(--c-neutral-800);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--c-white);
}

.about-page h1,
.about-page h2,
.about-page h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

.py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
}

/* ── Navbar ── */
.about-page .navbar {
  padding: 0.75rem 0;
  transition: box-shadow 0.3s ease;
}

.brand-icon {
  font-size: 1.6rem;
  margin-right: 0.5rem;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--c-neutral-900);
  letter-spacing: -0.02em;
}

.about-page .nav-link {
  font-weight: 500;
  color: var(--c-neutral-700);
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.about-page .nav-link:hover {
  color: var(--c-primary);
  background: var(--c-primary-light);
}

.about-page .nav-link.active {
  color: var(--c-primary);
}

/* ── Hero ── */
.hero-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  /* background:
    linear-gradient(135deg, #0f3d2a 0%, #1a6b4a 40%, #2a8c64 70%, #3da87a 100%); */
  padding: 0 0 5rem;
  overflow: hidden;

  background: linear-gradient(90deg, #F7B500 0%, #F7941D 40%, #EA7C2E 70%, #C65D26 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(232, 145, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.hero-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--c-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.hero-snap-line {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #ffffffff;
  font-weight: 600;
  letter-spacing: 0.15em;
}

/* ── Section Labels & Headings ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 2px;
  background: #faa410;
  border-radius: 2px;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-neutral-900);
  margin-bottom: 1.25rem;
  color: #faa410;
}

.section-body {
  font-size: 1.05rem;
  color: var(--c-neutral-700);
  line-height: 1.75;
  max-width: 540px;
}

/* ── Who Section ── */
.who-section {
  background: var(--c-white);
}

.who-image-wrapper {
  position: relative;
  /* padding: 0 0 2rem 2rem; */
}

.who-image {
  position: relative;
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 400px;
  box-shadow: var(--shadow-md);
}

.who-image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 70%;
  border: 2px solid #faa410;
  border-radius: var(--radius-lg);
  z-index: 0;
}

.who-content {
  padding-left: 1rem;
}

@media (min-width: 992px) {
  .who-content {
    padding-left: 2rem;
  }
}

/* ── What Section ── */
.what-section {
  background: var(--c-neutral-100);
}

.what-image-wrapper {
  position: relative;
  /* padding: 2rem 2rem 0 0; */
}

.what-image {
  position: relative;
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 420px;
  box-shadow: var(--shadow-md);
}

.what-image-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 70%;
  border: 2px solid #faa410;
  border-radius: var(--radius-lg);
  z-index: 0;
}

.category-pills .pill {
  display: inline-block;
  background: var(--c-white);
  color: var(--c-primary-dark);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--c-neutral-300);
  transition: all 0.2s ease;
}

.category-pills .pill:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

/* ── Pillars Section ── */
.pillars-section {
  background: var(--c-white);
}

.pillar-card {
  background: var(--c-white);
  border: 1px solid #e98443;
  border-radius: var(--radius-lg);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #e98443;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pillar-card:hover::after {
  transform: scaleX(1);
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-primary-light);
  color: var(--c-primary);
  margin: 0 auto;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  /* background: var(--c-primary); */
  /* background: linear-gradient(135deg, #FFD54A 0%, #FFB300 30%, #F28C28 70%, #D46A1F 100%) !important; */
  color: var(--c-white);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-neutral-900);
  margin-bottom: 0.75rem;
}

.pillar-body {
  font-size: 0.98rem;
  color: var(--c-neutral-600);
  line-height: 1.65;
  margin: 0;
}

/* ── Mission Section ── */
.mission-section {
  /* background:
    linear-gradient(135deg, #0f3d2a 0%, #1a6b4a 60%, #238553 100%); */
  background: linear-gradient(135deg, #1E1E1E 0%, #2C2C2C 50%, #3A3A3A 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.mission-section .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.mission-section .section-label::before {
  background: var(--c-accent);
}

.mission-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.3;
}

.mission-divider {
  width: 60px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 3px;
  margin: 0 auto;
}

.mission-snap-line {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--c-accent);
  font-weight: 600;
  letter-spacing: 0.18em;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--c-neutral-100);
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-neutral-900);
}

.cta-body {
  font-size: 1.05rem;
  color: var(--c-neutral-600);
}

.cta-btn {
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(26, 107, 74, 0.25);
}

.cta-btn:hover {
  background: var(--c-primary-dark);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 107, 74, 0.35);
}

.cta-btn:active {
  transform: translateY(0);
}

/* ── Footer ── */
.site-footer {
  background: var(--c-neutral-900);
  color: var(--c-neutral-400);
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-white);
  font-size: 1.1rem;
}

.footer-copy {
  font-size: 0.85rem;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-tagline {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-snap-line {
  animation: fadeInUp 0.6s ease 0.3s both;
}

/* ── Responsive tweaks ── */
@media (max-width: 767.98px) {

  .who-image,
  .what-image {
    height: 280px;
  }

  .who-image-wrapper {
    padding: 0 0 1.5rem 1.5rem;
    margin-bottom: 1rem;
  }

  .what-image-wrapper {
    padding: 1.5rem 1.5rem 0 0;
    margin-bottom: 1rem;
  }

  .who-content,
  .what-content {
    padding-left: 0;
  }

  .hero-section {
    min-height: 400px;
    padding: 4rem 0 3.5rem;
  }

  .hero-shape {
    height: 50px;
  }
}