.card-hover {
  transition: all 0.3s ease;
}

/* .card-hover:hover {
  transform: translateY(-5px);
} */
.card-hover::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(14, 43, 16, .1);
  border-color: rgba(191, 58, 10, .2);
}

.card-hover:hover::before {
  transform: scaleX(1);
}

.ic-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  transition: background .25s;
  flex-shrink: 0;
}

.card-hover:hover .ic-icon {
  background: var(--terra);
  color: #fff;
}

.ic-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .4rem;
}

.ic-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .35rem;
}

.ic-val {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}

.ic-val a {
  color: var(--muted);
  text-decoration: none;
  transition: opacity .2s;
}

.ic-val a:hover {
  opacity: .75;
  text-decoration: underline;
}

/* ── Contact Form ── */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(14, 43, 16, .07);
}

.cfc-header {
  background: var(--forest);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cfc-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cfc-header h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.cfc-header p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  margin: 0;
  letter-spacing: .05em;
}

.cfc-body {
  padding: 2.5rem;
}

.form-label-custom {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
  display: block;
}

.form-input {
  width: 100%;
  padding: .8rem 1.1rem;
  background: var(--parch);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, background .2s;
}

.form-input:focus {
  border-color: var(--terra);
  background: #fff;
}

.form-input::placeholder {
  color: rgba(0, 0, 0, .3);
}

textarea.form-input {
  resize: vertical;
  min-height: 130px;
}

/* Subject pills */
.subject-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.sub-pill {
  padding: .38rem 1rem;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  color: var(--muted);
  cursor: pointer;
  transition: all .22s;
}

.sub-pill:hover {
  border-color: var(--terra);
  color: var(--terra);
}

.sub-pill.active {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.btn-submit:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191, 58, 10, .25);
}

.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .68rem;
  color: var(--muted);
  opacity: .55;
  margin-top: .7rem;
}

/* ── FEATURED PROGRAM (wide card) ── */
.prog-card-wide {
  background: var(--forest);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 360px;
  min-height: 320px;
  transition: box-shadow .35s;
  margin-bottom: 1.5rem;
}

.prog-card-wide:hover {
  box-shadow: 0 28px 65px rgba(14, 43, 16, .2);
}

.prog-card-wide:hover .pw-img img {
  transform: scale(1.06);
  filter: saturate(.9) brightness(.7);
}

.pw-content {
  padding: 2.8rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.pw-content::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  color: rgba(255, 255, 255, .04);
  position: absolute;
  top: -.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.pw-eyebrow {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .7rem;
}

.pw-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .9rem;
}

.pw-desc {
  font-size: .88rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 1.6rem;
}

.pw-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.pw-tag {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .65);
  border-radius: 2px;
}

.pw-img {
  position: relative;
  overflow: hidden;
}

.pw-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) brightness(.65);
  transition: transform .6s ease, filter .4s;
}

.pw-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--forest) 0%, transparent 50%);
}

.pw-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--amber);
  color: var(--ink);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 2px;
}

.btn-hp {
  display: inline-block;
  padding: .85rem 1.9rem;
  background: var(--amber);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: all .25s;
}

.btn-hp:hover {
  background: #daa60c;
  transform: translateY(-2px);
  color: var(--ink);
}


/* Card */
.prog-card {
  background: var(--forest);
  transition: box-shadow .3s ease;
}

.prog-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

/* Content */
.prog-content {
  background: var(--forest);
}

.prog-title {
  font-family: 'Playfair Display', serif;
}

/* Tags */
.prog-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: .7rem;
  letter-spacing: .05em;
}

/* Button */
.prog-btn {
  background: var(--amber);
  color: var(--ink);
  padding: .7rem 1.6rem;
}

.prog-btn:hover {
  background: #d9a404;
  color: var(--ink);
  transform: translateY(-2px);
}

/* Image */
.prog-img img {
  object-fit: cover;
  transition: transform .6s ease, filter .4s;
  filter: brightness(.7);
}

/* .prog-card:hover .prog-img img {
  transform: scale(1.08);
  filter: brightness(.5);
} */

/* Overlay */
.prog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--forest), transparent);
}

