:root {
  --navy: #25276f;
  --navy-dark: #151746;
  --red: #cb1b49;
  --red-dark: #a8143c;
  --gold: #d8b870;
  --ink: #1f2448;
  --muted: #646b83;
  --line: #e2e5ee;
  --paper: #ffffff;
  --wash: #f5f7fb;
  --soft-red: #fff0f4;
  --shadow: 0 18px 42px rgba(21, 23, 70, 0.12);
  --radius: 8px;
  --max-width: 1200px;
  --nav-width: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 142px 0 0;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(16px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(16px, calc((100vw - var(--max-width)) / 2));
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.page-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding-top: 14px;
  padding-bottom: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(21, 23, 70, 0.07);
  transition: padding 220ms ease, box-shadow 220ms ease;
}

.page-top.full-bleed {
  width: 100%;
  margin-left: 0;
  padding-left: 16px;
  padding-right: 16px;
}

.page-top.is-scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  pointer-events: none;
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, var(--nav-width));
  margin: 0 auto;
  padding: 0 2px 12px;
  color: var(--muted);
  font-size: 13px;
  max-height: 36px;
  overflow: hidden;
  transition: max-height 220ms ease, opacity 220ms ease, padding 220ms ease;
}

.utility-bar a {
  color: var(--red);
  font-weight: 800;
}

.page-top.is-scrolled .utility-bar {
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.topbar {
  width: min(100%, var(--nav-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
  transition: width 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.page-top.is-scrolled .topbar {
  width: min(100%, var(--max-width));
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(21, 23, 70, 0.16);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 215px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--line);
  transition: width 220ms ease, height 220ms ease;
}

.page-top.is-scrolled .brand-logo {
  width: 48px;
  height: 48px;
}

.brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 16px;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.contact-sidebar a:hover,
.footer a:hover {
  color: var(--red);
}

.header-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(203, 27, 73, 0.2);
  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 13px;
}

.button-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
  box-shadow: none;
}

.button-light {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.button-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  height: calc(100vh - 128px);
  min-height: 560px;
  max-height: 640px;
  margin-top: 0;
  padding: 42px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(21, 23, 70, 0.92) 0%, rgba(21, 23, 70, 0.76) 44%, rgba(21, 23, 70, 0.24) 100%),
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero.full-bleed {
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
}

.hero-content {
  max-width: 690px;
  color: #fff;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 64px;
  line-height: 1.02;
}

.lede {
  max-width: 650px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.8;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.stats-strip article {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-strip article:last-child {
  border-right: 0;
}

.stats-strip strong {
  display: block;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: 64px 0 0;
  scroll-margin-top: 132px;
}

.section-heading,
.contact-intro {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading h2,
.contact-intro h2 {
  color: var(--navy);
  font-size: 48px;
  line-height: 1.06;
}

.section-heading p,
.contact-intro p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.trust-grid,
.service-flow,
.service-grid,
.university-grid,
.contact-layout {
  display: grid;
  gap: 18px;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card,
.service-card,
.university-card,
.contact-panel,
.contact-sidebar article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(21, 23, 70, 0.06);
}

.trust-card,
.service-card {
  padding: 24px;
}

.trust-card span,
.service-card strong,
.contact-sidebar span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-card h3,
.service-card h3,
.destination-card h3,
.university-card h3,
.contact-panel h3,
.contact-sidebar h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  line-height: 1.08;
}

.trust-card p,
.service-card p,
.destination-card p,
.university-card p,
.contact-sidebar p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.destination-section {
  margin-top: 64px;
  padding-top: 70px;
  padding-bottom: 72px;
  background:
    linear-gradient(135deg, rgba(21, 23, 70, 0.97), rgba(37, 39, 111, 0.94)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.destination-section .section-heading h2 {
  color: #fff;
}

.destination-section .eyebrow {
  color: var(--gold);
}

.slider-shell {
  position: relative;
}

.destination-section .slider-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.slider-controls {
  position: absolute;
  inset: 0 28px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 34px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 18px 34px rgba(5, 7, 34, 0.24);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.slider-arrow:hover {
  transform: translateY(-2px);
  background: var(--red);
  color: #fff;
}

.country-slider {
  display: grid;
  grid-auto-columns: minmax(330px, calc((100vw - 116px) / 4));
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 28px 24px;
  scroll-behavior: smooth;
  scroll-padding-inline: 24px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  min-width: 0;
}

.country-slider::-webkit-scrollbar {
  display: none;
}

.destination-card {
  display: flex;
  align-items: end;
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  background: var(--navy-dark);
  box-shadow: 0 24px 50px rgba(5, 7, 34, 0.22);
  scroll-snap-align: start;
  min-width: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.destination-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 64px rgba(5, 7, 34, 0.28);
}

.university-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 23, 70, 0.03) 10%, rgba(21, 23, 70, 0.28) 46%, rgba(21, 23, 70, 0.92) 100%),
    radial-gradient(circle at 18% 14%, rgba(216, 184, 112, 0.3), transparent 28%);
}

.destination-card:hover img {
  transform: scale(1.06);
}

.destination-card div,
.university-card div {
  padding: 22px;
}

.destination-card div {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  padding: 24px;
  background: transparent;
}

.destination-card h3 {
  color: #fff;
  font-size: 34px;
}

.destination-card p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.82);
}

.destination-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(5, 7, 34, 0.22);
}

