/* ============================================================
   University of Haveli — Global Stylesheet
   Colors:  #135c33 (green)  |  #d86b3b (orange)  |  #dbb640 (gold)
   ============================================================ */

:root {
  --uoh-green:       #135c33;
  --uoh-green-light: #1a7a45;
  --uoh-green-dark:  #0d3d23;
  --uoh-orange:      #d86b3b;
  --uoh-gold:        #dbb640;
}

/* ── HEADER / NAV ──────────────────────────────────────────── */
.header {
  background: #fff !important;
  border-bottom: 3px solid var(--uoh-green) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.08) !important;
}

.navmenu a,
.navmenu a:focus {
  color: var(--uoh-green) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.navmenu a:hover {
  color: var(--uoh-orange) !important;
}

.navmenu .active,
.navmenu .active:focus {
  color: var(--uoh-green) !important;
}

/* override template's ::before underline color */
.navmenu > ul > li > a:before {
  background-color: var(--uoh-green) !important;
}

/* ── SCROLL-TO-TOP BUTTON ───────────────────────────────────── */
.scroll-top {
  background-color: var(--uoh-green) !important;
  border-radius: 6px !important;
}

.scroll-top:hover {
  background-color: var(--uoh-green-light) !important;
}

/* dropdown panel */
.navmenu .dropdown ul {
  background: #fff !important;
  border-top: 2px solid var(--uoh-green) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.10) !important;
}

.navmenu .dropdown ul a {
  color: var(--uoh-green) !important;
  font-weight: 600 !important;
}

.navmenu .dropdown ul a:hover {
  color: var(--uoh-orange) !important;
}

/* mobile hamburger icon */
.mobile-nav-toggle {
  color: var(--uoh-green) !important;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer.accent-background {
  background: var(--uoh-green-dark) !important;
  border-top: 3px solid var(--uoh-gold) !important;
}

/* ── HERO ──────────────────────────────────────────────────── */
.uoh-hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(135deg, var(--uoh-green-dark) 0%, var(--uoh-green) 60%, var(--uoh-green-light) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.uoh-hero .decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(219, 182, 64, .15);
  pointer-events: none;
}
.uoh-hero .dc1 { width: 320px; height: 320px; top: -120px; right: -120px; }
.uoh-hero .dc2 { width: 550px; height: 550px; top: -250px; right: -250px; }
.uoh-hero .dc3 { width: 180px; height: 180px; top: 60px;   right: 60px;  background: rgba(219, 182, 64, .03); }

.uoh-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(219, 182, 64, .18);
  border: 1px solid var(--uoh-gold);
  color: var(--uoh-gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.uoh-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
}
.uoh-hero h1 span { color: var(--uoh-gold); }

.uoh-hero .hero-location {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.uoh-hero .hero-tagline {
  color: rgba(255, 255, 255, .88);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
  border-left: 3px solid var(--uoh-gold);
  padding-left: 16px;
}

.uoh-hero .hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.uoh-hero .stat-item .number {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--uoh-gold);
}
.uoh-hero .stat-item .label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.uoh-hero .stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .2);
  align-self: center;
}

.uoh-hero .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.uoh-hero .btn-gold {
  background: var(--uoh-gold);
  color: var(--uoh-green-dark);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: 2px solid var(--uoh-gold);
  transition: all .3s;
}
.uoh-hero .btn-gold:hover { background: transparent; color: var(--uoh-gold); }

.uoh-hero .btn-ghost {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .45);
  transition: all .3s;
}
.uoh-hero .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); color: #fff; }

.uoh-hero .accred-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.uoh-hero .accred-row > span { color: rgba(255, 255, 255, .55); font-size: .8rem; }
.uoh-hero .accred-badge {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .85);
  padding: 3px 11px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* Hero image */
.uoh-hero-img-wrap { position: relative; }

.uoh-hero-img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .13));
  border: 1px solid rgba(219, 182, 64, .3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uoh-hero-img-box img { width: 100%; height: 100%; object-fit: cover; }

.uoh-hero-img-box .img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, .4);
}
.uoh-hero-img-box .img-fallback i    { font-size: 64px; color: rgba(219, 182, 64, .35); }
.uoh-hero-img-box .img-fallback span { font-size: .85rem; letter-spacing: 1px; }

