:root {
  --navy: #0a1f33;
  --navy-2: #123049;
  --navy-3: #071726;
  --gold: #c4892a;
  --gold-dark: #a67220;
  --gold-light: #d4a354;
  --cream: #f5f0e7;
  --gray: #f3f5f7;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --success: #0f8a4b;
  --danger: #b42318;
  --whatsapp: #25d366;
  --font: var(--font-body, Arial, Helvetica, sans-serif);
  --font-display: var(--font-heading, Arial, Helvetica, sans-serif);
  --font-accent: var(--font-heading, Arial, Helvetica, sans-serif);
  --shadow: 0 12px 30px rgba(7, 23, 38, 0.10);
  --radius-btn: 10px;
  --shadow-btn: 0 3px 8px rgba(7, 23, 38, 0.14);
  --shadow-btn-hover: 0 5px 12px rgba(7, 23, 38, 0.2);
  --shadow-btn-gold: 0 3px 8px rgba(196, 137, 42, 0.28);
  --shadow-btn-gold-hover: 0 5px 12px rgba(196, 137, 42, 0.36);
  --container: min(1180px, calc(100% - 40px));
  --shell: min(1280px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg, #fbf8f2 0%, #efe8dc 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
p { margin: 0 0 1rem; }

/* Boxed shell — plan: not full-bleed viewport */
.site-shell {
  width: var(--shell);
  max-width: 100%;
  margin-inline: auto;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  contain: layout;
}

.page-wrap {
  background: var(--white);
  box-shadow: var(--shadow);
  min-height: 100vh;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-wrap > main {
  flex: 1 0 auto;
}

/* Cookie bar (bottom sheet — delayed so Lighthouse first paint is clean) */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 28px rgba(7, 23, 38, 0.14);
}
.cookie-bar[hidden] {
  display: none !important;
}
.cookie-bar-inner {
  width: min(960px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 0.85rem;
  text-align: left;
}
.cookie-bar-inner h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
}
.cookie-bar-inner p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.55;
}
.cookie-policy-link {
  color: #6b4510;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.cookie-policy-link:hover {
  color: #4a2f0a;
}
.cookie-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.cookie-bar-actions .btn {
  min-height: 42px;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
}
body.cookie-open {
  overflow: hidden;
}
body.has-mobile-bar .cookie-bar {
  bottom: 64px;
}

.container {
  width: var(--container);
  margin-inline: auto;
  max-width: 100%;
  padding-inline: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.45rem;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}
.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-btn);
}
.btn-primary {
  background: linear-gradient(180deg, #e8c878 0%, #d4a354 100%);
  color: #0a1f33;
  border-color: #b87a22;
  box-shadow: var(--shadow-btn-gold);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #d4a354 0%, #c4892a 100%);
  border-color: var(--gold-dark);
  color: #0a1f33;
  box-shadow: var(--shadow-btn-gold-hover);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.22);
}
.btn-navy {
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 3px 8px rgba(10, 31, 51, 0.22);
}
.btn-navy:hover {
  background: linear-gradient(180deg, #184062 0%, var(--navy-2) 100%);
  color: #fff;
  border-color: var(--navy-2);
  box-shadow: 0 5px 12px rgba(10, 31, 51, 0.28);
}
.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 2px 6px rgba(10, 31, 51, 0.1);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 10px rgba(10, 31, 51, 0.18);
}
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(10, 31, 51, 0.04);
}
.header-inner {
  position: relative;
  width: 100%;
  margin-inline: 0;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 100px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex: 0 0 auto;
  min-width: 0;
}
.brand .logo img {
  width: auto;
  height: 80px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.15;
}
.brand-text strong {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b4510;
}
.brand-text span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.root-header .brand-text strong {
  color: #6b4510;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: none;
}
.root-header .brand-text span {
  font-size: 1.05rem;
}
.root-header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.root-home-link {
  min-height: 44px;
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.15rem;
  flex: 0 1 auto;
  min-width: 0;
  margin-left: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  gap: 0.15rem 1.05rem;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--navy);
  padding: 0.45rem 0;
  position: relative;
  white-space: nowrap;
}
.nav-links a.is-active,
.nav-links a:hover { color: #6b4510; }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #6b4510;
}
.nav-cta {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  margin-left: auto;
  place-items: center;
  box-shadow: 0 2px 6px rgba(7, 23, 38, 0.08);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.menu-toggle:hover {
  border-color: var(--gold);
  box-shadow: 0 3px 8px rgba(7, 23, 38, 0.12);
}
.menu-toggle .rk-icon {
  width: 26px;
  height: 26px;
}

/* Hero full bleed — sabit yükseklik CLS önler */
.hero-full {
  position: relative;
  min-height: 520px;
  height: min(72vh, 620px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--navy-3);
  contain: layout;
}
.hero-full > img,
.hero-full > picture,
.hero-full > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner > picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 23, 38, 0.88) 0%, rgba(7, 23, 38, 0.55) 48%, rgba(7, 23, 38, 0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  margin: 0;
  padding: 4.5rem 20px 3.5rem;
  contain: layout;
}
.hero-content .eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  font-family: var(--font-heading);
  line-height: 1.2;
  min-height: 1.2em;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-content h1 .handwritten-accent {
  display: inline;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 1em;
  letter-spacing: 0.01em;
  margin-left: 0.12em;
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Feature strip */
.feature-strip {
  background: var(--navy);
  color: #fff;
  padding: 1.75rem 0;
  contain: layout;
  font-family: Arial, Helvetica, sans-serif;
}
.feature-strip-grid {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  min-height: 5.75rem;
  align-items: stretch;
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.4rem 0.5rem;
  min-height: 5.5rem;
  box-sizing: border-box;
}
.feature-strip-item .icon {
  width: 73px;
  height: 73px;
  flex: 0 0 73px;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.feature-strip-item .icon img {
  width: 73px;
  height: 73px;
  display: block;
}
.feature-strip-item strong {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  min-height: 1.25em;
}
.feature-strip-item span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.7);
  min-height: 1.35em;
}