.slider-dots,
.video-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.slider-dots {
  margin-top: 6px;
}

.slider-dots button,
.video-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dots button.is-active,
.video-dots button.is-active {
  width: 28px;
  background: var(--red);
}

.service-flow {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 18%, rgba(203, 27, 73, 0.1), transparent 28%),
    linear-gradient(135deg, #ffffff, #f6f8ff);
  box-shadow: var(--shadow);
}

.service-flow::before {
  content: "";
  position: absolute;
  left: 70px;
  right: 70px;
  top: 89px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--navy));
  opacity: 0.35;
}

.flow-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0 14px;
  text-align: center;
  cursor: pointer;
  outline: none;
}

.flow-step span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 30px rgba(21, 23, 70, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.flow-step strong {
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1;
}

.flow-step p {
  max-width: 170px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.flow-step:hover span,
.flow-step:focus-visible span,
.flow-step.is-active span {
  transform: translateY(-8px) scale(1.06);
  background: var(--red);
}

.flow-step:hover strong,
.flow-step:focus-visible strong,
.flow-step.is-active strong {
  color: var(--red);
}

.university-logo-slider {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(21, 23, 70, 0.06);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.university-logo-track {
  display: flex;
  width: max-content;
  animation: logoRun 28s linear infinite;
}

.university-logo-slider:hover .university-logo-track {
  animation-play-state: paused;
}

.university-logo-track article {
  display: grid;
  place-items: center;
  width: 260px;
  min-height: 120px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.university-logo-track img {
  width: 100%;
  max-width: 190px;
  height: 88px;
  object-fit: contain;
}

@keyframes logoRun {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.university-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.university-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
}

.success-section {
  margin-top: 64px;
  padding-top: 70px;
  padding-bottom: 76px;
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.96), rgba(255, 255, 255, 0.98)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.success-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

.video-card {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 500px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(21, 23, 70, 0.08), rgba(21, 23, 70, 0.88)),
    var(--video-bg) center/cover no-repeat;
  box-shadow: var(--shadow);
  color: #fff;
}

.play-button {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
}

.play-button::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 29px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--red);
}

.video-card p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.video-card strong {
  display: block;
  max-width: 520px;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1.04;
}

.video-card small {
  display: block;
  max-width: 430px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.video-thumbs {
  display: grid;
  grid-auto-columns: calc((100% - 14px) / 2);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  min-width: 0;
}

.video-thumbs::-webkit-scrollbar {
  display: none;
}

.video-thumb {
  position: relative;
  min-height: 243px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(21, 23, 70, 0.08);
  cursor: pointer;
  scroll-snap-align: start;
}

.video-thumb.is-active {
  border-color: var(--red);
}

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

.video-thumb span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(21, 23, 70, 0.84);
  color: #fff;
  font-weight: 800;
  text-align: left;
}

.video-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.video-nav {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(21, 23, 70, 0.08);
}

.video-nav:hover {
  background: var(--red);
  color: #fff;
}

.video-dots button {
  background: #d4d8e8;
}

.contact-section {
  padding-bottom: 34px;
}

.contact-layout {
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-panel,
.contact-sidebar article {
  padding: 26px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-sidebar {
  display: grid;
  gap: 18px;
}

.contact-sidebar a,
.footer a {
  color: var(--red);
  font-weight: 800;
}

.footer {
  margin-top: 36px;
  padding-top: 54px;
  padding-bottom: 0;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.footer-brand strong,
.footer-column h3 {
  display: block;
  margin: 16px 0 10px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.05;
}

.footer-brand p,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-column,
.footer-brand {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer a {
  color: #fff;
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 160ms ease, background 160ms ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--red);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

.whatsapp-chat,
.back-to-top {
  position: fixed;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(21, 23, 70, 0.2);
}

.whatsapp-chat {
  right: 22px;
  bottom: 22px;
  gap: 8px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
}

.whatsapp-chat svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.back-to-top {
  right: 22px;
  bottom: 88px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.button:focus-visible,
.nav a:focus-visible,
.slider-arrow:focus-visible,
.slider-dots button:focus-visible,
.video-thumb:focus-visible,
.video-nav:focus-visible,
.video-dots button:focus-visible {
  outline: 2px solid rgba(203, 27, 73, 0.82);
  outline-offset: 3px;
}

.flow-step:focus-visible,
.social-links a:focus-visible,
.whatsapp-chat:focus-visible,
.back-to-top:focus-visible {
  outline: 2px solid rgba(203, 27, 73, 0.82);
  outline-offset: 3px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1140px) {
  .nav {
    display: none;
  }

  .trust-grid,
  .service-flow,
  .service-grid,
  .university-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-flow {
    gap: 28px 12px;
  }

  .service-flow::before {
    display: none;
  }

  .success-gallery,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .country-slider {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .video-thumbs {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .slider-controls {
    inset: 0 12px 52px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 22px), var(--max-width));
    padding-top: 82px;
  }

  .destination-section .section-inner,
  .success-section .section-inner {
    width: 100%;
  }

  .utility-bar {
    display: none;
  }

  .page-top {
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .topbar {
    padding: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-copy span {
    display: none;
  }

  .header-actions .button-secondary {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 520px;
    max-height: none;
    padding: 24px;
    align-items: center;
    background-position: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .lede {
    font-size: 15px;
  }

  .stats-strip,
  .trust-grid,
  .service-flow,
  .service-grid,
  .university-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-flow {
    padding: 22px;
  }

  .flow-step {
    justify-items: start;
    grid-template-columns: 62px 1fr;
    text-align: left;
  }

  .flow-step p {
    grid-column: 2;
    max-width: none;
  }

  .stats-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats-strip article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 48px;
  }

  .section-heading h2,
  .contact-intro h2 {
    font-size: 36px;
  }

  .university-card {
    grid-template-rows: 205px 1fr;
  }

  .destination-section,
  .success-section {
    margin-top: 48px;
    padding-top: 48px;
    padding-bottom: 50px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .slider-shell {
    display: block;
  }

  .destination-section .slider-shell {
    width: 100%;
    margin-left: 0;
  }

  .slider-arrow {
    display: none;
  }

  .country-slider {
    grid-auto-columns: minmax(236px, 62vw);
    gap: 14px;
    padding: 4px 0 20px;
    scroll-padding-inline: 0;
  }

  .destination-card {
    min-height: 405px;
    border-radius: 24px;
  }

  .destination-card div {
    padding: 20px;
  }

  .destination-card h3 {
    font-size: 31px;
  }

  .destination-card p {
    font-size: 15px;
  }

  .slider-dots {
    justify-content: center;
    width: 100%;
    margin-top: 2px;
  }

  .university-logo-track article {
    width: 210px;
  }

  .video-thumbs {
    grid-auto-columns: minmax(160px, calc((100% - 12px) / 2));
    gap: 12px;
  }

  .success-gallery {
    gap: 14px;
    width: 100%;
  }

  .video-card {
    min-height: 380px;
    padding: 22px;
    border-radius: 24px;
  }

  .video-thumb {
    min-height: 210px;
    border-radius: 18px;
  }

  .video-card strong {
    font-size: 32px;
  }

  .video-controls {
    margin-top: 16px;
  }

  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .footer-bottom div {
    align-items: flex-start;
    flex-direction: column;
  }
}