.uoh-hero-img-box .img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13, 61, 35, .92));
  padding: 40px 22px 20px;
  border-radius: 0 0 16px 16px;
}
.uoh-hero-img-box .campus-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--uoh-gold);
  color: var(--uoh-green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.uoh-hero-img-box .img-overlay p { color: #fff; font-size: .95rem; font-weight: 600; margin: 0; }

.uoh-hero-img-wrap .est-badge {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--uoh-orange);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 20px rgba(216, 107, 59, .45);
  line-height: 1.2;
  z-index: 2;
}
.uoh-hero-img-wrap .est-badge small { display: block; font-size: 10px; font-weight: 500; opacity: .85; }

.uoh-hero-img-wrap .info-card {
  position: absolute;
  bottom: -18px; left: -18px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .18);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  min-width: 200px;
}
.uoh-hero-img-wrap .info-card .ic-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--uoh-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.uoh-hero-img-wrap .info-card .ic-icon i         { color: var(--uoh-gold); font-size: 20px; }
.uoh-hero-img-wrap .info-card .ic-text strong    { display: block; font-size: .9rem; color: var(--uoh-green-dark); font-weight: 700; }
.uoh-hero-img-wrap .info-card .ic-text span      { font-size: .75rem; color: #888; }


/* ── MESSAGES ───────────────────────────────────────────────── */
.uoh-messages { padding: 90px 0; background: #f4f7f5; }

.uoh-messages .sec-eyebrow {
  color: var(--uoh-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: block;
  margin-bottom: 8px;
}
.uoh-messages .sec-title {
  color: var(--uoh-green);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 6px;
}
.uoh-messages .sec-divider {
  width: 55px; height: 3px;
  background: var(--uoh-gold);
  margin: 14px auto 55px;
  border-radius: 2px;
}

/* Cards sit at their natural height — do NOT force equal heights */
.uoh-messages .row { align-items: flex-start; }

.uoh-msg-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .07);
  transition: transform .3s, box-shadow .3s;
  /* no height:100% — each card is its own height */
}
.uoh-msg-card:hover { transform: translateY(-6px); box-shadow: 0 18px 55px rgba(19, 92, 51, .13); }

.uoh-msg-card .msg-head {
  background: linear-gradient(135deg, var(--uoh-green) 0%, var(--uoh-green-light) 100%);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.uoh-msg-card .msg-head::after {
  content: '\201C';
  position: absolute;
  top: -10px; right: 18px;
  font-size: 110px;
  color: rgba(255, 255, 255, .07);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.uoh-msg-card .msg-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 3px solid var(--uoh-gold);
  overflow: hidden;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}
.uoh-msg-card .msg-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.uoh-msg-card .msg-role {
  display: inline-block;
  background: var(--uoh-gold);
  color: var(--uoh-green-dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.uoh-msg-card .msg-head h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 3px; }
.uoh-msg-card .msg-head p  { color: rgba(255, 255, 255, .7); font-size: .82rem; margin: 0; }

.uoh-msg-card .msg-body { padding: 26px 28px; }

/* Collapsed: clamp to 6 lines */
.uoh-msg-card .msg-text {
  color: #555;
  line-height: 1.88;
  font-size: .9rem;
  margin-bottom: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
/* Expanded: show all */
.uoh-msg-card .msg-text.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.uoh-msg-card .btn-rm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--uoh-green);
  font-weight: 700;
  font-size: .85rem;
  transition: color .2s;
  text-decoration: none;
  line-height: 1;
}
.uoh-msg-card .btn-rm:hover { color: var(--uoh-orange); }
.uoh-msg-card .btn-rm .rm-icon { transition: transform .3s; display: inline-block; }
.uoh-msg-card .btn-rm.is-open .rm-icon { transform: rotate(180deg); }

.uoh-msg-card .msg-sig {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: .82rem;
  color: #999;
}
.uoh-msg-card .msg-sig strong { display: block; color: var(--uoh-green); font-size: .88rem; margin-bottom: 2px; }


/* ── VISION & MISSION ───────────────────────────────────────── */
.uoh-vm {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--uoh-green-dark) 0%, var(--uoh-green) 100%);
  position: relative;
  overflow: hidden;
}
.uoh-vm .vm-decor1 {
  position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(219, 182, 64, .12);
  pointer-events: none;
}
.uoh-vm .vm-decor2 {
  position: absolute; bottom: -100px; left: -100px;
  width: 310px; height: 310px;
  border-radius: 50%;
  border: 1px solid rgba(219, 182, 64, .08);
  pointer-events: none;
}

