:root {
  --ink: #1f2a37;
  --ink-soft: rgba(31, 42, 55, 0.78);
  --sea: #52adf5;
  --sea-deep: #2250e3;
  --sun: #7feeb2;
  --sun-soft: rgba(127, 238, 178, 0.1);
  --sun-mid: rgba(127, 238, 178, 0.24);
  --sun-strong: rgba(127, 238, 178, 0.34);
  --sand: #ffffff;
  --white: #ffffff;
  --panel: rgba(255, 255, 255, 0.9);
  --shadow: 0 20px 50px rgba(31, 42, 55, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 80, 227, 0.08), transparent 35%),
    radial-gradient(circle at 85% 10%, var(--sun-soft), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.99) 52%, rgba(34, 80, 227, 0.04) 100%);
  overflow-x: hidden;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(var(--ink) 0.6px, transparent 0.6px);
  background-size: 5px 5px;
  z-index: 1;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  transition: 0.25s ease;
}

.navbar.scrolled {
  background: rgba(34, 80, 227, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(34, 80, 227, 0.28);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--sea);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  min-height: 100vh;
  padding: 110px 20px 88px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/background-image.jpg") center/cover no-repeat;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(34, 80, 227, 0.8) 10%, rgba(34, 80, 227, 0.5) 55%, rgba(82, 173, 245, 0.24) 100%),
    linear-gradient(180deg, transparent 62%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--white);
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
  color: var(--sun);
}

.hero h1 {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.hero h1 span,
.hero h1 strong {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero h1 span {
  font-size: clamp(68px, 12vw, 150px);
  color: var(--sun);
}

.hero h1 strong {
  font-size: clamp(80px, 14vw, 180px);
  color: var(--white);
}

.hero-lead {
  max-width: 640px;
  margin-top: 14px;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 500;
}

.hero-pill-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.countdown {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 110px));
  gap: 10px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.countdown-item span {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 45px;
  line-height: 1;
}

.countdown-item small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--sea), var(--sea-deep));
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

section {
  position: relative;
  z-index: 2;
  padding: 72px 20px;
}

.highlights {
  margin-top: 0;
  padding-top: 72px;
}

.highlights-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 42, 55, 0.14);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.highlight-card h3 {
  font-size: 20px;
}

.highlight-card p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.section-head {
  max-width: 1120px;
  margin: 0 auto 22px;
}

.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.95;
  color: var(--ink);
}

.section-head p {
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 8px;
}

.sponsors {
  background: linear-gradient(145deg, #0f1d36 0%, #142a4d 55%, #1a3560 100%);
}

.sponsors .section-head h2,
.sponsors .section-head p {
  color: var(--white);
}

.sponsor-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sponsor-logo {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  height: 106px;
  display: grid;
  place-items: center;
}

.sponsor-logo img {
  max-width: 74%;
  max-height: 70px;
  object-fit: contain;
  filter: brightness(1.1);
}

.event-grid,
.course-grid,
.services-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.event-card,
.course-card,
.service-card,
.registration-inner,
.accommodation-content {
  background: var(--panel);
  border: 1px solid rgba(31, 42, 55, 0.12);
  box-shadow: var(--shadow);
  border-radius: 18px;
}

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

.event-time {
  color: #2f5fd1;
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
}

.event-card h3,
.course-card h3,
.service-card h3 {
  margin-top: 4px;
  font-size: 22px;
}

.event-card p,
.course-card small,
.service-card p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.service-card a {
  color: #2f5fd1;
  font-weight: 700;
}

.swim-details {
  margin-top: 10px;
}

.swim-details summary {
  cursor: pointer;
  font-weight: 800;
  color: #2f5fd1;
}

.swim-schedule {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.swim-schedule li {
  border: 1px solid rgba(31, 42, 55, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
  display: grid;
  gap: 3px;
}

.swim-schedule li span:first-child {
  font-weight: 800;
  color: var(--ink);
}

.swim-schedule li span:last-child {
  color: var(--ink-soft);
  font-size: 14px;
}

.courses {
  background: transparent;
  padding-top: 56px;
}

.courses-shell {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1d36 0%, #162748 58%, #1e3660 100%);
  border: 1px solid var(--sun-strong);
  box-shadow: 0 26px 55px rgba(15, 29, 54, 0.35);
}

.courses-shell::before,
.courses-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.courses-shell::before {
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, var(--sun-strong) 0%, rgba(127, 238, 178, 0) 68%);
}

.courses-shell::after {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -90px;
  background: radial-gradient(circle, var(--sun-mid) 0%, rgba(127, 238, 178, 0) 72%);
}

.course-head {
  position: relative;
  z-index: 1;
}

.courses .course-head h2 {
  color: var(--white);
}

.courses .course-head p {
  color: rgba(255, 255, 255, 0.82);
}

.course-flow {
  position: relative;
  z-index: 1;
}

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

.courses .course-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.course-stage {
  display: block;
  width: fit-content;
  margin: 0 auto 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.courses .course-card i {
  margin-top: 0;
  color: var(--sun);
  font-size: 28px;
}

.courses .course-card h3 {
  color: var(--white);
}

.courses .course-card p {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  color: var(--white);
  line-height: 0.95;
}

.courses .course-card small {
  color: rgba(255, 255, 255, 0.82);
}

.course-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.btn-course-map {
  background: rgba(255, 255, 255, 0.94);
  color: #122340;
  border: 1px solid rgba(255, 255, 255, 0.8);
  min-width: 180px;
}

.btn-course-map:hover {
  background: var(--white);
}

.accommodation-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px;
}

.registration-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.registration-spotlight {
  padding-top: 28px;
  padding-bottom: 18px;
}

.registration-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 1) 0%, rgba(34, 80, 227, 0.05) 100%);
  border: 1px solid rgba(31, 42, 55, 0.16);
  box-shadow: 0 22px 45px rgba(31, 42, 55, 0.14);
}