/* Badge */
.prog-badge {
  background: var(--amber);
  color: var(--ink);
  font-size: .7rem;
  letter-spacing: .1em;
}

/* intern-card  */
/* Card hover */
.intern-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}

.intern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

/* Image zoom */
.intern-img {
  transition: transform .5s ease, filter .4s;
  filter: saturate(.85);
}

.intern-card:hover .intern-img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

/* Arrow button */
.intern-arrow {
  width: 32px;
  height: 32px;
  background: #c1440e;
  /* your terra */
  transition: all .25s ease;
}

.intern-card:hover .intern-arrow {
  transform: translateX(4px);
  background: #0e2b10;
  /* your green */
}

/* Link animation */
.intern-link {
  transition: gap .2s ease;
}

.intern-link:hover {
  gap: 8px;
}

/* ── INTRO BAND ── */
.intro-band {
  background: var(--forest);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.intro-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 192, 64, .1) 0%, transparent 65%);
  pointer-events: none;
}

.ib-eyebrow {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .7rem;
}

.ib-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.06;
}

.ib-h2 em {
  color: var(--gold);
  font-style: italic;
}

.ib-body {
  font-size: .93rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .55);
  border-left: 2px solid rgba(255, 255, 255, .15);
  padding-left: 1.2rem;
}

/* ══ CTA BAND ══ */
.cta-band {
  background: var(--ink);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'GHANA';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16rem;
  font-weight: 700;
  color: #fff;
  opacity: .02;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.cta-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.cta-h2 em {
  color: var(--gold);
  font-style: italic;
}

.btn-cg {
  background: var(--gold);
  color: var(--ink);
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .95rem 2.3rem;
  text-decoration: none;
  display: inline-block;
  transition: all .25s;
  border: none;
}

.btn-cg:hover {
  background: #daa60c;
  transform: translateY(-2px);
  color: var(--ink);
}

.btn-co {
  background: transparent;
  color: rgba(255, 255, 255, .75);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .95rem 2.3rem;
  text-decoration: none;
  display: inline-block;
  transition: all .25s;
}

.btn-co:hover {
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}

/* ── PROGRESS STEPPER ── */
.stepper-section {
  background: var(--ink);
  padding: 4rem 0;
}

.step-wrap {
  display: flex;
  gap: 0;
  position: relative;
}

.step-wrap::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: rgba(255, 255, 255, .1);
  z-index: 0;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 .5rem;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .9rem;
  transition: all .3s;
  position: relative;
  z-index: 2;
}

.step-item.active .step-circle {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}

.step-item.done .step-circle {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.step-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  line-height: 1.4;
}

.step-item.active .step-label,
.step-item.done .step-label {
  color: rgba(255, 255, 255, .7);
}

/* ── STICKY SIDEBAR ── */
.sidebar-sticky {
  position: sticky;
  top: 90px;
}

.sidebar-nav-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.snc-header {
  background: var(--green);
  padding: 1.2rem 1.5rem;
}

.snc-header h6 {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .3rem;
}

.snc-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.snav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.snav-list li {
  border-bottom: 1px solid var(--border);
}

.snav-list li:last-child {
  border-bottom: none;
}

.snav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .82rem 1.4rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: .82rem;
  font-weight: 500;
  color: var(--body);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.snav-btn:hover {
  background: var(--mist);
  color: var(--terra);
}

.snav-btn.active-link {
  background: var(--mist);
  color: var(--terra);
  font-weight: 600;
  border-left: 3px solid var(--terra);
}

.snav-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  flex-shrink: 0;
  transition: all .2s;
}

.snav-btn:hover .snav-icon,
.snav-btn.active-link .snav-icon {
  background: var(--terra);
  color: #fff;
}

/* contact card */
.contact-card {
  background: var(--green);
  border-radius: 6px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 147, 10, .18) 0%, transparent 65%);
}

.contact-card h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}

.contact-card p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.btn-contact {
  display: block;
  text-align: center;
  padding: .7rem 1.2rem;
  background: var(--gold);
  color: #fff;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  transition: background .2s;
}

.btn-contact:hover {
  background: #daa60c;
  color: #fff;
}

.contact-detail {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  margin-top: .6rem;
  text-align: center;
}



/* ── CONTENT CARDS ── */
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: box-shadow .3s;
}