/* Sections */
.section { padding: 4rem 0; contain: layout style; }
.section-alt { background: var(--gray); }
.section-cream { background: var(--cream); }
.section-head {
  text-align: center;
  margin-bottom: 2.25rem;
  min-height: 4.5rem;
}
.section-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin-bottom: 0.4rem;
}
.section-head p { color: var(--muted); max-width: 34rem; margin: 0 auto; }

/* Department cards */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.35rem;
}
.dept-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.dept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 31, 51, 0.14);
}
.dept-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
  contain: layout;
}
.dept-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.dept-card:hover .dept-card-media img { transform: scale(1.05); }
.dept-card-body {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dept-card-body h3 { font-size: 1.2rem; }
.dept-card-body p { color: var(--muted); flex: 1; }
.dept-card-body .link {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

/* Why icons */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
}
.why-item .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
}
.why-item .icon img {
  width: 72px;
  height: 72px;
}
.why-item h3 { font-size: 1rem; margin: 0; }

/* Page banner — LCP img + overlay (no CSS background-image) */
.page-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 2.75rem 0;
  background: var(--navy);
  min-height: 11rem;
  contain: layout;
}
.page-banner-img,
.page-banner > picture,
.page-banner > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(7, 23, 38, 0.92), rgba(18, 48, 73, 0.75));
  pointer-events: none;
}
.page-banner-inner {
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  color: #fff;
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}
.breadcrumb a {
  color: var(--gold-light);
  font-weight: 700;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  opacity: 1;
  color: #fff;
}

/* Corporate layout */
.corp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}
.corp-side {
  background: var(--gray);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  position: sticky;
  top: 100px;
}
.corp-side a {
  display: block;
  padding: 0.85rem 1.1rem;
  font-weight: 600;
  color: var(--navy);
  border-left: 3px solid transparent;
}
.corp-side a:hover,
.corp-side a.is-active {
  background: #fff;
  border-left-color: var(--gold);
  color: var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}