.registration-heading {
  color: var(--ink);
}

.registration-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--sun);
}

.registration-heading h2 {
  margin-top: 6px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 0.95;
}

.registration-heading p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.registration-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
}

.registration-main-card,
.registration-bank-card {
  border-radius: 16px;
  border: 1px solid rgba(31, 42, 55, 0.14);
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  color: var(--ink);
}

.registration-main-card {
  border: 1px solid rgba(47, 95, 209, 0.22);
  box-shadow: 0 10px 24px rgba(31, 42, 55, 0.1);
}

.entry-badge {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(31, 42, 55, 0.2);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.entry-fee {
  margin-top: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(58px, 8vw, 88px);
  line-height: 0.9;
  color: #2f5fd1;
}

.entry-deadline {
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 600;
}

.registration-bank-card h3 {
  font-size: 24px;
}

.bank-details {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.bank-details li {
  color: var(--ink-soft);
}

.bank-details a {
  color: #2f5fd1;
  font-weight: 700;
}

.btn-ghost-dark {
  border: 1px solid rgba(31, 42, 55, 0.24);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
}

.registration-docs-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.doc-pill {
  border-radius: 12px;
  border: 1px solid rgba(31, 42, 55, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-soft);
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 600;
}

.services {
  background: transparent;
}

.transfers {
  padding-top: 24px;
}

.transfers-shell {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.transfers-intro {
  border-radius: 22px;
  padding: 30px;
  border: 1px solid rgba(31, 42, 55, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(34, 80, 227, 0.04) 100%);
  box-shadow: 0 18px 38px rgba(31, 42, 55, 0.1);
}

.transfers-intro h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.95;
}

.transfers-intro > p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 500;
}

.transfers-board {
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(145deg, #0f1d36 0%, #142a4d 56%, #1a3560 100%);
  border: 1px solid rgba(133, 195, 255, 0.24);
  color: var(--white);
  box-shadow: 0 22px 48px rgba(15, 29, 54, 0.36);
}

.transfers-airport {
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.rate-period {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
}

.transfer-rate-row {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rate-value {
  margin-top: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 8vw, 62px);
  line-height: 0.9;
  color: var(--sun);
  white-space: nowrap;
}

.rate-note {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-style: italic;
  font-weight: 600;
}

.transfers-policy {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 186, 73, 0.5);
  background: rgba(255, 244, 214, 0.88);
  color: #624200;
  font-weight: 700;
}

.transfers-policy::before {
  content: "Important Notice";
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  color: #8a5d00;
}

.transfer-request-deadline {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(173, 52, 46, 0.35);
  background: linear-gradient(135deg, rgba(255, 241, 238, 0.96), rgba(255, 230, 225, 0.96));
  box-shadow: 0 8px 18px rgba(173, 52, 46, 0.14);
  color: #8a1f1f;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.transfer-request-deadline::before {
  content: "Deadline";
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(173, 52, 46, 0.14);
  color: #a62828;
}

.transfer-request-deadline strong {
  color: #6f1616;
}

.transfers-highlights {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.transfer-highlight-item {
  border: 1px solid rgba(31, 42, 55, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px;
}

.transfer-highlight-item span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  font-weight: 700;
}

.transfer-highlight-item strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.transfers-contact {
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.transfers-contact h3 {
  font-size: 22px;
  color: var(--white);
}

.transfers-contact p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.transfers-contact a {
  color: var(--sun);
  font-weight: 700;
}

.transfers-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.transfer-deadline-status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(173, 52, 46, 0.28);
  background: rgba(250, 228, 226, 0.9);
  color: #7f1d1d;
  font-weight: 700;
  text-align: center;
}

.transfer-request-btn {
  min-width: 210px;
  border: 1px solid rgba(31, 42, 55, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.transfer-request-btn:hover {
  border-color: rgba(127, 238, 178, 0.7);
  background: rgba(127, 238, 178, 0.18);
  color: #102233;
}

.transfer-request-btn:focus-visible {
  outline: 2px solid rgba(127, 238, 178, 0.9);
  outline-offset: 2px;
}

.schedule-trigger {
  margin-top: 12px;
  border: 1px solid rgba(31, 42, 55, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  padding: 9px 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.schedule-trigger:hover {
  border-color: rgba(47, 95, 209, 0.5);
  color: #2f5fd1;
  transform: translateY(-1px);
}

.schedule-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
  padding: 18px;
  overflow-y: auto;
}

.schedule-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 30, 0.56);
  backdrop-filter: blur(3px);
}

.schedule-modal-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 560px);
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 18px;
  border: 1px solid rgba(47, 95, 209, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 1) 0%, rgba(241, 246, 255, 0.98) 100%);
  box-shadow: 0 28px 70px rgba(10, 20, 40, 0.3);
  padding: 22px;
}

.schedule-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(31, 42, 55, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.schedule-modal-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 800;
  color: #2f5fd1;
}

.schedule-modal-panel h3 {
  margin-top: 6px;
  font-size: 30px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

.modal-schedule-list {
  margin-top: 12px;
}

.transfer-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
  padding: 18px;
  overflow-y: auto;
}

.transfer-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.transfer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 30, 0.56);
  backdrop-filter: blur(3px);
}

