/* ============================================================
   programs.css — Programs list page + individual program detail pages
   ============================================================ */

/* ══════════════════════════════════════
   TESTIMONIALS (program detail pages)
══════════════════════════════════════ */
.testi-card {
    padding: 2.5rem;
    background: rgba(255,255,255,0.045); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
}
.testi-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 1.1rem; letter-spacing: 2px; }
.testi-q {
    font-size: 1rem; line-height: 1.8;
    color: rgba(255,255,255,0.82); margin-bottom: 1.75rem; font-style: italic;
}
.testi-q::before {
    content: '\201C'; font-size: 3.5rem; color: var(--blue);
    line-height: 0; vertical-align: -1.3rem;
    font-style: normal; margin-right: 3px;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blue); flex-shrink: 0; }
.testi-name   { font-weight: 700; font-size: 0.93rem; }
.testi-role   { font-size: 0.78rem; color: var(--teal); }

/* ══════════════════════════════════════
   PROGRAMS LIST (programs.html)
══════════════════════════════════════ */
.programs-list { background: white; }

.prog-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    padding: 4rem 0; border-bottom: 1px solid var(--light-gray);
}
.prog-row:last-child { border-bottom: none; }
.prog-row.reverse { direction: rtl; }
.prog-row.reverse > * { direction: ltr; }

.prog-row-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.prog-row-img img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.55s ease; }
.prog-row-img:hover img { transform: scale(1.04); }

.prog-row-body .tag { margin-bottom: 1rem; }
.prog-row-body h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 0.85rem; }
.prog-row-body p  { font-size: 0.97rem; color: var(--dark-gray); line-height: 1.75; margin-bottom: 1.5rem; }

.prog-row-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.prog-row-features li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.9rem; color: var(--dark-gray);
}
.prog-row-features li::before {
    content: '✓'; width: 20px; height: 20px; border-radius: 50%;
    background: var(--blue-light); color: var(--blue);
    font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
}

.prog-row-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 900px) {
    .prog-row { grid-template-columns: 1fr; gap: 2.5rem; }
    .prog-row.reverse { direction: ltr; }
    .prog-row-img img { height: 280px; }
}

/* ══════════════════════════════════════
   PROGRAM DETAIL (individual pages)
══════════════════════════════════════ */

/* Overview */
.prog-overview { background: white; }
.prog-overview-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}
.prog-overview-body .section-sub { max-width: 100%; margin-bottom: 1.5rem; }
.prog-overview-body .section-sub + .section-sub { margin-top: 1rem; }

.prog-quick-facts {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-top: 2rem;
}
.qf-item {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 1rem; background: var(--light-gray);
    border-radius: var(--radius-sm); transition: var(--transition);
}
.qf-item:hover { background: var(--blue-light); }
.qf-icon {
    font-size: 1.3rem; width: 36px; height: 36px; flex-shrink: 0;
    background: white; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
}
.qf-item h4 { font-size: 0.8rem; font-weight: 700; color: var(--dark-gray); margin-bottom: 0.15rem; }
.qf-item p  { font-size: 0.88rem; font-weight: 600; color: var(--dark); }

.prog-overview-img { position: relative; }
.prog-overview-img img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.prog-overview-badge {
    position: absolute; bottom: -1.5rem; left: -1.5rem;
    background: white; border-radius: var(--radius);
    padding: 1.25rem 1.5rem; box-shadow: var(--shadow-md); text-align: center;
}
.prog-overview-badge .ob-num { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.prog-overview-badge .ob-lbl { font-size: 0.75rem; color: var(--dark-gray); font-weight: 600; }

@media (max-width: 900px) {
    .prog-overview-grid { grid-template-columns: 1fr; gap: 3rem; }
    .prog-overview-badge { left: 0; }
}
@media (max-width: 540px) { .prog-quick-facts { grid-template-columns: 1fr; } }

/* Benefits */
.prog-benefits { background: var(--light-gray); }
.benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3.5rem;
}
.benefit-card {
    background: white; border-radius: var(--radius);
    padding: 2rem 1.5rem; box-shadow: var(--shadow-sm);
    border-top: 4px solid transparent; transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-icon {
    font-size: 2rem; margin-bottom: 1rem;
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--light-gray); display: flex; align-items: center; justify-content: center;
}
.benefit-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.benefit-card p  { font-size: 0.88rem; color: var(--dark-gray); line-height: 1.65; }

@media (max-width: 900px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
    .benefits-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
    .benefit-card { padding: 1.5rem 1.25rem; }
}

/* How to apply steps */
.prog-steps { background: white; }
.steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; margin-top: 3.5rem; position: relative;
}
.steps-grid::before {
    content: ''; position: absolute;
    top: 30px; left: calc(12.5% + 1rem); right: calc(12.5% + 1rem);
    height: 2px; background: var(--blue-light); z-index: 0;
}
.step-card {
    text-align: center; position: relative; z-index: 1;
}
.step-num-circle {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--gradient); color: white;
    font-size: 1.2rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; box-shadow: 0 6px 20px rgba(3,126,243,0.3);
}
.step-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.4rem; }
.step-card p  { font-size: 0.82rem; color: var(--dark-gray); line-height: 1.6; }

@media (max-width: 900px) {
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
}
@media (max-width: 560px) {
    .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
    .step-num-circle { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 0.75rem; }
    .step-card h3 { font-size: 0.9rem; margin-bottom: 0.25rem; }
    .step-card p { font-size: 0.8rem; }
}

/* Destinations / Opportunities */
.prog-destinations { background: var(--light-gray); }
.destinations-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3.5rem;
}
.dest-card {
    background: white; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dest-card-img { height: 180px; overflow: hidden; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dest-card:hover .dest-card-img img { transform: scale(1.07); }
.dest-card-body { padding: 1.25rem; }
.dest-card-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.dest-card-body p  { font-size: 0.82rem; color: var(--dark-gray); line-height: 1.5; }

@media (max-width: 900px) { .destinations-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .destinations-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; } }

/* Requirements */
.prog-requirements { background: white; }
.req-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; margin-top: 3rem;
}
.req-group h3 {
    font-size: 1rem; font-weight: 800; margin-bottom: 1rem;
    padding-bottom: 0.75rem; border-bottom: 2px solid var(--light-gray);
}
.req-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.req-list li {
    display: flex; align-items: flex-start; gap: 0.65rem;
    font-size: 0.9rem; color: var(--dark-gray);
}
.req-list li .ri {
    width: 20px; height: 20px; border-radius: 50%;
    font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.ri-yes { background: rgba(0,193,110,0.12); color: var(--green); }
.ri-no  { background: rgba(248,90,64,0.12);  color: var(--red);  }

@media (max-width: 640px) { .req-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; } }
