/* =============================================
   EDSIRI.COM – Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #4f0fbf;
  --primary-dark: #3a0a8e;
  --primary-light: #f3eeff;
  --accent-pink: #e91e8c;
  --accent-green: #22c55e;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #9898b3;
  --bg-page: #f4f5f9;
  --bg-white: #ffffff;
  --border: #e2e4f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 20px rgba(79,15,191,0.07);
  --shadow-lg: 0 8px 40px rgba(79,15,191,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-page);
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.tag-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary);
  background: var(--primary-light); padding: 4px 14px;
  border-radius: 50px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800; color: var(--text-dark);
  margin-bottom: 12px; line-height: 1.2;
}
.section-sub {
  font-size: 16px; color: var(--text-mid);
  max-width: 560px; line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 12px 26px; border-radius: 50px; border: none;
  cursor: pointer; transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,15,191,0.35); }

.btn-dark { background: var(--text-dark); color: #fff; }
.btn-dark:hover { background: #2d2d4e; transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-ghost { background: transparent; color: var(--text-dark); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex; align-items: center;
  height: 68px; gap: 32px;
}
.navbar__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 800; color: var(--text-dark);
  flex-shrink: 0;
}
.navbar__logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; font-weight: 800;
}
.navbar__logo span { color: var(--primary); }

.navbar__nav { display: flex; gap: 4px; margin-left: auto; }
.navbar__nav-item { position: relative; }
.navbar__nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--text-dark);
  transition: all .18s;
}
.navbar__nav-link:hover, .navbar__nav-link.active { background: var(--primary-light); color: var(--primary); }
.navbar__nav-link svg { width: 14px; height: 14px; transition: transform .2s; }
.navbar__nav-item:hover .navbar__nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.navbar__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px;
  min-width: 200px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s;
}
.navbar__nav-item:hover .navbar__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.navbar__dropdown a {
  display: block; padding: 9px 14px; border-radius: 7px;
  font-size: 14px; color: var(--text-mid); transition: all .15s;
}
.navbar__dropdown a:hover { background: var(--primary-light); color: var(--primary); }

.navbar__actions { display: flex; gap: 10px; align-items: center; margin-left: 16px; }

/* Mobile hamburger */
.navbar__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.navbar__burger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: .3s; }

/* ---- HERO ---- */
.hero {
  background: var(--bg-page);
  padding: 72px 0 60px;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-mid);
  margin-bottom: 18px;
}
.hero__eyebrow .stars { color: #f59e0b; letter-spacing: 1px; }
.hero h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.1;
  color: var(--text-dark); margin-bottom: 18px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub { font-size: 17px; color: var(--text-mid); margin-bottom: 32px; max-width: 460px; }

.search-bar {
  display: flex; align-items: center;
  background: white; border: 2px solid var(--border);
  border-radius: 50px; padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow); max-width: 520px;
  margin-bottom: 28px; transition: border-color .2s;
}
.search-bar:focus-within { border-color: var(--primary); }
.search-bar__icon { color: var(--text-light); width: 18px; height: 18px; flex-shrink: 0; margin-right: 10px; }
.search-bar input {
  flex: 1; border: none; outline: none;
  font-family: inherit; font-size: 15px; color: var(--text-dark);
  background: transparent;
}
.search-bar input::placeholder { color: var(--text-light); }
.search-bar button { flex-shrink: 0; }

.hero__rating {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--text-dark);
}
.hero__rating img { height: 18px; }

/* Hero visual */
.hero__visual {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px; align-items: end;
}
.hero__photo {
  border-radius: 18px; overflow: hidden;
  background: var(--border);
}
.hero__photo:nth-child(1) { height: 200px; border-radius: 18px 18px 18px 4px; }
.hero__photo:nth-child(2) { height: 240px; }
.hero__photo:nth-child(3) { height: 280px; }
.hero__photo:nth-child(4) { height: 220px; border-radius: 18px 18px 4px 18px; }
.hero__photo-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}