.stat-box {
  background: var(--gray);
  border: 1px solid var(--border);
  padding: 1.25rem 1rem;
  text-align: center;
}
.stat-box strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.stat-box span { font-size: 0.85rem; color: var(--muted); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  contain: layout;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(transparent, rgba(7,23,38,.85));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Education rows */
.edu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.edu-row:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.edu-row.reverse .edu-media { order: 2; }
.edu-row.reverse .edu-copy { order: 1; }
.edu-media {
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 16/11;
}
.edu-media img { width: 100%; height: 100%; object-fit: cover; }
.edu-copy ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
}
.edu-copy li + li { margin-top: 0.35rem; }

/* Application */
.app-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.card-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.card-head-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}

.card-head-icon img {
  width: 64px;
  height: 64px;
}

.card-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.card-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.side-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-panel,
.help-panel {
  background: linear-gradient(165deg, #0a1f33 0%, #123049 55%, #071726 100%);
  color: #fff;
  padding: 1.45rem 1.35rem 1.4rem;
  box-shadow: 0 14px 32px rgba(7, 23, 38, 0.18);
  position: relative;
  overflow: hidden;
}

.info-panel::after,
.help-panel::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(196, 137, 42, 0.08);
  pointer-events: none;
}

.panel-heading {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.panel-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 48px;
  height: 2px;
  background: var(--gold);
}

.panel-heading-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 197, 107, 0.35);
  display: grid;
  place-items: center;
}

.panel-heading-icon img {
  width: 28px;
  height: 28px;
  filter: none;
}
.btn-whatsapp img {
  width: 20px;
  height: 20px;
  filter: none;
}
.social-links a {
  width: auto;
  height: auto;
  border: 0;
  display: grid;
  place-items: center;
  padding: 0.15rem;
}
.social-links a img {
  width: 36px;
  height: 36px;
  filter: none;
}

.panel-eyebrow {
  margin: 0 0 0.3rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-heading h2,
.panel-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: 800;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.process-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-steps li:first-child {
  border-top: 0;
  padding-top: 0.25rem;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 197, 107, 0.12);
  border: 1px solid rgba(245, 197, 107, 0.4);
  display: grid;
  place-items: center;
  margin-top: 0.15rem;
}

.step-icon img {
  width: 26px;
  height: 26px;
  filter: none;
}

.step-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.step-index {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.step-copy strong {
  color: #fff;
  font-size: 0.98rem;
}

.step-copy span:not(.step-index) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.4;
}

.help-text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}

.help-phone {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0.85rem;
  color: #fff !important;
  position: relative;
  z-index: 1;
  transition: background 0.2s ease;
}

.help-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

.help-phone-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: rgba(245, 197, 107, 0.12);
  border: 1px solid rgba(245, 197, 107, 0.35);
  display: grid;
  place-items: center;
}

.help-phone-icon img {
  width: 24px;
  height: 24px;
  filter: none;
}

.help-phone small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.help-phone strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-top: 0.1rem;
}

