/* =====================================================
   PROGRAMMES PAGE STYLES - IMPROVED
   Uses AHDA Root Variables – fully responsive
===================================================== */

.ahda-programmes {
  background: var(--ahda-bg);
  color: var(--primary-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

/* =====================================================
  HERO SECTION WITH ENHANCED EFFECTS
===================================================== */
.programs-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--ahda-white);
  margin-top: -100px;
  padding: 5.5rem 0 4rem;
  padding-top: 140px;
  background: linear-gradient(135deg, var(--ahda-teal) 0%, var(--ahda-green) 70%, var(--ahda-orange) 120%);
}

/* Animated wave overlay */
.programs-hero .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  animation: wave 8s linear infinite;
  z-index: 2;
  opacity: 0.25;
  pointer-events: none;
}

.programs-hero .wave2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23F57B2C" fill-opacity="0.15" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,208C672,213,768,203,864,186.7C960,171,1056,149,1152,149.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  animation: waveReverse 10s linear infinite;
  z-index: 2;
  opacity: 0.2;
  pointer-events: none;
}

@keyframes wave {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-25px) translateY(5px); }
  100% { transform: translateX(0) translateY(0); }
}

@keyframes waveReverse {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(25px) translateY(-5px); }
  100% { transform: translateX(0) translateY(0); }
}

/* Diamond pattern overlay */
.programs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 8px);
  z-index: 1;
  pointer-events: none;
}

/* Background slides */
.programs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.programs-hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 2s ease;
}

.programs-hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay - Updated for better depth */
.programs-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 20% 30%, rgba(245,123,44,.25), transparent 60%),
              linear-gradient(135deg, rgba(11,79,102,.85), rgba(20,119,109,.85));
  pointer-events: none;
}

/* Pattern layer */
.programs-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .18;
  background-image: radial-gradient(circle at 15% 25%, rgba(255,255,255,.25), transparent 30%),
                    radial-gradient(circle at 80% 40%, rgba(255,255,255,.20), transparent 30%);
  pointer-events: none;
}

#programsHero .container {
  position: relative;
  z-index: 5;
}

.programs-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  backdrop-filter: blur(5px);
  margin-bottom: 1rem;
}

/* =====================================================
   UPDATED TITLE STYLE - GOLD GRADIENT LIKE NEWS HERO
===================================================== */
.programs-hero-title {
  font-weight: 900;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.1;
  margin-bottom: 1.2rem;

  /* Gold gradient text effect from .news-hero-title */
  background: linear-gradient(90deg, #ffffff, var(--ahda-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* Enhanced shadow for depth */
  text-shadow: 0 12px 34px rgba(0,0,0,0.45);
}

.programs-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
  color: rgba(255,255,255,0.95); /* Slightly softer white */
}

.programs-hero-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* =====================================================
   BUTTONS WITH WAVE EFFECT (No changes needed here)
===================================================== */

.btn-ahda-primary {
  background: var(--primary-accent);
  color: var(--ahda-white);
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-orange);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-ahda-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  transition: height 0.3s ease;
  z-index: -1;
}

.btn-ahda-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(245,123,44,0.5);
}

.btn-ahda-primary:hover::after {
  height: 100%;
}

.btn-ahda-outline {
  background: transparent;
  color: var(--ahda-white);
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.5);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-ahda-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  transition: height 0.3s ease;
  z-index: -1;
}

.btn-ahda-outline:hover {
  background: transparent;
  border-color: white;
  transform: translateY(-3px);
}

.btn-ahda-outline:hover::after {
  height: 100%;
}

/* Featured section outline button */
.pf-outline-dark {
  color: var(--primary-heading) !important;
  border-color: rgba(11,79,102,.3) !important;
  background: transparent !important;
}

.pf-outline-dark:hover {
  background: rgba(11,79,102,.1) !important;
  border-color: var(--ahda-teal) !important;
  color: var(--ahda-teal) !important;
}