/* ---- CONFIDENCE SECTION ---- */
.confidence { background: white; }
.confidence__inner {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 48px; align-items: start;
}
.confidence__app {
  background: var(--bg-page); border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
}
.confidence__phone {
  width: 130px; height: 240px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  border-radius: 24px; display: flex; align-items: center;
  justify-content: center; font-size: 60px;
  box-shadow: 0 16px 40px rgba(79,15,191,0.3);
}
.confidence__app h3 { font-size: 16px; font-weight: 700; }
.confidence__app p { font-size: 13px; color: var(--text-mid); margin-bottom: 16px; }
.app-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.app-badge {
  display: flex; align-items: center; gap: 7px;
  background: var(--text-dark); color: white;
  padding: 8px 14px; border-radius: 9px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: background .2s;
}
.app-badge:hover { background: var(--primary); }
.app-badge svg { width: 16px; height: 16px; }

.confidence__features { display: flex; flex-direction: column; gap: 18px; }
.conf-feat {
  background: var(--bg-page); border-radius: var(--radius-sm);
  padding: 24px 28px; border: 1px solid var(--border);
  transition: box-shadow .2s;
}
.conf-feat:hover { box-shadow: var(--shadow); }
.conf-feat h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.conf-feat p { font-size: 14px; color: var(--text-mid); }

/* ---- DESTINATIONS ---- */
.destinations { background: var(--bg-page); }
.dest-scroll {
  display: flex; gap: 18px;
  overflow-x: auto; padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
.dest-scroll::-webkit-scrollbar { display: none; }
.dest-card {
  flex-shrink: 0; width: 200px;
  border-radius: var(--radius); overflow: hidden;
  background: white; border: 1px solid var(--border);
  scroll-snap-align: start; cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none; color: var(--text-dark);
  display: block;
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dest-card__img {
  height: 150px; width: 100%;
  object-fit: cover; background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
.dest-card__body { padding: 14px 16px; }
.dest-card__body h3 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.dest-card__body p { font-size: 12px; color: var(--text-light); }
.scroll-controls {
  display: flex; gap: 10px; margin-top: 28px; justify-content: center;
  align-items: center;
}
.scroll-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; font-size: 18px;
  color: var(--text-dark);
}
.scroll-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.show-all-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--text-dark);
  background: white; border: 1.5px solid var(--border);
  padding: 9px 20px; border-radius: 50px; cursor: pointer;
  transition: all .2s;
}
.show-all-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ---- INSTITUTIONS ---- */
.institutions { background: white; }
.inst-scroll {
  display: flex; gap: 18px;
  overflow-x: auto; padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
.inst-scroll::-webkit-scrollbar { display: none; }
.inst-card {
  flex-shrink: 0; width: 210px;
  background: var(--bg-page); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  scroll-snap-align: start; cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none; color: var(--text-dark); display: block;
}
.inst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.inst-card__img {
  height: 130px; background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; overflow: hidden;
}
.inst-card__body { padding: 14px 16px; }
.inst-card__body h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.inst-card__body p { font-size: 12px; color: var(--text-light); }

/* ---- WHY US ---- */
.why-us { background: var(--bg-page); }
.stats-row {
  display: flex; gap: 0; margin-bottom: 60px;
  border-radius: var(--radius); overflow: hidden;
  background: white; border: 1px solid var(--border);
}
.stat-item {
  flex: 1; padding: 36px 28px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-size: 42px; font-weight: 800; line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__label { font-size: 14px; color: var(--text-mid); font-weight: 500; }

/* Testimonials */
.testi-scroll {
  display: flex; gap: 20px;
  overflow-x: auto; padding-bottom: 12px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.testi-scroll::-webkit-scrollbar { display: none; }
.testi-card {
  flex-shrink: 0; width: 340px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.testi-card__quote {
  font-size: 36px; line-height: 1;
  color: var(--primary); margin-bottom: 14px; font-weight: 800;
}
.testi-card__text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testi-card__author h4 { font-size: 14px; font-weight: 700; }
.testi-card__author span { font-size: 12px; color: var(--text-light); }

/* ---- FUNDS & STAYS ---- */
.funds-stays { background: white; }
.fs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fs-card {
  border-radius: var(--radius); padding: 36px 32px;
  border: 1px solid var(--border);
}
.fs-card--funds { background: #f0fdf4; border-color: #bbf7d0; }
.fs-card--stays { background: #faf5ff; border-color: #e9d5ff; }
.fs-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.fs-card__sub { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; }
.fs-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.fs-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.7); border-radius: 10px; padding: 12px 16px;
  font-size: 14px; font-weight: 500;
}
.fs-item__icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}

/* ---- JOURNEY ---- */
.journey { background: var(--bg-page); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.journey-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.journey-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.journey-card__img {
  height: 200px; background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 70px; overflow: hidden;
}
.journey-card__body { padding: 24px 24px 28px; }
.journey-card__body h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.journey-card__body p { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; }

/* ---- FOOTER ---- */
.footer { background: #1a1a2e; color: rgba(255,255,255,0.75); }
.footer__top { padding: 60px 0 48px; }
.footer__grid {
  display: grid;
  grid-template-columns: 240px repeat(4, 1fr);
  gap: 32px;
}
.footer__brand .navbar__logo { color: white; margin-bottom: 14px; }
.footer__brand .navbar__logo span { color: #a78bfa; }
.footer__brand p { font-size: 13px; line-height: 1.7; max-width: 200px; }

.footer__col h4 { color: white; font-size: 13px; font-weight: 700; letter-spacing: .5px; margin-bottom: 16px; }
.footer__col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; transition: color .18s;
}
.footer__col a:hover { color: white; }

.footer__trending {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 36px 0;
}
.footer__trending-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer__tab {
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.5); cursor: pointer; border-bottom: 2px solid transparent;
  transition: all .2s; background: none; border-left: none; border-right: none; border-top: none;
  font-family: inherit;
}
.footer__tab.active { color: white; border-bottom-color: var(--primary); }
.footer__trending-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.footer__trending-grid a { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer__trending-grid a:hover { color: white; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 13px; }
.footer__socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.7); cursor: pointer;
  transition: all .2s; text-decoration: none;
}
.social-icon:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-light);
  margin-bottom: 24px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-light); transition: color .15s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-mid); }