.btn-whatsapp {
  width: 100%;
  background: linear-gradient(180deg, #2fe075 0%, #25d366 100%);
  border-color: #25d366;
  color: #fff !important;
  font-weight: 800;
  gap: 0.55rem;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-btn);
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.btn-whatsapp:hover {
  background: linear-gradient(180deg, #25d366 0%, #1ebe57 100%);
  border-color: #1ebe57;
  color: #fff !important;
  box-shadow: 0 5px 12px rgba(37, 211, 102, 0.36);
}

.process-panel {
  background: var(--navy);
  color: #fff;
  padding: 1.75rem;
}

.process-panel h2,
.process-panel h3 { color: #fff; }

.process-panel a { color: var(--gold-light); }

/* Contact */
.contact-map-section {
  margin: 0;
  padding: 0;
}

.map-wrap {
  border: 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.map-frame {
  width: 100%;
  height: 624px;
  border: 0;
  background: var(--cream);
  display: block;
}

.map-directions {
  display: flex;
  justify-content: center;
  padding: 1.35rem 20px 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.contact-info-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-info-box .card-head {
  margin-bottom: 1.15rem;
}

.info-line {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.info-line:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.info-line .icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
}

.info-line .icon img {
  width: 56px;
  height: 56px;
}

.info-line strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.info-line div:last-child {
  color: var(--navy);
  line-height: 1.45;
}

.contact-cta-box {
  margin-top: 1rem;
  background: linear-gradient(165deg, #0a1f33 0%, #123049 100%);
  color: #fff;
  padding: 1.45rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(7, 23, 38, 0.18);
}

.contact-cta-box::before {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 90px;
  height: 90px;
  border: 14px solid rgba(196, 137, 42, 0.1);
}

.contact-cta-box .panel-heading {
  margin-bottom: 0.85rem;
}

.contact-cta-box h3 {
  color: #fff;
  margin: 0;
  font-size: 1.2rem;
}

.contact-cta-box p {
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
  margin: 0 0 1.1rem;
}

.contact-cta-box .btn {
  position: relative;
  z-index: 1;
}

/* News */
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.news-filters a {
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
}
.news-filters a.is-active,
.news-filters a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.news-card {
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.news-card-media {
  aspect-ratio: 16/10;
  background: var(--navy-2);
  overflow: hidden;
}
.news-card-media img,
.news-card-media picture,
.news-card-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-meta {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.news-card-body h2 { font-size: 1.1rem; }
.news-card-body p { color: var(--muted); flex: 1; }

/* Footer */
.site-footer {
  background: var(--navy-3);
  color: rgba(255,255,255,0.82);
  padding: 3.25rem 0 1.5rem;
  margin-top: auto;
}
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--gold-light); }
.site-footer h4,
.site-footer .footer-heading {
  display: inline-block;
  max-width: 100%;
  color: var(--navy-3);
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  padding: 0.45rem 0.78rem;
  line-height: 1.25;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn-gold);
}
.footer-grid {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo img { height: 72px; width: auto; margin-bottom: 0.85rem; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
  max-width: 100%;
  margin-bottom: 0.85rem;
}
.footer-brand:hover,
.footer-brand:focus-visible {
  color: inherit;
  text-decoration: none;
  opacity: 0.92;
}
.footer-brand .logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand .brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.15;
  min-width: 0;
}
.footer-brand .brand-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0d48a;
}
.footer-brand .brand-text span {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.social-links {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
  align-items: center;
}
.social-links a {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  padding: 0.15rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.social-links a:hover {
  border: 0;
  background: transparent;
  opacity: 0.85;
  transform: translateY(-1px);
}
.footer-bottom {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.88rem;
}
.legal-links { display: flex; flex-wrap: wrap; gap: 0.85rem 1.35rem; align-items: center; }
.legal-sep {
  margin: 0 0.35rem;
  opacity: 0.45;
  user-select: none;
}
.footer-legal-col .footer-legal-group {
  margin-bottom: 0.85rem;
}
.footer-legal-col .footer-legal-group:last-child {
  margin-bottom: 0;
}
.footer-legal-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-legal-group p {
  margin: 0;
  line-height: 1.55;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 95;
  width: 64px;
  height: 64px;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: block;
  line-height: 0;
  padding: 0;
  transition: transform 0.2s ease;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(7, 27, 51, 0.28));
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
}

/* Mobile bar */
.mobile-actions {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-actions a {
  flex: 1;
  text-align: center;
  color: #fff;
  padding: 0.85rem 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,0.1);
  min-height: 44px;
}
.mobile-actions a:last-child {
  border-right: 0;
  background: linear-gradient(180deg, #e8c878 0%, #d4a354 100%);
  color: #0a1f33;
}
.has-mobile-bar { padding-bottom: 0; }

/* Register process band */
.register-process {
  background: linear-gradient(165deg, #071726 0%, #0a1f33 45%, #123049 100%);
  color: #fff;
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}

.register-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 20%, rgba(196, 137, 42, 0.12), transparent 42%),
    radial-gradient(ellipse at 88% 80%, rgba(196, 137, 42, 0.08), transparent 40%);
  pointer-events: none;
}

.register-process-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-inline: 28px;
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(0, 2.6fr) minmax(200px, 0.9fr);
  gap: 1.75rem 2rem;
  align-items: center;
}

.register-process-intro h2 {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.register-process-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  line-height: 1.45;
}

.register-process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.45rem;
  min-width: 0;
}

.register-process-step {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
}

.register-process-num {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.register-process-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0.8rem;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
}

.register-process-icon img {
  width: 60px;
  height: 60px;
  filter: none;
}

.register-process-num {
  display: none;
}

.register-process-arrow {
  flex: 0 0 auto;
  width: 22px;
  margin-top: 1.35rem;
  opacity: 0.95;
}

.register-process-step h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 800;
}

.register-process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.45;
}

.register-process-arrow {
  flex: 0 0 auto;
  width: 20px;
  margin-top: 2.55rem;
  opacity: 0.95;
}

.register-process-arrow img {
  width: 18px;
  height: 18px;
}

.register-process-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.register-process-actions .btn {
  width: 100%;
  min-height: 46px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.btn-wa-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.7);
  gap: 0.5rem;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
}

