/* ============================================================
   ABHP PAGE — Africa's Blue Harvest Program
   Extends styles.css with page-specific styles
   Brand Colors:
     Primary: #2D3981 (navy blue)
     Secondary: #F0D28C (gold)
     Dark: #070d1e
   ============================================================ */

/* ========================================
   SECTION: ABHP Hero
   Full-bleed image with dramatic overlay
   ======================================== */
.abhp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.abhp-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.abhp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abhp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(7, 13, 30, 0.55) 0%,
    rgba(45, 57, 129, 0.75) 40%,
    rgba(7, 13, 30, 0.95) 100%
  );
}

.abhp-hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 5% 7rem;
  max-width: 850px;
}

.abhp-label-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
}

.abhp-hero-headline {
  font-size: 5rem;
  line-height: 1.0;
  color: #ffffff;
  letter-spacing: -2.5px;
  font-weight: 800;
  margin: 0 0 1.25rem;
}

.abhp-highlight {
  color: var(--secondary-color);
}

.abhp-hero-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.abhp-hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 680px;
}

/* Scroll indicator */
.abhp-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 210, 140, 0.4);
  border-radius: 50%;
  animation: bounceDown 2s ease-in-out infinite;
}

.abhp-scroll-indicator .material-symbols-outlined {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Mobile hero */
@media (max-width: 768px) {
  .abhp-hero-headline { font-size: 3.2rem; letter-spacing: -1.5px; }
  .abhp-hero-content { padding: 5rem 5% 6rem; }
  .abhp-scroll-indicator { display: none; }
}

/* ========================================
   SECTION: The Opportunity
   ======================================== */
.abhp-opportunity {
  background-color: var(--primary-color);
  padding: 6rem 5% 0;
  overflow: hidden;
}

.abhp-opportunity-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: flex-start;
  padding-bottom: 4rem;
}

.abhp-section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.5rem;
}

.abhp-section-label-light {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.5rem;
}

.abhp-opportunity-left h2 {
  font-size: 2.8rem;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1.15;
}

.abhp-opportunity-accent {
  width: 55px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  margin-top: 1.5rem;
}

.abhp-opportunity-right p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.abhp-opportunity-right strong {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Stats bar */
.abhp-stats-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: rgba(240, 210, 140, 0.06);
  border-top: 1px solid rgba(240, 210, 140, 0.15);
  padding: 2.5rem 5%;
}

.abhp-stat {
  text-align: center;
  padding: 0.5rem 1rem;
}

.abhp-stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.abhp-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  max-width: 160px;
  margin: 0 auto;
  display: block;
}

.abhp-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(240, 210, 140, 0.2);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .abhp-opportunity-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .abhp-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 5%;
  }
  .abhp-stat-divider { display: none; }
  .abhp-stat-number { font-size: 2rem; }
}

/* ========================================
   SECTION: Mission
   ======================================== */
.abhp-mission {
  background: linear-gradient(160deg, #fcfbf8 0%, #f0ece3 100%);
  padding: 6rem 5%;
}

.abhp-mission-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.abhp-mission-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 57, 129, 0.08);
  border: 1px solid rgba(45, 57, 129, 0.15);
  border-radius: 50%;
}

.abhp-mission-icon .material-symbols-outlined {
  font-size: 2rem;
  color: var(--primary-color);
}

.abhp-mission-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  background-color: rgba(45, 57, 129, 0.08);
  border: 1px solid rgba(45, 57, 129, 0.15);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.abhp-mission-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
  border-left: 4px solid var(--secondary-color);
  padding-left: 2rem;
  margin: 0;
  letter-spacing: -0.3px;
  font-style: normal;
}

@media (max-width: 768px) {
  .abhp-mission-inner { flex-direction: column; gap: 1.5rem; }
  .abhp-mission-quote { font-size: 1.3rem; }
}

/* ========================================
   SECTION: How It Works
   Dark section with flow diagram + outcomes
   ======================================== */
.abhp-how {
  background: linear-gradient(160deg, var(--primary-color) 0%, #1a2456 60%, #131b3e 100%);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.abhp-how::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240, 210, 140, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.abhp-how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.abhp-how-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.abhp-how-header h2 {
  font-size: 2.8rem;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.abhp-how-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* Flow diagram */
.abhp-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.abhp-flow-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 220px;
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
}

.abhp-flow-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 210, 140, 0.3);
  transform: translateY(-4px);
}

.abhp-flow-center {
  background: rgba(240, 210, 140, 0.08);
  border-color: rgba(240, 210, 140, 0.25);
  transform: scale(1.05);
}