.transfer-modal-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 520px);
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 18px;
  border: 1px solid rgba(47, 95, 209, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 1) 0%, rgba(241, 246, 255, 0.98) 100%);
  box-shadow: 0 28px 70px rgba(10, 20, 40, 0.3);
  padding: 22px;
}

.transfer-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(31, 42, 55, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.transfer-modal-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 800;
  color: #2f5fd1;
}

.transfer-modal-panel h3 {
  margin-top: 6px;
  font-size: 30px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

.transfer-modal-text {
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 600;
}

.transfer-modal-actions {
  margin-top: 14px;
}

.transfer-form {
  margin-top: 10px;
  display: grid;
  gap: 12px;
}

.transfer-form-section {
  border: 1px solid rgba(31, 42, 55, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px;
}

.transfer-form-section h4 {
  font-size: 16px;
}

.transfer-form-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.transfer-form-group {
  display: grid;
  gap: 4px;
}

.transfer-form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}

.transfer-form-group input,
.transfer-form-group textarea {
  border: 1px solid rgba(31, 42, 55, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
}

.transfer-form-group textarea {
  min-height: 74px;
  resize: vertical;
}

.transfer-full-width {
  grid-column: 1 / -1;
}

.transfer-checkbox {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.submit-transfer-btn {
  margin-top: 6px;
  width: 100%;
  gap: 8px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(34, 80, 227, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: #1b356e;
  box-shadow: 0 4px 12px rgba(34, 80, 227, 0.12);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-transfer-btn:hover {
  background: rgba(82, 173, 245, 0.12);
  border-color: rgba(34, 80, 227, 0.42);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(34, 80, 227, 0.16);
}

.submit-transfer-btn:focus,
.submit-transfer-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(127, 238, 178, 0.38), 0 8px 18px rgba(34, 80, 227, 0.16);
}

.submit-transfer-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  border: 1px solid rgba(31, 42, 55, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(31, 42, 55, 0.55);
  box-shadow: none;
}

.accommodation {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 46%, rgba(244, 250, 247, 0.92) 100%);
}

.accommodation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(34, 80, 227, 0.12), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(127, 238, 178, 0.12), transparent 38%);
  pointer-events: none;
}

.accommodation::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(34, 80, 227, 0.04) 0%, rgba(127, 238, 178, 0.38) 50%, rgba(34, 80, 227, 0.04) 100%);
  pointer-events: none;
}