.btn-wa-outline img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.btn-wa-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 3rem 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

/* Root campus page — mockup fidelity */
body.root-page {
  background:
    radial-gradient(ellipse at top left, rgba(196,137,42,0.12), transparent 40%),
    radial-gradient(ellipse at bottom right, rgba(196,137,42,0.08), transparent 35%),
    linear-gradient(160deg, #071726 0%, #0d2235 45%, #071726 100%);
  background-attachment: fixed;
}

body.root-page .page-wrap {
  background:
    url("../images/icons/root/pattern.svg") right top / 280px no-repeat,
    url("../images/icons/root/pattern.svg") left bottom / 240px no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 48%, #ffffff 100%);
  position: relative;
}

.root-hero {
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
  background: transparent;
}

.root-hero .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 24px rgba(7, 23, 38, 0.18));
}

.root-hero .logo picture {
  display: contents;
}

.root-hero .logo img {
  height: 222px;
  width: 222px;
  object-fit: contain;
}

.root-hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 0.85rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.root-hero h1 .accent {
  color: var(--gold);
}

.root-hero .lead {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.campus-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem 2.75rem;
}

.campus-select-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(7, 23, 38, 0.14);
  border: 1px solid rgba(7, 23, 38, 0.08);
  background: var(--navy);
  transition: transform .28s ease, box-shadow .28s ease;
}

.campus-select-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(7, 23, 38, 0.2);
}

.campus-select-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-2);
}

.campus-select-media img,
.campus-select-media picture,
.campus-select-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.campus-select-card:hover .campus-select-media img,
.campus-select-card:hover .campus-select-media picture img {
  transform: scale(1.04);
}

.campus-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 0.38rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: #071726;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.campus-badge.gold {
  background: var(--gold);
  color: #071726;
}

.campus-select-body {
  padding: 1.45rem 1.35rem 1.35rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.campus-select-body h2 {
  color: #fff;
  font-size: 1.22rem;
  margin-bottom: 0.95rem;
}

.check-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  flex: 1;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.96rem;
}

.check-list li img {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex: 0 0 18px;
}

.btn-campus img {
  width: 16px;
  height: 16px;
  margin-left: 0.35rem;
}

.advantage-card .icon-frame {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}

.advantage-card .icon-frame img {
  width: 56px;
  height: 56px;
}

.model-item .icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  box-shadow: none;
}

.model-item .icon-circle img {
  width: 64px;
  height: 64px;
}

.howto-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.howto-icon img {
  width: 64px;
  height: 64px;
}

.howto-step .num {
  display: none;
}

.root-cta-actions .btn img {
  width: 16px;
  height: 16px;
  margin-left: 0.35rem;
}