.abhp-flow-center:hover {
  transform: scale(1.05) translateY(-4px);
}

.abhp-flow-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.abhp-flow-icon-main {
  background: rgba(240, 210, 140, 0.15);
}

.abhp-flow-icon .material-symbols-outlined {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
}

.abhp-flow-icon-main .material-symbols-outlined {
  color: var(--secondary-color);
}

.abhp-flow-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.abhp-flow-step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.abhp-flow-arrow {
  color: rgba(240, 210, 140, 0.5);
  flex-shrink: 0;
}

.abhp-flow-arrow .material-symbols-outlined {
  font-size: 2rem;
}

/* Outcomes */
.abhp-outcomes-label {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.abhp-outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.abhp-outcome-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.abhp-outcome-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.abhp-outcome-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(240, 210, 140, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

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

.abhp-outcome-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(240, 210, 140, 0.06);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1rem;
  transition: color 0.4s ease;
}

.abhp-outcome-card:hover .abhp-outcome-num {
  color: rgba(240, 210, 140, 0.12);
}

.abhp-outcome-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 210, 140, 0.08);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.abhp-outcome-icon .material-symbols-outlined {
  font-size: 1.4rem;
  color: var(--secondary-color);
}

.abhp-outcome-card:hover .abhp-outcome-icon {
  background: var(--secondary-color);
}

.abhp-outcome-card:hover .abhp-outcome-icon .material-symbols-outlined {
  color: var(--primary-color);
}

.abhp-outcome-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.abhp-outcome-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .abhp-outcomes { grid-template-columns: repeat(2, 1fr); }
  .abhp-how-header h2 { font-size: 2.2rem; }
  .abhp-flow { flex-direction: column; }
  .abhp-flow-arrow { transform: rotate(90deg); }
  .abhp-flow-center { transform: none; }
}

@media (max-width: 550px) {
  .abhp-outcomes { grid-template-columns: 1fr; }
}

/* ========================================
   SECTION: Priority Sectors
   Full-width image cards in a responsive grid
   ======================================== */
.abhp-sectors {
  background-color: #ffffff;
  padding: 6rem 5%;
}

.abhp-sectors-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.abhp-sectors-header h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.abhp-sectors-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.abhp-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Make the 4th and 5th cards span differently for visual interest */
.abhp-sectors-grid .abhp-sector-card:nth-child(4) {
  grid-column: 1 / 2;
}
.abhp-sectors-grid .abhp-sector-card:nth-child(5) {
  grid-column: 2 / 4;
}

.abhp-sector-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(45, 57, 129, 0.07);
  box-shadow: 0 4px 20px rgba(45, 57, 129, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.abhp-sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(45, 57, 129, 0.15);
}

.abhp-sector-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.abhp-sector-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.abhp-sector-card:hover .abhp-sector-img-wrap img {
  transform: scale(1.06);
}

.abhp-sector-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(45, 57, 129, 0.25) 100%
  );
  transition: background 0.4s ease;
}

.abhp-sector-card:hover .abhp-sector-img-overlay {
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(45, 57, 129, 0.4) 100%
  );
}

.abhp-sector-body {
  padding: 1.75rem;
  position: relative;
}

.abhp-sector-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 57, 129, 0.06);
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.abhp-sector-icon .material-symbols-outlined {
  font-size: 1.3rem;
  color: var(--primary-color);
  transition: color 0.4s ease;
}

.abhp-sector-card:hover .abhp-sector-icon {
  background: var(--primary-color);
}

.abhp-sector-card:hover .abhp-sector-icon .material-symbols-outlined {
  color: var(--secondary-color);
}

.abhp-sector-body h3 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.abhp-sector-body p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.abhp-sector-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  border: 1px solid rgba(45, 57, 129, 0.2);
  padding: 0.3rem 0.8rem;
  transition: all 0.3s ease;
}

.abhp-sector-card:hover .abhp-sector-tag {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

@media (max-width: 900px) {
  .abhp-sectors-grid {
    grid-template-columns: 1fr 1fr;
  }
  .abhp-sectors-grid .abhp-sector-card:nth-child(4),
  .abhp-sectors-grid .abhp-sector-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .abhp-sectors-grid {
    grid-template-columns: 1fr;
  }
  .abhp-sectors-header h2 { font-size: 2rem; }
}

/* ========================================
   SECTION: Blue Edge Pipeline
   Light cream / brand colors
   ======================================== */
.abhp-blueedge {
  background: linear-gradient(135deg, #fcfbf8 0%, #f0ece3 100%);
  padding: 6rem 5%;
}

.abhp-blueedge-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.abhp-blueedge-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.5rem;
}

.abhp-blueedge-left h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.abhp-blueedge-left p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.abhp-blueedge-left strong {
  color: var(--primary-color);
  font-weight: 600;
}

.abhp-blueedge-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-top: 1rem;
  transition: all 0.35s ease;
  display: inline-block;
}