/* =====================================================
   PROGRAMME CATEGORIES - IMPROVED WITH CENTERED HEADINGS
===================================================== */

.prog-section {
  padding: 5rem 0;
}

.prog-head {
  margin-bottom: 3rem;
  text-align: center;
  width: 100%;
}

.prog-head-center {
  text-align: center;
}

.prog-h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-heading);
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.prog-h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-accent), var(--ahda-green));
  margin: 0.8rem auto 0;
  border-radius: 4px;
}

.prog-sub {
  margin-top: 1rem;
  color: var(--secondary-text);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 3 columns on desktop, 2 on tablet, 1 on mobile */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Card wrapper for dropdown positioning */
.prog-card-wrapper {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.prog-cardlink {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.prog-card {
  background: var(--ahda-white);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(11,79,102,.06);
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.prog-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

/* Icon with WAVE EFFECT THAT SURROUNDS THE ICON (icon stays static) */
.prog-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ahda-teal), var(--ahda-green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ahda-white);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(11,79,102,0.3);
}

/* Wave ring animation that surrounds the icon */
.prog-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  background: transparent;
  border: 3px solid rgba(245,123,44,0.6);
  opacity: 0;
  animation: waveRing 2.5s ease-out infinite;
  z-index: 1;
  pointer-events: none;
}

.prog-icon::after {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 35px;
  background: transparent;
  border: 2px solid rgba(20,119,109,0.4);
  opacity: 0;
  animation: waveRing 2.5s ease-out infinite 0.8s;
  z-index: 0;
  pointer-events: none;
}

/* Second wave ring for more depth */
.prog-card-wrapper:nth-child(1) .prog-icon::before { animation-delay: 0s; }
.prog-card-wrapper:nth-child(2) .prog-icon::before { animation-delay: 0.3s; }
.prog-card-wrapper:nth-child(3) .prog-icon::before { animation-delay: 0.6s; }
.prog-card-wrapper:nth-child(4) .prog-icon::before { animation-delay: 0.9s; }
.prog-card-wrapper:nth-child(5) .prog-icon::before { animation-delay: 1.2s; }
.prog-card-wrapper:nth-child(6) .prog-icon::before { animation-delay: 1.5s; }

@keyframes waveRing {
  0% {
    opacity: 0.8;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.prog-h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-heading);
  margin: 0.3rem 0;
  letter-spacing: 0.5px;
}

.prog-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: var(--secondary-text);
  transition: 0.2s ease;
  margin-top: 0.3rem;
  font-weight: 600;
}

.prog-card:hover .prog-arrow {
  transform: translateX(5px);
  color: var(--primary-accent);
}

.prog-arrow i {
  font-size: 1rem;
}

/* ========== DROPDOWN STYLES ========== */
.prog-dropdown {
  margin-top: 12px;
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,79,102,0.1);
  overflow: hidden;
  width: 100%;
  transition: all 0.3s ease;
}

.prog-dropdown:hover {
  box-shadow: var(--shadow-md);
}

.prog-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  background: rgba(245,123,44,0.03);
  transition: 0.2s ease;
  border-bottom: 1px solid transparent;
}

.prog-dropdown.active .prog-dropdown-header {
  border-bottom-color: rgba(11,79,102,0.1);
  background: rgba(245,123,44,0.05);
}

.prog-dropdown-header:hover {
  background: rgba(245,123,44,0.08);
}

.prog-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ahda-teal);
  display: flex;
  align-items: center;
  gap: 6px;
}

.prog-count::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--ahda-orange);
  border-radius: 50%;
}

.prog-dropdown-header i {
  transition: transform 0.3s ease;
  color: var(--ahda-orange);
  font-size: 1.1rem;
}

.prog-dropdown.active .prog-dropdown-header i {
  transform: rotate(180deg);
}