.root-cta-actions .btn-outline-gold img {
  filter: brightness(0) invert(1);
}

.btn-campus {
  width: 100%;
  color: #071726 !important;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.btn-campus span {
  margin-left: 0.25rem;
}

.advantage-section {
  background: transparent;
  padding: 0.25rem 0 2.75rem;
}

.advantage-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.advantage-card {
  background: #fff;
  border: 1px solid #e8eaee;
  padding: 1.4rem 0.65rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 22px rgba(7, 23, 38, 0.07);
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .22s ease, box-shadow .22s ease;
}

.advantage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(7, 23, 38, 0.12);
}

.advantage-card .icon-frame {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.95rem;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
}

.advantage-card .icon-frame img {
  width: 64px;
  height: 64px;
}

.advantage-card h3 {
  font-size: 0.84rem;
  margin: 0;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 700;
}

.model-section {
  padding: 2.75rem 1.5rem 3.25rem;
  background: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(7, 23, 38, 0.06);
}

.model-title,
.howto-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 2.15rem;
}

.model-title::before,
.model-title::after,
.howto-title::before,
.howto-title::after {
  content: "";
  height: 2px;
  width: min(140px, 14vw);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background: var(--gold);
}

.model-title h2,
.howto-title h2 {
  margin: 0;
  font-size: 1.5rem;
  white-space: nowrap;
  color: var(--navy);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1000px, 100%);
  margin: 0 auto;
  text-align: center;
}

.model-item {
  padding: 0.85rem 1.2rem 1rem;
  border-right: 1px solid #e5e7eb;
}

.model-item:last-child {
  border-right: 0;
}

.model-item .icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.05rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.model-item .icon-circle img {
  width: 64px;
  height: 64px;
}

.model-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.model-item p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.howto-section {
  padding: 2.75rem 1.5rem 3.25rem;
  background: #eef1f5;
}

.howto-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.45rem;
  width: min(1060px, 100%);
  margin: 0 auto;
  align-items: center;
}

.howto-step {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 1.55rem 1rem 1.35rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 24px rgba(7, 23, 38, 0.08);
  min-height: 190px;
}

.howto-step .num {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 4px 10px rgba(7, 23, 38, 0.2);
}

.howto-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.howto-icon img {
  width: 64px;
  height: 64px;
}

.howto-step .num {
  display: none;
}

.howto-step h3 {
  font-size: 0.98rem;
  margin: 0 0 0.45rem;
  color: var(--navy);
}

.howto-step p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

.howto-arrow {
  display: grid;
  place-items: center;
  width: 28px;
}

.howto-arrow img {
  width: 22px;
  height: 22px;
  opacity: 0.95;
}

.root-cta {
  position: relative;
  background: linear-gradient(110deg, #071726 0%, #123049 55%, #071726 100%);
  color: #fff;
  padding: 2.75rem 1.5rem;
  overflow: hidden;
}

.root-cta .cta-watermark {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  pointer-events: none;
  opacity: 0.9;
}

.root-cta-inner {
  position: relative;
  z-index: 1;
  width: min(1000px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.root-cta h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  max-width: 30rem;
  line-height: 1.3;
}

.root-cta h2 .accent { color: var(--gold-light); }

.root-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: min(290px, 100%);
}

.root-cta-actions .btn-primary {
  color: #071726;
  font-weight: 800;
}

.root-cta-actions .btn-outline-gold {
  background: rgba(196, 137, 42, 0.08);
  color: var(--gold-light);
  border-color: var(--gold-light);
  font-weight: 800;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 6px rgba(196, 137, 42, 0.16);
}

.root-cta-actions .btn-outline-gold:hover {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  border-color: var(--gold);
  color: #071726;
  box-shadow: var(--shadow-btn-gold-hover);
}

.root-footer .footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr;
}

.root-footer .footer-brand .logo img {
  height: 84px;
}

.root-footer .footer-brand .brand-text strong {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: #f0d48a;
}

