:root {
  --primary: #E84E1B;
  --primary-dark: #C43A10;
  --primary-light: #FF6B3D;
  --secondary: #FF8C00;
  --accent: #FF4500;
  --dark: #1A1A2E;
  --dark2: #16213E;
  --text: #333344;
  --text-light: #666677;
  --white: #ffffff;
  --bg-light: #FFF5F2;
  --bg-gray: #F8F9FA;
  --grad: linear-gradient(135deg, #E84E1B 0%, #FF8C00 100%);
  --grad2: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  --shadow: 0 8px 32px rgba(232,78,27,0.15);
  --shadow-lg: 0 16px 48px rgba(232,78,27,0.2);
  --radius: 16px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* NAVIGATION */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar-brand .logo-icon {
  width: 42px; height: 42px; background: var(--grad); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: white; letter-spacing: -1px;
}
.navbar-brand .logo-text { font-size: 22px; font-weight: 800; color: var(--primary); }
.navbar-brand .logo-text span { color: var(--dark); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--text); transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--primary); border-radius: 2px; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.25s; border: none; font-family: 'Poppins', sans-serif; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-primary { background: var(--grad); color: white; box-shadow: 0 4px 15px rgba(232,78,27,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-white { background: white; color: var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); background: var(--bg-light); }
.btn-lg { padding: 15px 36px; font-size: 16px; }

/* HERO SECTION */
.hero {
  min-height: 100vh; padding: 120px 5% 80px;
  background: linear-gradient(135deg, #FFF5F2 0%, #FFEDE6 50%, #FFF 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,78,27,0.08) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.06) 0%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1300px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid rgba(232,78,27,0.2); border-radius: 50px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 20px; box-shadow: 0 4px 15px rgba(232,78,27,0.1); }
.hero-badge span { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 { font-size: clamp(36px, 4.5vw, 58px); font-weight: 900; line-height: 1.15; color: var(--dark); margin-bottom: 20px; }
.hero h1 .highlight { color: var(--primary); position: relative; }
.hero h1 .highlight::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--grad); border-radius: 3px; }
.hero p { font-size: 17px; color: var(--text-light); line-height: 1.8; margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.stat-card { background: white; border-radius: var(--radius); padding: 18px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(232,78,27,0.08); text-align: center; }
.stat-card .num { font-size: 28px; font-weight: 800; color: var(--primary); }
.stat-card .label { font-size: 12px; color: var(--text-light); margin-top: 4px; }

.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: 30px; overflow: hidden;
  background: var(--grad); padding: 4px;
}
.hero-img-wrap img { width: 100%; border-radius: 26px; display: block; }
.hero-float-card {
  position: absolute; background: white; border-radius: 16px;
  padding: 14px 18px; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 10px;
}
.hero-float-card.card1 { bottom: 30px; left: -20px; }
.hero-float-card.card2 { top: 30px; right: -20px; }
.hero-float-card .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.hero-float-card .info .title { font-size: 13px; font-weight: 700; color: var(--dark); }
.hero-float-card .info .sub { font-size: 11px; color: var(--text-light); }

/* SEARCH BAR */
.search-section { background: var(--dark); padding: 40px 5%; }
.search-wrap { max-width: 900px; margin: 0 auto; }
.search-wrap h2 { color: white; font-size: 24px; font-weight: 700; margin-bottom: 20px; text-align: center; }
.search-bar {
  display: flex; background: white; border-radius: 60px;
  padding: 8px 8px 8px 24px; align-items: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.search-bar select {
  border: none; outline: none; font-family: 'Poppins', sans-serif;
  font-size: 14px; color: var(--text); background: transparent; padding-right: 16px;
  border-right: 1px solid #eee; margin-right: 16px; cursor: pointer;
}
.search-bar input {
  flex: 1; border: none; outline: none; font-family: 'Poppins', sans-serif;
  font-size: 15px; color: var(--text);
}
.search-bar input::placeholder { color: #aaa; }
.search-bar .btn-primary { padding: 12px 30px; border-radius: 50px; }
.search-tags { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.search-tag { background: rgba(255,255,255,0.1); color: white; padding: 6px 16px; border-radius: 20px; font-size: 13px; cursor: pointer; border: 1px solid rgba(255,255,255,0.2); transition: all 0.2s; }
.search-tag:hover { background: var(--primary); border-color: var(--primary); }

/* SECTION COMMON */
section { padding: 80px 5%; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-block; background: var(--bg-light); color: var(--primary); font-size: 13px; font-weight: 600; padding: 6px 18px; border-radius: 20px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.section-header h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.25; }
.section-header p { font-size: 16px; color: var(--text-light); max-width: 560px; margin: 0 auto; line-height: 1.75; }
.container { max-width: 1300px; margin: 0 auto; }

/* UNIVERSITIES — listing page layout + v2 cards */
.uni-page-section { padding-top: 32px; padding-bottom: 56px; }
.uni-page-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}
.uni-page-sidebar {
  flex: 1 1 100%;
  max-width: 100%;
}
.uni-page-main {
  flex: 1 1 100%;
  min-width: 0;
}
@media (min-width: 1024px) {
  .uni-page-sidebar {
    flex: 0 0 280px;
    max-width: 280px;
    position: sticky;
    top: 86px;
  }
  .uni-page-main {
    flex: 1 1 calc(100% - 308px);
  }
}
.uni-sidebar-head { margin-bottom: 12px; }
.uni-sidebar-title { font-size: 20px; font-weight: 700; color: var(--dark); }
.uni-sidebar-search { position: relative; margin-bottom: 20px; }
.uni-sidebar-search-input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border: 2px solid rgba(232, 78, 27, 0.35);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  background: var(--white);
}
.uni-sidebar-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 78, 27, 0.15);
}
.uni-sidebar-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  pointer-events: none;
}
.uni-sidebar-courses-panel {
  background: #f8f8f8;
  border: 2px solid rgba(232, 78, 27, 0.45);
  border-radius: 16px;
  padding: 16px 0 12px;
  margin-bottom: 16px;
}
.uni-sidebar-courses-heading {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 12px;
}
.uni-sidebar-courses-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.uni-sidebar-courses-item {
  padding: 10px 18px;
  font-size: 14px;
  color: #4a4a4a;
  cursor: default;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}
.uni-sidebar-courses-item:hover {
  background: var(--primary);
  color: var(--white);
}
.uni-page-empty {
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text);
  line-height: 1.6;
}
.uni-sidebar-filters {
  background: var(--white);
  border: 2px solid rgba(232, 78, 27, 0.25);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 16px;
}
.uni-sidebar-field { margin-bottom: 14px; }
.uni-sidebar-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}
.uni-sidebar-field select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 2px solid rgba(232, 78, 27, 0.35);
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
}
.uni-sidebar-count { font-size: 13px; color: var(--text-light); margin-top: 8px; }
.uni-sidebar-promo {
  background: var(--white);
  border: 2px solid rgba(232, 78, 27, 0.35);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  margin-bottom: 16px;
}
.uni-sidebar-promo-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.uni-sidebar-promo-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 14px;
}
.uni-sidebar-promo-btn { width: 100%; justify-content: center; }
.uni-page-extra { margin-top: 40px; }