/* ---- COURSE PAGE ---- */
.course-page { background: var(--bg-page); padding: 40px 0 80px; }
.course-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.course-main { background: white; border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); }
.course-main h1 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.course-main h2 { font-size: 18px; font-weight: 700; margin: 28px 0 12px; display: flex; align-items: center; gap: 10px; }
.course-main p { font-size: 15px; color: var(--text-mid); line-height: 1.75; }
.course-main ul { margin-left: 0; }
.course-main ul li {
  font-size: 14px; color: var(--text-mid); padding: 7px 0;
  border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px;
}
.course-main ul li::before { content: '•'; color: var(--primary); font-size: 18px; flex-shrink: 0; margin-top: -2px; }
.course-main ul li:last-child { border-bottom: none; }

.req-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.req-tab {
  padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--border); background: white;
  transition: all .18s; font-family: inherit;
}
.req-tab.active { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }

.doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.doc-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: var(--bg-page);
  border-radius: 10px; border: 1px solid var(--border);
  font-size: 14px;
}
.doc-plus {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}

.rel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rel-card {
  padding: 18px; background: var(--bg-page);
  border-radius: 10px; border: 1px solid var(--border);
  transition: border-color .18s;
}
.rel-card:hover { border-color: var(--primary); }
.rel-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.rel-card__uni { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid); }

.rel-articles { display: flex; flex-direction: column; gap: 14px; }
.rel-article {
  display: flex; gap: 14px; padding: 14px;
  background: var(--bg-page); border-radius: 10px; border: 1px solid var(--border);
}
.rel-article__img {
  width: 72px; height: 60px; border-radius: 8px;
  background: var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  overflow: hidden;
}
.rel-article h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.rel-article p { font-size: 12px; color: var(--text-light); }

/* Course sidebar */
.course-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sidebar-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
}
.sidebar-card--cta { background: var(--primary-light); border-color: #c4b5fd; }
.sidebar-card--pink { background: #fff0f9; border-color: #f9a8d4; }
.sidebar-actions { display: flex; gap: 10px; margin-bottom: 20px; align-items: center; justify-content: flex-end; }
.sidebar-actions button {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; transition: all .18s;
}
.sidebar-actions button:hover { border-color: var(--primary); background: var(--primary-light); }
.course-meta { display: flex; flex-direction: column; gap: 0; }
.course-meta__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.course-meta__item:last-child { border-bottom: none; }
.course-meta__item .label { display: flex; align-items: center; gap: 8px; color: var(--text-mid); }
.course-meta__item .value { font-weight: 700; color: var(--primary); }
.course-meta__item .value.dark { color: var(--text-dark); }
.course-meta__note { font-size: 12px; color: var(--text-light); margin-top: 12px; display: flex; gap: 6px; }

.genie-card { text-align: center; }
.genie-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--primary); }
.genie-card p { font-size: 13px; color: var(--text-mid); margin-bottom: 16px; }

