/* ==========================================================================
   StudyLeo - Complete Premium Design System & Stylesheet
   Version: 2.0.0
   Fonts: Outfit (Headings) & Inter (Body)
   ========================================================================== */

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #eff6ff;
  --color-primary-subtle: #dbeafe;

  --color-gold: #f59e0b;
  --color-gold-hover: #d97706;

  --color-emerald: #059669;
  --color-emerald-light: #ecfdf5;

  --color-dark: #0f172a;
  --color-dark-2: #1e293b;
  --color-muted: #64748b;
  --color-subtle: #94a3b8;

  --color-bg-light: #f8fafc;
  --color-bg-card: #ffffff;
  --color-border: #e2e8f0;
  --color-border-hover: #cbd5e1;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.04);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-2);
  background-color: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Text helpers */
.text-blue { color: var(--color-primary); }
.text-emerald { color: var(--color-emerald); }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }

/* ==========================================================================
   1. ANNOUNCEMENT & TOP NAVBAR
   ========================================================================== */

.sl-announcement {
  background: #0b1329;
  color: #bfdbfe;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-badge {
  background: #1d4ed8;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
}

/* ==========================================================================
   1. MODERN HEADER, MEGA MENUS & DRAWER
   ========================================================================== */

/* TOP MICRO ANNOUNCEMENT BAR */
.sl-topbar {
  background: linear-gradient(90deg, #7f1d1d 0%, #991b1b 50%, #7f1d1d 100%);
  color: #fef2f2;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 950;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.6);
  animation: slPulse 2s infinite;
}

@keyframes slPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.topbar-text {
  color: #cbd5e1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-wa-link {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.topbar-wa-link strong {
  color: #4ade80;
}

.topbar-wa-link:hover {
  color: #ffffff;
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.topbar-quick-apply {
  color: #facc15;
  font-weight: 700;
  transition: all 0.2s;
}

.topbar-quick-apply:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .sl-topbar { display: none; }
}

/* MAIN NAVBAR (Vibrant Red for Maximum Logo Visibility & High Prestige) */
.sl-navbar.modern-navbar {
  background: linear-gradient(135deg, #c8102e 0%, #b91c1c 55%, #991b1b 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(185, 28, 28, 0.28), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  flex-wrap: nowrap;
}

.sl-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sl-logo:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.sl-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .navbar-inner { height: 68px; }
  .sl-logo-img {
    height: 36px;
    max-width: 165px;
  }
}

/* DESKTOP NAV LIST */
.sl-nav-desktop {
  height: 100%;
  flex-shrink: 1;
  min-width: 0;
}

.sl-nav-desktop .nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.has-megamenu {
  position: static;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.is-open > .nav-link,
.nav-link.highlight {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.nav-badge-pill {
  background: #ffffff;
  color: #c8102e;
  border: none;
  font-size: 11px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.nav-badge-gold {
  background: #fef08a;
  color: #854d0e;
  border: none;
  font-size: 11px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.dropdown-arrow {
  color: rgba(255, 255, 255, 0.82);
  transition: transform 0.25s ease;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: #ffffff;
}

/* ==========================================================================
   MEGA MENU PANELS
   ========================================================================== */
.sl-megamenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1080px;
  width: calc(100% - 32px);
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  box-shadow: 0 24px 64px -10px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(15, 23, 42, 0.05);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  z-index: 1000;
}

/* Invisible hover bridge */
.sl-megamenu-panel::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
}

.has-megamenu:hover .sl-megamenu-panel,
.has-megamenu.is-open .sl-megamenu-panel,
.sl-megamenu-panel:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.megamenu-grid-unis {
  display: grid;
  grid-template-columns: 320px 240px 280px;
  gap: 24px;
  min-width: 860px;
}

.megamenu-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.megamenu-col-header .col-icon {
  font-size: 16px;
}

.megamenu-col-header h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Uni Mini Cards */
.megamenu-uni-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uni-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.uni-mini-card:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  transform: translateX(3px);
}

.uni-mini-logo {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

.uni-mini-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.uni-mini-info {
  display: flex;
  flex-direction: column;
}

.uni-mini-info strong {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.uni-mini-info span {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

/* City Badge Grid in Universities Megamenu */
.city-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 5px 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
}

.city-pill:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.city-pill .cp-count {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  transition: color 0.2s;
}

.city-pill:hover .cp-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Megamenu CTA Box */
.megamenu-cta-box {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border-radius: 14px;
  padding: 16px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.2);
}

.megamenu-cta-box .mcb-icon {
  font-size: 20px;
}

.megamenu-cta-box .mcb-text strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3px;
}

.megamenu-cta-box .mcb-text p {
  font-size: 11px;
  line-height: 1.45;
  color: #bfdbfe;
  margin: 0;
}

.btn-mcb-apply {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ffffff;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 9px;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-mcb-apply:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

/* Megamenu Footer Bar */
.megamenu-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.megamenu-footer-bar .view-all-link {
  color: #2563eb;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.megamenu-footer-bar .view-all-link:hover {
  text-decoration: underline;
}

/* Mega Link List */
.megamenu-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.megamenu-link-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.megamenu-link-list li a:hover {
  background: #f1f5f9;
  color: #2563eb;
  padding-left: 14px;
}

.link-bullet {
  font-size: 14px;
}

/* Promo Card in Mega Menu */
.megamenu-promo-card {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border-radius: 16px;
  padding: 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.promo-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.megamenu-promo-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.megamenu-promo-card p {
  font-size: 12px;
  line-height: 1.5;
  color: #bfdbfe;
  margin-bottom: 12px;
}

.promo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 11px;
  color: #dbeafe;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
}

.btn-promo-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ffffff;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-promo-action:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

/* PROGRAMS MEGA MENU */
.megamenu-programs-panel {
  min-width: 960px;
  max-width: 1060px;
}

.megamenu-grid-programs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.prog-cat-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 16px;
  transition: all 0.2s ease;
}

.prog-cat-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.prog-cat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.cat-icon-badge {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.cat-icon-badge.health { background: #ecfdf5; }
.cat-icon-badge.tech { background: #eff6ff; }
.cat-icon-badge.social { background: #fef3c7; }
.cat-icon-badge.aviation { background: #f3e8ff; }

.prog-cat-head h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.cat-sub {
  display: block;
  font-size: 10px;
  color: #64748b;
  margin-top: 2px;
}

.prog-cat-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prog-cat-links li a {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  display: block;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.prog-cat-links li a:hover {
  background: #eff6ff;
  color: #2563eb;
  padding-left: 9px;
}

/* Bottom Strip in Mega Menu */
.megamenu-bottom-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
}

.strip-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}

.strip-chip {
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.strip-chip:hover {
  background: #2563eb;
  color: #ffffff;
}

.strip-all-link {
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
  color: #2563eb;
  text-decoration: none;
}

.strip-all-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   STANDARD DROPDOWN MENUS
   ========================================================================== */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(14px);
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.14);
  padding: 10px;
  min-width: 270px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.is-open .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(4px);
}

.dropdown-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-link-item:hover {
  background: #eff6ff;
}

.dli-icon {
  font-size: 20px;
}

.dli-text {
  display: flex;
  flex-direction: column;
}

.dli-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.dli-text span {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

/* ==========================================================================
   HEADER ACTIONS (RIGHT BUTTONS)
   ========================================================================== */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.btn-header-wa:hover {
  background: #22c55e;
  color: #ffffff;
  border-color: #22c55e;
  transform: translateY(-1px);
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: slPulse 2s infinite;
}

.btn-header-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #c8102e;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-header-apply:hover {
  background: #fff1f2;
  color: #991b1b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

/* MOBILE TOGGLE */
.btn-mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.btn-mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.2s ease;
}

@media (min-width: 1141px) and (max-width: 1280px) {
  .nav-link {
    font-size: 13px;
    padding: 6px 8px;
    gap: 4px;
  }
  .sl-logo-img {
    height: 38px;
    max-width: 180px;
  }
  .btn-header-apply {
    padding: 8px 13px;
    font-size: 12px;
    gap: 6px;
  }
  .navbar-inner {
    height: 72px;
  }
}

@media (max-width: 1140px) {
  .sl-nav-desktop { display: none; }
  .btn-header-wa.hide-mobile { display: none; }
  .btn-mobile-toggle { display: flex; }
}

@media (max-width: 768px) {
  .btn-header-apply {
    display: none !important;
  }
}

/* ==========================================================================
   MOBIL AKORDİYON ÇEKMECE SİSTEMİ (DRAWER)
   ========================================================================== */
.sl-mobile-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: 340px;
  max-width: 90vw;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.sl-mobile-drawer.open,
.sl-mobile-drawer.active {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}

.drawer-brand img {
  height: 32px;
  width: auto;
}

.btn-drawer-close {
  background: #f1f5f9;
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-drawer-close:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* Mobil Arama Çubuğu */
.drawer-search-box {
  padding: 14px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}

.drawer-search-box form {
  position: relative;
  display: flex;
}

.drawer-search-input {
  width: 100%;
  padding: 10px 40px 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 13px;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s;
}

.drawer-search-input:focus {
  border-color: #2563eb;
}

.drawer-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

/* Mobil Akordiyon Listesi */
.drawer-accordion-nav {
  padding: 16px 20px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.accordion-item.active {
  border-color: #93c5fd;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
}

.accordion-trigger {
  width: 100%;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.acc-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.acc-badge {
  background: #e2e8f0;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: auto;
  margin-right: 8px;
}

.acc-badge.highlight {
  background: #fef3c7;
  color: #b45309;
}

.acc-chevron {
  font-size: 16px;
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.accordion-item.active .acc-chevron {
  transform: rotate(90deg);
  color: #2563eb;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}

.acc-panel-inner {
  padding: 12px 14px 16px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acc-main-link {
  font-size: 13px;
  font-weight: 800;
  color: #2563eb;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px dashed #dbeafe;
}

.acc-sub-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.acc-sub-title {
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}

.acc-sub-link {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.acc-sub-link:hover {
  background: #eff6ff;
  color: #2563eb;
}

/* Doğrudan Linkler (Drawer) */
.drawer-direct-links,
.drawer-flat-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.drawer-direct-link,
.drawer-flat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.drawer-flat-link:hover,
.drawer-direct-link:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.drawer-direct-link.highlight {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.ddl-badge {
  background: #2563eb;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Mobil Çekmece Altı */
.drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid #f1f5f9;
  background: #ffffff;
}

.btn-drawer-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #22c55e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

/* ==========================================================================
   2. PAGE HEADER & HERO
   ========================================================================== */

.sl-page-header {
  background: linear-gradient(135deg, #0b1329 0%, #1e3a8a 100%);
  color: #ffffff;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #93c5fd;
  margin-bottom: 12px;
  word-break: break-word;
}

.header-breadcrumbs a {
  color: #bfdbfe;
}
.header-breadcrumbs a:hover {
  color: #ffffff;
}

.sl-page-header .page-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.sl-page-header .page-sub {
  font-size: 15px;
  color: #cbd5e1;
  max-width: 760px;
}

/* Hero */
.sl-hero {
  position: relative;
  background: linear-gradient(180deg, #080f22 0%, #0f172a 100%);
  color: #ffffff;
  padding: 64px 0 90px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 650px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, rgba(15, 23, 42, 0) 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(147, 197, 253, 0.3);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 36px;
}

.hero-search-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  color: var(--color-dark);
  text-align: left;
}

.hero-search-form {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.search-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon svg {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  pointer-events: none;
}

.input-with-icon input,
.input-with-icon select {
  width: 100%;
  height: 52px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 0 14px 0 44px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: all 0.2s;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.btn-hero-search {
  height: 52px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.hero-quick-chips {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.chips-label {
  font-size: 11.5px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.chip-item {
  background: #ffffff;
  color: #334155;
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 9999px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.chip-item:hover {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.16);
}

/* ==========================================================================
   3. STATS & DEGREE TILES & SHOWCASE
   ========================================================================== */

.sl-stats-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 0 16px;
  border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.section-badge {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 15px;
  color: #64748b;
}

.sl-degree-levels {
  padding: 72px 0;
}

.degree-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.degree-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.degree-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: #bfdbfe;
}

.degree-icon {
  font-size: 38px;
  margin-bottom: 16px;
}

.degree-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.degree-meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.degree-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
  flex-grow: 1;
}

.degree-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Featured Universities */
.sl-featured-unis {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.unis-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.uni-showcase-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.uni-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #93c5fd;
}

.usc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.usc-logo-box {
  width: 52px;
  height: 52px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.usc-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.usc-city {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 3px 9px;
  border-radius: 999px;
}

.usc-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 12px;
  min-height: 42px;
}

.usc-stats {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 14px;
  font-size: 12px;
}

.usc-btn {
  width: 100%;
  text-align: center;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 0;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.usc-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.section-cta-row {
  margin-top: 44px;
  text-align: center;
}

.btn-large-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all 0.2s;
}

.btn-large-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   4. PROGRAM SEARCH & FILTERS (/programlar/) - MODERN LIST VIEW
   ========================================================================== */

/* Header Statistics Row */
.header-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hs-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 13.5px;
  color: #e2e8f0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hs-pill strong {
  color: #ffffff;
  font-weight: 700;
}

/* Quick Category Chips Bar */
.sl-quick-chips-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
  position: sticky;
  top: 72px;
  z-index: 30;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.chips-scroll-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chips-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.quick-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
}

.quick-chip:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #2563eb;
  transform: translateY(-1px);
}

.quick-chip.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

/* Search Page Layout */
.sl-search-page-wrapper {
  padding: 32px 0 72px;
  background: #f8fafc;
  min-height: 80vh;
}

.search-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 32px;
  align-items: start;
}

/* Filter Sidebar */
.sl-filter-sidebar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 24px -2px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: 140px;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.sh-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
}

.sh-title-wrap h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.btn-clear-all {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-clear-all:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.filter-box {
  margin-bottom: 20px;
}

.filter-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrap input {
  width: 100%;
  height: 46px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 38px 0 14px;
  font-size: 13.5px;
  color: #0f172a;
  outline: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.search-input-wrap input:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.btn-clear-input {
  position: absolute;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e2e8f0;
  border: none;
  color: #64748b;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}

.btn-clear-input:hover {
  background: #cbd5e1;
  color: #0f172a;
}

.filter-select {
  width: 100%;
  height: 46px;
  background: #f8fafc url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 36px 0 14px;
  font-size: 13.5px;
  color: #0f172a;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.2s;
  font-family: var(--font-body);
  cursor: pointer;
}

.filter-select:focus {
  border-color: #2563eb;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.sidebar-help-card {
  margin-top: 24px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  text-align: center;
}

.shc-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.sidebar-help-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 4px;
}

.sidebar-help-card p {
  font-size: 12px;
  color: #3b82f6;
  margin-bottom: 12px;
  line-height: 1.4;
}

.btn-sidebar-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38px;
  background: #10b981;
  color: #ffffff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  transition: all 0.2s;
}

.btn-sidebar-wa:hover {
  background: #059669;
  transform: translateY(-1px);
}

/* Results Toolbar */
.results-toolbar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.rt-count-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rt-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.rt-count {
  font-size: 14.5px;
  color: #475569;
}

.rt-count strong {
  color: #0f172a;
  font-weight: 800;
}

.rt-page-info {
  font-size: 13px;
  color: #64748b;
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: 8px;
  font-weight: 600;
}

/* Programs List Flow Container */
.programs-list-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  transition: opacity 0.2s ease;
}

/* The Modern List Row Card */
.program-list-row {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 280px 1fr 230px;
  gap: 24px;
  align-items: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.program-list-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #2563eb;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.program-list-row:hover {
  border-color: #93c5fd;
  box-shadow: 0 12px 30px -4px rgba(37, 99, 235, 0.12), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
  transform: translateY(-2px);
}

.program-list-row:hover::before {
  transform: scaleY(1);
}

/* Column 1: Brand Info */
.plr-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.plr-logo-wrap {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 14px;
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.plr-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plr-logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #f8fafc;
  border-radius: 10px;
}

.plr-brand-text {
  min-width: 0;
}

.plr-uni-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.plr-uni-name a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.15s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}

.plr-uni-name a:hover {
  color: #2563eb;
}

.plr-verified {
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plr-meta-sub {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.plr-meta-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plr-faculty {
  max-width: 160px;
}

.plr-meta-dot {
  color: #cbd5e1;
}

/* Column 2: Academic Content */
.plr-content {
  min-width: 0;
  padding: 0 6px;
}

.plr-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 12px;
}

.plr-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}

.plr-title a:hover {
  color: #2563eb;
}

.plr-tags-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.plr-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.3;
  white-space: nowrap;
}

.tag-degree {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.tag-degree-on-lisans {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.tag-degree-tezli-yuksek-lisans,
.tag-degree-tezsiz-yuksek-lisans,
.tag-degree-yuksek-lisans {
  background: #f5f3ff;
  color: #6d28d9;
  border: 1px solid #ddd6fe;
}

.tag-degree-doktora {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.tag-lang-en {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #dbeafe;
}

.tag-lang-tr {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.tag-duration {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.tag-kabul {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

/* Column 3: Finance & Actions */
.plr-finance-action {
  border-left: 1.5px solid #f1f5f9;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}

.plr-price-box {
  text-align: right;
}

.plr-price-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.plr-price-val {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #059669;
  letter-spacing: -0.2px;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;
  flex-wrap: wrap;
}

.plr-price-val .price-current,
.price-current {
  color: #059669;
  font-size: 18px;
  font-weight: 900;
}

.plr-price-val .price-old,
.price-old,
del.price-old {
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  margin: 0 2px;
  opacity: 0.85;
}

.plr-price-val .price-period,
.price-period {
  color: #059669;
  font-size: 13px;
  font-weight: 700;
}

.price-danisman {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.plr-burs-note {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #d97706;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 2px 8px;
  border-radius: 6px;
  margin-top: 4px;
}

.plr-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  width: 100%;
}

.btn-plr-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-plr-apply:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.btn-plr-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-plr-wa:hover {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}

/* Empty State */
.empty-state {
  background: #ffffff;
  border: 1.5px dashed #cbd5e1;
  border-radius: 20px;
  padding: 60px 30px;
  text-align: center;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.empty-state h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.btn-empty-reset {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-empty-reset:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* Pagination */
.sl-pagination {
  margin-top: 32px;
  text-align: center;
}

.sl-pagination ul {
  display: inline-flex;
  list-style: none;
  gap: 6px;
  background: #ffffff;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.sl-pagination li a,
.sl-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  color: #475569;
  transition: all 0.2s;
}

.sl-pagination li a:hover {
  background: #eff6ff;
  color: #2563eb;
}

.sl-pagination li span.current {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Responsive Rules for Program Search */
@media (max-width: 1200px) {
  .program-list-row {
    grid-template-columns: 240px 1fr 210px;
    gap: 18px;
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .search-layout {
    grid-template-columns: 1fr;
  }
  .sl-filter-sidebar {
    position: static;
    margin-bottom: 24px;
  }
  .sl-quick-chips-bar {
    top: 60px;
  }
}

@media (max-width: 768px) {
  .program-list-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }
  .plr-finance-action {
    border-left: none;
    border-top: 1px solid #f1f5f9;
    padding-left: 0;
    padding-top: 16px;
    align-items: stretch;
  }
  .plr-price-box {
    text-align: left;
  }
  .plr-buttons {
    justify-content: stretch;
  }
  .btn-plr-apply {
    flex: 1;
  }
}

/* ==========================================================================
   5. UNIVERSITIES CATALOG (/universiteler/)
   ========================================================================== */

.sl-universities-page {
  padding: 36px 0 72px;
}

.uni-filter-toolbar {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.search-uni-box {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 480px;
  width: 100%;
}

.search-uni-box svg {
  position: absolute;
  left: 14px;
  color: #94a3b8;
}

.search-uni-box input {
  width: 100%;
  height: 44px;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 16px 0 42px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.search-uni-box input:focus {
  border-color: var(--color-primary);
  background: #ffffff;
}

.uni-count-indicator {
  font-size: 14px;
  color: #475569;
}

.uni-count-indicator strong {
  color: var(--color-primary);
}

.universities-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.uni-catalog-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.uni-catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #93c5fd;
}

.ucc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.ucc-logo-wrap {
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.ucc-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ucc-fallback {
  font-size: 26px;
}

.ucc-city {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 3px 9px;
  border-radius: 999px;
}

.ucc-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 14px;
  min-height: 44px;
}

.ucc-title a:hover {
  color: var(--color-primary);
}

.ucc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #f8fafc;
  padding: 10px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.ucc-s-lbl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
}

.ucc-s-val {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.btn-ucc-view {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: #eff6ff;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 11px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.btn-ucc-view:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* ==========================================================================
   6. SINGLE UNIVERSITY TEMPLATE (/universite/slug/)
   ========================================================================== */

.uni-single-hero {
  background: linear-gradient(135deg, #080f22 0%, #1e3a8a 100%);
  color: #ffffff;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.uni-hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-bottom: 22px;
}

.uhc-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.uhc-logo-box {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.uhc-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.uhc-fallback {
  font-size: 42px;
}

.uhc-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badge-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.tag-city { background: rgba(255, 255, 255, 0.2); color: #ffffff; }
.tag-status { background: #059669; color: #ffffff; }
.tag-burs { background: #d97706; color: #ffffff; }

.uhc-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 6px;
}

.uhc-sub {
  font-size: 14px;
  color: #bfdbfe;
  max-width: 580px;
}

.uhc-cta-box {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-width: 270px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uph-label {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
}

.uph-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  color: #38bdf8;
}

.btn-uhc-apply {
  background: #2563eb;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-uhc-apply:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-uhc-whatsapp {
  background: #22c55e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: var(--radius-md);
  display: block;
  text-align: center;
}

.uni-stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
}

.usb-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.usb-item:last-child {
  border-right: none;
}

.usb-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.usb-lbl {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}

/* Uni Single Content */
.uni-main-content {
  padding: 40px 0 72px;
}

.uni-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 32px;
  align-items: start;
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
}

.uni-programs-column {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.uni-sidebar {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .uni-layout {
    grid-template-columns: 100% !important;
    gap: 28px !important;
  }
}

.section-box-header {
  margin-bottom: 20px;
}

.sb-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
}

.sb-sub {
  font-size: 13px;
  color: #64748b;
}

.uni-inline-filters {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.uif-search {
  position: relative;
  display: flex;
  align-items: center;
}

.uif-search svg {
  position: absolute;
  left: 12px;
  color: #94a3b8;
}

.uif-search input {
  width: 100%;
  height: 42px;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 14px 0 38px;
  font-size: 13px;
  outline: none;
}

.uif-search input:focus {
  border-color: var(--color-primary);
  background: #ffffff;
}

.uif-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.uif-tab {
  background: #f1f5f9;
  border: 1px solid transparent;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}

.uif-tab:hover {
  background: #e2e8f0;
}

.uif-tab.active {
  background: var(--color-primary);
  color: #ffffff;
}

.uni-programs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uni-programs-list:not(.is-initialized) .uni-program-row:nth-child(n+11) {
  display: none !important;
}

.uni-program-row {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: all 0.2s;
}

.uni-program-row:hover {
  border-color: #93c5fd;
  box-shadow: var(--shadow-md);
  transform: translateX(3px);
}

.upr-main {
  flex-grow: 1;
}

.upr-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.tag-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
}

.tag-degree { background: #eff6ff; color: #1d4ed8; }
.tag-lang-en { background: #fdf4ff; color: #a21caf; }
.tag-lang-tr { background: #fef2f2; color: #b91c1c; }
.tag-duration { background: #f8fafc; color: #475569; border: 1px solid #e2e8f0; }

.upr-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.upr-faculty {
  font-size: 12px;
  color: #64748b;
}

.upr-pricing-action {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.upr-price {
  text-align: right;
}

.upr-p-label {
  display: block;
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
}

.upr-p-amount {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-emerald);
}

.btn-upr-apply {
  background: var(--color-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-upr-apply:hover {
  background: var(--color-primary-hover);
}

/* Progressive Loading & Pagination */
.programs-pagination-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  text-align: center;
}

.programs-count-info {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

/* Numbered Pagination for University Programs */
.uni-pagination-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 8px;
}

.uni-pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.uni-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.uni-page-btn:hover {
  background: #eff6ff;
  color: var(--color-primary, #2563eb);
  border-color: #93c5fd;
  transform: translateY(-1px);
}

.uni-page-btn:active {
  transform: translateY(0);
}

.uni-page-btn.active {
  background: var(--color-primary, #2563eb);
  color: #ffffff;
  border-color: var(--color-primary, #2563eb);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
  cursor: default;
  pointer-events: none;
}

.uni-page-prev,
.uni-page-next {
  padding: 0 14px;
  font-size: 12.5px;
  font-weight: 800;
}

.uni-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 38px;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 700;
}

.no-programs-alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 20px;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px dashed #cbd5e1;
  margin: 20px 0;
}

.npa-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.no-programs-alert p {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  margin: 0;
}

.uni-sticky-box {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.usb-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.usb-icon {
  font-size: 28px;
}

.usb-header h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.usb-header p {
  font-size: 12px;
  color: #64748b;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 9px 12px;
  font-size: 13px;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: #ffffff;
}

.btn-lead-submit {
  width: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.2s;
}

.btn-lead-submit:hover {
  transform: translateY(-2px);
}

.form-trust-text {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin-top: 10px;
}

.uni-benefits-box {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.uni-benefits-box h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.benefits-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefits-checklist li {
  display: flex;
  gap: 10px;
  font-size: 12px;
}

.icon-check {
  width: 18px;
  height: 18px;
  background: #ecfdf5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 10px;
  flex-shrink: 0;
}

.benefits-checklist strong {
  display: block;
  color: #0f172a;
  font-weight: 700;
}

.benefits-checklist p {
  color: #64748b;
  margin-top: 2px;
  line-height: 1.4;
}

/* ==========================================================================
   7. APPLICATION & CONTACT PAGES
   ========================================================================== */

.sl-application-page,
.sl-contact-page {
  padding: 36px 0 72px;
}

.app-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.app-card,
.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.app-steps-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

.step-item.active {
  color: var(--color-primary);
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.step-item.active .step-num {
  background: var(--color-primary);
  color: #ffffff;
}

.form-section {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.fs-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-hint {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-top: 3px;
}

.btn-app-submit,
.btn-contact-submit {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.2s;
}

.btn-app-submit:hover,
.btn-contact-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.app-guarantee-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.agc-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.agc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.agc-list strong {
  display: block;
  color: #0f172a;
  font-size: 13px;
}

.agc-list li {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

.btn-wa-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #22c55e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px;
  border-radius: var(--radius-md);
  margin-top: 10px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.c-card-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.c-card-body h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.c-card-body p {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 8px;
}

.c-card-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

/* ==========================================================================
   8. FOOTER & FLOATING ACTIONS
   ========================================================================== */

.sl-footer {
  background: #0b1329;
  color: #94a3b8;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sl-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding: 60px 0 40px;
}

.footer-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}

.footer-logo-img:hover {
  opacity: 0.9;
}

.footer-logo .logo-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
  display: block;
}

.brand-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer-stats-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-chip {
  font-size: 12px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu a {
  color: #94a3b8;
  font-size: 13px;
}

.footer-menu a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.contact-info-item {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.contact-info-item strong {
  color: #cbd5e1;
}

.footer-action-wrap {
  margin-top: 16px;
}

.btn-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-md);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #64748b;
}

.bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bottom-links a {
  color: #94a3b8;
}
.bottom-links a:hover {
  color: #ffffff;
}

/* Floating WhatsApp */
.sl-floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.floating-wa-btn {
  width: 54px;
  height: 54px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* Scroll To Top Button */
.sl-scroll-top {
  position: fixed;
  bottom: 88px;
  right: 26px;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.sl-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.btn-scroll-to-top {
  width: 48px;
  height: 48px;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.28);
  transition: all 0.22s ease;
  position: relative;
}

.btn-scroll-to-top:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.38);
}

.btn-scroll-to-top:active {
  transform: translateY(-1px) scale(0.95);
}

.st-tooltip {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  padding: 5px 11px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.btn-scroll-to-top:hover .st-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}



/* Response message boxes */
.form-response-msg,
.form-response-box {
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.form-response-box.success,
.form-response-msg.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-response-box.error,
.form-response-msg.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.empty-state {
  text-align: center;
  padding: 50px 20px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.empty-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.empty-state h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.empty-state p {
  color: #64748b;
  font-size: 13px;
}

/* ==========================================================================
   9. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-search-form {
    grid-template-columns: 1fr 1fr;
  }
  .btn-hero-search {
    grid-column: span 2;
  }
  .degree-cards-grid,
  .unis-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .universities-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-layout,
  .uni-layout,
  .app-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .sl-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sl-nav-desktop,
  .hide-mobile {
    display: none !important;
  }
  .btn-mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .hero-search-form {
    grid-template-columns: 1fr;
  }
  .btn-hero-search {
    grid-column: span 1;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .stat-item {
    border-right: none;
  }
  .degree-cards-grid,
  .unis-showcase-grid,
  .universities-catalog-grid {
    grid-template-columns: 1fr;
  }
  .uhc-left {
    flex-direction: column;
    text-align: center;
    width: 100%;
    align-items: center;
    gap: 12px;
  }
  .uhc-logo-box {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    min-height: 76px !important;
    max-width: 76px !important;
    max-height: 76px !important;
    padding: 6px !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
    margin: 0 auto;
  }
  .uhc-logo {
    max-width: 100% !important;
    max-height: 64px !important;
    object-fit: contain;
  }
  .uhc-badges {
    justify-content: center;
    gap: 5px;
    margin-bottom: 6px;
  }
  .badge-tag {
    font-size: 10.5px;
    padding: 3px 8px;
  }
  .uhc-title {
    font-size: 22px;
    line-height: 1.25;
    word-break: break-word;
    text-align: center;
    margin-bottom: 6px;
  }
  .uhc-sub {
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
    color: #bfdbfe;
  }
  .uni-hero-card {
    flex-direction: column;
    padding: 18px 14px;
    margin-bottom: 14px;
    gap: 16px;
  }
  .uhc-cta-box {
    width: 100%;
    min-width: 0;
    padding: 16px 14px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: var(--radius-lg);
  }
  .uph-value {
    font-size: 18px;
  }
  .uni-stats-bar {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 8px !important;
    padding: 12px 10px !important;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: visible !important;
  }
  .uni-stats-bar::-webkit-scrollbar {
    display: none;
  }
  .usb-item {
    flex: none !important;
    min-width: 0 !important;
    padding: 8px 4px !important;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .usb-item:nth-child(1),
  .usb-item:nth-child(2),
  .usb-item:nth-child(3) {
    grid-column: span 2 !important;
  }
  .usb-item:nth-child(4),
  .usb-item:nth-child(5) {
    grid-column: span 3 !important;
  }
  .usb-num {
    font-size: 17px !important;
    font-weight: 900 !important;
    color: #38bdf8 !important;
    display: block !important;
    margin-bottom: 2px;
  }
  .usb-lbl {
    font-size: 9.5px !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
    color: #cbd5e1 !important;
    display: block !important;
    word-break: break-word;
  }
  .uni-main-content {
    padding: 20px 0 60px;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
    box-sizing: border-box !important;
  }
  .uni-inline-filters {
    padding: 12px;
    border-radius: var(--radius-lg);
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .uif-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
    gap: 6px;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .uif-tabs::-webkit-scrollbar {
    display: none;
  }
  .uif-tab {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 7px 13px;
    font-size: 12px;
  }
  .uni-program-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 16px !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .upr-main {
    width: 100% !important;
    min-width: 0 !important;
  }
  .upr-title {
    font-size: 16px !important;
    line-height: 1.35 !important;
    margin-bottom: 4px !important;
    word-break: break-word !important;
  }
  .upr-faculty {
    font-size: 12px !important;
    color: #64748b !important;
    word-break: break-word !important;
  }
  .upr-pricing-action {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    border-top: 1px solid #f1f5f9 !important;
    padding-top: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .upr-price {
    text-align: left !important;
    width: 100% !important;
  }
  html[dir="rtl"] .upr-price {
    text-align: right !important;
  }
  .upr-p-label {
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #64748b !important;
    display: block !important;
    margin-bottom: 2px !important;
  }
  .upr-p-amount {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: var(--color-emerald) !important;
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .btn-upr-apply {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 44px !important;
    background: var(--color-primary, #2563eb) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.28) !important;
    box-sizing: border-box !important;
  }
  .uni-sticky-box,
  .uni-benefits-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px 16px !important;
  }
  .uni-pagination-list {
    gap: 4px;
  }
  .uni-page-btn {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
    padding: 0 6px;
    border-radius: 6px;
  }
  .uni-page-prev,
  .uni-page-next {
    padding: 0 10px;
    font-size: 11px;
  }
  .uni-page-ellipsis {
    min-width: 18px;
    height: 32px;
    font-size: 14px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .sl-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .sl-floating-wa {
    bottom: 64px;
    right: 16px;
  }
  .floating-wa-btn {
    width: 46px;
    height: 46px;
  }
  .floating-wa-btn svg {
    width: 22px;
    height: 22px;
  }
  .sl-scroll-top {
    bottom: 118px;
    right: 18px;
  }
  .btn-scroll-to-top {
    width: 42px;
    height: 42px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.22);
  }
  .btn-scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
  .st-tooltip {
    display: none !important;
  }
}

/* ==========================================================================
   HOMEPAGE CUSTOM SECTIONS (Unis Grid, Featured Programs & Apply Box)
   ========================================================================== */

.section-heading-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 20px;
}

.sub-pill {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.sub-pill.text-white {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.heading-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.heading-desc {
  font-size: 15px;
  color: #64748b;
}

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-outline-blue:hover {
  background: #eff6ff;
  border-color: #2563eb;
}

.btn-primary-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2563eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary-blue:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* 4. Unis Grid & Uni Card */
.sl-unis-section {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.unis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.uni-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.uni-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #93c5fd;
}

.uc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.uc-logo-wrap {
  width: 58px;
  height: 58px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  overflow: hidden;
}

.uc-logo-wrap img,
.uc-logo {
  max-width: 100% !important;
  max-height: 48px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.uc-logo-fallback {
  font-size: 26px;
}

.uc-city {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 3px 9px;
  border-radius: 999px;
}

.uc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 12px;
  min-height: 42px;
}

.uc-title a:hover {
  color: var(--color-primary);
}

.uc-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 12px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta-label {
  color: #64748b;
  font-weight: 500;
}

.meta-val {
  color: #0f172a;
  font-weight: 600;
}

.btn-uc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.btn-uc-link:hover {
  background: #2563eb;
  color: #ffffff;
}

/* 5. Featured Programs on Homepage */
.sl-featured-programs {
  padding: 72px 0;
  background: #f8fafc;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.program-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #93c5fd;
}

.pc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.pc-uni-info {
  display: flex;
  flex-direction: column;
}

.pc-uni-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.pc-faculty {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

.degree-badge {
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  white-space: nowrap;
}

.pc-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 14px;
  min-height: 44px;
}

.pc-title a:hover {
  color: var(--color-primary);
}

.pc-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 12px;
}

.spec-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-k {
  color: #64748b;
}

.spec-v {
  font-weight: 600;
  color: #0f172a;
}

.btn-pc-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #2563eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.btn-pc-apply:hover {
  background: #1d4ed8;
}

/* 6. Homepage Apply Section */
.sl-apply-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b1329 0%, #1e3a8a 100%);
  color: #ffffff;
}

.apply-card-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.apply-copy h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.apply-copy p {
  font-size: 15px;
  color: #bfdbfe;
  line-height: 1.6;
  margin-bottom: 24px;
}

.trust-list-apply {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tla-item {
  font-size: 13px;
  font-weight: 600;
  color: #93c5fd;
  display: flex;
  align-items: center;
  gap: 8px;
}

.apply-form-wrapper {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  color: var(--color-dark);
}

.home-lead-form h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  text-align: center;
}

.home-lead-form .form-control {
  width: 100%;
  height: 44px;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 14px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.home-lead-form .form-control:focus {
  border-color: var(--color-primary);
  background: #ffffff;
}

.btn-submit-lead {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
  transition: all 0.2s;
  margin-top: 14px;
}

.btn-submit-lead:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .unis-grid,
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apply-card-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .unis-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .section-heading-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-list-apply {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   UNIVERSITY PHOTO ALBUM & LIGHTBOX
   ========================================================================== */
.uni-gallery-section {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 26px 28px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
}

.gallery-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.uni-gallery-section .sb-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.uni-gallery-section .sb-sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
}

.uni-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.gallery-item-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #f1f5f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4 / 3;
}

.gallery-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
}

.gic-thumb-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.gic-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item-card:hover .gic-thumb-wrap img {
  transform: scale(1.06);
}

.gic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
}

.gallery-item-card:hover .gic-overlay {
  opacity: 1;
}

.gic-zoom-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(6px);
  transition: transform 0.2s ease;
}

.gallery-item-card:hover .gic-zoom-btn {
  transform: translateY(0);
}

.gic-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-align: center;
  padding: 10px;
  transition: background 0.2s;
}

.gic-more-overlay:hover {
  background: rgba(15, 23, 42, 0.85);
}

.gallery-view-all-wrap {
  margin-top: 14px;
  width: 100%;
}

.btn-show-all-photos {
  width: 100%;
  padding: 13px 20px;
  background: #eff6ff !important;
  border: 1.5px dashed #60a5fa !important;
  border-radius: var(--radius-lg);
  color: #1d4ed8 !important;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.btn-show-all-photos svg {
  color: #2563eb !important;
  stroke: #2563eb !important;
  flex-shrink: 0;
}

.btn-show-all-photos span {
  color: #1d4ed8 !important;
  font-weight: 700 !important;
}

.btn-show-all-photos:hover {
  background: #dbeafe !important;
  border-color: #2563eb !important;
  color: #1e40af !important;
}

/* Lightbox Modal */
.sl-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 29, 0.94);
  backdrop-filter: blur(8px);
}

.sl-lightbox-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1100px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sl-lb-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.sl-lb-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.sl-lb-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
}

.sl-lb-nav:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.sl-lb-prev { left: -60px; }
.sl-lb-next { right: -60px; }

.sl-lb-stage {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sl-lb-stage img {
  max-width: 100%;
  max-height: 66vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  user-select: none;
}

.sl-lb-caption {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px 0;
  color: #e2e8f0;
  font-size: 14px;
}

.sl-lb-title {
  font-weight: 600;
}

.sl-lb-counter {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: #93c5fd;
}

.sl-lb-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: 100%;
  padding: 14px 4px 4px;
  margin-top: 8px;
}

.sl-strip-thumb {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: all 0.2s;
}

.sl-strip-thumb.active,
.sl-strip-thumb:hover {
  opacity: 1;
  border-color: #3b82f6;
  transform: scale(1.05);
}

.sl-strip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .sl-lb-prev { left: 10px; }
  .sl-lb-next { right: 10px; }
  .uni-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .uni-gallery-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px !important;
    padding: 4px 2px 12px !important;
    scrollbar-width: none;
  }
  .uni-gallery-grid::-webkit-scrollbar {
    display: none;
  }
  .gallery-item-card {
    flex: 0 0 230px !important;
    height: 155px !important;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  .gic-thumb-wrap {
    height: 100% !important;
  }
  .gic-thumb-wrap img {
    height: 100% !important;
    object-fit: cover;
  }
  .sl-lb-nav { width: 38px; height: 38px; font-size: 16px; }
}

/* ==========================================================================
   HOMEPAGE MODERN REDESIGN STYLES (STATS, COVER CARDS, LIST/CARD TOGGLE)
   ========================================================================== */

/* 1. Modern Stats Cards */
.stats-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-modern-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.stat-modern-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.08);
  border-color: #93c5fd;
}

.smc-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.smc-info {
  display: flex;
  flex-direction: column;
}

.smc-num {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.smc-lbl {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-top: 3px;
}

/* Degree Card Subtext */
.dc-subtext {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 500;
}

/* 2. University City Filter Chips */
.uni-city-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .uni-city-chips {
    justify-content: center;
    gap: 8px;
  }
}

button.ucc-pill {
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #334155;
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

button.ucc-pill:hover {
  border-color: #93c5fd;
  color: #1d4ed8;
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -2px rgba(37, 99, 235, 0.16);
}

button.ucc-pill.active {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35) !important;
  transform: translateY(-1px);
}

/* 3. Universities Modern Cards Grid */
.unis-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.uni-modern-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.uni-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -4px rgba(0, 0, 0, 0.12);
  border-color: #93c5fd;
}

/* Cover Image Wrap */
.umc-cover-wrap {
  width: 100%;
  height: 140px;
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.umc-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.uni-modern-card:hover .umc-cover-img {
  transform: scale(1.08);
}

.umc-cover-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 36px;
}

.umc-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
}

.umc-cover-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.umc-city-badge {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

.umc-photo-badge {
  background: rgba(37, 99, 235, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

/* Floating Logo */
.umc-floating-logo {
  position: absolute;
  bottom: -18px;
  left: 16px;
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  z-index: 3;
}

.umc-floating-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Card Body */
.umc-body {
  padding: 26px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.umc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 14px;
  min-height: 44px;
}

.umc-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.umc-title a:hover {
  color: var(--color-primary);
}

.umc-meta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.umc-meta-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.umc-meta-k {
  color: #64748b;
  font-weight: 500;
}

.umc-meta-v {
  font-weight: 700;
  color: #0f172a;
}

.umc-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.btn-umc-primary {
  flex-grow: 1;
  height: 38px;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-umc-primary:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.btn-umc-gallery {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-umc-gallery:hover {
  background: #e2e8f0;
  transform: scale(1.05);
}

/* 4. Popular Programs Toolbar & Chips */
.programs-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.view-mode-toggle {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  padding: 4px;
  gap: 3px;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.btn-view-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: none;
  background: transparent;
  color: #64748b;
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
  font-size: 13px;
  font-weight: 700;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.btn-view-toggle:hover {
  color: #0f172a;
}

.btn-view-toggle.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12), 0 1px 2px rgba(15, 23, 42, 0.06);
}

.program-category-pills,
.programs-category-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 2px 0;
}

@media (max-width: 768px) {
  .program-category-pills,
  .programs-category-chips {
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
  }
}

button.hpc-pill,
button.pcc-pill {
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #334155;
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
  padding: 9px 18px;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  user-select: none;
}

button.hpc-pill:hover,
button.pcc-pill:hover {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -2px rgba(37, 99, 235, 0.16);
}

button.hpc-pill:active,
button.pcc-pill:active {
  transform: translateY(0);
}

button.hpc-pill.active,
button.pcc-pill.active {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.38) !important;
  transform: translateY(-1px);
}

/* 5. MODERN PROGRAMS VIEW: LIST & CARDS MODE */
.home-programs-container.view-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-programs-container.view-list .home-program-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.home-programs-container.view-list .home-program-item:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.12);
}

.hpi-main-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.hpi-logo-wrap {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.home-program-item:hover .hpi-logo-wrap {
  transform: scale(1.08);
  border-color: #bfdbfe;
}

.hpi-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.hpi-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.hpi-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hpi-prog-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
}

.hpi-prog-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hpi-prog-title a:hover {
  color: #2563eb;
}

.hpi-burs-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.hpi-uni-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.4;
}

.hpi-uni-link {
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hpi-uni-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

.hpi-dot {
  color: #cbd5e1;
}

.hpi-faculty-name {
  color: #64748b;
  font-weight: 500;
}

/* Modern Chip Badges */
.hpi-chips-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.hpi-chip {
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.hpi-chip.chip-degree {
  background: #eef2ff;
  color: #4338ca;
  border: 1px solid #e0e7ff;
}

.hpi-chip.chip-lang {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.hpi-chip.chip-dur {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.hpi-chip.chip-yok {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

/* Right Finance & Apply Block */
.hpi-finance-block {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  text-align: right;
}

html[dir="rtl"] .hpi-finance-block {
  text-align: left;
}

.hpi-price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

html[dir="rtl"] .hpi-price-section {
  align-items: flex-start;
}

.hpi-fee-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.hpi-price-display {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.hpi-price-display .price-current {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #059669;
  letter-spacing: -0.3px;
}

.hpi-price-display .price-old {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 600;
  text-decoration: line-through;
}

.hpi-price-display .price-period {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

.btn-hpi-modern-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-hpi-modern-apply:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* 6. Programs View: Cards Mode */
.home-programs-container.view-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-programs-container.view-cards .home-program-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
}

.home-programs-container.view-cards .home-program-item:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.1);
}

.home-programs-container.view-cards .hpi-main-block {
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

.home-programs-container.view-cards .hpi-finance-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  width: 100%;
  justify-content: space-between;
  text-align: left;
}

html[dir="rtl"] .home-programs-container.view-cards .hpi-finance-block {
  text-align: right;
}

.home-programs-container.view-cards .hpi-price-section {
  align-items: flex-start;
}

html[dir="rtl"] .home-programs-container.view-cards .hpi-price-section {
  align-items: flex-end;
}

.btn-all-programs-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-all-programs-link:hover {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

/* Responsive adjustments for Programs List (< 900px, 500px, 390px) */
@media (max-width: 1200px) {
  .home-programs-container.view-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-modern-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .home-programs-container.view-cards { grid-template-columns: 1fr; }
  .home-programs-container.view-list .home-program-item {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 16px;
  }
}

@media (max-width: 680px) {
  .home-programs-container.view-list .home-program-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px;
    gap: 16px;
    border-radius: 20px;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.07);
    background: #ffffff;
  }
  .home-programs-container.view-list .hpi-main-block {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .home-programs-container.view-list .hpi-logo-wrap {
    width: 58px;
    height: 58px;
    min-width: 58px;
    padding: 5px;
    border-radius: 16px;
    margin: 0 auto;
  }
  .home-programs-container.view-list .hpi-info-stack {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .home-programs-container.view-list .hpi-header-row {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .home-programs-container.view-list .hpi-prog-title {
    font-size: 16.5px;
    text-align: center;
  }
  .home-programs-container.view-list .hpi-uni-sub {
    justify-content: center;
    text-align: center;
  }
  .home-programs-container.view-list .hpi-chips-row {
    justify-content: center;
    margin-top: 6px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .home-programs-container.view-list .hpi-finance-block {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    gap: 12px;
  }
  html[dir="rtl"] .home-programs-container.view-list .hpi-finance-block {
    text-align: center;
  }
  .home-programs-container.view-list .hpi-price-section {
    align-items: center;
    text-align: center;
  }
  html[dir="rtl"] .home-programs-container.view-list .hpi-price-section {
    align-items: center;
  }
  .home-programs-container.view-list .hpi-price-display {
    justify-content: center;
  }
  .home-programs-container.view-list .hpi-price-display .price-current {
    font-size: 21px;
  }
  .home-programs-container.view-list .btn-hpi-modern-apply {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    margin: 0 auto;
    padding: 11px 22px;
    font-size: 13.5px;
  }
}

@media (max-width: 540px) {
  .stats-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-modern-card {
    flex-direction: column;
    text-align: center;
    padding: 16px 12px;
    gap: 10px;
  }
  .smc-icon {
    margin: 0 auto;
  }
}

/* ==========================================================================
   USER REFERENCE UNIVERSITY CARD DESIGN
   ========================================================================== */
.unis-modern-grid,
.universities-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sl-uni-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease;
}

.sl-uni-card:hover {
  transform: translateY(-4px);
}

/* Rounded Media Wrap Container */
.suc-media-wrap {
  position: relative;
  width: 100%;
  height: 290px;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  text-decoration: none;
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.12);
  display: block;
}

.suc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.sl-uni-card:hover .suc-img {
  transform: scale(1.06);
}

.suc-fallback-img {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 35%, #1e3a8a 0%, #09172e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 48px;
  color: #ffffff;
}

.suc-fallback-3dlogo {
  width: 115px;
  height: 115px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.7));
  transform: perspective(500px) rotateY(-8deg) rotateX(6deg);
  transition: all 0.4s ease;
}

.sl-uni-card:hover .suc-fallback-3dlogo {
  transform: perspective(500px) rotateY(0deg) rotateX(0deg) scale(1.12);
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.85));
}

/* Top Left Pill Badge ("Yurt") */
.suc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #074585;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Dark Gradient Overlay for High Contrast */
.suc-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 18, 36, 0.95) 0%,
    rgba(10, 18, 36, 0.75) 38%,
    rgba(10, 18, 36, 0.22) 68%,
    transparent 100%
  );
  z-index: 2;
  transition: background 0.3s ease;
}

.sl-uni-card:hover .suc-gradient {
  background: linear-gradient(
    to top,
    rgba(10, 18, 36, 0.98) 0%,
    rgba(10, 18, 36, 0.8) 42%,
    rgba(10, 18, 36, 0.3) 72%,
    transparent 100%
  );
}

/* Content Overlay at Bottom */
.suc-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px 14px;
  z-index: 3;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.suc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 3px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.suc-location {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0 0 6px 0;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Rating Row */
.suc-rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.suc-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
}

.suc-score {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* Meta Line: Year & Students */
.suc-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.sml-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sml-item svg {
  opacity: 0.9;
  flex-shrink: 0;
}

/* Apply Now Button Below Image */
.btn-suc-apply {
  width: 100%;
  height: 44px;
  background: #0257ad;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(2, 87, 173, 0.35);
  transition: all 0.2s ease;
}

.btn-suc-apply:hover {
  background: #014387;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 87, 173, 0.45);
}

@media (max-width: 1200px) {
  .unis-modern-grid,
  .universities-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .unis-modern-grid,
  .universities-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .unis-modern-grid,
  .universities-catalog-grid {
    grid-template-columns: 1fr;
  }
  .suc-media-wrap {
    height: 270px;
  }
}

/* ==========================================================================
   3D UNIVERSITY LOGO BACKGROUND & FLOATING EMBLEM
   ========================================================================== */
/* 3D Floating Emblem at Top-Right */
.suc-3dlogo-emblem {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 56px;
  height: 56px;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6));
  transform: perspective(400px) rotateY(-10deg) rotateX(8deg);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

.suc-3dlogo-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sl-uni-card:hover .suc-3dlogo-emblem {
  transform: perspective(400px) rotateY(0deg) rotateX(0deg) scale(1.15) translateY(-3px);
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.78)) brightness(1.08);
}

/* 3D Background Watermark (Ambient Depth Layer) */
.suc-3dlogo-watermark {
  position: absolute;
  top: 15px;
  right: -20px;
  width: 180px;
  height: 180px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.16;
  filter: blur(0.2px) contrast(1.1);
  transform: perspective(600px) rotateY(-18deg) rotateX(12deg);
  transition: all 0.45s ease;
}

.suc-3dlogo-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sl-uni-card:hover .suc-3dlogo-watermark {
  opacity: 0.30;
  transform: perspective(600px) rotateY(-10deg) rotateX(6deg) scale(1.08);
  filter: blur(0) contrast(1.15);
}

/* ==========================================================================
   3D LOGO MARQUEE STRIP (Below Hero)
   ========================================================================== */
.sl-logo-marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0f2847 50%, #0a1628 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  position: relative;
}

/* Fade edges */
.sl-logo-marquee::before,
.sl-logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.sl-logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #0a1628, transparent);
}
.sl-logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #0a1628, transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
}

.sl-logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  opacity: 0.85;
}

.marquee-logo-item:hover {
  transform: scale(1.25) translateY(-4px);
  opacity: 1;
  filter: drop-shadow(0 10px 24px rgba(37, 99, 235, 0.5)) brightness(1.1);
}

.marquee-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .marquee-logo-item {
    width: 44px;
    height: 44px;
  }
  .logo-marquee-track {
    gap: 22px;
  }
  .sl-logo-marquee {
    padding: 10px 0;
  }
}

/* ==========================================================================
   NEW USER-FRIENDLY MIXED LAYOUT COMPONENTS
   Timeline, Comparison Table, Asymmetric Spotlight, FAQ & Program Table
   ========================================================================== */

/* Section Utility */
.sl-section-padding {
  padding: 80px 0;
}
.sl-section-light {
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.sl-section-tint {
  background: #f8fafc;
}

.section-heading-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-heading-center .sub-pill {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  border: 1px solid #dbeafe;
}
.section-heading-center .heading-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-heading-center .heading-desc {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   1. PROCESS ROADMAP / TIMELINE (ZAMAN ÇİZELGESİ)
   -------------------------------------------------------------------------- */
.sl-timeline-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.timeline-track-wrap {
  position: relative;
  margin-top: 30px;
}

/* Connecting bar for desktop */
.timeline-track-line {
  position: absolute;
  top: 48px;
  left: 60px;
  right: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #38bdf8 50%, #10b981 100%);
  border-radius: 4px;
  z-index: 1;
}

.timeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.timeline-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 24px 26px;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline-step-card:hover {
  transform: translateY(-6px);
  border-color: #93c5fd;
  box-shadow: 0 16px 32px -6px rgba(37, 99, 235, 0.12);
}

.step-node-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-number-bubble {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
}

.timeline-step-card:nth-child(2) .step-number-bubble {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 6px 14px rgba(2, 132, 199, 0.35);
}
.timeline-step-card:nth-child(3) .step-number-bubble {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.35);
}
.timeline-step-card:nth-child(4) .step-number-bubble {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 6px 14px rgba(5, 150, 105, 0.35);
}

.step-duration-pill {
  font-size: 11.5px;
  font-weight: 700;
  color: #475569;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.step-check-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 4px 10px;
  border-radius: 8px;
  margin-top: auto;
}

@media (max-width: 992px) {
  .timeline-track-line { display: none; }
  .timeline-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .timeline-steps-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   2. INTERACTIVE COMPARISON TABLE (TABLO DÜZENİ)
   -------------------------------------------------------------------------- */
.sl-comparison-section {
  padding: 85px 0;
  background: #ffffff;
}

.comparison-table-wrapper {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
  position: relative;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 22px;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
}

.comparison-table thead th {
  background: #f8fafc;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  border-bottom: 2px solid #e2e8f0;
}

.comparison-table th.col-feature {
  width: 32%;
  font-size: 14px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table th.col-studyleo {
  width: 28%;
  background: linear-gradient(180deg, #eff6ff 0%, #e0e7ff 100%);
  color: #1e40af;
  position: relative;
  border-top: 3px solid #2563eb;
}

.comparison-table th.col-individual {
  width: 20%;
  color: #475569;
}

.comparison-table th.col-agency {
  width: 20%;
  color: #475569;
}

.studyleo-badge-col {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  margin-top: 4px;
}

.comparison-table tbody tr:hover td {
  background-color: #f8fafc;
}

.comparison-table tbody td.col-studyleo {
  background: #f8faff;
  border-left: 1px solid #dbeafe;
  border-right: 1px solid #dbeafe;
  font-weight: 600;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.feature-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.feature-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #1e293b;
}
.feature-subtitle {
  display: block;
  font-size: 12px;
  color: #64748b;
  font-weight: 400;
}

.status-badge-positive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #047857;
  font-weight: 700;
  font-size: 14px;
}
.status-badge-warning {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b45309;
  font-weight: 600;
  font-size: 13.5px;
}
.status-badge-negative {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dc2626;
  font-weight: 600;
  font-size: 13.5px;
}

.status-badge-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dcfce7;
  color: #15803d;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13.5px;
}

/* --------------------------------------------------------------------------
   3. ASYMMETRIC WIDE SPOTLIGHT (GENİŞ İÇERİK BLOĞU)
   -------------------------------------------------------------------------- */
.sl-wide-spotlight-section {
  padding: 85px 0;
  background: #0b1528;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.sl-wide-spotlight-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.sl-wide-spotlight-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-asymmetric-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.spotlight-left-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spotlight-left-block .sp-header {
  margin-bottom: 28px;
}
.sp-pill {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(56, 189, 248, 0.3);
}
.sp-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 12px;
}
.sp-sub {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
}

.spotlight-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.spotlight-pillar-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 18px;
  transition: all 0.25s ease;
}

.spotlight-pillar-item:hover {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-3px);
}

.spi-icon {
  font-size: 24px;
  margin-bottom: 10px;
}
.spi-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
.spi-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

.spotlight-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 16px;
}

.btn-spotlight-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
  transition: all 0.2s;
}
.btn-spotlight-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
  color: #ffffff;
}

/* Right side: Interactive Degree Levels List */
.spotlight-right-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 30px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.srb-header {
  margin-bottom: 20px;
}
.srb-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}
.srb-sub {
  font-size: 13.5px;
  color: #94a3b8;
}

.degree-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.dl-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.25s ease;
}

.dl-item-row:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: #38bdf8;
  transform: translateX(4px);
}

.dl-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dl-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.dl-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
.dl-info span {
  font-size: 12.5px;
  color: #94a3b8;
}

.dl-right {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: right;
}
.dl-count-badge {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.dl-arrow {
  color: #94a3b8;
  font-size: 18px;
  transition: transform 0.2s;
}
.dl-item-row:hover .dl-arrow {
  color: #38bdf8;
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .spotlight-asymmetric-grid { grid-template-columns: 1fr; }
  .spotlight-pillars-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   4. CURATED PROGRAM DIRECTORY (LİSTE & TABLO DÜZENİ)
   -------------------------------------------------------------------------- */
.programs-table-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-top: 24px;
}

.program-row-item {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  gap: 16px;
}

.program-row-item:last-child {
  border-bottom: none;
}

.program-row-item:hover {
  background: #f8faff;
}

.pri-name-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pri-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}
.pri-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pri-title-box h4 {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  line-height: 1.3;
}
.pri-title-box h4 a:hover {
  color: #2563eb;
}
.pri-uni-link {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
}
.pri-uni-link:hover {
  color: #0f172a;
}

.pri-faculty {
  font-size: 13.5px;
  color: #475569;
  font-weight: 500;
}

.pri-meta-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pri-price-box {
  text-align: left;
}
.pri-price-val {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #059669;
}
.pri-price-lbl {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
}

.pri-action-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btn-pri-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-pri-apply:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

@media (max-width: 992px) {
  .program-row-item {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .pri-name-wrap { grid-column: span 2; }
  .pri-action-box { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .program-row-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .pri-action-box { width: 100%; }
  .btn-pri-apply { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   5. ASYMMETRIC FAQ & LEAD CAPTURE SECTION (GENİŞ 2 KOLONLU BLOK)
   -------------------------------------------------------------------------- */
.sl-faq-lead-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  border-top: 1px solid var(--color-border);
}

.faq-lead-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

/* Accordion FAQ */
.sl-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sl-accordion-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sl-accordion-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.sl-accordion-item.active {
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 8px 25px -5px rgba(200, 16, 46, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
}

.sl-accordion-header {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: #0f172a;
  gap: 16px;
  transition: all 0.2s ease;
}

.sl-accordion-header * {
  pointer-events: none;
}

html[dir="rtl"] .sl-accordion-header {
  text-align: right;
}

.sl-accordion-header:hover {
  color: #c8102e;
}

.sl-accordion-item.active .sl-accordion-header {
  color: #c8102e;
}

.sl-accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sl-accordion-header:hover .sl-accordion-icon {
  background: #e2e8f0;
  color: #0f172a;
}

.sl-accordion-item.active .sl-accordion-icon {
  background: linear-gradient(135deg, #c8102e 0%, #991b1b 100%);
  color: #ffffff;
  transform: rotate(180deg);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}

.sl-accordion-body {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
}

.sl-accordion-body p {
  margin: 0;
}

.sl-accordion-item.active .sl-accordion-body {
  display: block;
  animation: slFaqFadeIn 0.25s ease-out forwards;
}

@keyframes slFaqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern Lead Capture Card */
.lead-capture-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 12px 35px -8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.lcc-header {
  margin-bottom: 22px;
}
.lcc-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}
.lcc-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}
.lcc-desc {
  font-size: 13.5px;
  color: #64748b;
}

.lcc-trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
}

/* ==========================================================================
   MODERN FOOTER & FLOATING ACTIONS
   ========================================================================== */

.sl-footer.modern-footer {
  background: radial-gradient(circle at 50% 0%, #172554 0%, #0b1329 55%, #030712 100%);
  color: #94a3b8;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-container {
  margin-bottom: 48px;
}

.footer-cta-card {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.75) 0%, rgba(15, 23, 42, 0.95) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.fcta-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.fcta-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.3;
}

.fcta-desc {
  color: #cbd5e1;
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0;
}

.fcta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-fcta-apply {
  background: #ffffff;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-fcta-apply:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-fcta-wa {
  background: #22c55e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-fcta-wa:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

/* 5-Column Grid */
.footer-grid-container {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid-5 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
}

.footer-logo-wrap {
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}

.footer-brand-text {
  color: #94a3b8;
  font-size: 12.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.footer-trust-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  width: fit-content;
}

.footer-col-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
}

.footer-link-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-link-menu li a {
  color: #94a3b8;
  font-size: 12.5px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link-menu li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-more-link {
  color: #60a5fa !important;
  font-weight: 700;
  margin-top: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fci-row {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.45;
}

.fci-icon {
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.fci-row strong {
  color: #cbd5e1;
  display: block;
  font-size: 11.5px;
}

.fci-row p {
  margin: 2px 0 0;
}

.fci-row a {
  color: #4ade80;
  text-decoration: none;
  font-weight: 700;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 20px 0;
  font-size: 12px;
  color: #64748b;
}

.bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bottom-copy strong {
  color: #94a3b8;
}

.bottom-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bottom-nav-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.bottom-nav-links a:hover {
  color: #ffffff;
}

.btn-back-top {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-back-top:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* Floating WhatsApp */
.sl-floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 850;
}

.floating-wa-btn {
  width: 56px;
  height: 56px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.floating-wa-btn:hover {
  background: #16a34a;
  transform: scale(1.08) translateY(-2px);
}

.wa-tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: #0f172a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-wa-btn:hover .wa-tooltip {
  opacity: 1;
}

/* Mobile Bottom Navigation Bar (Modern Dock) */
.sl-mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px)) 8px;
  z-index: 1500;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

.mbb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.mbb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 2px;
  border-radius: 8px;
  transition: all 0.15s ease;
  width: 100%;
  text-align: center;
}

.mbb-item:active {
  transform: scale(0.94);
}

.mbb-item.active,
.mbb-item:hover {
  color: #2563eb;
}

.mbb-item.mbb-highlight {
  color: #2563eb;
}

.mbb-icon {
  font-size: 18px;
  line-height: 1;
  display: block;
}

.mbb-label {
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
  font-size: 10px;
}

/* Responsive Footer & Mobile Layout */
@media (max-width: 1024px) {
  .footer-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-col.col-brand-main {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }

  .sl-floating-wa {
    display: none !important;
  }

  .footer-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
  }

  .fcta-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-fcta-apply, .btn-fcta-wa {
    width: 100%;
    justify-content: center;
  }

  .footer-grid-5 {
    grid-template-columns: 1fr;
  }

  .footer-col.col-brand-main {
    grid-column: span 1;
  }

  .bottom-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .sl-mobile-bottom-bar {
    display: block !important;
  }
}

/* ==========================================================================
   BLOG & NEWS STYLING (LISTING & DETAIL PAGES)
   ========================================================================== */

/* Blog Hero Banner */
.sl-blog-hero {
  background: radial-gradient(circle at 50% 0%, #1e3a8a 0%, #0f172a 70%, #020617 100%);
  color: #ffffff;
  padding: 56px 0 44px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.blog-hero-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.blog-hero-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

/* Blog Filter Bar */
.blog-filter-bar {
  max-width: 820px;
  margin: 0 auto;
}

.blog-filter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.bff-search {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.bff-search svg {
  position: absolute;
  left: 12px;
  color: #94a3b8;
}

.bff-search input {
  width: 100%;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 14px 0 38px;
  font-size: 13.5px;
  outline: none;
  color: #0f172a;
}

.bff-search input:focus {
  background: #ffffff;
  border-color: #3b82f6;
}

.bff-select-wrap {
  min-width: 240px;
}

.bff-uni-select {
  width: 100%;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  outline: none;
  cursor: pointer;
}

.btn-bff-submit {
  background: #2563eb;
  color: #ffffff;
  border: none;
  height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-bff-submit:hover {
  background: #1d4ed8;
}

.btn-bff-reset {
  color: #f1f5f9;
  font-size: 12px;
  text-decoration: underline;
  padding: 0 8px;
}

@media (max-width: 768px) {
  .blog-hero-title { font-size: 26px; }
  .blog-filter-form { flex-direction: column; }
  .bff-search, .bff-select-wrap, .btn-bff-submit { width: 100%; }
}

/* Blog Layout Wrap */
.sl-blog-layout-wrap {
  padding: 50px 0 70px;
  background: #f8fafc;
}

.blog-main-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

/* Blog Cards Grid */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.1);
}

/* Spotlight Card (1st post) */
.blog-card.spotlight-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.bc-thumb-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.spotlight-card .bc-thumb-wrap {
  height: 100%;
  min-height: 260px;
}

.bc-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .bc-thumb {
  transform: scale(1.05);
}

.bc-uni-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  max-width: calc(100% - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bc-uni-badge a {
  color: #ffffff;
  text-decoration: none;
}

.bc-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 10px;
}

.bc-dot { color: #cbd5e1; }

.bc-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 10px;
}

.spotlight-card .bc-title {
  font-size: 21px;
}

.bc-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.bc-title a:hover {
  color: #2563eb;
}

.bc-excerpt {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

.bc-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.bc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  transition: gap 0.2s;
}

.bc-read-more:hover {
  gap: 10px;
  color: #1d4ed8;
}

/* Pagination */
.blog-pagination {
  margin-top: 40px;
}

.blog-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination a, .blog-pagination span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s;
}

.blog-pagination span.current {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.blog-pagination a:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #2563eb;
}

/* Sidebar Widgets */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bs-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.bs-widget-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 8px;
}

.bs-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: #2563eb;
}

.bs-lead-widget {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff;
}

.bs-widget-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}

.bs-lead-widget h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
}

.bs-lead-widget p {
  font-size: 13px;
  line-height: 1.5;
  color: #bfdbfe;
  margin: 0 0 18px;
}

.btn-bs-apply {
  display: block;
  text-align: center;
  background: #ffffff;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 800;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-bs-apply:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.bs-uni-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bs-uni-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s;
}

.bs-uni-list li a:hover {
  background: #eff6ff;
  color: #2563eb;
  padding-left: 14px;
}

.bs-arrow { color: #94a3b8; }

.bs-view-all {
  font-size: 12.5px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.bs-wa-widget {
  border-left: 4px solid #22c55e;
}

.bs-wa-widget h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}

.bs-wa-widget p {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 14px;
}

.btn-bs-wa {
  display: block;
  text-align: center;
  background: #22c55e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-bs-wa:hover {
  background: #16a34a;
}

/* ==========================================================================
   SINGLE BLOG POST EDITORIAL STYLING (single.php)
   ========================================================================== */

.single-post-hero {
  background: radial-gradient(circle at 50% 0%, #1e3a8a 0%, #0f172a 75%, #020617 100%);
  color: #ffffff;
  padding: 44px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #94a3b8;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.sp-breadcrumbs a {
  color: #cbd5e1;
  text-decoration: none;
}

.sp-breadcrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.sp-crumb-current {
  color: #93c5fd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.sp-tags-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sp-cat-badge {
  background: rgba(37, 99, 235, 0.3);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
}

.sp-uni-badge {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fde047;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
}

.sp-uni-badge:hover {
  background: rgba(245, 158, 11, 0.35);
  color: #ffffff;
}

.sp-uni-badge.global {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

.sp-main-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.sp-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 16px;
}

.sp-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-author-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sp-author-info strong {
  display: block;
  font-size: 13px;
  color: #ffffff;
}

.sp-author-info span {
  font-size: 11.5px;
  color: #94a3b8;
}

.sp-meta-details {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: #cbd5e1;
}

/* Single Post Layout Grid */
.sp-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  padding: 40px 0 70px;
  align-items: start;
}

.sp-article-body {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.sp-featured-image-box {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.sp-featured-image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.sp-content-typography {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}

.sp-content-typography h2, .sp-content-typography h3 {
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 800;
  margin: 32px 0 16px;
  line-height: 1.3;
}

.sp-content-typography h2 { font-size: 22px; }
.sp-content-typography h3 { font-size: 18px; }

.sp-content-typography p {
  margin-bottom: 20px;
}

.sp-content-typography blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: #1e3a8a;
  font-weight: 600;
}

.sp-content-typography ul, .sp-content-typography ol {
  margin: 0 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Related Uni Spotlight in Single Post */
.sp-related-uni-card {
  margin: 36px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.sruc-logo-wrap {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
}

.sruc-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sruc-info {
  flex: 1;
}

.sruc-badge {
  font-size: 11px;
  font-weight: 800;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}

.sruc-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}

.sruc-info p {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 14px;
}

.sruc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-sruc-details {
  background: #2563eb;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-sruc-details:hover {
  background: #1d4ed8;
}

.btn-sruc-apply {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-sruc-apply:hover {
  background: #f1f5f9;
}

/* Social Share Strip */
.sp-share-strip {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.sp-share-label {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
}

.sp-share-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-btn {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.share-wa { background: #22c55e; color: #ffffff; }
.share-tw { background: #0f172a; color: #ffffff; }
.share-ln { background: #0284c7; color: #ffffff; }

/* Related Posts 3 Cards */
.sp-related-posts-section {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid #f1f5f9;
}

.srp-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
}

.srp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.srp-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}

.srp-card:hover {
  transform: translateY(-3px);
  border-color: #93c5fd;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
}

.srp-card-thumb {
  height: 120px;
  overflow: hidden;
}

.srp-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.srp-card-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.srp-card-date {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 4px;
}

.srp-card-info h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

/* Single Post Sidebar */
.sp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 96px;
}

.sps-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.sps-lead-box {
  background: #ffffff;
  border: 2px solid #dbeafe;
}

.sps-widget-badge {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.sps-lead-box h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}

.sps-lead-box p {
  font-size: 12.5px;
  color: #64748b;
  margin: 0 0 16px;
}

.sps-lead-box .form-group {
  margin-bottom: 10px;
}

.sps-lead-box input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
}

.sps-lead-box input:focus {
  border-color: #2563eb;
}

.btn-sps-submit {
  width: 100%;
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}

.btn-sps-submit:hover {
  background: #1d4ed8;
}

.sps-all-blog-link {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.sps-all-blog-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   UNIVERSITY DETAIL RELATED NEWS BLOCK (single-university.php)
   ========================================================================== */
.uni-news-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.uni-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.uni-news-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.uni-news-card:hover {
  transform: translateY(-3px);
  border-color: #93c5fd;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.unc-thumb-wrap {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.unc-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.uni-news-card:hover .unc-thumb-wrap img {
  transform: scale(1.05);
}

.unc-date-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.unc-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.unc-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.35;
}

.unc-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.unc-title a:hover {
  color: #2563eb;
}

.unc-excerpt {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 12px;
  flex: 1;
}

.unc-read-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.unc-read-link:hover {
  gap: 8px;
}

/* Responsive Blog Styles */
@media (max-width: 992px) {
  .blog-main-grid, .sp-layout-grid {
    grid-template-columns: 1fr;
  }
  .blog-card.spotlight-card {
    grid-template-columns: 1fr;
  }
  .srp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-cards-grid, .uni-news-grid {
    grid-template-columns: 1fr;
  }
  .sp-main-title {
    font-size: 24px;
  }
  .sp-article-body {
    padding: 20px;
  }
  .sp-related-uni-card {
    flex-direction: column;
    text-align: center;
  }
  .sruc-actions {
    justify-content: center;
  }
}

/* ==========================================================================
   LANGUAGE SWITCHER STYLES
   ========================================================================== */
.sl-lang-switcher-wrap {
  position: relative;
  display: inline-block;
}

.sl-lang-toggle-btn {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.sl-lang-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.6);
}

.sl-lang-flag {
  font-size: 16px;
  line-height: 1;
}

.sl-lang-code {
  font-size: 12px;
  letter-spacing: 0.5px;
}

.sl-lang-arrow {
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.2s ease;
}

.sl-lang-dropdown.open .sl-lang-arrow {
  transform: rotate(180deg);
}

.sl-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 200px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 8px;
  z-index: 1000;
  animation: slFadeIn 0.15s ease;
}

.sl-lang-dropdown.open {
  display: block;
}

.sl-lang-search-box {
  padding: 4px 4px 8px 4px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 4px;
}

.sl-lang-search-input {
  width: 100%;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 12px;
  box-sizing: border-box;
}

.sl-lang-search-input:focus {
  outline: none;
  border-color: #2563eb;
}

.sl-lang-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sl-lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.15s ease;
}

.sl-lang-item:hover {
  background: #f8fafc;
  color: #2563eb;
}

.sl-lang-item.active {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 700;
}

.sl-li-flag {
  font-size: 16px;
}

.sl-li-name {
  flex-grow: 1;
}

.sl-li-check {
  font-size: 12px;
  color: #2563eb;
  font-weight: 700;
}

/* ==========================================================================
   POPULAR ACADEMIC DEPARTMENTS SECTION (BÖLÜMLER ÖN PLANDA)
   ========================================================================== */
.sl-departments-section {
  padding: 64px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.dept-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   ACADEMIC DEPARTMENTS (YATAY / HORIZONTAL CARDS DÜZENİ)
   ========================================================================== */
.dept-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .dept-modern-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.sl-dept-card.sl-dept-card-horizontal {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 22px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.sl-dept-card.sl-dept-card-horizontal::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--dept-color, #2563eb);
  opacity: 0.85;
  transition: width 0.25s ease;
}

html[dir="rtl"] .sl-dept-card.sl-dept-card-horizontal::before {
  left: auto;
  right: 0;
}

.sl-dept-card.sl-dept-card-horizontal:hover {
  transform: translateY(-3px) translateX(2px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.1), 0 0 0 1px var(--dept-color, #2563eb);
}

html[dir="rtl"] .sl-dept-card.sl-dept-card-horizontal:hover {
  transform: translateY(-3px) translateX(-2px);
}

.sl-dept-card.sl-dept-card-horizontal:hover::before {
  width: 6px;
}

.sdc-h-left {
  flex-shrink: 0;
}

.sdc-h-left .sdc-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: var(--dept-bg, rgba(37, 99, 235, 0.08));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.sl-dept-card.sl-dept-card-horizontal:hover .sdc-icon-badge {
  transform: scale(1.1) rotate(4deg);
}

.sdc-h-center {
  flex: 1;
  min-width: 0;
}

.sdc-h-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.sdc-h-head .sdc-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  transition: color 0.2s ease;
}

.sl-dept-card.sl-dept-card-horizontal:hover .sdc-title {
  color: var(--dept-color, #2563eb);
}

.sdc-h-head .sdc-count-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.sdc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.sdc-tag {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 2px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.sdc-h-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  text-align: right;
}

html[dir="rtl"] .sdc-h-right {
  text-align: left;
}

.sdc-price-box {
  display: flex;
  flex-direction: column;
}

.sdc-price-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.sdc-price-val {
  font-size: 15px;
  font-weight: 800;
  color: #059669;
  white-space: nowrap;
}

.sdc-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.sl-dept-card.sl-dept-card-horizontal:hover .sdc-arrow-btn {
  background: var(--dept-color, #2563eb);
  color: #ffffff;
  transform: translateX(4px);
}

html[dir="rtl"] .sl-dept-card.sl-dept-card-horizontal:hover .sdc-arrow-btn {
  transform: translateX(-4px);
}

html[dir="rtl"] .sdc-arrow-btn svg {
  transform: rotate(180deg);
}

@media (max-width: 640px) {
  .sl-dept-card.sl-dept-card-horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px;
    gap: 14px;
    border-radius: 20px;
  }
  .sl-dept-card.sl-dept-card-horizontal::before {
    left: 15%;
    right: 15%;
    top: 0;
    width: 70%;
    height: 3px;
    border-radius: 0 0 4px 4px;
  }
  .sdc-h-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    width: 100%;
  }
  .sdc-icon-badge {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .sdc-title-wrap {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .sdc-title {
    text-align: center;
    font-size: 17px;
  }
  .sdc-subtext {
    text-align: center;
  }
  .sdc-tags {
    justify-content: center;
  }
  .sdc-h-right {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    gap: 10px;
  }
  html[dir="rtl"] .sdc-h-right {
    text-align: center;
  }
  .sdc-stats-mini {
    align-items: center;
    text-align: center;
  }
  .sdc-arrow-btn {
    width: 38px;
    height: 38px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   FEATURED UNIVERSITIES (ŞIK & MODERN OKUL KARTLARI)
   ========================================================================== */
.unis-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1200px) {
  .unis-modern-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .unis-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .unis-modern-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin: 0 auto;
  }
  .sl-uni-card {
    text-align: center;
    border-radius: 22px;
  }
  .suc-card-body {
    align-items: center;
    text-align: center;
    padding: 18px;
  }
  .suc-body-head {
    text-align: center;
    width: 100%;
  }
  .suc-title {
    text-align: center;
    min-height: auto;
    margin-bottom: 8px;
  }
  .suc-specs-row {
    justify-content: center;
  }
  .suc-footer-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    width: 100%;
    padding-top: 14px;
  }
  .suc-price-col {
    align-items: center;
    text-align: center;
  }
  .suc-actions-group {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
  .btn-suc-detail,
  .btn-suc-apply-now {
    flex: 1;
    text-align: center;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 13px;
  }
}

.sl-uni-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.sl-uni-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 20px 36px -8px rgba(15, 23, 42, 0.12);
}

/* Media Banner Top */
.suc-media-wrap {
  position: relative;
  width: 100%;
  height: 195px;
  background: #0f172a;
  overflow: hidden;
}

.suc-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.suc-media-wrap .suc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sl-uni-card:hover .suc-media-wrap .suc-img {
  transform: scale(1.08);
}

.suc-fallback-img {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 35%, #1e3a8a 0%, #09172e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 48px;
  color: #ffffff;
}

.suc-fallback-3dlogo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6));
  transform: perspective(500px) rotateY(-8deg) rotateX(6deg);
  transition: all 0.4s ease;
}

.sl-uni-card:hover .suc-fallback-3dlogo {
  transform: perspective(500px) rotateY(0deg) rotateX(0deg) scale(1.1);
}

/* City Badge Top-Left */
.suc-top-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

html[dir="rtl"] .suc-top-badge {
  left: auto;
  right: 12px;
}

/* 3D Floating Emblem Top-Right */
.suc-3dlogo-emblem {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html[dir="rtl"] .suc-3dlogo-emblem {
  right: auto;
  left: 10px;
}

.suc-3dlogo-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sl-uni-card:hover .suc-3dlogo-emblem {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

/* Rating Pill Bottom-Left of media */
.suc-img-rating {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 3;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 9px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

html[dir="rtl"] .suc-img-rating {
  left: auto;
  right: 12px;
}

.suc-img-rating .suc-stars {
  color: #fbbf24;
  font-size: 12px;
}

.suc-img-rating .suc-score {
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
}

/* Structured Card Body */
.suc-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.suc-body-head {
  margin-bottom: 10px;
}

.suc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.suc-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sl-uni-card:hover .suc-title a {
  color: #2563eb;
}

.suc-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.suc-spec-tag {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Tuition Fee & Dual Action Buttons */
.suc-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  gap: 10px;
}

.suc-price-col {
  display: flex;
  flex-direction: column;
}

.suc-price-col .suc-price-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.suc-price-col .suc-price-val {
  font-size: 15px;
  font-weight: 800;
  color: #059669;
}

.suc-actions-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-suc-detail {
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  background: #f1f5f9;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-suc-detail:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.btn-suc-apply-now {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-suc-apply-now:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* ==========================================================================
   HOMEPAGE BLOG & GUIDES SECTION + MOBILE VISIBILITY CONTROLS
   ========================================================================== */
@media (max-width: 768px) {
  .sl-departments-section.hide-on-mobile,
  .sl-departments-section {
    display: none !important;
  }
}

.sl-home-blog-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1200px) {
  .home-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .home-blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 440px;
    margin: 0 auto;
  }
}

.sl-blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.sl-blog-card:hover {
  transform: translateY(-5px);
  border-color: #93c5fd;
  box-shadow: 0 20px 36px -8px rgba(37, 99, 235, 0.12);
}

.sbc-media-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #0f172a;
}

.sbc-media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.sbc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sl-blog-card:hover .sbc-img {
  transform: scale(1.06);
}

.sbc-grad-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sl-blog-card:hover .sbc-grad-placeholder {
  transform: scale(1.04);
}

.sbc-icon {
  font-size: 50px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.sbc-cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

html[dir="rtl"] .sbc-cat-tag {
  left: auto;
  right: 12px;
}

.sbc-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sbc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 10px;
}

.sbc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.sbc-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sl-blog-card:hover .sbc-title a {
  color: #2563eb;
}

.sbc-excerpt {
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.sbc-footer {
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.sbc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sbc-read-more svg {
  transition: transform 0.2s ease;
}

.sl-blog-card:hover .sbc-read-more svg {
  transform: translateX(4px);
}

html[dir="rtl"] .sl-blog-card:hover .sbc-read-more svg {
  transform: translateX(-4px) rotate(180deg);
}

/* ==========================================================================
   GLOBAL LEAD & CONTACT CTA SECTION (COMPACT & SLEEK)
   ========================================================================== */
.sl-global-lead-section {
  background: linear-gradient(135deg, #09172e 0%, #0e2343 50%, #081a36 100%);
  position: relative;
  overflow: hidden;
  padding: 34px 0 38px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sl-global-lead-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.sl-global-lead-section::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.gls-compact-wrap {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
}

/* Modern Compact White Card */
.gls-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 28px 20px;
  box-shadow: 0 18px 45px -10px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
  color: #0f172a;
}

/* Card Top Bar */
.gfc-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.gfc-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gfc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 9999px;
  letter-spacing: 0.3px;
}

.gfc-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
}

.gfc-top-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gfc-feature-pill {
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px 10px;
  border-radius: 9999px;
  white-space: nowrap;
}

/* 3-Column Compact Form Grid */
.gfc-fields-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px 14px;
}

.gls-form-card .form-group {
  margin-bottom: 0;
}

.gls-form-card label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}

.gfc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.gfc-input-icon {
  position: absolute;
  left: 12px;
  font-size: 13.5px;
  pointer-events: none;
  opacity: 0.65;
  z-index: 2;
}

html[dir="rtl"] .gfc-input-icon {
  left: auto;
  right: 12px;
}

.gls-form-card input[type="text"],
.gls-form-card input[type="tel"],
.gls-form-card input[type="email"],
.gls-form-card select {
  width: 100%;
  height: 42px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 12px 0 34px;
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
  font-size: 13px;
  color: #0f172a;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

html[dir="rtl"] .gls-form-card input[type="text"],
html[dir="rtl"] .gls-form-card input[type="tel"],
html[dir="rtl"] .gls-form-card input[type="email"] {
  padding: 0 34px 0 12px;
}

.gls-form-card select {
  padding-left: 34px;
  cursor: pointer;
  appearance: auto;
}

html[dir="rtl"] .gls-form-card select {
  padding-right: 34px;
  padding-left: 12px;
}

.gls-form-card input:focus,
.gls-form-card select:focus {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Action Row (Submit + Privacy) */
.gfc-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  padding-top: 4px;
}

.gfc-privacy-note {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-gfc-submit {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  height: 46px;
  padding: 0 28px;
  background: linear-gradient(135deg, #c8102e 0%, #b91c1c 50%, #991b1b 100%);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 5px 18px rgba(200, 16, 46, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  white-space: nowrap;
}

.btn-gfc-submit:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.45);
}

.btn-gfc-submit svg {
  transition: transform 0.2s ease;
}

.btn-gfc-submit:hover svg {
  transform: translateX(3px);
}

html[dir="rtl"] .btn-gfc-submit:hover svg {
  transform: translateX(-3px) rotate(180deg);
}

/* Form Response Messages */
.form-response-msg {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.form-response-msg.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-response-msg.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Responsive Rules */
@media (max-width: 960px) {
  .gfc-fields-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gfc-top-right {
    display: none;
  }
}

@media (max-width: 680px) {
  .sl-global-lead-section {
    padding: 26px 0 30px;
  }

  .gls-form-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .gfc-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .gfc-title {
    font-size: 17px;
  }

  .gfc-fields-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gfc-action-row {
    flex-direction: column-reverse;
    align-items: stretch;
    text-align: center;
    gap: 10px;
  }

  .gfc-privacy-note {
    justify-content: center;
    font-size: 11px;
  }

  .btn-gfc-submit {
    width: 100%;
  }
}