.root-footer .footer-slogan {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}

/* Legacy campus cards (school pages may reuse) */
.campus-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.campus-card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--navy); }
.campus-card-media img { width: 100%; height: 100%; object-fit: cover; }
.campus-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.campus-card-body ul { margin: 0 0 1.4rem; padding-left: 1.1rem; color: var(--muted); flex: 1; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.25rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 2rem; height: 2rem;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.list-check { list-style: none; margin: 0; padding: 0; }
.list-check li { position: relative; padding-left: 1.4rem; margin-bottom: 0.55rem; }
.list-check li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 0.5rem; height: 0.5rem;
  background: var(--gold);
}

.alert { padding: 0.9rem 1rem; border: 1px solid var(--border); margin-bottom: 1rem; }
.alert-success { background: #e8f7ef; border-color: #9fd4b5; color: var(--success); }
.alert-error { background: #fdeceb; border-color: #f0b4af; color: var(--danger); }
.sr-only, .hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-block {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.edu-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.edu-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(148px, 200px) 1fr;
  align-items: stretch;
}

.edu-feature-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--navy);
}

.edu-feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.edu-feature-body {
  min-width: 0;
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.edu-feature-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.edu-feature-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.edu-mtok-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0;
  margin: 0.25rem 0 1.75rem;
  overflow: hidden;
}

.edu-mtok-banner {
  margin: 0;
  border-bottom: 1px solid var(--border);
  aspect-ratio: 8 / 3;
  overflow: hidden;
  background: #fff;
}

.edu-mtok-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.edu-mtok-head {
  padding: 1.45rem 1.7rem 0;
}

.edu-mtok-eyebrow {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edu-mtok-head h2 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  color: var(--navy);
}

.edu-mtok-head p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.edu-mtok-head p:last-child {
  margin-bottom: 1.15rem;
}

.edu-mtok-list {
  list-style: none;
  margin: 0 1.7rem 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
}

.edu-mtok-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  background: #f7f8fa;
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
}

.edu-mtok-list em {
  flex: 0 0 auto;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--navy);
  padding: 0.28rem 0.45rem;
}

.edu-mtok-list.is-plain li {
  justify-content: flex-start;
}

.edu-mtok-list.is-dense {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.edu-mtok-notes {
  display: grid;
  gap: 0.7rem;
  margin: 0 1.7rem 1.55rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.edu-mtok-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Ankara promo slider */
.promo-slider-section {
  background: #f7f8fa;
  padding: 1.5rem 0 2rem;
}

.promo-slider {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(7, 23, 38, 0.1);
  overflow: hidden;
}

.promo-slider-track {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy-3);
}

.promo-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.promo-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.promo-slide img,
.promo-slide picture,
.promo-slide picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.promo-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 23, 38, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(7, 23, 38, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.promo-slider-btn:hover {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 5px 12px rgba(7, 23, 38, 0.16);
  transform: translateY(-50%) scale(1.05);
}

.promo-slider-btn.prev { left: 12px; }
.promo-slider-btn.next { right: 12px; }

.promo-slider-btn img {
  width: 18px;
  height: 18px;
}

.promo-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.promo-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 23, 38, 0.28);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(7, 23, 38, 0.18);
  transition: transform .2s ease, background .2s ease;
}

.promo-slider-dots button.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