/* ---- COUNTRY PAGE ---- */
.country-hero {
  height: 300px; background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.country-hero__text { text-align: center; color: white; position: relative; z-index: 1; }
.country-hero__text h1 { font-size: 42px; font-weight: 800; }
.country-hero__text p { font-size: 18px; opacity: 0.85; }
.country-hero__bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 180px; opacity: 0.1;
}
.country-page { background: var(--bg-page); padding: 40px 0 80px; }
.country-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.country-main { display: flex; flex-direction: column; gap: 24px; }
.country-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 32px;
}
.country-card h2 { font-size: 20px; font-weight: 800; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.country-card p { font-size: 15px; color: var(--text-mid); line-height: 1.75; }
.country-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: white; }
.cstat { padding: 24px; text-align: center; border-right: 1px solid var(--border); }
.cstat:last-child { border-right: none; }
.cstat__icon { font-size: 22px; margin-bottom: 8px; }
.cstat__num { font-size: 24px; font-weight: 800; color: var(--primary); }
.cstat__label { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.program-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.prog-tag {
  padding: 8px 18px; border-radius: 50px;
  border: 1.5px solid var(--border); background: var(--bg-page);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all .18s; text-decoration: none; color: var(--text-dark);
}
.prog-tag:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* Country sidebar */
.country-sidebar { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; }
.info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-item { background: var(--bg-page); border-radius: 8px; padding: 12px 14px; }
.info-item .k { font-size: 11px; color: var(--text-light); margin-bottom: 4px; font-weight: 600; }
.info-item .v { font-size: 14px; font-weight: 700; }
.season-tabs { display: flex; gap: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 16px; }
.season-tab { flex: 1; padding: 10px 4px; text-align: center; font-size: 12px; font-weight: 600; cursor: pointer; background: white; border: none; font-family: inherit; transition: .18s; }
.season-tab.active { background: var(--primary); color: white; }
.season-info { font-size: 13px; color: var(--text-mid); }

/* ---- COURSES LISTING PAGE ---- */
.courses-page { background: var(--bg-page); padding: 40px 0 80px; }
.courses-layout { display: grid; grid-template-columns: 1fr 280px; gap: 32px; align-items: start; }
.courses-main h1 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.courses-main > p { font-size: 15px; color: var(--text-mid); margin-bottom: 28px; }
.course-list { display: flex; flex-direction: column; gap: 14px; }
.course-item {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; transition: box-shadow .2s, border-color .2s;
  text-decoration: none; color: var(--text-dark);
}
.course-item:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.course-item__uni { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-mid); margin-top: 6px; }
.course-item__uni-logo {
  width: 24px; height: 24px; border-radius: 4px; background: var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.course-item__price { font-size: 16px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.fav-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--border);
  background: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 15px; flex-shrink: 0; transition: all .18s;
}
.fav-btn:hover { border-color: var(--accent-pink); background: #fff0f9; }
.courses-sidebar { display: flex; flex-direction: column; gap: 16px; }
.filter-card { background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; }
.filter-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.filter-list { display: flex; flex-direction: column; gap: 10px; }
.filter-item { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; }
.filter-item input[type=checkbox] { accent-color: var(--primary); width: 16px; height: 16px; }
.other-progs { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp .55s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .confidence__inner { grid-template-columns: 1fr; }
  .confidence__app { max-width: 400px; }
}
@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__actions { display: none; }
  .navbar__burger { display: flex; }
  .fs-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .course-layout { grid-template-columns: 1fr; }
  .country-layout { grid-template-columns: 1fr; }
  .courses-layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__trending-grid { grid-template-columns: 1fr 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .rel-grid { grid-template-columns: 1fr; }
  .country-stats { grid-template-columns: 1fr; }
  .cstat { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