.info-card:hover {
  box-shadow: 0 12px 36px rgba(193, 68, 14, .09);
}

.info-card-header {
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ic-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ic-icon.terra {
  background: rgba(193, 68, 14, .1);
  color: var(--terra);
}

.ic-icon.gold {
  background: rgba(201, 147, 10, .1);
  color: var(--gold);
}

.ic-icon.green {
  background: rgba(27, 77, 31, .1);
  color: var(--green);
}

.ic-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.ic-subtitle {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: .15rem;
}

.info-card-body {
  padding: 1.6rem 1.8rem;
}

.body-text {
  font-size: .92rem;
  line-height: 1.82;
  color: var(--body);
}

/* immigration contact block */
.imm-block {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
}

.imm-block h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.imm-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .85rem;
  color: var(--body);
  margin-bottom: .7rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}

.imm-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.imm-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  color: var(--terra);
}

.imm-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: .15rem;
}

.imm-val a {
  color: var(--terra);
  text-decoration: none;
}

.imm-val a:hover {
  text-decoration: underline;
}

/* ── STICKY SIDEBAR ── */
.sidebar-sticky {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.sidebar-card-header {
  background: var(--green);
  padding: 1.2rem 1.5rem;
}

.sidebar-card-header h6 {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: .3rem;
}

.sidebar-card-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-list li {
  border-bottom: 1px solid var(--border);
}

.cat-list li:last-child {
  border-bottom: none;
}

.cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: .82rem;
  font-weight: 500;
  color: var(--body);
  cursor: pointer;
  transition: all .2s;
}

.cat-btn:hover {
  background: var(--mist);
  color: var(--terra);
}

.cat-btn.active {
  background: var(--mist);
  color: var(--terra);
  font-weight: 600;
}

.cat-btn .cat-count {
  font-size: .65rem;
  font-weight: 600;
  background: var(--sand);
  color: var(--ink);
  border-radius: 30px;
  padding: .15rem .6rem;
}

.cat-btn.active .cat-count {
  background: var(--terra);
  color: #fff;
}

/* help card */
.help-card {
  background: var(--green);
  border-radius: 6px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}

.help-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 147, 10, .18) 0%, transparent 65%);
}

.help-card h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}

.help-card p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.btn-help {
  display: block;
  text-align: center;
  padding: .7rem 1.2rem;
  background: var(--gold);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  transition: background .2s;
}

.btn-help:hover {
  background: #daa60c;
  color: #fff;
}

.help-phone {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  text-align: center;
}

/* ── MAIN FAQ AREA ── */
.faq-section-title {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.faq-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  display: block;
}

/* .faq-group {
    margin-bottom: 3.5rem;
  } */

/* accordion overrides */
.acc-item {
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  overflow: hidden;
  margin-bottom: .75rem;
  transition: box-shadow .3s;
}

.acc-item:hover {
  box-shadow: 0 8px 28px rgba(193, 68, 14, .08);
}

.acc-btn {
  background: #fff !important;
  color: var(--ink) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  font-weight: 600;
  padding: 1.1rem 1.4rem 1.1rem 1rem !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

.acc-btn:not(.collapsed) {
  color: var(--terra) !important;
  background: var(--mist) !important;
}

.acc-btn::after {
  display: none !important;
}

.acc-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  color: var(--ink);
  transition: all .25s;
}

.acc-btn:not(.collapsed) .acc-num {
  background: var(--terra);
  color: #fff;
}

.acc-icon {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--body);
  transition: all .3s;
}

.acc-btn:not(.collapsed) .acc-icon {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
  transform: rotate(45deg);
}

.acc-body {
  background: #fff;
  padding: 0 1.4rem 1.4rem 3.8rem !important;
  font-size: .9rem;
  line-height: 1.8;
  color: var(--body);
}

.acc-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  background: var(--sand);
  color: var(--green);
  border-radius: 2px;
  margin-bottom: .8rem;
}

/* packing list */
.pack-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .8rem;
  margin-top: .6rem;
}