.uni-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) {
  .uni-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1200px) {
  .uni-grid-v2 { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

.uni-card-v2 {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.uni-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.uni-card-v2__cover {
  position: relative;
  border-radius: 14px;
  margin: 10px 10px 0;
  min-height: 168px;
  background-size: cover;
  background-position: center;
  overflow: visible;
}
.uni-card-v2__cover--has-img { background: #e8e8e8; }
.uni-card-v2__cover-img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.uni-card-v2__cover--theme-default:not(.uni-card-v2__cover--has-img) { background: linear-gradient(135deg, #ff9a56 0%, #e84e1b 55%, #c43a10 100%); }
.uni-card-v2__cover--theme-lpu:not(.uni-card-v2__cover--has-img) { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.uni-card-v2__cover--theme-jain:not(.uni-card-v2__cover--has-img) { background: linear-gradient(135deg, #8b0000, #cc0000); }
.uni-card-v2__cover--theme-ignou:not(.uni-card-v2__cover--has-img) { background: linear-gradient(135deg, #006400, #228b22); }
.uni-card-v2__cover--theme-symbiosis:not(.uni-card-v2__cover--has-img) { background: linear-gradient(135deg, #4b0082, #8b008b); }
.uni-card-v2__cover--theme-manipal:not(.uni-card-v2__cover--has-img) { background: linear-gradient(135deg, #0f4c81, #1565c0); }

.uni-card-v2__ribbon {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: min(168px, 88%);
  text-align: center;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}
.uni-card-v2__ribbon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff6b35 0%, var(--primary) 45%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  padding: 7px 12px 9px;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.uni-card-v2__ribbon-line2 { font-size: 10px; margin-top: 2px; }

.uni-card-v2__logo-slot {
  position: absolute;
  bottom: -10px;
  left: 14px;
  z-index: 3;
  min-width: 56px;
  height: 44px;
  padding: 0 10px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.uni-card-v2__logo-img { max-height: 36px; max-width: 72px; object-fit: contain; }
.uni-card-v2__logo-abbr {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.uni-card-v2__badge {
  position: absolute;
  bottom: -4px;
  right: 12px;
  z-index: 3;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: #d9f9a5;
  color: #0b8f4f;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.uni-card-v2__body {
  padding: 22px 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.uni-card-v2__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 8px 0 10px;
  line-height: 1.3;
}

.uni-card-v2__row-rating {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.uni-card-v2__rating-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  background: #fff0eb;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  color: #555;
  max-width: 100%;
}
.uni-card-v2__star { color: #f5b000; font-size: 12px; line-height: 1; }
.uni-card-v2__rating-num { font-weight: 800; color: var(--dark); }
.uni-card-v2__rating-reviews { color: var(--text-light); font-weight: 500; }

.uni-card-v2__quick-actions { display: flex; gap: 8px; justify-content: flex-end; }
.uni-card-v2__icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  color: #3257c8;
  text-decoration: none;
  transition: transform 0.2s;
}
.uni-card-v2__icon-btn:hover { transform: scale(1.08); }
.uni-card-v2__icon-btn--wa { color: #25d366; }

.uni-card-v2__highlight-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  min-height: 22px;
}
.uni-card-v2__pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(180deg, #a6ff38, #1dbf20);
  box-shadow: 0 0 0 0 rgba(29, 191, 32, 0.5);
  animation: uni-v2-pulse 1.6s ease-in-out infinite;
}
@keyframes uni-v2-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29, 191, 32, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(29, 191, 32, 0); }
}
.uni-card-v2__highlight {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: #444;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.uni-card-v2__clikpick {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  white-space: nowrap;
}
.uni-card-v2__clikpick:hover { color: var(--primary); }
.uni-card-v2__clikpick-star { color: var(--primary); font-size: 11px; }

.uni-card-v2__approvals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 0;
  font-size: 12px;
  color: #444;
  margin-bottom: 4px;
  line-height: 1.5;
}
.uni-card-v2__appr-sep { color: #ccc; margin: 0 4px; font-weight: 400; }

.uni-card-v2__divider {
  height: 1px;
  background: #eee;
  margin: 12px 0 14px;
}

.uni-card-v2__btn-prospectus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ffd6d6;
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-bottom: 14px;
  transition: background 0.2s;
}
.uni-card-v2__btn-prospectus:hover { background: #ffc4c4; }

.uni-card-v2__cta-wrap {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-bottom: 4px;
}
.uni-card-v2__cta-main {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(232, 78, 27, 0.35);
  transition: background 0.2s, transform 0.2s;
}
.uni-card-v2__cta-main:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Prospectus lead modal */
.prospectus-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
}
.prospectus-overlay.is-open {
  display: flex;
}
body.prospectus-overlay-open {
  overflow: hidden;
}
.prospectus-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 24, 0.55);
  cursor: pointer;
}
.prospectus-overlay__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  padding: 28px 24px 24px;
  animation: prospectus-pop 0.22s ease-out;
}
@keyframes prospectus-pop {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.prospectus-overlay__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f3f3f5;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.prospectus-overlay__close:hover {
  background: #e8e8ec;
}
.prospectus-overlay__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 36px 8px 0;
  line-height: 1.2;
}
.prospectus-overlay__subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin: 0 0 20px;
  font-weight: 600;
}
.prospectus-form__field {
  margin-bottom: 14px;
}
.prospectus-form__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  margin-bottom: 6px;
}
.prospectus-form__label .required {
  color: var(--primary);
}
.prospectus-form__input {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border: 2px solid #e5e5e8;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.prospectus-form__input:focus {
  border-color: var(--primary);
}
.prospectus-form__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.45;
  color: #444;
  margin: 16px 0 14px;
  cursor: pointer;
}
.prospectus-form__check input {
  margin-top: 3px;
  flex-shrink: 0;
}
.prospectus-form__wa-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #f8faf8;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid #e8eee8;
}
.prospectus-form__wa-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.prospectus-form__wa-icon {
  display: flex;
}
.prospectus-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
  cursor: pointer;
}
.prospectus-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.prospectus-toggle__ui {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 999px;
  transition: background 0.2s;
}
.prospectus-toggle__ui::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.prospectus-toggle input:checked + .prospectus-toggle__ui {
  background: #25d366;
}
.prospectus-toggle input:checked + .prospectus-toggle__ui::after {
  transform: translateX(22px);
}
.prospectus-form__error {
  color: #b91c1c;
  font-size: 13px;
  margin: 0 0 12px;
  font-weight: 600;
}
.prospectus-form__submit {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 10px;
  margin-top: 4px;
}
.prospectus-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
.prospectus-form__trust {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
  margin: 16px 0 0;
  line-height: 1.45;
}
.prospectus-form__trust-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* Legacy grid + course line (home preview) */
.uni-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.uni-courses-line { font-size: 12px; color: var(--text-light); margin: 10px 0; }
.rating { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: #f59e0b; }

/* HOW IT WORKS */
.how-it-works { background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 35px; left: 12%; right: 12%;
  height: 2px; background: linear-gradient(to right, var(--primary), var(--secondary));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 70px; height: 70px; border-radius: 50%; background: var(--grad);
  color: white; font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(232,78,27,0.3);
}
.step-icon { font-size: 24px; margin-bottom: 8px; }
.step-item h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* COURSES */
.courses-section { background: var(--bg-light); }
.courses-section--bare { background: transparent; padding: 0; }
.courses-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 22px; border-radius: 50px; border: 2px solid transparent;
  background: white; font-size: 14px; font-weight: 600; cursor: pointer;
  color: var(--text-light); transition: all 0.2s; font-family: 'Poppins',sans-serif;
}
.tab-btn.active, .tab-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.course-card {
  background: white; border-radius: var(--radius); padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: all 0.3s;
  border-left: 4px solid var(--primary); position: relative; overflow: hidden;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.course-icon { font-size: 36px; margin-bottom: 14px; }
.course-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.course-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.course-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-light); }
.course-meta span { display: flex; align-items: center; gap: 4px; }

/* TESTIMONIALS */
.testimonials { background: var(--dark); }
.testimonials .section-header h2 { color: white; }
.testimonials .section-header p { color: rgba(255,255,255,0.6); }
.testimonials .section-label { background: rgba(232,78,27,0.2); color: #FF8C00; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px; transition: all 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.testi-stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: white; }
.testi-name { font-size: 14px; font-weight: 700; color: white; }
.testi-course { font-size: 12px; color: rgba(255,255,255,0.5); }

/* COMPARE TOOL */
.compare-section { background: white; }
.compare-tool {
  background: linear-gradient(135deg, var(--dark) 0%, #2D2D4E 100%);
  border-radius: 24px; padding: 50px; overflow: hidden; position: relative;
}
.compare-tool::before { content: ''; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(232,78,27,0.2) 0%, transparent 70%); }
.compare-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.compare-content h2 { font-size: 36px; font-weight: 800; color: white; margin-bottom: 16px; line-height: 1.3; }
.compare-content p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 28px; }
.compare-features { list-style: none; margin-bottom: 32px; }
.compare-features li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 12px; }
.compare-features li::before { content: 'âœ“'; width: 22px; height: 22px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.compare-widget { background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 28px; border: 1px solid rgba(255,255,255,0.1); }
.compare-widget h3 { color: white; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.compare-sel { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.compare-sel select { width: 100%; padding: 12px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08); color: white; font-family: 'Poppins',sans-serif; font-size: 14px; outline: none; cursor: pointer; }
.compare-sel select option { background: var(--dark); }

/* COUNSELLING CTA */
.counselling { background: var(--grad); padding: 80px 5%; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(28px,3vw,42px); font-weight: 800; color: white; margin-bottom: 16px; }
.cta-content p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 28px; }
.cta-form { background: white; border-radius: 20px; padding: 36px; box-shadow: 0 16px 60px rgba(0,0,0,0.2); }
.cta-form h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1.5px solid #e8e8e8; font-family: 'Poppins',sans-serif;
  font-size: 14px; outline: none; transition: border-color 0.2s; color: var(--text);
}
.form-group input:focus, .form-group select:focus { border-color: var(--primary); }
.form-group input::placeholder { color: #aaa; }

/* PARTNER UNIVERSITIES */
.partners { background: var(--bg-gray); }
.partner-logos { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; }
.partner-logo {
  background: white; border-radius: 12px; padding: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s;
  min-height: 80px; font-size: 14px; font-weight: 700; color: var(--primary);
  text-align: center; border: 1px solid rgba(232,78,27,0.1);
}
.partner-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ABOUT SECTION */
.about-section { background: white; }
.about-section--pad-top { padding-top: 60px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-img-wrap { position: relative; }
.about-img { background: var(--grad); border-radius: 24px; height: 450px; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.about-float { position: absolute; background: white; border-radius: 14px; padding: 16px 20px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.about-float.f1 { bottom: -20px; right: -20px; }
.about-float.f2 { top: -20px; left: -20px; }
.about-float .big { font-size: 28px; font-weight: 800; color: var(--primary); }
.about-float .sm { font-size: 11px; color: var(--text-light); }
.about-content .section-label { text-align: left; }
.about-content h2 { font-size: 36px; font-weight: 800; color: var(--dark); margin-bottom: 20px; line-height: 1.3; }
.about-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.about-list { list-style: none; margin-bottom: 32px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; color: var(--text); }
.about-list li .check { width: 22px; height: 22px; border-radius: 50%; background: var(--bg-light); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* BLOG */
.blog-section { background: var(--bg-light); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-img { height: 180px; background: var(--grad); position: relative; display: flex; align-items: center; justify-content: center; font-size: 48px; overflow: hidden; }
.blog-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-img .cat-badge { position: absolute; top: 14px; left: 14px; background: white; color: var(--primary); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px; z-index: 1; }
.blog-body { padding: 24px; }
.blog-meta { font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.blog-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.5; }
.blog-body p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.read-more { font-size: 13px; font-weight: 600; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* FOOTER */
footer { background: var(--dark); padding: 60px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo-text { font-size: 26px; font-weight: 800; color: white; margin-bottom: 14px; }
.footer-brand .logo-text span { color: var(--primary); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.social-btn:hover { background: var(--primary); }
.footer-col h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  cursor: pointer; text-decoration: none; transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* UNIVERSITIES PAGE */
.page-hero { background: var(--grad); padding: 100px 5% 60px; color: white; }
.page-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 14px; }
.page-hero p { font-size: 16px; opacity: 0.85; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; opacity: 0.75; margin-bottom: 20px; }
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb span { opacity: 0.5; }

.filter-bar { background: white; padding: 24px 5%; box-shadow: 0 4px 20px rgba(0,0,0,0.08); position: sticky; top: 70px; z-index: 100; }
.filters { display: flex; gap: 16px; align-items: center; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.filter-item { display: flex; flex-direction: column; gap: 4px; }
.filter-item label { font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.filter-item select { padding: 8px 14px; border-radius: 8px; border: 1.5px solid #e8e8e8; font-family: 'Poppins',sans-serif; font-size: 13px; color: var(--text); outline: none; cursor: pointer; min-width: 160px; }
.filter-item select:focus { border-color: var(--primary); }
.filter-count { font-size: 14px; color: var(--text-light); margin-left: auto; }
.filter-count strong { color: var(--primary); }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; max-width: 1200px; margin: 0 auto; }
.contact-info h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item .icon-wrap { width: 50px; height: 50px; border-radius: 14px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-item .text h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-item .text p { font-size: 14px; color: var(--text-light); }
.contact-form-wrap { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); border: 1px solid #f0f0f0; }
.contact-form-wrap h3 { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group textarea { width: 100%; padding: 13px 16px; border-radius: 10px; border: 1.5px solid #e8e8e8; font-family: 'Poppins',sans-serif; font-size: 14px; outline: none; resize: vertical; min-height: 100px; }
.form-group textarea:focus { border-color: var(--primary); }

/* MOBILE NAV */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }

/* RESPONSIVE */
@media(max-width: 1024px) {
  .hero-grid, .compare-inner, .cta-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 4px; }
  .nav-links a.active::after { display: none; }
  .nav-actions {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    background: var(--white);
    padding: 16px 20px 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
    flex-direction: column;
    gap: 10px;
    z-index: 998;
  }
  .navbar.is-open .nav-links,
  .navbar.is-open .nav-actions { display: flex; }
  .mobile-menu-btn { display: flex; }
  body.menu-open { overflow: hidden; }
  section { padding: 60px 4%; }
  .hero { padding: 90px 4% 60px; min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .stat-card { padding: 12px; }
  .stat-card .num { font-size: 22px; }
  .hero-float-card { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .filter-bar { top: 70px; }
  .compare-result-grid { grid-template-columns: 1fr !important; }
  .compare-select-row { grid-template-columns: 1fr !important; }
  .info-cards { grid-template-columns: repeat(2, 1fr); }
  .uni-detail-header { flex-direction: column; align-items: center; text-align: center; }
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.hero-content { animation: fadeUp 0.7s ease both; }
.hero-visual { animation: fadeUp 0.7s 0.2s ease both; }

/* University detail page */
.uni-detail { padding: 40px 5%; max-width: 1200px; margin: 0 auto; }
.uni-detail-header { background: white; border-radius: 20px; padding: 36px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-bottom: 28px; display: flex; gap: 30px; align-items: flex-start; border: 1px solid #f0f0f0; }
.uni-detail-logo { width: 120px; height: 120px; border-radius: 16px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 800; color: white; flex-shrink: 0; }
.uni-detail-info h1 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.uni-detail-tabs { display: flex; gap: 4px; background: #f5f5f5; padding: 4px; border-radius: 12px; margin-bottom: 24px; }
.detail-tab { padding: 10px 20px; border-radius: 10px; border: none; background: transparent; font-family: 'Poppins',sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--text-light); transition: all 0.2s; }
.detail-tab.active { background: white; color: var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.info-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
.info-card { background: var(--bg-light); border-radius: 14px; padding: 20px; text-align: center; }
.info-card .val { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.info-card .key { font-size: 12px; color: var(--text-light); }

/* ---------- WordPress theme extensions (former inline styles) ---------- */
.screen-reader-text {
  border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;
}
.trusted-strip { background: var(--white); padding: 30px 5%; }
.trusted-strip-inner { text-align: center; margin-bottom: 24px; }
.trusted-strip-inner p { font-size: 13px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.trusted-brands { display: flex; gap: 30px; justify-content: center; align-items: center; flex-wrap: wrap; opacity: 0.5; }
.trusted-brands span { font-size: 20px; font-weight: 800; color: var(--dark); }
.rating-muted { color: var(--text-light); font-weight: 400; }
.btn.btn-sm { padding: 8px 18px; font-size: 12px; }
.text-center { text-align: center; }
.mt-36 { margin-top: 36px; }
.mt-40 { margin-top: 40px; }
.section-label--compare-dark { background: rgba(232,78,27,0.2); color: #FF8C00; }
.compare-field-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 4px; display: block; }
.compare-widget .btn-primary.btn-block { width: 100%; justify-content: center; }
.compare-widget .compare-note { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 12px; }
.section-label--glass { background: rgba(255,255,255,0.2); color: white; }
.cta-benefits { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.cta-benefit-item { display: flex; align-items: center; gap: 8px; color: white; font-size: 14px; }
.cta-phone-box { background: rgba(255,255,255,0.15); border-radius: 14px; padding: 20px; border: 1px solid rgba(255,255,255,0.2); }
.cta-phone-box .cta-phone-label { color: white; font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.cta-phone-box .cta-phone-number { color: white; font-size: 24px; font-weight: 800; }
.cta-phone-box .cta-phone-hours { color: rgba(255,255,255,0.7); font-size: 13px; }
.cta-form .btn-primary.btn-block { width: 100%; justify-content: center; padding: 15px; }
.cta-form .form-footnote { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }
.blog-img--indigo { background: linear-gradient(135deg,#1a1a2e,#4B0082); }
.blog-img--green { background: linear-gradient(135deg,#006400,#228B22); }
.footer-badge-wrap { margin-top: 20px; }
.footer-badge-wrap .section-label { font-size: 11px; padding: 5px 12px; }
.footer-bottom a.footer-legal { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a.footer-legal:hover { color: var(--primary); }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.3); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.section-pad-gray { background: var(--bg-gray); padding: 50px 5%; }
.section-pad-gray--blog { background: var(--bg-gray); }
.uni-detail-modal { display: none; background: var(--bg-gray); padding: 40px 5%; border-top: 4px solid var(--primary); }
.uni-detail-modal.is-visible { display: block; }
.uni-detail-modal-inner { max-width: 1200px; margin: 0 auto; }
.uni-detail-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.uni-detail-actions { margin-top: 14px; display: flex; gap: 20px; flex-wrap: wrap; }
.uni-about-box { background: white; border-radius: 16px; padding: 28px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.uni-about-box h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.uni-about-box p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.uni-about-box h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin: 20px 0 14px; }
.course-actions { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.compare-panel { background: white; border-radius: 20px; padding: 36px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); margin-bottom: 32px; }
.compare-panel h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.compare-select-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: end; margin-bottom: 24px; }
.compare-vs { text-align: center; font-size: 28px; font-weight: 900; color: var(--primary); padding-bottom: 10px; }
.compare-field-label-dark { font-size: 13px; font-weight: 600; color: var(--text-light); margin-bottom: 8px; display: block; }
.compare-select { width: 100%; padding: 14px 16px; border-radius: 10px; border: 2px solid var(--primary); font-family: "Poppins",sans-serif; font-size: 14px; outline: none; color: var(--text); background: var(--white); }
.compare-actions { text-align: center; }
.compare-result-wrap { display: none; margin-top: 8px; }
.compare-result-wrap.is-visible { display: block; }
.compare-result-grid { display: grid; grid-template-columns: 200px 1fr 1fr; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.compare-cell-head { background: var(--bg-gray); padding: 20px; font-size: 13px; font-weight: 700; color: var(--text-light); display: flex; align-items: center; }
.compare-cell-uni-a { background: var(--grad); padding: 20px; font-size: 16px; font-weight: 800; color: white; text-align: center; }
.compare-cell-uni-b { background: var(--dark); padding: 20px; font-size: 16px; font-weight: 800; color: white; text-align: center; }
.compare-cell-label { padding: 16px 20px; font-size: 13px; font-weight: 600; color: var(--text-light); border-bottom: 1px solid #f0f0f0; background: #fafafa; }
.compare-cell-val { padding: 16px 20px; font-size: 14px; font-weight: 700; color: var(--dark); border-bottom: 1px solid #f0f0f0; text-align: center; }
.compare-cell-val--fee { color: var(--primary); }
.compare-cell-val--sm { font-size: 13px; }
.compare-cell-actions { padding: 16px 20px; text-align: center; border-bottom: 1px solid #f0f0f0; }
.compare-cell-actions .btn { width: 100%; justify-content: center; }
.team-section { background: var(--bg-gray); padding: 60px 5%; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.team-card { background: white; border-radius: 16px; padding: 28px; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; color: white; }
.team-avatar--grad { background: var(--grad); }
.team-avatar--indigo { background: linear-gradient(135deg,#1a1a2e,#4B0082); }
.team-avatar--green { background: linear-gradient(135deg,#006400,#228B22); }
.team-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.contact-tagline { font-size: 12px; color: var(--text-light); }
.contact-promo { background: var(--grad); border-radius: 16px; padding: 24px; margin-top: 28px; color: white; }
.contact-promo h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.contact-promo p { font-size: 14px; opacity: 0.9; }
.contact-form-wrap .btn-primary.btn-lg { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }
.blog-archive .blog-body h3 a { color: inherit; text-decoration: none; }
.blog-archive .blog-body h3 a:hover { color: var(--primary); }
.wp-block-image img, .entry-content img { max-width: 100%; height: auto; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.courses-page-tabs { margin-bottom: 32px; }
.widget_edusathi_footer ul { list-style: none; }
.widget_edusathi_footer ul li { margin-bottom: 10px; }
.widget_edusathi_footer a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; }
.widget_edusathi_footer a:hover { color: var(--primary); }
.footer-widgets .widget-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 18px; }
.footer-brand .widget { margin-bottom: 0; }

.navbar-brand .custom-logo-link img,
.navbar-brand .custom-logo-wrap img {
  max-height: 42px;
  width: auto;
  display: block;
}
.page-extra-content { margin-top: 40px; padding-bottom: 40px; }

/* WordPress menus */
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a {
  color: var(--primary);
}
.nav-links li.current-menu-item > a::after,
.nav-links li.current_page_item > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-pad-gray > .container > .form-status {
  margin-top: 0;
  margin-bottom: 24px;
  max-width: none;
}
.form-status {
  max-width: 900px;
  margin: 90px auto 0;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--bg-light);
  border: 1px solid rgba(232,78,27,0.25);
  color: var(--dark);
  font-size: 14px;
}
.form-status.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}

/* Single post */
.single-post-inner { max-width: 800px; margin: 0 auto; }
.single-post-header { text-align: left; margin-bottom: 32px; }
.single-post-title { font-size: clamp(28px, 4vw, 42px); }
.single-post-thumb { margin-bottom: 28px; border-radius: 16px; overflow: hidden; }
.single-post-thumb-img { width: 100%; height: auto; display: block; }
.single-post-content { font-size: 16px; line-height: 1.75; color: var(--text); }
.single-post-comments { margin-top: 48px; }
.comments-area .comments-title { margin-bottom: 20px; font-size: 20px; color: var(--dark); }
.comments-area ol.comment-list { list-style: none; padding: 0; }
.comments-area .comment-body { margin-bottom: 20px; padding: 16px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid rgba(0,0,0,0.06); }
.archive-description { color: var(--text-light); margin-top: 8px; }
.page-default-content .alignwide { margin-left: auto; margin-right: auto; }

/* 404 */
.error-404-inner { text-align: center; padding: 80px 5%; }
.error-404-code { font-size: 48px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.error-404-message { color: var(--text-light); margin-bottom: 28px; }