.prog-dropdown-content {
  display: none;
  padding: 10px;
  background: white;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prog-dropdown.active .prog-dropdown-content {
  display: block;
}

.prog-dropdown-item {
  display: block;
  padding: 12px 16px;
  color: var(--secondary-text);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.prog-dropdown-item:hover {
  background: rgba(20,119,109,0.06);
  color: var(--ahda-teal);
  padding-left: 22px;
  border-left-color: var(--ahda-orange);
}

.prog-dropdown-item:not(:last-child) {
  margin-bottom: 4px;
}

/* =====================================================
   FEATURED PROJECTS - ENHANCED
===================================================== */

.prog-featured {
  padding: 5rem 0;
  background: linear-gradient(135deg,
    rgba(11,79,102,.04) 0%,
    rgba(255,255,255,.0) 35%,
    rgba(20,119,109,.04) 100%);
  position: relative;
  overflow: hidden;
}

.prog-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 25%, rgba(245,123,44,.08) 0%, transparent 45%),
              radial-gradient(circle at 85% 20%, rgba(172,26,44,.06) 0%, transparent 50%),
              radial-gradient(circle at 60% 85%, rgba(20,119,109,.06) 0%, transparent 55%);
  pointer-events: none;
}

.prog-featured .container {
  position: relative;
  z-index: 1;
}

.pf-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.8rem;
}

.pf-card {
  grid-column: span 4;
  background: var(--ahda-white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,79,102,.08);
  transition: all 0.3s ease;
}

.pf-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pf-card--wide {
  grid-column: span 12;
  padding: 2.5rem;
}

.pf-card--media {
  padding: 0;
  overflow: hidden;
}

.pf-top {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.pf-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ahda-teal), var(--ahda-green));
  color: var(--ahda-white);
  font-size: 1.5rem;
  flex: 0 0 auto;
}

.pf-meta {
  flex: 1;
}

.pf-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  background: rgba(245,123,44,.12);
  color: var(--ahda-orange);
  border: 1px solid rgba(245,123,44,.2);
}

.pf-title {
  margin: 0.8rem 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-heading);
}

.pf-text {
  margin: 0;
  color: var(--secondary-text);
  line-height: 1.7;
  font-size: 1rem;
}

.pf-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Video grid */
.pf-video-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.pf-video {
  background: rgba(243,250,250,.85);
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(11,79,102,.08);
  transition: 0.3s ease;
}

.pf-video:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pf-embed {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-sm);
}

.pf-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pf-caption {
  margin: 12px 2px 0;
  font-size: .9rem;
  color: var(--secondary-text);
  line-height: 1.5;
  font-weight: 500;
}

/* Media cards */
.pf-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(11,79,102,.08);
}

.pf-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pf-card--media:hover .pf-media img {
  transform: scale(1.1);
}

.pf-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.6) 90%);
}

.pf-media-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ahda-white);
  background: rgba(11,79,102,.7);
  border: 1px solid rgba(255,255,255,.3);
  font-weight: 700;
  font-size: .85rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 8px;
}

.pf-body {
  padding: 1.8rem;
}

/* Bullets */
.pf-bullets {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--secondary-text);
  line-height: 1.8;
}

.pf-bullets li {
  margin: 0.4rem 0;
}

/* =====================================================
   IMPACT SNAPSHOT - ENHANCED WITH 3x2 GRID ON MOBILE
===================================================== */

.prog-impact {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--ahda-teal), var(--ahda-green), var(--ahda-maroon));
  color: var(--ahda-white);
  position: relative;
  overflow: hidden;
}

/* Animated background pattern */
.prog-impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
  z-index: 0;
}

.prog-impact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.15;
}

.prog-impact .container {
  position: relative;
  z-index: 2;
}

.prog-impact .prog-h2 {
  color: var(--ahda-white);
}

.prog-impact .prog-h2::after {
  background: linear-gradient(90deg, var(--ahda-white), var(--ahda-orange));
}

.prog-impact .prog-sub {
  color: rgba(255,255,255,0.9);
}

