@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;
}

.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: hidden;
}

.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/slider-demo.jpg") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 750px;
  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: flex;
  flex-wrap: wrap;
  gap: 27px;
  margin: 36px 0;
}

.hero-features div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-features svg {
  font-size: 56px;
  color: #ffffff;
  opacity: .95;
  stroke-width: 2.35;
}

.hero-features small {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
  font-size: 15px;
}

/* =========================
   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,.3)),
    url("../../upload/tirana.jpg") center 20% / cover no-repeat;
}

.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;
}

/* =========================
   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);
}


/* =========================
   15. RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }

  .nav-link,
  .dropdown-toggle {
    font-size: 14px;
  }

  .apply-now-btn {
    padding: 10px 18px;
  }

  .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;
  }
}

@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 {
    min-height: 720px;
  }

  .hero-text {
    max-width: 100%;
    padding-top: 95px;
  }

  .hero-text h1 {
    font-size: clamp(42px, 8vw, 60px);
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-features {
    gap: 22px;
  }

  .hero-features svg {
    font-size: 52px;
  }

  .hero-features small {
    font-size: 14px;
  }

  .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;
  }

}

@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 {
    min-height: 720px;
  }

  .hero-text {
    padding-top: 90px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 17px;
  }

  .hero-features {
    gap: 18px;
    margin: 30px 0;
  }

  .hero-features div {
    width: calc(50% - 9px);
  }

  .hero-features svg {
    font-size: 46px;
  }

  .hero-features small {
    font-size: 13px;
  }

  .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;
  }
}