.accommodation-content {
  position: relative;
  z-index: 1;
  color: var(--ink);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 252, 255, 0.98) 100%);
  border: 1px solid rgba(31, 42, 55, 0.1);
  box-shadow: 0 20px 44px rgba(21, 36, 68, 0.12);
}

.accommodation-content h2 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.accommodation-content > p {
  max-width: 620px;
  margin-top: 10px;
}

.accommodation-content .btn-primary {
  color: #133247;
  background: var(--sun);
  border: 1px solid rgba(19, 50, 71, 0.22);
  box-shadow: none;
  text-shadow: none;
  letter-spacing: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.accommodation-content .btn-primary:hover {
  background: #91f3c3;
  border-color: rgba(19, 50, 71, 0.34);
  transform: translateY(-1px);
}

.accommodation-content .btn-primary:active {
  transform: translateY(0);
  background: #84efbb;
}

.accommodation-content .btn-primary:focus,
.accommodation-content .btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(127, 238, 178, 0.38);
}

.hotel-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hotel-card {
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.hotel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 80, 227, 0.24);
  box-shadow: 0 18px 34px rgba(31, 42, 55, 0.16);
}

.hotel-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.38s ease;
}

.hotel-card:hover .hotel-image {
  transform: scale(1.05);
}

.hotel-body {
  padding: 18px 18px 20px;
}

.hotel-body h3 {
  font-size: 24px;
  line-height: 1.1;
}

.hotel-body p {
  margin-top: 8px;
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.hotel-body .btn {
  width: 100%;
  justify-content: center;
  border-radius: 10px;
}

.contact {
  padding-top: 28px;
  background:
    radial-gradient(circle at 14% 20%, rgba(34, 80, 227, 0.06), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
}

.contact-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(31, 42, 55, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 44px rgba(21, 36, 68, 0.12);
}

.contact-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: #2f5fd1;
}

.contact-heading h2 {
  margin-top: 6px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 0.92;
}

.contact-heading > p {
  margin-top: 8px;
  max-width: 720px;
  color: var(--ink-soft);
}

.contact-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}

.contact-card {
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 55, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
}

.contact-card-main {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(34, 80, 227, 0.05) 100%);
}

.contact-card h3 {
  font-size: 22px;
}

.contact-card p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.contact-links {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f43a6;
  font-weight: 700;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

.faq {
  padding-top: 24px;
}

.faq-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.faq-item {
  background: var(--panel);
  border: 1px solid rgba(31, 42, 55, 0.12);
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 16px 18px;
  align-self: start;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  color: var(--ink-soft);
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  z-index: 30;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 980px) {
  .registration-grid {
    grid-template-columns: 1fr;
  }

  .registration-docs-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .event-grid,
  .course-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .transfers-shell {
    grid-template-columns: 1fr;
  }

  .transfer-form-grid {
    grid-template-columns: 1fr;
  }

  .transfers-highlights {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 30px 16px;
    min-height: 80px;
  }

  .nav-logo {
    transform: translateY(4px);
  }

  .logo-img {
    height: 44px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    display: grid;
    background: rgba(34, 80, 227, 0.96);
    padding: 20px;
    gap: 14px;
    transform: translateY(-120%);
    transition: transform 0.22s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .hero {
    padding-top: 103px;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    max-width: 280px;
  }
}

@media (max-width: 640px) {
  .courses-shell {
    padding: 24px;
  }

  .registration-shell {
    padding: 22px;
  }

  .registration-docs-strip {
    grid-template-columns: 1fr;
  }

  .faq-grid,
  .event-grid,
  .course-grid,
  .services-grid,
  .sponsor-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .registration-inner,
  .accommodation-content,
  .contact-shell {
    padding: 24px;
  }
}
