@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&family=Lora:wght@500;600;700&display=swap');

/* =========================
   01. VARIABLES
========================= */

:root {
  --primary: #b1005d;
  --primary-dark: #8f004a;
  --dark: #071428;
  --text: #172033;
  --muted: #667085;
  --white: #ffffff;
  --border: #e4e4e7;
  --accent-pink: #d60271;
}

/* =========================
   02. RESET / BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

.svg-sprite {
  display: none;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================
   03. GLOBAL LAYOUT / UTILITIES
========================= */

.container {
  width: min(1280px, calc(100% - 40px));
  margin: auto;
}

section {
  padding: 64px 0;
}

.center {
  text-align: center;
}

/* =========================
   04. GLOBAL TYPOGRAPHY
========================= */

.section-heading span {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  line-height:4;
}

.section-heading h2,
.why-section h2,
.albania-section h2 {
  font-family: "Manrope", "Inter", sans-serif;
  margin: 5px 0 34px;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--dark);
  letter-spacing: -0.045em;
  font-weight: 800;
}

/* =========================
   05. GLOBAL BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  padding: 0 36px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .25s ease;
  font-family: inherit;
  letter-spacing: .01em;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(177, 0, 93, .3);
}

.btn-primary:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-light {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-light:hover {
  background: #ffffff;
  color: var(--primary);
}

/* =========================
   06. HEADER / NAVIGATION
========================= */

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 62px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  position: relative;
  padding: 12px 0;
}

.nav-link,
.dropdown-toggle {
  background: none;
  border: 0;
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.25s ease;
}

.nav-link:hover,
.dropdown-toggle:hover {
  color: #ff4f96;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  z-index: 200;
}

.dropdown-menu a {
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  transition: 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f6f6f6;
  color: var(--primary);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  display: flex;
}

.apply-now-btn {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.apply-now-btn:hover {
  background: #ffffff;
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 0;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
}

/* =========================
   07. HERO SECTION
========================= */

.hero {
  min-height: 660px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7,20,40,.95) 0%,
      rgba(7,20,40,.82) 38%,
      rgba(7,20,40,.25) 100%
    ),
    url("../../upload/foto-godina.png") center 90%/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 700px;
  color: #ffffff;
  padding-top: 85px;
}

.hero-text h1 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(44px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
  font-weight: 800;
}

.hero-text h1 span {
  color: var(--accent-pink);
  display: block;
}

.hero-text p {
  font-size: 19px;
  line-height: 1.55;
  max-width: 570px;
  color: rgba(255,255,255,.92);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 25px 60px;
  margin: 36px 0 0;
}

.hero-features div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-features svg {
  font-size: 62px;
  color: #ffffff;
  opacity: .95;
  stroke-width: 2.35;
}

.hero-features small {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.22;
  font-size: 16px;
}

/* VIDEO CARD */

.hero-video-card {
  position: absolute;
  right: 0;
  top: 0;
  width: 545px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px 70px;
  box-shadow: 0 18px 35px rgba(0,0,0,.22);
  text-align: center;
  transform: translateY(90px);
}

.hero-video-frame {
  width: 100%;
  height: 285px;
  border-radius: 14px;
  overflow: hidden;
  background: #000000;
}

.hero-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.hero-video-card h3 {
  margin: 40px 0 32px;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}

.hero-video-card .btn {
  min-width: 285px;
}

/* =========================
   08. PROGRAMS SECTION
========================= */

.all-programs-section {
  display: block;
  background: #f4f4f4;
  padding: 0;
  opacity: 1;
  transform: none;
}

.programs-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 70px;
  width: min(1280px, calc(100% - 40px));
  margin: auto;
  padding: 60px 0;
}

/* Programs sidebar */

.program-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.apply-btn,
.program-tab {
  width: 100%;
  min-height: 54px;
  border-radius: 6px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .25s ease;
  font-family: "Manrope", "Inter", sans-serif;
}

.apply-btn:hover,
.program-tab:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.program-tab.active {
  background: #ffffff;
  color: #111827;
}

/* Brochure banner */

.admission-box {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  transition: .25s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.admission-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(177,0,93,.16);
}

.admission-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Programs content */

.program-panel {
  display: none;
  opacity: 0;
}

.program-panel.active {
  display: block;
  animation: panelFade .35s ease forwards;
}

.program-panel.fade-out {
  animation: panelFadeOut .2s ease forwards;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Degree grid */

.degree-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

/* Degree cards */

.degree-card {
  border: 0;
  background: #ffffff;
  border-radius: 10px;
  min-height: 190px;
  padding: 28px 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  cursor: pointer;
  text-align: center;
  transition: .25s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.degree-card::before {
  content: "";
  width: 68px;
  height: 68px;
  background: rgba(177,0,93,.1);
  border-radius: 50%;
  position: absolute;
  top: -20px;
  right: -20px;
  transition: .25s ease;
}

.degree-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(177,0,93,.16);
}

.degree-card:hover::before {
  background: rgba(177,0,93,.18);
  transform: scale(1.35);
}

.degree-card > span {
  display: block;
  color: var(--primary);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 2;
}

.degree-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.degree-card small strong {
  display: block;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 4px;
}

.degree-card small span {
  display: block;
  color: var(--muted);
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

.degree-card p {
  display: none;
}

/* Program modal */

.program-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.program-modal.show {
  display: flex;
}

.program-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,20,40,.68);
  backdrop-filter: blur(4px);
}

.program-modal-card {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  animation: modalCard .28s ease forwards;
}

@keyframes modalCard {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.program-modal-large {
  width: min(860px, 100%);
}

.program-modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  z-index: 5;
  border: 0;
  background: #ffffff;
  color: var(--primary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}

.program-modal-header {
  padding: 34px 38px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
}

.program-modal-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .85;
}

.program-modal-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: -0.04em;
}

.program-info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-bottom: 1px solid #eef0f3;
}

.program-info-grid div {
  padding: 18px 16px;
  border-right: 1px solid #eef0f3;
  background: #ffffff;
}

.program-info-grid div:last-child {
  border-right: 0;
}

.program-info-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
}

.program-info-grid span {
  color: #101828;
  font-size: 14px;
  font-weight: 700;
}

.program-modal-body {
  padding: 30px 38px;
}

.program-modal-body p {
  margin: 0 0 16px;
  color: #344054;
  line-height: 1.65;
  font-size: 16px;
}

.program-modal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 28px;
}

.program-modal-columns h4 {
  margin: 0 0 14px;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.program-modal-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-modal-columns li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #475467;
  line-height: 1.45;
  font-size: 15px;
}

.program-modal-columns li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.program-modal-actions {
  display: flex;
  gap: 14px;
  padding: 0 38px 34px;
}

.program-action-primary,
.program-action-secondary {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: .25s ease;
}

.program-action-primary {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
}

.program-action-primary:hover {
  background: #ffffff;
  color: var(--primary);
}

.program-action-secondary {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.program-action-secondary:hover {
  background: var(--primary);
  color: #ffffff;
}

/* =========================
   ADMISSIONS PROCESS SECTION
========================= */

.admission-process-section {
  background: #ffffff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.process-card {
  position: relative;
  background: #fff7fb;
  border: 1px solid rgba(177, 0, 93, .12);
  border-radius: 12px;
  padding: 34px 28px 30px;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 48px;
  height: 2px;
  background: var(--primary);
  opacity: .35;
}

.process-card:last-child::after {
  display: none;
}

.process-number {
  width: 58px;
  height: 58px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(177,0,93,.25);
}

.process-card h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.process-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.process-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #172033;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.process-card li span {
  min-width: 28px;
  height: 28px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.process-action {
  margin-top: 34px;
  text-align: center;
}

/* =========================
   ADMISSIONS PROCESS SECTION
========================= */

.admission-process-section {
  background: #ffffff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.process-card {
  position: relative;
  display: block;
  background: #fff7fb;
  border: 1px solid rgba(177, 0, 93, .12);
  border-radius: 12px;
  padding: 30px 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  overflow: visible;
  transition: .25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(177,0,93,.14);
}

.process-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  width: 28px;
  height: 2px;
  background: var(--primary);
  opacity: .35;
}