.uoh-vm .vm-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(219, 182, 64, .28);
  border-radius: 14px;
  padding: 38px 32px;
  height: 100%;
  transition: background .3s;
}
.uoh-vm .vm-card:hover { background: rgba(255, 255, 255, .12); }

.uoh-vm .vm-icon {
  width: 60px; height: 60px;
  background: var(--uoh-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.uoh-vm .vm-icon i { font-size: 28px; color: var(--uoh-green-dark); }

.uoh-vm .vm-eyebrow {
  color: var(--uoh-gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.uoh-vm .vm-card h3 { color: #fff; font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; }
.uoh-vm .vm-card p  { color: rgba(255, 255, 255, .8); line-height: 1.88; font-size: .93rem; margin: 0; }

.uoh-vm .vm-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.uoh-vm .vm-center .gold-bar { width: 50px; height: 3px; background: var(--uoh-gold); border-radius: 2px; margin: 14px auto; }
.uoh-vm .vm-center h2 { color: #fff; font-size: 1.7rem; font-weight: 800; margin: 8px 0 4px; }
.uoh-vm .vm-center p  { color: rgba(255, 255, 255, .55); font-size: .85rem; }


/* ── DEPARTMENTS (home section) ─────────────────────────────── */
.uoh-departments { padding: 90px 0; background: #fff; }

.uoh-departments .dept-eyebrow {
  color: var(--uoh-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: block;
  margin-bottom: 8px;
}
.uoh-departments .dept-title {
  color: var(--uoh-green);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.uoh-departments .dept-subtitle {
  color: #666;
  font-size: .97rem;
  max-width: 580px;
  margin: 0 auto;
}
.uoh-departments .dept-divider {
  width: 55px; height: 3px;
  background: var(--uoh-gold);
  margin: 16px auto 55px;
  border-radius: 2px;
}

/* Department card */
.dept-card {
  border-radius: 14px;
  border: 1px solid #e8eeeb;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
}
.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(19, 92, 51, .12);
}
.dept-card--soon { opacity: .72; }
.dept-card--soon:hover { transform: none; box-shadow: none; }

.dept-card-header {
  background: linear-gradient(135deg, var(--uoh-green) 0%, var(--uoh-green-light) 100%);
  padding: 32px 28px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.dept-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.dept-icon-wrap {
  width: 62px; height: 62px;
  background: rgba(219, 182, 64, .18);
  border: 2px solid var(--uoh-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dept-icon-wrap i { font-size: 28px; color: var(--uoh-gold); }

.dept-badge {
  background: var(--uoh-gold);
  color: var(--uoh-green-dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: 50px;
  align-self: flex-start;
}
.dept-badge--soon {
  background: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .8);
}

.dept-card-body {
  padding: 26px 28px 20px;
  flex: 1;
}
.dept-card-body h4 {
  color: var(--uoh-green-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}
.dept-card-body p {
  color: #666;
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.dept-meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.dept-meta-list li {
  font-size: .82rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dept-meta-list li i { color: var(--uoh-green); font-size: .8rem; flex-shrink: 0; }

.dept-card-footer {
  padding: 18px 28px 24px;
  border-top: 1px solid #f0f4f2;
}
.btn-dept-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--uoh-green);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s, gap .25s;
}
.btn-dept-detail:hover { background: var(--uoh-green-light); color: #fff; gap: 12px; }
.btn-dept-soon {
  display: inline-flex;
  align-items: center;
  color: #aaa;
  font-size: .85rem;
  font-weight: 600;
  cursor: not-allowed;
}


/* ── DEPARTMENT DETAIL PAGE ─────────────────────────────────── */
.dept-page-hero {
  background: linear-gradient(135deg, var(--uoh-green-dark) 0%, var(--uoh-green) 70%, var(--uoh-green-light) 100%);
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}
.dept-page-hero .hero-decor {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(219, 182, 64, .15);
  pointer-events: none;
}
.dept-page-hero .hd1 { width: 400px; height: 400px; top: -150px; right: -150px; }
.dept-page-hero .hd2 { width: 250px; height: 250px; bottom: -80px; left: -80px; }

.dept-page-hero .breadcrumb-uoh {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .82rem;
}
.dept-page-hero .breadcrumb-uoh a { color: rgba(255,255,255,.6); text-decoration: none; }
.dept-page-hero .breadcrumb-uoh a:hover { color: var(--uoh-gold); }
.dept-page-hero .breadcrumb-uoh span { color: rgba(255,255,255,.4); }
.dept-page-hero .breadcrumb-uoh .current { color: var(--uoh-gold); font-weight: 600; }

.dept-page-hero .dept-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(219,182,64,.2);
  border: 1px solid var(--uoh-gold);
  color: var(--uoh-gold);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.dept-page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.dept-page-hero .hero-desc {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 28px;
}
.dept-page-hero .hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dept-page-hero .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
}
.dept-page-hero .chip i { color: var(--uoh-gold); }

/* Department page body */
.dept-page-body { padding: 80px 0; background: #f8f9fa; }

.dept-section-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 38px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  margin-bottom: 28px;
}
.dept-section-card .ds-eyebrow {
  color: var(--uoh-orange);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.dept-section-card .ds-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eee;
}
.dept-section-card h2 {
  color: var(--uoh-green);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.dept-section-card p {
  color: #555;
  line-height: 1.88;
  font-size: .92rem;
  margin-bottom: 14px;
}
.dept-section-card p:last-child { margin-bottom: 0; }

/* Programs table */
.dept-program-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid #e8eeeb;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.dept-program-row:hover { border-color: var(--uoh-green); box-shadow: 0 4px 16px rgba(19,92,51,.08); }
.dept-program-row .prog-icon {
  width: 50px; height: 50px;
  background: var(--uoh-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dept-program-row .prog-icon i { color: var(--uoh-gold); font-size: 22px; }
.dept-program-row .prog-info { flex: 1; }
.dept-program-row .prog-info strong { display: block; color: var(--uoh-green-dark); font-size: .97rem; font-weight: 700; }
.dept-program-row .prog-info span  { color: #888; font-size: .82rem; }
.dept-program-row .prog-duration {
  background: #f0f7f3;
  color: var(--uoh-green);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Admission criteria list */
.dept-criteria-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dept-criteria-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .9rem;
  color: #555;
  line-height: 1.75;
}
.dept-criteria-list li .crit-num {
  width: 28px; height: 28px;
  background: var(--uoh-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sidebar stat box */
.dept-stat-box {
  background: linear-gradient(135deg, var(--uoh-green) 0%, var(--uoh-green-light) 100%);
  border-radius: 14px;
  padding: 30px 28px;
  color: #fff;
  margin-bottom: 22px;
}
.dept-stat-box h5 { color: var(--uoh-gold); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.dept-stat-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.dept-stat-item:last-child { margin-bottom: 0; }
.dept-stat-item i  { font-size: 18px; color: var(--uoh-gold); flex-shrink: 0; }
.dept-stat-item .dsi-label { font-size: .75rem; color: rgba(255,255,255,.6); }
.dept-stat-item .dsi-value { font-size: .9rem; font-weight: 600; color: #fff; }

.dept-apply-box {
  border: 2px solid var(--uoh-green);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}
.dept-apply-box h5 { color: var(--uoh-green); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.dept-apply-box p  { color: #777; font-size: .85rem; margin-bottom: 18px; }
.btn-apply-now {
  display: block;
  background: var(--uoh-green);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  text-align: center;
  transition: background .25s;
  margin-bottom: 10px;
}
.btn-apply-now:hover { background: var(--uoh-green-light); color: #fff; }
.btn-back-home {
  display: block;
  color: var(--uoh-green);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 8px;
}
.btn-back-home:hover { color: var(--uoh-orange); }

/* Program structure table rows (used in department detail pages) */
.dept-structure-table {
  border: 1px solid #e8eeeb;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 6px;
}
.dst-row {
  display: flex;
  align-items: center;
  padding: 11px 18px;
  font-size: .88rem;
  border-bottom: 1px solid #f0f4f2;
}
.dst-row:last-child { border-bottom: none; }
.dst-row:nth-child(even) { background: #f8fbf9; }
.dst-label { color: #888; flex: 0 0 46%; font-weight: 500; }
.dst-value { color: var(--uoh-green-dark); font-weight: 600; }

/* Career prospect chips (used in Sociology and similar pages) */
.dept-career-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #f0f7f3;
  border: 1px solid #d4e8dc;
  color: var(--uoh-green-dark);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
}
.dept-career-chip i { color: var(--uoh-green); font-size: .9rem; flex-shrink: 0; }


/* ── HOW TO APPLY ───────────────────────────────────────────── */
.uoh-apply { padding: 90px 0; }

.uoh-apply .apply-eyebrow {
  color: var(--uoh-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: block;
  margin-bottom: 8px;
}
.uoh-apply .apply-title {
  color: var(--uoh-green);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.uoh-apply .apply-subtitle { color: #666; font-size: .97rem; max-width: 580px; margin: 0 auto; }
.uoh-apply .apply-divider {
  width: 55px; height: 3px;
  background: var(--uoh-gold);
  margin: 16px auto 55px;
  border-radius: 2px;
}

.apply-step-card {
  background: #fff;
  border: 1px solid #e8eeeb;
  border-radius: 14px;
  padding: 32px 28px 28px;
  height: 100%;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.apply-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(19, 92, 51, .1);
  border-color: var(--uoh-green);
}
.apply-step-card .step-num {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(19, 92, 51, .07);
  line-height: 1;
  font-family: Georgia, serif;
}
.apply-step-card .step-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--uoh-green), var(--uoh-green-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.apply-step-card .step-icon i { font-size: 24px; color: var(--uoh-gold); }
.apply-step-card h5 { color: var(--uoh-green-dark); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.apply-step-card p  { color: #666; font-size: .87rem; line-height: 1.75; margin: 0; }

.apply-note-box {
  background: linear-gradient(135deg, var(--uoh-green-dark) 0%, var(--uoh-green) 100%);
  border-radius: 14px;
  padding: 36px 40px;
  color: #fff;
}
.apply-note-box h5 { color: var(--uoh-gold); font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.apply-note-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.apply-note-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: rgba(255,255,255,.85); line-height: 1.65;
}
.apply-note-list li i { color: var(--uoh-gold); flex-shrink: 0; margin-top: 2px; }

.apply-cta-btn {
  display: block;
  background: var(--uoh-gold);
  color: var(--uoh-green-dark);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  text-align: center;
  transition: opacity .25s;
}
.apply-cta-btn:hover { opacity: .88; color: var(--uoh-green-dark); }
.apply-cta-outline {
  display: block;
  border: 2px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  text-align: center;
  transition: border-color .25s, color .25s;
}
.apply-cta-outline:hover { border-color: #fff; color: #fff; }


/* ── CONTACT ────────────────────────────────────────────────── */
.uoh-contact { padding: 90px 0; background: #f4f7f5; }

.contact-info-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid #e8eeeb;
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(19, 92, 51, .1);
}
.contact-info-card .ci-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--uoh-green), var(--uoh-green-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-info-card .ci-icon i { font-size: 24px; color: var(--uoh-gold); }
.contact-info-card h5  { color: var(--uoh-green); font-size: .95rem; font-weight: 700; margin-bottom: 10px; }
.contact-info-card p   { color: #666; font-size: .88rem; line-height: 1.75; margin: 0; }
.contact-info-card a   { color: var(--uoh-green); text-decoration: none; font-weight: 500; }
.contact-info-card a:hover { color: var(--uoh-orange); }

.contact-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 38px;
  border: 1px solid #e8eeeb;
}
.contact-form-card h4 { color: var(--uoh-green); font-size: 1.15rem; font-weight: 700; margin-bottom: 22px; }
.contact-input {
  width: 100%;
  border: 1px solid #dde6e1;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: .9rem;
  color: #333;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: #fafcfb;
  resize: vertical;
}
.contact-input:focus {
  border-color: var(--uoh-green);
  box-shadow: 0 0 0 3px rgba(19, 92, 51, .08);
  background: #fff;
}
.contact-submit {
  background: var(--uoh-green);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s;
  display: inline-flex;
  align-items: center;
}
.contact-submit:hover { background: var(--uoh-green-light); }

.contact-hours-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 38px;
  border: 1px solid #e8eeeb;
  height: 100%;
}
.contact-hours-card h4 { color: var(--uoh-green); font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #f0f4f2;
  font-size: .88rem;
  color: #555;
}
.hours-row span:last-child { font-weight: 600; color: var(--uoh-green-dark); }
.hours-row.closed span:last-child { color: #c0392b; }

.contact-social { margin-top: 24px; }
.contact-social h6 { font-size: .8rem; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: #f0f7f3;
  border: 1px solid #d4e8dc;
  display: flex; align-items: center; justify-content: center;
  color: var(--uoh-green);
  font-size: 16px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.social-icons a:hover { background: var(--uoh-green); color: #fff; }