.pack-list li {
  font-size: .82rem;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.pack-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── SECTION DIVIDERS ── */
.section-eyebrow {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .5rem;
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

/* ══ BANK TRANSFER ══ */
.bank-section {
  background: var(--mist);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}

.bank-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.bank-card-header {
  background: var(--green);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bank-card-header .bh-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bank-card-header h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.bank-card-header p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  margin: 0;
  letter-spacing: .08em;
}

.bank-details {
  padding: 2rem;
}

.bank-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
}

.bank-row:last-child {
  border-bottom: none;
}

.bank-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  color: var(--terra);
}

.bank-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: .2rem;
}

.bank-val {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
}

.copy-btn {
  margin-left: auto;
  padding: .3rem .7rem;
  background: var(--sand);
  border: none;
  border-radius: 3px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--body);
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: var(--terra);
  color: #fff;
}

.copy-btn.copied {
  background: var(--green);
  color: #fff;
}

/* ══ CONTACT / EMAIL ══ */
.contact-section {
  padding: 5rem 0;
  background: var(--cream);
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(193, 68, 14, .09);
  border-color: rgba(193, 68, 14, .25);
}

.cc-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: all .25s;
}

.contact-card:hover .cc-icon {
  background: var(--terra);
  color: #fff;
}

.cc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
}

.cc-val {
  font-size: .88rem;
  color: var(--terra);
  text-decoration: none;
  word-break: break-all;
}

.cc-val:hover {
  text-decoration: underline;
}

/* SECTION BACKGROUND */
.why-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* watermark */
.why-section::before {
  content: 'D';
  font-family: 'Playfair Display', serif;
  font-size: 40vw;
  font-weight: 900;
  color: rgba(193, 68, 14, .05);
  position: absolute;
  top: -6vw;
  right: -6vw;
  line-height: 1;
}

/* heading */
.why-heading {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.why-heading em {
  color: var(--terra);
  font-style: italic;
}

/* text */
.why-subtext {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--body);
}

.why-subtext strong {
  color: var(--ink);
}

/* STATS */
.why-stats {
  background: var(--green);
}

.stat-box {
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, .1);
  position: relative;
  transition: .3s;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box:hover {
  background: var(--green-l);
}

.stat-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s;
}

.stat-box:hover::after {
  transform: scaleX(1);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-l);
}

.stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
}

/* CARDS */
.choose-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  height: 100%;
  transition: .3s;
  position: relative;
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.choose-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s;
}

.choose-card:hover::before {
  transform: scaleX(1);
}

/* ICON */
.choose-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: .3s;
}

.choose-card:hover .choose-icon {
  background: var(--terra);
  color: #fff;
}

:root {
  --forest: #0E2B10;
  --green: #1B5720;
  --terra: #BF3A0A;
  --amber: #C98A00;
  --sand: #E8D5A8;
  --cream: #F7F0E2;
  --parch: #EDE4CF;
  --ink: #14100A;
  --muted: #5C5044;
  --border: rgba(14, 43, 16, .1);
}

/* FILTER BAR */
.filter-bar {
  background: var(--parch);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 150;
}

/* pills */
.fpill {
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: .75rem;
  letter-spacing: .08em;
  transition: .2s;
}

.fpill:hover {
  border-color: var(--terra);
  color: var(--terra);
}

.fpill.active {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--cream);
}

/* masonry */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

@media (max-width: 992px) {
  .masonry-grid { column-count: 2; }
}

@media (max-width: 576px) {
  .masonry-grid { column-count: 1; }
}

/* cards */
.t-card {
  break-inside: avoid;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: .3s;
}

.t-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

/* tags */
.tc-tag {
  font-size: .65rem;
  letter-spacing: .1em;
}

.tag-volunteer { background: rgba(27,87,32,.1); color: var(--green); }
.tag-intern { background: rgba(191,58,10,.1); color: var(--terra); }
.tag-medical { background: rgba(42,95,143,.1); color: #2A5F8F; }
.tag-teaching { background: rgba(201,138,0,.1); color: var(--amber); }
.tag-gap-year { background: rgba(14,43,16,.1); color: var(--forest); }

/* quote */
.tc-quote-mark {
  font-size: 3rem;
  color: var(--terra);
  opacity: .2;
}

/* avatar */
.tc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--terra);
}

/* pagination */
.pg-btn {
  width: 36px;
  height: 36px;
}