.process-card:last-child::after {
  display: none;
}

.process-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.process-number {
  min-width: 58px;
  height: 58px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(177,0,93,.25);
}

.process-head h3 {
  margin: 0 0 4px;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.process-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.process-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #172033;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.process-card li:last-child {
  margin-bottom: 0;
}

.process-card li span {
  min-width: 28px;
  height: 28px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

/* Visa card special layout */

.visa-items {
  display: grid;
  gap: 18px;
}

.visa-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(177,0,93,.1);
  border-radius: 10px;
  padding: 16px;
}

.visa-item svg {
  min-width: 44px;
  font-size: 44px;
  color: var(--primary);
  stroke-width: 2.2;
}

.visa-item strong {
  display: block;
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.visa-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.process-action {
  margin-top: 34px;
  text-align: center;
}


/* =========================
   09. WHY BARLETI SECTION
========================= */

.why-section {
  background: #faf7f5;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
}

.feature-list div {
  display: flex;
  gap: 17px;
}

.feature-list svg {
  min-width: 54px;
  font-size: 54px;
  color: var(--primary);
  stroke-width: 2.25;
  margin-top: 2px;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.feature-list strong {
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
}

/* Video Card */

.video-card {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
  background: transparent;
}

.video-card img {
  height: 330px;
  width: 100%;
  object-fit: cover;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,20,40,.65), transparent);
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 2;
  width: 74px;
  height: 74px;
  background: #ffffff;
  color: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  padding-left: 4px;
}

.video-card strong {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
}

/* Video Modal */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.show {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,20,40,.78);
  backdrop-filter: blur(5px);
}

.video-modal-card {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.video-modal-card iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 3;
  border: 0;
  background: #ffffff;
  color: var(--primary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* =========================
   10. WHY ALBANIA SECTION
========================= */

.albania-section {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7,20,40,.92), rgba(7,20,40,.42)),
    url("../../upload/tirana.jpg") center 20% / cover no-repeat;
}

.albania-wrap {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 44px;
  align-items: center;
}

.albania-section h2 {
  color: #ffffff;
}

.albania-section h2 span {
  color: var(--accent-pink);
}

.albania-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 620px;
}

.albania-section li {
  margin: 13px 0;
  font-weight: 700;
}

.albania-section li::before {
  content: "✓";
  background: var(--primary);
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  font-size: 13px;
}

.albania-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.albania-quick-links a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}

.albania-quick-links a:hover {
  color: var(--accent-pink);
  transform: translateY(-2px);
}

.albania-quick-links svg {
  font-size: 42px;
  stroke-width: 2.25;
}

.albania-right {
  display: grid;
  gap: 18px;
}

.albania-video-card {
  border-radius: 12px;
}

.albania-video-card img {
  height: 260px;
}

.albania-cost-btn {
  min-height: 96px;
  border: 3px solid #ffffff;
  border-radius: 12px;
  padding: 18px 22px;
  color: #ffffff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: .25s ease;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.albania-cost-btn svg {
  min-width: 58px;
  font-size: 58px;
  stroke-width: 2.25;
}

.albania-cost-btn strong {
  display: block;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.albania-cost-btn small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.albania-cost-btn:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-4px);
}

.albania-cost-btn:hover small {
  color: #475467;
}


/* =========================
   11. APPLY / ADMISSIONS SECTION
========================= */

.apply-section {
  background: #ffffff;
  padding-bottom: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}

.step-card {
  position: relative;
  padding: 16px 16px 20px;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  left: calc(50% + 28px);
  width: calc(100% - 24px);
  border-top: 2px dotted #c9c9cf;
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-weight: 800;
  font-size: 13px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 7px #ffffff;
}

.step-icon {
  color: var(--primary);
  font-size: 66px;
  margin-bottom: 12px;
}

.step-icon svg {
  stroke-width: 2.25;
}

.step-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.step-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.45;
}

/* =========================
   12. SUPPORT SECTION
========================= */

.support-section {
  background: #ffffff;
  padding-top: 20px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.support-grid article {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  transition: .25s ease;
}

.support-grid article:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 36px rgba(0,0,0,.08);
}

.support-grid svg {
  color: var(--primary);
  font-size: 66px;
  stroke-width: 2.25;
}