/* Legal pages */
.legal-prose {
  max-width: 860px;
}
.legal-prose h2,
.legal-prose h3 {
  margin-top: 1.75rem;
}
.legal-meta {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.legal-entity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.legal-entity-card {
  border: 1px solid var(--border);
  padding: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow-btn);
}
.link-like {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.footer-bottom .link-like,
.site-footer .link-like {
  color: rgba(255,255,255,0.82);
}
.site-footer .link-like:hover {
  color: var(--gold-light);
}

/* Cookie modal (detailed preferences) */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(7, 23, 38, 0.55);
  display: grid;
  place-items: center;
  padding: 1rem;
}
.cookie-modal[hidden] { display: none !important; }
.cookie-modal-card {
  width: min(440px, 100%);
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.4rem;
  box-shadow: 0 10px 28px rgba(7, 23, 38, 0.22);
}
.cookie-modal-card h3 { margin-top: 0; text-align: center; }
.cookie-modal-lead { color: var(--muted); font-size: 0.86rem; text-align: center; }
.cookie-modal-card .checkbox { margin: 0.7rem 0; }
.cookie-modal-actions {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 1rem;
}
.map-consent-placeholder {
  display: none;
}
.consent-block { margin-top: 0; margin-bottom: 0.35rem; }
.form-grid > .consent-block.form-group {
  margin-bottom: 0.15rem;
}
.form-grid > .consent-block + .consent-block {
  margin-top: -0.15rem;
}
.consent-controller {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.consent-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0.45rem 0 0 1.6rem;
}
.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  color: var(--muted);
}
.form-hint.consent-hint {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0.35rem;
  line-height: 1.35;
}
.legal-notice-trigger {
  font: inherit;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.legal-notice-trigger:hover {
  color: var(--gold);
}
.legal-notice-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(7, 23, 38, 0.55);
  display: grid;
  place-items: center;
  padding: 1rem;
}
.legal-notice-modal[hidden] { display: none !important; }
.legal-notice-modal-card {
  width: min(640px, 100%);
  max-height: min(82vh, 720px);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(7, 23, 38, 0.24);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.legal-notice-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--border);
  flex: 0 0 auto;
}
.legal-notice-modal-head h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
}
.legal-notice-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.legal-notice-close:hover { color: var(--navy); }
.legal-notice-modal-body {
  padding: 1rem 1.15rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
}
.legal-notice-modal-body h4 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  color: var(--navy);
}
.legal-notice-modal-body h5 {
  margin: 1rem 0 0.35rem;
  font-size: 0.9rem;
  color: var(--navy);
}
.legal-notice-modal-body p,
.legal-notice-modal-body li {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.legal-notice-modal-body ul {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
}
.legal-notice-modal-body .legal-meta {
  margin-top: 1rem;
  font-size: 0.8rem;
}
.legal-notice-modal-actions {
  display: flex;
  justify-content: center;
  padding: 0.85rem 1.15rem 1.1rem;
  border-top: 1px solid var(--border);
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .legal-entity-grid { grid-template-columns: 1fr; }
  .cookie-bar-actions {
    flex-direction: column;
  }
  .cookie-bar-actions .btn {
    width: 100%;
  }
}

/* 404 */
.error-404 {
  position: relative;
  min-height: calc(100vh - 280px);
  display: grid;
  place-items: center;
  padding: 3.5rem 1.25rem 4rem;
  overflow: hidden;
  background: #fff;
}
.error-404__watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
}
.error-404__watermark img {
  width: min(520px, 72vw);
  height: auto;
  opacity: 0.07;
  filter: grayscale(0.15);
  user-select: none;
}
.error-404__card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(7, 23, 38, 0.1);
  padding: 2.25rem 1.75rem 2rem;
  text-align: center;
}
.error-404__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.error-404__card h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  color: var(--navy);
}
.error-404__card p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}
.error-404__card .btn {
  min-width: 200px;
}

@media (max-width: 768px) {
  .error-404 {
    min-height: calc(100vh - 220px);
    padding: 2.5rem 1rem 3rem;
  }
  .error-404__card {
    padding: 1.75rem 1.25rem 1.5rem;
  }
}


/* icon utility sizes (was icons.css) */
.rk-icon{width:1.75rem;height:1.75rem;display:inline-block;vertical-align:middle}.rk-icon-sm{width:1.35rem;height:1.35rem}.rk-icon-lg{width:3.25rem;height:3.25rem}.rk-icon-xl{width:4.75rem;height:4.75rem}.rk-icon-link{color:#0E2A57;transition:color .2s ease,transform .2s ease}.rk-icon-link:hover{color:#C99A2E;transform:translateY(-1px)}