.prog-stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.prog-stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.3s ease;
}

.prog-stat:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.15);
  border-color: var(--ahda-orange);
}

.prog-stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ahda-orange);
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.prog-stat-label {
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

.prog-impact-cta {
  margin-top: 4rem;
  text-align: center;
}

.prog-impact-cta .btn-ahda-primary {
  background: white;
  color: var(--ahda-teal);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.prog-impact-cta .btn-ahda-primary:hover {
  background: var(--ahda-orange);
  color: white;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* Desktop - 3 columns for categories */
@media (min-width: 1200px) {
  .prog-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }
}

/* Small desktop / large tablet - 3 columns */
@media (max-width: 1199px) and (min-width: 993px) {
  .prog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
  .prog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
  }
  
  .pf-card {
    grid-column: span 6;
  }
  
  .pf-card--wide {
    grid-column: span 12;
  }
  
  .pf-video-grid {
    grid-template-columns: 1fr;
  }
  
  .prog-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile - 2 columns for categories (maintain 2 per row) */
@media (max-width: 768px) {
  .programs-hero {
    padding-top: 120px;
    padding-bottom: 3rem;
  }
  
  .programs-hero-title {
    font-size: 2.8rem;
  }
  
  .programs-hero-subtitle {
    font-size: 1rem;
  }
  
  .programs-hero-actions .btn-ahda-primary,
  .programs-hero-actions .btn-ahda-outline {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  
  /* Categories: 2 columns on mobile */
  .prog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 500px;
  }
  
  .prog-card {
    padding: 1.5rem 1rem;
  }
  
  .prog-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  
  .prog-h3 {
    font-size: 1.1rem;
  }
  
  .pf-grid {
    gap: 1.2rem;
  }
  
  .pf-card {
    grid-column: span 12;
  }
  
  .pf-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .pf-actions {
    flex-direction: column;
  }
  
  .pf-actions .btn-ahda-primary,
  .pf-actions .btn-ahda-outline {
    width: 100%;
    justify-content: center;
  }
  
  /* Impact stats - 2x3 grid on mobile */
  .prog-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .prog-stat {
    padding: 1.2rem 1rem;
  }
  
  .prog-stat-num {
    font-size: 1.8rem;
  }
  
  .prog-stat-label {
    font-size: 0.85rem;
    margin-top: 0.4rem;
  }
  
  .prog-dropdown-header {
    padding: 12px 14px;
  }
  
  .prog-dropdown-item {
    padding: 10px 14px;
  }
}

/* Small mobile - still 2 columns but smaller */
@media (max-width: 480px) {
  .programs-hero-title {
    font-size: 2.2rem;
  }
  
  .prog-h2 {
    font-size: 2rem;
  }
  
  /* Keep 2 columns even on small mobile */
  .prog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .prog-card {
    padding: 1.2rem 0.8rem;
  }
  
  .prog-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .prog-h3 {
    font-size: 1rem;
  }
  
  .prog-arrow {
    font-size: 0.8rem;
  }
  
  .pf-video-grid {
    gap: 0.8rem;
  }
  
  .pf-video {
    padding: 0.8rem;
  }
  
  .pf-caption {
    font-size: 0.8rem;
  }
  
  .pf-media {
    height: 180px;
  }
  
  .pf-body {
    padding: 1.2rem;
  }
  
  /* Keep 2x3 for impact stats */
  .prog-stats {
    gap: 0.8rem;
  }
  
  .prog-stat {
    padding: 1rem 0.8rem;
  }
  
  .prog-stat-num {
    font-size: 1.5rem;
  }
  
  .prog-stat-label {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/* Extra small devices - still 2 columns */
@media (max-width: 360px) {
  .prog-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .prog-h3 {
    font-size: 0.9rem;
  }
  
  .prog-stat-num {
    font-size: 1.3rem;
  }
  
  .prog-stat-label {
    font-size: 0.7rem;
  }
}