.support-grid h3 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.support-grid p {
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   13. CTA SECTION
========================= */

.cta {
  background: linear-gradient(90deg, #8f004a, #c00067);
  color: #ffffff;
  padding: 34px 0;
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta h2 {
  margin: 0 0 6px;
  font-size: 30px;
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.cta p {
  margin: 0;
}

/* =========================
   FAQ PAGE
========================= */

.inner-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,20,40,.92), rgba(7,20,40,.65)),
    url("../../upload/new-students.jpg") center/cover no-repeat;
}

.inner-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(54px, 7vw, 70px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.faq-section {
  background: #ffffff;
  padding: 70px 0 90px;
}

.faq-intro {
  max-width: 980px;
  margin: 0 0 34px;
  color: #475467;
  font-size: 16px;
  line-height: 1.65;
}

.faq-title-box {
  background: var(--primary);
  color: #ffffff;
  padding: 22px 26px;
  margin-bottom: 30px;
}

.faq-title-box h2 {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.faq-accordion {
  border: 1px solid #e4e4e7;
  border-bottom: 0;
}

.faq-item {
  border-bottom: 1px solid #e4e4e7;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  border: 0;
  background: #ffffff;
  color: var(--dark);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.faq-question:hover {
  background: #fff3f8;
}

.faq-question strong {
  color: var(--primary);
  font-size: 26px;
  line-height: 1;
  transition: .25s ease;
}

.faq-item.active .faq-question strong {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 26px 24px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.65;
}

/* =========================
   TUITION FEES PAGE
========================= */

.tuition-section {
  background: #ffffff;
  padding: 70px 0 90px;
}

.tuition-group {
  margin-bottom: 64px;
}

.tuition-group:last-child {
  margin-bottom: 0;
}

.tuition-fee {
  width: fit-content;
  margin: 18px auto 0;
  padding: 10px 18px;
  border: 2px solid var(--primary);
  border-radius: 6px;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.tuition-fee strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
}

.tuition-fee span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

/* =========================
   VISA / RESIDENCE PERMIT PAGE
========================= */

.visa-permit-page {
  background: #ffffff;
  padding: 70px 0 0px;
}

.visa-process-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 0 54px;
  flex-wrap: wrap;
}

.visa-process-nav a {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  background: var(--primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  transition: .25s ease;
}

.visa-process-nav a:hover {
  background: #ffffff;
  color: var(--primary);
}

.process-detail-block {
  margin-bottom: 0px;
}

.process-detail-block:last-child {
  margin-bottom: 0;
}

.process-detail-header {
  max-width: 880px;
  margin-bottom: 30px;
}

.process-detail-header span {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
}

.process-detail-header h2 {
  margin: 6px 0 12px;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.process-detail-header p {
  margin: 0;
  color: #475467;
  font-size: 16px;
  line-height: 1.65;
}

.process-highlight {
  background: #fff3f8;
  border-left: 5px solid var(--primary);
  padding: 20px 24px;
  margin-bottom: 30px;
  border-radius: 8px;
}

.process-highlight strong,
.process-highlight a {
  display: block;
}

.process-highlight strong {
  color: var(--dark);
  margin-bottom: 5px;
}

.process-highlight a,
.process-info-box a {
  color: var(--primary);
  font-weight: 800;
}

.process-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 30px;
}

.process-content-card,
.process-info-box {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}

.process-content-card h3,
.process-info-box h4 {
  margin: 0 0 16px;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.process-info-box h4 {
  font-size: 18px;
}

.process-content-card p,
.process-info-box p {
  margin: 0 0 14px;
  color: #475467;
  font-size: 15px;
  line-height: 1.65;
}

.process-content-card p:last-child,
.process-info-box p:last-child {
  margin-bottom: 0;
}

.process-content-card ol,
.process-info-box ul {
  margin: 0;
  padding-left: 20px;
}

.process-content-card li,
.process-info-box li {
  color: #475467;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.process-content-card li::marker {
  color: var(--primary);
  font-weight: 800;
}

.process-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.process-info-box {
  padding: 24px;
}

.process-info-box.warning {
  border-color: rgba(177,0,93,.35);
  background: #fff3f8;
}

.process-note {
  margin-top: 20px;
  padding: 18px;
  background: #fff3f8;
  border-radius: 8px;
}

.process-note strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

.process-note p {
  margin: 0;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-section {
  background: #ffffff;
  padding: 70px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  fill: none;
}

/* LEFT */

.contact-intro {
  margin: 0 0 28px;
  color: #475467;
  font-size: 15px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.contact-icon {
  min-width: 52px;
  height: 52px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.contact-item strong {
  display: block;
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-item p {
  margin: 0;
  color: #475467;
  font-size: 14px;
}

/* RIGHT */

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  min-height: 420px;
}

/* =========================
   HOW TO APPLY PAGE
========================= */

.apply-page-section {
  background: #ffffff;
  padding: 70px 0 90px;
}

.apply-page-intro {
  max-width: 820px;
  margin: -14px auto 50px;
  color: #475467;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
}

.apply-timeline {
  display: grid;
  gap: 34px;
}

.apply-phase-card {
  position: relative;
  background: #fff7fb;
  border: 1px solid rgba(177, 0, 93, .14);
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 16px 42px rgba(0,0,0,.06);
}

.apply-phase-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.apply-phase-number {
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(177,0,93,.25);
}

.apply-phase-head span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.apply-phase-head h3 {
  margin: 0;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.apply-step-list {
  display: grid;
  gap: 18px;
}

.apply-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  background: #ffffff;
  border: 1px solid rgba(177,0,93,.1);
  border-radius: 12px;
  padding: 22px;
}

.apply-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
}

.apply-step-content h4 {
  margin: 0 0 8px;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.apply-step-content p {
  margin: 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.6;
}

.apply-step-btn {
  margin-top: 16px;
  min-height: 42px;
  padding: 0 18px;
  width: fit-content;
  border-radius: 6px;
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: .25s ease;
}

.apply-step-btn:hover {
  background: #ffffff;
  color: var(--primary);
}

.apply-step-btn.secondary {
  background: #ffffff;
  color: var(--primary);
}

.apply-step-btn.secondary:hover {
  background: var(--primary);
  color: #ffffff;
}

/* =========================
   DIPLOMA RECOGNITION PAGE
========================= */

.diploma-page {
  background: #ffffff;
  padding: 70px 0 0px;
}

.process-info-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.process-content-card h4 {
  margin: 0 0 14px;
  color: var(--primary);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.process-content-card + .process-info-grid.two {
  margin-top: 30px;
}

/* =========================
   14. FOOTER
========================= */

.site-footer {
  background: #1a1a1a;
  color: #ffffff;
  font-family: "Lora", Georgia, serif;
}

.footer-main {
  padding: 48px 0 30px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 86px;
}

.footer-col h4 {
  font-size: 17px;
  margin: 0 0 34px;
  color: #ffffff;
  font-weight: 700;
}

.footer-col p,
.footer-col a {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 12px;
  font-weight: 600;
}

.footer-col a:hover {
  color: #ff4f96;
}

.footer-gap {
  height: 30px;
}

.app-badges a {
  display: block;
  width: fit-content;
  margin-bottom: 4px;
}

.app-badges img {
  width: 208px;
  max-width: 100%;
  border-radius: 8px;
}

.footer-bottom {
  background: #222222;
  padding: 28px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.footer-bottom a {
  color: #ffffff;
  transition: .2s ease;
}

.footer-bottom a:hover {
  color: #ff4f96;
}

.footer-bottom span {
  display: inline-block;
  margin: 0 4px;
  opacity: .9;
}

.footer-copyright {
  background: #1b1b1b;
  padding: 16px 0;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
}

/* =========================
   SCROLL TO TOP BUTTON
========================= */

.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 12px 16px;
  border-radius: 8px;

  background: var(--primary);
  color: #ffffff;
  border: none;

  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(177,0,93,.3);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s ease;
}

.scroll-top-btn span {
  line-height: 1;
}

/* SHOW */
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER */
.scroll-top-btn:hover {
  background: #ffffff;
  color: var(--primary);
}

/* =========================
   FACULTY SECTION
========================= */

.faculty-section {
  background: #ffffff;
  padding: 72px 0 82px;
}

.faculty-heading {
  max-width: 760px;
  margin: 0 auto 38px;
}

.faculty-section-intro {
  max-width: 700px;
  margin: -18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.faculty-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #f0e8ed;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  transition: .25s ease;
}

.faculty-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 46px rgba(177,0,93,.14);
}

.faculty-image {
  display: block;
  height: 170px;
  overflow: hidden;
}

.faculty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.faculty-card:hover .faculty-image img {
  transform: scale(1.07);
}

.faculty-icon {
  width: 72px;
  height: 72px;
  margin: -36px auto 0;
  background: #ffffff;
  color: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
}

.faculty-icon svg {
  font-size: 38px;
  stroke-width: 2.35;
}

.faculty-card-body {
  padding: 22px 24px 28px;
}

.faculty-card h3 {
  min-height: 58px;
  margin: 0 0 16px;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.faculty-card h3 a {
  transition: .25s ease;
}

.faculty-card h3 a:hover {
  color: var(--primary);
}

.faculty-card p {
  min-height: 94px;
  margin: 0 0 24px;
  color: #475467;
  font-size: 14px;
  line-height: 1.55;
}

.faculty-staff-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}

.faculty-staff-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

.faculty-read-more {
  margin-top: 38px;
  text-align: center;
}

/* =========================
   MEET THE FACULTY PAGE
========================= */

.faculty-page-hero {
  background:
    linear-gradient(90deg, rgba(7,20,40,.92), rgba(7,20,40,.65)),
    url("../../upload/new-students.jpg") center/cover no-repeat;
}

/* =========================
   MOSAIC GALLERY (5 PER ROW)
========================= */

.faculty-mosaic-section {
  padding: 0;
  background: #ffffff;
  overflow: hidden;
}

.faculty-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
}

/* Square boxes */
.faculty-mosaic-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid #ffffff;
  overflow: hidden;
  cursor: pointer;
  perspective: 1000px;
  padding: 0;
  background: transparent;
}

/* Flip */
.faculty-mosaic-card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .6s ease;
}

.faculty-mosaic-item.flipping .faculty-mosaic-card {
  transform: rotateY(180deg);
}

/* Media */
.faculty-mosaic-card img,
.faculty-mosaic-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .35s ease;
  filter: brightness(.9);
}

.faculty-mosaic-item:hover img,
.faculty-mosaic-item:hover video {
  transform: scale(1.06);
  filter: brightness(1);
}

/* =========================
   CENTER BOX (ROW 2 COL 3)
========================= */

.faculty-mosaic-center {
  grid-column: 3;
  grid-row: 2;
  aspect-ratio: 1 / 1;
  border: 1px solid #ffffff;
  background: var(--dark);
  color: #ffffff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.faculty-mosaic-center img {
  width: 110px;
  margin-bottom: 14px;
}

.faculty-mosaic-center span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.faculty-mosaic-center h2 {
  margin: 10px 0 12px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.faculty-mosaic-center h1 {
  color: var(--primary);
  font-family: "Manrope", "Inter", sans-serif;
}

.faculty-mosaic-center p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.8);
}

/* =========================
   GALLERY MODAL
========================= */

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-modal.show {
  display: flex;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,20,40,.78);
  backdrop-filter: blur(5px);
}

.gallery-modal-card {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.gallery-modal-card img,
.gallery-modal-card video {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: none;
  background: #000;
}

#galleryModalImage {
  display: block;
}

.gallery-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 3;
  border: 0;
  background: #ffffff;
  color: var(--primary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

/* =========================
   EXCELLENCE SECTION
========================= */

.faculty-excellence-section {
  background: #faf7f5;
  padding: 72px 0;
}

.faculty-excellence-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.faculty-excellence-content span {
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faculty-excellence-content h2 {
  margin: 10px 0 22px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 800;
}

.faculty-excellence-content p {
  max-width: 520px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: #475467;
}

.faculty-video-card img {
  height: 360px;
}


/* =========================
   WHATSAPP CHAT
========================= */

.whatsapp-chat {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 9998;
}

.whatsapp-chat-toggle {
  position: relative;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(177,0,93,.32);
  transition: .25s ease;
}

.whatsapp-chat-toggle:hover {
  transform: translateY(-4px);
  background: var(--primary-dark);
}

.whatsapp-chat-toggle svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  stroke: none;
}

.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(177,0,93,.35);
  animation: whatsappPulse 1.8s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(.9);
    opacity: .9;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.whatsapp-chat-box {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: 330px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.96);
  transition: .25s ease;
}

.whatsapp-chat.show .whatsapp-chat-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-chat-head {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.whatsapp-chat-head strong {
  display: block;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.whatsapp-chat-head span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  opacity: .85;
}

.whatsapp-chat-head button {
  border: 0;
  background: #ffffff;
  color: var(--primary);
  min-width: 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-chat-body {
  padding: 20px;
  background: #fff7fb;
}

.whatsapp-message {
  margin: 0 0 18px;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px 16px;
  color: #344054;
  font-size: 14px;
  line-height: 1.55;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.whatsapp-start-btn {
  width: 100%;
  min-height: 48px;
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s ease;
}

.whatsapp-start-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.whatsapp-chat-label {
  position: absolute;
  bottom: 78px; /* sipër bubble */
  right: 0;
  transform: none;
  
  background: #ffffff;
  color: var(--dark);
  padding: 10px 14px;
  border-radius: 10px;
  
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  white-space: nowrap;
  
  display: flex;
  align-items: center;
  gap: 6px;

  opacity: 0;
  transform: translateY(10px);
  animation: whatsappLabelIn .5s ease forwards;
  animation-delay: .6s;

  pointer-events: none;
}

.whatsapp-chat-label span {
  color: var(--primary);
  font-size: 14px;
}

/* arrow poshte */
.whatsapp-chat-label::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: #fff;
  transform: rotate(45deg);
}

/* animacion */
@keyframes whatsappLabelIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   STATS STRIP SECTION
========================= */

.stats-strip-section {
  width: 100%;
  background: linear-gradient(
    to bottom right,
    var(--primary) 0%,
    #d60271 100%
  );
  padding: 42px 0;
}

.stats-strip {
  width: min(1280px, calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stats-item {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 14px 24px;
}

.stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 0;
  width: 1px;
  height: 76%;
  background: rgba(255,255,255,.22);
}

.stats-item svg {
  font-size: 78px;
  margin-bottom: 18px;
  stroke-width: 2.7;
  opacity: .96;
}

.stats-number {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.stats-number sup {
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
  font-weight: 800;
}

.stats-item p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

/* =========================
   ERASMUS PARTNERSHIPS SECTION
========================= */

.erasmus-section {
  background: #f4f4f4;
  padding: 82px 0;
}

.erasmus-wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
}

/* Left content */

.erasmus-content .section-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: .98;
}

.erasmus-content .section-heading h2 span {
  color: var(--primary);
}

.erasmus-intro {
  max-width: 640px;
  margin: 0 0 34px;
  color: #475467;
  font-size: 16px;
  line-height: 1.65;
}

.erasmus-features {
  display: grid;
  gap: 22px;
  max-width: 640px;
  margin-bottom: 30px;
}

.erasmus-features div {
  display: flex;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6dfe3;
}

.erasmus-features svg {
  min-width: 58px;
  height: 58px;
  padding: 13px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  stroke-width: 2.25;
}

.erasmus-features p {
  margin: 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.5;
}

.erasmus-features strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

/* Right column */

.erasmus-right {
  display: grid;
  gap: 30px;
}

.erasmus-map-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  overflow: hidden;
}

.erasmus-map-card img {
  width: 100%;
  border-radius: 12px;
}

/* Badge under map */

.erasmus-map-badge {
  min-height: 48px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 10px;
  background: #fff7fb;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.erasmus-map-badge svg {
  color: var(--primary);
  font-size: 24px;
  stroke-width: 2.4;
}

/* Bottom right */

.erasmus-bottom {
  display: grid;
  gap: 18px;
}

.erasmus-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 18px;
  margin: 0;
  box-shadow: 0 16px 38px rgba(0,0,0,.08);
}

.erasmus-stats div {
  text-align: center;
  border-right: 1px solid #ece7ea;
}

.erasmus-stats div:last-child {
  border-right: 0;
}

.erasmus-stats svg {
  color: var(--primary);
  font-size: 34px;
  stroke-width: 2.25;
  margin-bottom: 8px;
}

.erasmus-stats strong {
  display: block;
  color: var(--primary);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.erasmus-stats span {
  display: block;
  margin-top: 5px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.erasmus-bottom .erasmus-btn {
  justify-self: end;
}

/* =========================
   STUDENT LIFE TESTIMONIALS
========================= */

.student-life-section {
  background: #faf7f5;
  padding: 82px 0;
}

.student-life-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.student-life-left .section-heading h2 {
  margin: 0;
  line-height: 1;
}

.student-life-left .section-heading h2 .title-main {
  display: block;
  color: var(--dark);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.08;
  text-transform:none;
}

.student-life-left .section-heading h2 .title-accent {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.student-life-intro {
  max-width: 560px;
  margin: 26px 0 34px;
  color: #475467;
  font-size: 16px;
  line-height: 1.7;
}

.student-life-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.student-life-block {
  background: #ffffff;
  border: 1px solid #eee3e8;
  border-radius: 18px;
  padding: 34px 30px;
  color: var(--dark);
  box-shadow: 0 18px 42px rgba(0,0,0,.07);
  transition: .28s ease;
}

.student-life-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(177,0,93,.14);
}

.student-life-block svg {
  color: var(--primary);
  font-size: 52px;
  stroke-width: 2.2;
  margin-bottom: 22px;
}

.student-life-block h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.student-life-block p {
  margin: 0 0 22px;
  color: #475467;
  font-size: 15px;
  line-height: 1.65;
}

.student-life-block span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.student-life-testimonial {
  position: relative;
}

.testimonial-slider {
  position: relative;
  min-height: 560px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: testimonialFade .45s ease;
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-mark {
  display: block;
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: 118px;
  line-height: .65;
  margin-bottom: 18px;
}

.testimonial-slide h3 {
  max-width: 640px;
  margin: 0;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.testimonial-slide h3::after {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  background: var(--primary);
  margin: 30px 0 26px;
}

.testimonial-slide p {
  max-width: 580px;
  margin: 0 0 36px;
  color: #475467;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-author img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  border: 7px solid #f7d9e8;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
}

.testimonial-author span {
  display: block;
  margin-top: 5px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.testimonial-author small {
  display: inline-flex;
  margin-top: 11px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f4eef1;
  color: #475467;
  font-size: 12px;
  font-weight: 700;
}

.testimonial-arrows {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.testimonial-arrows button {
  width: 44px;
  height: 44px;
  border: 1px solid #eadfe5;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: .25s ease;
}

.testimonial-arrows button:hover {
  background: var(--primary);
  color: #ffffff;
}

.student-life-cta {
  margin-top: 56px;
  text-align: center;
}

/* =========================
   CAMPUS MAP SECTION
========================= */

.campus-map-section {
  width: 100%;
  padding: 0;
  background: #ffffff;
}

.campus-map-wrap {
  width: 100%;
  height: 430px;
  overflow: hidden;
}

.campus-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* =========================
   INTERNATIONAL FOUNDATION YEAR
========================= */

.foundation-hero {
  background:
    linear-gradient(90deg, rgba(7,20,40,.92), rgba(7,20,40,.62)),
    url("../../upload/foto-godina.jpg") center 35% / cover no-repeat;
}

/* INTRO */

.foundation-page {
  background: #ffffff;
}

.foundation-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.foundation-intro p {
  max-width: 760px;
  margin: -14px auto 28px;
  color: #475467;
  font-size: 17px;
  line-height: 1.7;
}

.foundation-overview-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 46px auto 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(177,0,93,.22);
}

.foundation-overview-card div {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.18);
}

.foundation-overview-card div:last-child {
  border-right: 0;
}

.foundation-overview-card strong {
  display: block;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.foundation-overview-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: .9;
}

/* WHO IS THIS FOR */

.foundation-block {
  background: #f4f4f4;
}

.foundation-card-grid {
  display: grid;
  gap: 24px;
}

.foundation-card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.foundation-card-grid article {
  background: #ffffff;
  border: 1px solid #f0e8ed;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(0,0,0,.07);
  transition: .25s ease;
}

.foundation-card-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(177,0,93,.35);
  box-shadow: 0 22px 48px rgba(177,0,93,.14);
}

.foundation-card-grid svg {
  color: var(--primary);
  font-size: 58px;
  stroke-width: 2.25;
  margin-bottom: 16px;
}

.foundation-card-grid h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.foundation-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* WHAT STUDENTS LEARN */

.foundation-learn-section {
  background: #faf7f5;
}

.foundation-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.foundation-muted {
  margin: -10px 0 0;
  color: #475467;
  font-size: 16px;
  line-height: 1.7;
}

.foundation-learn-list {
  display: grid;
  gap: 14px;
}

.foundation-learn-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(177,0,93,.1);
  border-radius: 10px;
  padding: 15px 18px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
}

.foundation-learn-list span {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 13px;
}

/* ENGLISH LEVELS */

.foundation-levels {
  background: #ffffff;
}

.level-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.level-track div {
  background: #ffffff;
  border: 2px solid rgba(177,0,93,.18);
  border-radius: 16px;
  padding: 30px 18px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.level-track strong {
  color: var(--primary);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.level-track span {
  display: inline-block;
  margin: 0 16px;
  color: var(--dark);
  font-size: 28px;
  font-weight: 800;
}

/* PROGRAMME HIGHLIGHTS */

.foundation-highlights {
  background: var(--dark);
  color: #ffffff;
}

.foundation-highlights-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.foundation-highlights span {
  color: var(--accent-pink);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.foundation-highlights h2 {
  margin: 10px 0 18px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.foundation-highlights p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.7;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.highlight-grid div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 20px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

/* FINAL CTA */

.foundation-cta {
  background: linear-gradient(90deg, #8f004a, #c00067);
  color: #ffffff;
  text-align: center;
}

.foundation-cta h2 {
  margin: 0 0 12px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.foundation-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.6;
}


/* =========================
   STUDENT ACCOMMODATION
========================= */

.student-accommodation {
  width: 100%;
  background: #faf7f5;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 42px;
}

.accommodation-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
}

.accommodation-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.accommodation-badge.private {
  background: rgba(177,0,93,.12);
  color: var(--primary);
}

.accommodation-badge.public {
  background: rgba(7,20,40,.08);
  color: var(--dark);
}

.accommodation-card h3 {
  margin: 18px 0;
  color: var(--dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.accommodation-card p {
  margin: 0 0 16px;
  color: #475467;
  font-size: 15px;
  line-height: 1.7;
}

.accommodation-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.accommodation-card a:hover {
  text-decoration: underline;
}


/* =========================
   15. RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }

  .nav-link,
  .dropdown-toggle {
    font-size: 14px;
  }

  .apply-now-btn {
    padding: 10px 18px;
  }
  
  .hero {
    min-height: auto;
    display: block;
    padding: 150px 0 90px;
    overflow: visible;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-text {
    max-width: 720px;
    padding-top: 0;
  }

  .hero-text h1 {
    font-size: clamp(44px, 7vw, 68px);
  }

  .hero-features {
    grid-template-columns: repeat(2, max-content);
    gap: 22px 42px;
    margin: 34px 0 0;
  }

  .hero-features svg {
    font-size: 58px;
  }

  .hero-video-card {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 620px);
    margin-top: 54px;
    transform: none;
    padding: 16px 16px 54px;
  }

  .hero-video-frame {
    height: 330px;
  }

  .hero-video-card h3 {
    margin: 34px 0 28px;
    font-size: 24px;
  }
  

  .programs-layout {
    grid-template-columns: 300px 1fr;
    gap: 36px;
  }

  .degree-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .degree-card {
    min-height: auto;
    padding: 24px 16px;
  }

  .degree-card > span {
    font-size: 20px;
  }
  
  .process-steps {
    gap: 20px;
  }

  .process-card {
    padding: 28px 22px;
  }

  .process-head {
    gap: 13px;
  }

  .process-number {
    min-width: 52px;
    height: 52px;
    font-size: 23px;
  }

  .process-head h3 {
    font-size: 19px;
  }

  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-columns {
    gap: 40px;
  }
  
   .faq-section {
    padding: 60px 0 80px;
  }
  
   .process-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
   .contact-grid {
    gap: 40px;
  }
  
  /* FACULTY CARDS (homepage + page) */
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faculty-card p {
    min-height: auto;
  }

  /* MOSAIC GALLERY */
  .faculty-mosaic-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .faculty-mosaic-center {
    grid-column: span 3;
    grid-row: span 1;
    padding: 50px 30px;
  }

  /* EXCELLENCE SECTION */
  .faculty-excellence-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faculty-video-card img {
    height: 340px;
  }
  
  .whatsapp-chat {
    right: 22px;
    bottom: 88px;
  }
   .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-item {
    padding: 28px 24px;
  }

  .stats-item:nth-child(2)::after {
    display: none;
  }

  .stats-item:nth-child(1),
  .stats-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.22);
  }
  
  .albania-wrap {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .albania-right {
    max-width: 620px;
  }

  .albania-video-card img {
    height: 320px;
  }
  
  .erasmus-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .erasmus-content,
  .erasmus-intro,
  .erasmus-features {
    max-width: 760px;
  }

  .erasmus-right {
    max-width: 760px;
  }

  .erasmus-bottom .erasmus-btn {
    justify-self: start;
  }
  
  .student-life-wrap {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .student-life-left,
  .student-life-testimonial {
    max-width: 760px;
  }

  .testimonial-slider {
    min-height: auto;
  }

  .testimonial-slide h3 {
    font-size: 46px;
  }
  
  .campus-map-wrap {
  height: 380px;
}

.foundation-intro {
    max-width: 760px;
  }

  .foundation-overview-card {
    max-width: 760px;
    margin-top: 40px;
  }

  .foundation-overview-card strong {
    font-size: 25px;
  }

  /* WHO IS THIS FOR */

  .foundation-card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .foundation-card-grid article {
    padding: 28px 22px;
  }

  .foundation-card-grid svg {
    font-size: 54px;
  }

  /* WHAT STUDENTS LEARN */

  .foundation-two-columns {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .foundation-muted {
    max-width: 720px;
  }

  .foundation-learn-list {
    max-width: 760px;
  }

  /* ENGLISH LEVELS */

  .level-track {
    gap: 18px;
  }

  .level-track strong {
    font-size: 30px;
  }

  .level-track span {
    margin: 0 12px;
    font-size: 24px;
  }

  /* PROGRAMME HIGHLIGHTS */

  .foundation-highlights-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA */

  .foundation-cta p {
    max-width: 580px;
  }
  
   .accommodation-grid {
    gap: 22px;
  }

  .accommodation-card {
    padding: 30px 26px;
  }

  .accommodation-card h3 {
    font-size: 22px;
  }
  
  
}

@media (max-width: 850px) {
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 92px;
    left: 20px;
    right: 20px;
    background: #071428;
    border-radius: 14px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  }

  .main-nav.show {
    display: flex;
  }

  .nav-item {
    width: 100%;
    padding: 0;
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    color: #ffffff;
    padding: 12px 0;
    font-size: 15px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    background: rgba(255,255,255,0.06);
    box-shadow: none;
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 5px;
  }

  .nav-item.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .nav-item:hover .dropdown-menu {
    display: none;
  }

  .nav-item.active:hover .dropdown-menu {
    display: flex;
  }

  .dropdown-menu a {
    color: #ffffff;
    padding: 9px 4px;
    font-size: 14px;
    font-weight: 500;
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: #ff4f96;
  }

  .apply-now-btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    padding: 13px 18px;
  }

  .hero {
    padding: 130px 0 70px;
    overflow: hidden;
  }

  .hero-bg {
    background:
      linear-gradient(
        90deg,
        rgba(7,20,40,.96) 0%,
        rgba(7,20,40,.84) 48%,
        rgba(7,20,40,.55) 100%
      ),
      url("../../upload/foto-godina.png") center 35%/cover no-repeat;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: clamp(40px, 10vw, 58px);
    line-height: 1;
  }

  .hero-text p {
    max-width: 620px;
    font-size: 17px;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    width: 100%;
  }

  .hero-features div {
    gap: 12px;
  }

  .hero-features svg {
    font-size: 50px;
  }

  .hero-features small {
    font-size: 15px;
  }

  .hero-video-card {
    width: 100%;
    margin-top: 44px;
    border-radius: 16px;
    padding: 14px 14px 44px;
  }

  .hero-video-frame {
    height: 300px;
    border-radius: 12px;
  }

  .hero-video-card h3 {
    margin: 30px 0 24px;
    font-size: 22px;
  }

  .hero-video-card .btn {
    min-width: 0;
    width: 100%;
  }

  .programs-layout {
    grid-template-columns: 1fr;
  }

  .program-sidebar {
    max-width: 420px;
  }

  .degree-grid {
    grid-template-columns: 1fr;
  }

  .degree-card {
    min-height: auto;
    padding: 22px 16px;
    border-radius: 8px;
  }

  .degree-card > span {
    font-size: 19px;
  }

  .degree-card small {
    font-size: 13px;
    margin-top: 10px;
  }

  .degree-card:hover {
    transform: none;
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
  }
  

  .program-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-modal-columns {
    grid-template-columns: 1fr;
  }

  .program-modal-actions {
    flex-direction: column;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-card::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -20px;
    width: 2px;
    height: 20px;
    transform: translateX(-50%);
  }

  .process-card:last-child::after {
    display: none;
  }


  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-card img {
    height: 280px;
  }

  /* Video modal */

  .video-modal {
    padding: 18px;
  }

  .video-modal-card {
    width: 100%;
    border-radius: 12px;
  }

  .video-modal-close {
    top: 8px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 22px;
  }
  
  .steps,
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-copyright {
    padding: 14px 0;
  }

  .footer-copyright p {
    font-size: 12.5px;
  }

  .cta-wrap {
    flex-direction: column;
    text-align: center;
  }
  
    .inner-hero {
    min-height: 300px;
  }

  .faq-question {
    font-size: 18px;
    padding: 22px;
  }

  .faq-answer {
    padding: 0 22px 22px;
  }
  
   .tuition-section {
    padding: 60px 0 80px;
  }

  .tuition-group {
    margin-bottom: 52px;
  }
  
  .visa-permit-page {
    padding: 60px 0 0px;
  }

  .process-two-columns {
    grid-template-columns: 1fr;
  }

  .process-detail-block {
    margin-bottom: 60px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 360px;
  }

  .contact-section {
    padding: 60px 0 80px;
  }
  
   .apply-page-section {
    padding: 60px 0 80px;
  }

  .apply-phase-card {
    padding: 28px;
  }

  .apply-phase-head h3 {
    font-size: 24px;
  }
  
  .diploma-page {
    padding: 60px 0 0px;
  }

  .process-info-grid.two {
    grid-template-columns: 1fr;
  }
  
  /* FACULTY CARDS (homepage + page) */
  .faculty-section {
    padding: 60px 0 70px;
  }

  .faculty-heading {
    margin-bottom: 28px;
  }

  .faculty-section-intro {
    font-size: 15px;
  }

  .faculty-icon {
    width: 66px;
    height: 66px;
  }

  .faculty-icon svg {
    font-size: 32px;
  }

  /* MOSAIC GALLERY */
  .faculty-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }

  .faculty-mosaic-center {
    grid-column: span 2;
    padding: 40px 24px;
  }

  .faculty-mosaic-item.wide {
    grid-column: span 2;
  }

  /* EXCELLENCE */
  .faculty-excellence-section {
    padding: 60px 0;
  }

  .faculty-excellence-content h2 {
    font-size: clamp(32px, 6vw, 40px);
  }
  
  .whatsapp-chat {
    right: 20px;
    bottom: 84px;
  }

  .whatsapp-chat-toggle {
    width: 60px;
    height: 60px;
  }
  
  .stats-strip-section {
    padding: 34px 0;
  }

  .stats-item svg {
    font-size: 66px;
  }

  .stats-number {
    font-size: 36px;
  }

  .stats-number sup {
    font-size: 19px;
  }
  
  .albania-quick-links {
    gap: 18px;
  }

  .albania-video-card img {
    height: 280px;
  }
  
  .erasmus-section {
    padding: 64px 0;
  }

  .erasmus-content .section-heading h2 {
    font-size: clamp(38px, 7vw, 52px);
  }

  .erasmus-map-card {
    padding: 18px;
    border-radius: 16px;
  }

  .erasmus-map-card img {
    border-radius: 10px;
  }

  .erasmus-stats {
    padding: 18px 14px;
  }

  .erasmus-stats svg {
    font-size: 30px;
  }

  .erasmus-stats strong {
    font-size: 26px;
  }

  .erasmus-stats span {
    font-size: 12px;
  }
  
  .student-life-section {
    padding: 68px 0;
  }

  .student-life-wrap {
    gap: 42px;
  }

  .student-life-left .section-heading h2 .title-main {
    font-size: 40px;
  }

  .student-life-left .section-heading h2 .title-accent {
    font-size: 34px;
  }

  .student-life-intro {
    font-size: 15px;
    margin: 22px 0 30px;
  }

  .student-life-blocks {
    gap: 18px;
  }

  .student-life-block {
    padding: 28px 24px;
  }

  .student-life-block svg {
    font-size: 48px;
    margin-bottom: 18px;
  }

  .student-life-block h3 {
    font-size: 22px;
  }

  .testimonial-slide h3 {
    font-size: 42px;
    line-height: 1.12;
  }

  .testimonial-slide p {
    font-size: 15px;
    line-height: 1.75;
  }

  .quote-mark {
    font-size: 92px;
    margin-bottom: 10px;
  }

  .testimonial-author img {
    width: 72px;
    height: 72px;
  }
  
  .campus-map-wrap {
  height: 340px;
}

.foundation-intro p {
    font-size: 16px;
  }

  .foundation-overview-card {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .foundation-overview-card div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .foundation-overview-card div:last-child {
    border-bottom: 0;
  }

  .foundation-overview-card strong {
    font-size: 24px;
  }

  /* WHO IS THIS FOR */

  .foundation-card-grid {
    gap: 20px;
  }

  .foundation-card-grid.four {
    grid-template-columns: 1fr 1fr;
  }

  .foundation-card-grid article {
    padding: 26px 20px;
  }

  .foundation-card-grid svg {
    font-size: 50px;
  }

  .foundation-card-grid h3 {
    font-size: 18px;
  }

  /* WHAT STUDENTS LEARN */

  .foundation-two-columns {
    gap: 34px;
  }

  .foundation-muted {
    font-size: 15px;
  }

  .foundation-learn-list div {
    padding: 14px 16px;
    font-size: 14px;
  }

  /* ENGLISH LEVELS */

  .level-track {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .level-track div {
    padding: 24px 18px;
  }

  .level-track strong {
    font-size: 28px;
  }

  .level-track span {
    font-size: 22px;
  }

  /* PROGRAMME HIGHLIGHTS */

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid div {
    padding: 18px;
    font-size: 14px;
  }

  .foundation-highlights h2 {
    margin-bottom: 16px;
  }

  .foundation-highlights p {
    font-size: 15px;
  }

  /* CTA */

  .foundation-cta p {
    font-size: 15px;
  }
  
  .accommodation-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 36px;
  }

  .accommodation-card {
    padding: 28px 24px;
  }

  .accommodation-card h3 {
    font-size: 21px;
  }

  .accommodation-card p {
    font-size: 14px;
  }

}

@media (max-width: 560px) {
  .visa-permit-page {
    padding: 48px 0 0px;
  }

  .visa-process-nav {
    flex-direction: column;
  }

  .process-info-grid {
    grid-template-columns: 1fr;
  }

  .process-content-card,
  .process-info-box {
    padding: 22px;
  }

  .process-detail-header h2 {
    font-size: 28px;
  }

  .container,
  .programs-layout {
    width: min(100% - 28px, 1280px);
  }

  .site-header {
    padding: 14px 0;
  }

  .logo img {
    height: 52px;
  }

  .main-nav {
    top: 78px;
    left: 14px;
    right: 14px;
    padding: 18px;
  }

  .nav-link,
  .dropdown-toggle {
    font-size: 14px;
  }

  .dropdown-menu a {
    font-size: 13px;
  }

  .apply-now-btn {
    font-size: 13px;
  }

  .hero {
    padding: 115px 0 58px;
  }

  .hero-bg {
    background:
      linear-gradient(
        90deg,
        rgba(7,20,40,.97) 0%,
        rgba(7,20,40,.88) 55%,
        rgba(7,20,40,.68) 100%
      ),
      url("../../upload/foto-godina.png") center 30%/cover no-repeat;
  }

  .hero-text h1 {
    font-size: clamp(38px, 12vw, 48px);
    letter-spacing: -0.05em;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    margin-top: 30px;
  }

  .hero-features div {
    align-items: flex-start;
    gap: 10px;
  }

  .hero-features svg {
    font-size: 42px;
    min-width: 42px;
  }

  .hero-features small {
    font-size: 13px;
    line-height: 1.25;
  }

  .hero-video-card {
    margin-top: 36px;
    padding: 12px 12px 34px;
    border-radius: 14px;
  }

  .hero-video-frame {
    height: 210px;
    border-radius: 10px;
  }

  .hero-video-card h3 {
    margin: 24px 0 20px;
    font-size: 19px;
  }

  .hero-video-card .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 12px;
  }

  .programs-layout {
    width: min(100% - 28px, 1280px);
    padding: 42px 0;
  }

  .program-sidebar {
    max-width: 100%;
  }

  .apply-btn,
  .program-tab {
    min-height: 50px;
    font-size: 13px;
  }

  .degree-card {
    padding: 20px 14px;
    border-radius: 7px;
  }

  .degree-card > span {
    font-size: 18px;
  }

  .degree-card small {
    font-size: 12.5px;
    margin-top: 10px;
  }

  .program-modal-card {
    padding: 28px 22px;
  }
  
   .program-modal-header,
  .program-modal-body,
  .program-modal-actions {
    padding-left: 22px;
    padding-right: 22px;
  }

  .program-info-grid {
    grid-template-columns: 1fr;
  }

  .program-info-grid div {
    border-right: 0;
  }

  .program-modal-header h3 {
    font-size: 24px;
  }

  .process-card {
    padding: 24px 18px;
  }

  .process-head {
    align-items: flex-start;
  }

  .process-number {
    min-width: 48px;
    height: 48px;
    font-size: 21px;
  }

  .process-head h3 {
    font-size: 18px;
  }

  .process-card li {
    font-size: 14px;
  }

  .visa-item {
    padding: 14px;
  }

  .visa-item svg {
    min-width: 38px;
    font-size: 38px;
  }
  
  .video-card img {
    height: 240px;
  }

  .video-card strong {
    font-size: 13px;
    left: 16px;
    bottom: 16px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  /* Video modal */

  .video-modal {
    padding: 14px;
  }

  .video-modal-card {
    border-radius: 10px;
  }

  .video-modal-close {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
  
  .feature-list,
  .steps,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding-top: 36px;
  }
  
  .footer-copyright {
    padding: 12px 0;
  }

  .footer-copyright p {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .inner-hero {
    min-height: 260px;
  }

  .inner-hero h1 {
    font-size: 48px;
  }

  .faq-title-box {
    padding: 18px 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px;
  }

  .faq-question strong {
    font-size: 22px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
  
   .tuition-section {
    padding: 48px 0 70px;
  }

  .tuition-fee {
    padding: 9px 16px;
  }

  .tuition-fee strong {
    font-size: 16px;
  }

  .tuition-fee span {
    font-size: 11px;
  }
  
   .visa-permit-page {
    padding: 42px 0 0px;
  }

  /* NAV BUTTONS */
  .visa-process-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }

  .visa-process-nav a {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    font-size: 12px;
  }

  /* HEADER */
  .process-detail-header {
    margin-bottom: 22px;
  }

  .process-detail-header h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .process-detail-header p {
    font-size: 14px;
  }

  /* HIGHLIGHT BOX */
  .process-highlight {
    padding: 16px 18px;
    margin-bottom: 22px;
  }

  .process-highlight strong {
    font-size: 14px;
  }

  /* CARDS */
  .process-content-card,
  .process-info-box {
    padding: 18px;
    border-radius: 10px;
  }

  .process-content-card h3 {
    font-size: 18px;
  }

  .process-info-box h4 {
    font-size: 16px;
  }

  /* TEXT */
  .process-content-card p,
  .process-info-box p,
  .process-content-card li,
  .process-info-box li {
    font-size: 14px;
  }

  /* LISTS */
  .process-content-card ol,
  .process-info-box ul {
    padding-left: 18px;
  }

  /* GRID → SINGLE COLUMN */
  .process-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }

  .process-two-columns {
    gap: 18px;
    margin-bottom: 22px;
  }
  
  .process-content-card + .process-info-grid.two {
    margin-top: 22px;
  }

  /* SECTION SPACING */
  .process-detail-block {
    margin-bottom: 46px;
  }
  .contact-section {
    padding: 48px 0 70px;
  }

  .contact-item {
    gap: 14px;
  }

  .contact-icon {
    min-width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .contact-item strong {
    font-size: 15px;
  }

  .contact-item p {
    font-size: 13px;
  }

  .contact-map {
    min-height: 300px;
  }
  
  .apply-page-section {
    padding: 44px 0 64px;
  }

  .apply-page-intro {
    font-size: 14px;
    margin-bottom: 34px;
  }

  .apply-phase-card {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .apply-phase-head {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
  }

  .apply-phase-number {
    min-width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .apply-phase-head h3 {
    font-size: 21px;
  }

  .apply-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .apply-step-number {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .apply-step-content h4 {
    font-size: 18px;
  }

  .apply-step-content p {
    font-size: 14px;
  }

  .apply-step-btn {
    width: 100%;
  }
  
  .diploma-page {
    padding: 42px 0 0px;
  }
  
  .scroll-top-btn {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
    font-size: 12px;
    gap: 4px;
  }
  
  /* FACULTY CARDS (homepage + page) */
  .faculty-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faculty-image {
    height: 200px;
  }

  .faculty-card-body {
    padding: 20px 18px 24px;
  }

  .faculty-card h3 {
    min-height: auto;
    font-size: 18px;
  }

  .faculty-section {
    padding: 52px 0 60px;
  }

  /* MOSAIC GALLERY */
  .faculty-mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .faculty-mosaic-item.tall,
  .faculty-mosaic-item.wide,
  .faculty-mosaic-center {
    grid-column: span 1;
    grid-row: span 1;
  }

  .faculty-mosaic-center {
    padding: 34px 20px;
    min-height: 300px;
  }

  .faculty-mosaic-center h2 {
    font-size: 30px;
  }

  .faculty-mosaic-center p {
    font-size: 14px;
  }

  /* MODAL */
  .gallery-modal {
    padding: 14px;
  }

  .gallery-modal-card {
    border-radius: 12px;
  }

  /* EXCELLENCE */
  .faculty-excellence-section {
    padding: 52px 0;
  }

  .faculty-excellence-content p {
    font-size: 15px;
  }

  .faculty-video-card img {
    height: 240px;
  }
  
   .whatsapp-chat {
    right: 16px;
    bottom: 82px;
  }

  .whatsapp-chat-box {
    width: calc(100vw - 32px);
    right: 0;
    bottom: 76px;
  }

  .whatsapp-chat-toggle {
    width: 58px;
    height: 58px;
  }

  .whatsapp-chat-toggle svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-chat-label {
    display: none;
  }
  
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-item {
    padding: 28px 20px;
  }

  .stats-item::after {
    display: none;
  }

  .stats-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,.22);
  }

  .stats-item svg {
    font-size: 58px;
  }

  .stats-number {
    font-size: 34px;
  }

  .stats-item p {
    font-size: 14px;
  }
  
  .albania-quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }

  .albania-quick-links a {
    align-items: flex-start;
    font-size: 13px;
  }

  .albania-quick-links svg {
    font-size: 34px;
  }

  .albania-video-card img {
    height: 230px;
  }

  .albania-cost-btn {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
  }

  .albania-cost-btn svg {
    font-size: 52px;
  }

  .albania-cost-btn strong {
    font-size: 18px;
  }
  .erasmus-section {
    padding: 54px 0;
  }

  .erasmus-wrap {
    gap: 36px;
  }

  .erasmus-content .section-heading h2 {
    font-size: 38px;
  }

  .erasmus-intro {
    font-size: 15px;
  }

  .erasmus-features div {
    flex-direction: column;
    gap: 12px;
  }

  .erasmus-features svg {
    min-width: 52px;
    width: 52px;
    height: 52px;
  }

  .erasmus-map-card {
    padding: 14px;
    border-radius: 14px;
  }

  .erasmus-map-badge {
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .erasmus-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .erasmus-stats div {
    border-right: 0;
    border-bottom: 1px solid #ece7ea;
    padding-bottom: 18px;
  }

  .erasmus-stats div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .erasmus-bottom .erasmus-btn {
    width: 100%;
    justify-self: stretch;
  }
  
  .student-life-section {
    padding: 58px 0;
  }

  .student-life-wrap {
    gap: 36px;
  }

  .student-life-blocks {
    grid-template-columns: 1fr;
  }

  .student-life-left .section-heading h2 .title-main {
    font-size: 34px;
    line-height: 1.08;
  }

  .student-life-left .section-heading h2 .title-accent {
    font-size: 28px;
    line-height: 1.12;
  }

  .student-life-intro {
    margin: 20px 0 28px;
    font-size: 15px;
  }

  .student-life-block {
    padding: 24px 22px;
  }

  .student-life-block svg {
    font-size: 44px;
    margin-bottom: 16px;
  }

  .student-life-block h3 {
    font-size: 20px;
  }

  .student-life-block p {
    font-size: 14px;
  }

  .quote-mark {
    font-size: 76px;
    margin-bottom: 4px;
  }

  .testimonial-slide h3 {
    font-size: 32px;
    line-height: 1.14;
  }

  .testimonial-slide h3::after {
    width: 70px;
    margin: 24px 0 22px;
  }

  .testimonial-slide p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .testimonial-author {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }

  .testimonial-author img {
    width: 64px;
    height: 64px;
    border-width: 5px;
  }

  .testimonial-author strong {
    font-size: 16px;
  }

  .testimonial-author span {
    font-size: 13px;
  }

  .testimonial-author small {
    font-size: 11px;
  }

  .testimonial-arrows {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    margin-top: 12px;
  }

  .testimonial-arrows button {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .student-life-cta {
    margin-top: 44px;
  }

  .student-life-cta .btn {
    width: 100%;
  }
  
  .campus-map-wrap {
  height: 300px;
}

.foundation-intro p {
    margin: -8px auto 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .foundation-overview-card {
    margin-top: 34px;
    border-radius: 14px;
  }

  .foundation-overview-card div {
    padding: 22px 18px;
  }

  .foundation-overview-card strong {
    font-size: 22px;
  }

  .foundation-overview-card span {
    font-size: 12px;
  }

  /* WHO IS THIS FOR */

  .foundation-card-grid.four {
    grid-template-columns: 1fr;
  }

  .foundation-card-grid {
    gap: 16px;
  }

  .foundation-card-grid article {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .foundation-card-grid svg {
    font-size: 44px;
    margin-bottom: 14px;
  }

  .foundation-card-grid h3 {
    font-size: 17px;
  }

  .foundation-card-grid p {
    font-size: 13px;
  }

  /* WHAT STUDENTS LEARN */

  .foundation-two-columns {
    gap: 28px;
  }

  .foundation-muted {
    font-size: 14px;
    line-height: 1.6;
  }

  .foundation-learn-list {
    gap: 12px;
  }

  .foundation-learn-list div {
    align-items: flex-start;
    padding: 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .foundation-learn-list span {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 12px;
  }

  /* ENGLISH LEVELS */

  .level-track {
    gap: 14px;
  }

  .level-track div {
    padding: 22px 14px;
    border-radius: 14px;
  }

  .level-track strong {
    font-size: 24px;
  }

  .level-track span {
    margin: 0 10px;
    font-size: 18px;
  }

  /* PROGRAMME HIGHLIGHTS */

  .foundation-highlights-wrap {
    gap: 34px;
  }

  .foundation-highlights p {
    font-size: 14px;
    line-height: 1.65;
  }

  .highlight-grid {
    gap: 12px;
  }

  .highlight-grid div {
    border-radius: 10px;
    padding: 16px;
    font-size: 13px;
    line-height: 1.45;
  }

  /* CTA */

  .foundation-cta p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
  }

  .foundation-cta .btn {
    width: 100%;
  }
  
  .accommodation-grid {
    gap: 18px;
    margin-top: 30px;
  }

  .accommodation-card {
    border-radius: 14px;
    padding: 24px 18px;
  }

  .accommodation-badge {
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .accommodation-card h3 {
    margin: 16px 0;
    font-size: 19px;
  }

  .accommodation-card p {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.65;
  }

  .accommodation-card a {
    margin-top: 6px;
    font-size: 13px;
  }
}