.abhp-blueedge-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 57, 129, 0.25);
}

.abhp-blueedge-image-wrap {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 90% 100%, 0 100%);
  box-shadow: 0 24px 60px rgba(45, 57, 129, 0.2);
}

.abhp-blueedge-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.abhp-blueedge-image-wrap:hover img {
  transform: scale(1.04);
}

.abhp-blueedge-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #1a2456);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 3px solid var(--secondary-color);
}

.abhp-blueedge-badge .material-symbols-outlined {
  font-size: 1rem;
}

@media (max-width: 900px) {
  .abhp-blueedge-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .abhp-blueedge-left h2 { font-size: 2.2rem; }
}

/* ========================================
   SECTION: Value We Create
   Dark gradient section
   ======================================== */
.abhp-value {
  background: linear-gradient(160deg, #070d1e 0%, #131b3e 60%, var(--primary-color) 100%);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.abhp-value::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 210, 140, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.abhp-value-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.abhp-value-header {
  text-align: center;
  margin-bottom: 4rem;
}

.abhp-value-header h2 {
  font-size: 2.8rem;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 0;
}

.abhp-value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.abhp-value-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.abhp-value-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(240, 210, 140, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.abhp-value-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 210, 140, 0.08);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.abhp-value-icon .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--secondary-color);
  display: block;
  transition: transform 0.4s ease;
}

.abhp-value-item:hover .abhp-value-icon {
  background: var(--secondary-color);
}

.abhp-value-item:hover .abhp-value-icon .material-symbols-outlined {
  color: var(--primary-color);
  transform: scale(1.1);
}

.abhp-value-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1000px) {
  .abhp-value-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .abhp-value-grid { grid-template-columns: 1fr 1fr; }
  .abhp-value-header h2 { font-size: 2rem; }
}

/* ========================================
   SECTION: Strategic Partners
   ======================================== */
.abhp-partners {
  background-color: #ffffff;
  padding: 6rem 5%;
}

.abhp-partners-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.abhp-partners-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.abhp-partners-header h2 {
  font-size: 2.6rem;
  color: var(--primary-color);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.abhp-partners-header p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.65;
}

.abhp-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.abhp-partner-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(45, 57, 129, 0.08);
  background: #fff;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.abhp-partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.abhp-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 57, 129, 0.12);
  border-color: rgba(45, 57, 129, 0.15);
}

.abhp-partner-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.abhp-partner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 57, 129, 0.06);
  border-radius: 50%;
  transition: all 0.35s ease;
}

.abhp-partner-icon .material-symbols-outlined {
  font-size: 1.4rem;
  color: var(--primary-color);
  transition: color 0.35s ease;
}

.abhp-partner-card:hover .abhp-partner-icon {
  background: var(--primary-color);
}

.abhp-partner-card:hover .abhp-partner-icon .material-symbols-outlined {
  color: var(--secondary-color);
}

.abhp-partner-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.abhp-partner-info p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* 5 cards: 3+2 layout */
.abhp-partners-grid .abhp-partner-card:nth-child(4) { grid-column: 1 / 2; }
.abhp-partners-grid .abhp-partner-card:nth-child(5) { grid-column: 2 / 3; }

@media (max-width: 900px) {
  .abhp-partners-grid { grid-template-columns: 1fr 1fr; }
  .abhp-partners-grid .abhp-partner-card:nth-child(4),
  .abhp-partners-grid .abhp-partner-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 600px) {
  .abhp-partners-grid { grid-template-columns: 1fr; }
  .abhp-partners-header h2 { font-size: 2rem; }
}

/* ========================================
   SECTION: References
   Subtle footnote style
   ======================================== */
.abhp-references {
  background-color: var(--background-alt);
  padding: 3rem 5%;
}

.abhp-references-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.abhp-references-inner h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  flex-shrink: 0;
  padding-top: 0.1rem;
  margin-bottom: 0;
}

.abhp-references-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.abhp-references-inner li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #777;
  line-height: 1.5;
}

.abhp-references-inner li .material-symbols-outlined {
  font-size: 0.95rem;
  color: rgba(45, 57, 129, 0.4);
  flex-shrink: 0;
}

.abhp-references-inner strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* ========================================
   Fade-in animation for sections
   ======================================== */
.abhp-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.abhp-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* nav-active style for consistency */
nav a.nav-active {
  color: var(--secondary-color);
}
