:root {
  --navy: #0a315f;
  --blue: #253fc4;
  --teal: #08a6b4;
  --cyan: #43c6dd;
  --soft: #f2fbff;
  --muted: #596574;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
img { max-width: 100%; }
a { text-decoration: none; }
.page-container {
  width: 90%;
  max-width: none;
}
.section-pad { padding: 54px 0; }
.eyebrow {
  margin: 0 0 12px;
  color: #0799af;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
}
.btn {
  border-radius: 7px;
  padding: 12px 27px;
  font-size: 15px;
  font-weight: 600;
}
.btn i { margin-left: 12px; }
.btn-gradient {
  color: #fff;
  border: 0;
  background: linear-gradient(105deg, #11aab6, #4937c9);
  box-shadow: 0 8px 20px rgba(38, 72, 192, .16);
}
.btn-gradient:hover { color: #fff; background: linear-gradient(105deg, #0b96a2, #3929ad); }
.btn-outline-brand {
  color: var(--navy);
  border: 1px solid #56bada;
  background: #fff;
}
.btn-outline-brand:hover { color: #fff; background: var(--teal); border-color: var(--teal); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
}
.navbar { padding: 8px 0; }
.navbar-brand img { width: 135px; height: 84px; object-fit: cover; object-position: center; }
.navbar-nav { gap: 16px; }
.navbar .nav-link {
  position: relative;
  color: #333b45;
  padding: 12px 4px !important;
  font-size: 15px;
  white-space: nowrap;
}
.navbar .nav-link.active { color: var(--teal); font-weight: 600; }
.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 5px;
  height: 1px;
  background: var(--teal);
}
.navbar .dropdown-toggle::after { margin-left: 8px; vertical-align: .15em; }
.dropdown-item { font-size: 16px; padding: 8px 16px; color: var(--navy); }
.header-actions {
  min-width: 245px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.header-actions .location { margin: 0; font-size: 14px; font-weight: 500; white-space: nowrap; }
.header-actions .location i { color: #1579cb; margin-right: 7px; font-size: 16px; }
.header-actions .btn { padding: 10px 19px; border-radius: 25px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  background: linear-gradient(110deg, #fff 0%, #fff 42%, #eafdff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(227, 248, 255, .9), transparent);
}
.hero .page-container { position: relative; padding-top: 86px; }
.hero-carousel { position: relative; }
.hero-carousel .carousel-item { min-height: 500px; }
.hero-carousel .hero-visual { top: 0; }
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  z-index: 7;
  top: 46%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ba9b5, #4937c9);
  box-shadow: 0 6px 16px rgba(28, 58, 150, .22);
  opacity: 1;
  transform: translateY(-50%);
}
.hero-carousel .carousel-control-prev { left: -55px; }
.hero-carousel .carousel-control-next { right: -55px; }
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon { width: 17px; height: 17px; }
.hero-carousel .carousel-indicators {
  right: auto;
  bottom: 3px;
  left: 15px;
  z-index: 8;
  width: 160px;
  margin: 0;
  justify-content: flex-start;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 22px;
  height: 4px;
  margin: 0 4px;
  border: 0;
  border-radius: 10px;
  background-color: #98dbe5;
  opacity: 1;
}
.hero-carousel .carousel-indicators .active { width: 38px; background-color: #3438bd; }
.route-line {
  position: absolute;
  z-index: 3;
  top: 77px;
  left: -115px;
  width: 585px;
  height: 53px;
  border-top: 2px dashed #81d7e6;
  border-radius: 50%;
  transform: rotate(3deg);
}
.route-line span {
  position: absolute;
  top: -5px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.route-line span:first-child { left: 240px; }
.route-line span:nth-child(2) { left: 315px; }
.route-line i { position: absolute; right: 0; top: -8px; color: #3545c4; font-size: 32px; transform: rotate(8deg); }
.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 500px;
  padding: 90px 15px 55px 15px;
}
.hero-actions {
  position: absolute;
  right: 15px;
  bottom: 22px;
  left: 15px;
  align-items: center;
}
.hero-copy h1 {
  margin: 0;
  color: #082f5c;
  font-size: clamp(42px, 4vw, 57px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -.035em;
}
.hero-copy h1 span { color: #0ca5b5; }
.hero-copy .tagline {
  margin: 13px 0 3px;
  color: #3539b5;
  font-size: 21px;
  font-style: italic;
  font-weight: 500;
}
.mini-wave { width: 65px; height: 10px; border-top: 2px solid #199dc5; border-radius: 50%; transform: rotate(-3deg); }
.hero-copy .rated { margin: 13px 0 22px; color: #434d5c; font-size: 16px; line-height: 1.5; }
.hero-copy .rated strong { color: #086bac; font-weight: 600; }
.hero-visual {
  position: absolute;
  top: 85px;
  right: calc((100vw - 100%) / -2);
  width: calc(58% + (100vw - 100%) / 2);
  height: 505px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 -3px;
  width: 130px;
  background: linear-gradient(90deg, #fff 5%, rgba(255,255,255,.75) 35%, transparent);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-features {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 10px;
  width: 69%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 18px 24px;
  border-radius: 13px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 7px 20px rgba(30, 103, 161, .08);
}
.hero-features > div { display: flex; align-items: center; gap: 11px; }
.hero-features i { color: #17a4d0; font-size: 25px; }
.hero-features span { display: flex; flex-direction: column; color: #69717b; font-size: 13px; }
.hero-features strong { color: var(--navy); font-size: 14px; }

.journey { background: linear-gradient(100deg, #f8fcff, #effaff); }
.journey h2, .journey h3 { margin: 0; }
.journey h2 { font-size: 22px; font-weight: 600; line-height: 1.25; }
.journey h2 span { color: #079eb3; }
.journey h3 { font-size: 18px; font-weight: 400; }
.journey-intro > p { margin: 21px 0 0; color: #4d5867; font-size: 15px; line-height: 1.7; }
.journey-steps { display: flex; align-items: flex-start; justify-content: space-between; }
.journey-steps article { width: 130px; text-align: center; }
.step-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 15px;
  border: 1px dashed #b5dbeb;
  border-radius: 50%;
  color: #3d3dc1;
  background: rgba(255,255,255,.6);
  font-size: 35px;
}
.step-icon.final { border: 2px solid #209bcc; color: #209bcc; }
.journey-steps h4 { margin: 0; color: #4637bf; font-size: 16px; font-weight: 600; }
.journey-steps p { margin: 2px 0 0; color: #313944; font-size: 14px; white-space: nowrap; }
.step-arrow { padding-top: 35px; color: #3b3ebc; font-size: 22px; letter-spacing: 2px; }

.services { background: #fff; }
.service-copy { padding-right: 35px; }
.service-copy h2, .why-title h2 {
  margin: 0 0 21px;
  font-size: 27px;
  line-height: 1.18;
  font-weight: 600;
}
.service-copy > p:not(.eyebrow) { margin-bottom: 28px; color: #56606b; font-size: 15px; line-height: 1.75; }
.services-collage-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(31, 88, 143, .1);
  transition: box-shadow .35s ease, transform .35s ease;
}
.services-collage-wrap::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -35%;
  bottom: -35%;
  left: -25%;
  width: 12%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-16deg);
  animation: services-sweep 5.5s ease-in-out infinite;
}
.services-collage-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(31, 88, 143, .17);
}
.services-collage {
  display: block;
  width: 100%;
  border-radius: 8px;
  animation: services-breathe 6s ease-in-out infinite;
}

.registration-panel {
  overflow: hidden;
  min-height: 355px;
  border-radius: 14px;
  background: linear-gradient(105deg, #f9fdff, #eaf7ff);
  box-shadow: 0 5px 20px rgba(40, 100, 155, .07);
}
.reg-image { align-self: stretch; }
.reg-image img { width: 100%; height: 100%; min-height: 355px; object-fit: cover; object-position: center; }
.reg-content { padding: 26px 42px 19px 12px; }
.reg-content h2 { margin: 0 0 20px; font-size: 25px; line-height: 1.25; font-weight: 600; }
.reg-content h2 span { color: #079eae; }
.reg-services { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: 18px; }
.reg-services article { text-align: center; color: var(--navy); font-size: 13px; line-height: 1.25; }
.reg-services i { display: block; min-height: 35px; color: #069bc3; font-size: 27px; }
.reg-services small { font-size: 11px; font-weight: 500; }
.registration-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 12px; }
.registration-tags span {
  display: grid;
  place-items: center;
  min-height: 30px;
  padding: 5px 17px;
  border: 1px solid #c4dfec;
  border-radius: 7px;
  color: #173b6c;
  background: rgba(255,255,255,.5);
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
}

.why { padding-top: 20px; padding-bottom: 25px; }
.why-layout {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 4fr;
  align-items: stretch;
  gap: 24px;
}
.why-title { padding: 17px 8px 0; }
.why-title h2 { margin-bottom: 11px; font-size: 23px; }
.why-carousel { position: relative; min-width: 0; }
.why-viewport { overflow: hidden; }
.why-track {
  display: flex;
  gap: 18px;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.why-track article {
  flex: 0 0 calc((100% - 72px) / 5);
  min-height: 180px;
  padding: 18px 16px 14px;
  border-radius: 12px;
  background: linear-gradient(155deg, #f6fbff, #edf7fd);
  text-align: center;
}
.why-track article b { display: block; color: #119faf; text-align: left; font-size: 20px; }
.why-track article:nth-child(3n) b { color: #4437bf; }
.why-track article i { display: block; margin: 14px 0 13px; color: #0da5be; font-size: 34px; }
.why-track article:nth-child(odd) i { color: #5548cd; }
.why-track article span { color: #102f5a; font-size: 15px; line-height: 1.45; font-weight: 600; }
.why-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0ba9b5, #4937c9);
  box-shadow: 0 5px 14px rgba(27, 64, 160, .22);
  transform: translateY(-50%);
}
.why-prev { left: -19px; }
.why-next { right: -19px; }

.cta { padding: 0 0 10px; }
.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: grid;
  grid-template-columns: 300px 1fr 220px;
  align-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(100deg, #129cc2, #0aa0ae 39%, #4930c1);
}
.cta-panel::after {
  content: "······························ ✈";
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: rgba(255,255,255,.35);
  font-size: 15px;
}
.cta-panel > img { width: 100%; height: 140px; object-fit: cover; mix-blend-mode: multiply; }
.cta-copy { padding: 15px 25px; }
.cta-copy h2 { margin: 0 0 10px; font-size: 23px; font-weight: 600; }
.cta-copy p { margin: 0; font-size: 17px; }
.cta-actions { z-index: 1; display: flex; flex-direction: column; gap: 10px; padding-right: 20px; }
.cta-actions .btn { padding: 11px 18px; }

.footer-main { padding: 14px 25px 20px; }
.brand-column { display: grid; grid-template-columns: 130px 1fr; column-gap: 15px; }
.brand-column > img { width: 130px; height: 80px; object-fit: cover; }
.brand-column > p { margin: 13px 0 7px; color: #59616b; font-size: 13px; line-height: 1.7; }
.socials { grid-column: 2; display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: #fff; background: #3153b7; font-size: 14px; }
footer h3 { margin: 10px 0 13px; color: #123568; font-size: 13px; font-weight: 700; }
footer .col-lg-2 > a, footer .col-lg-2 > p { display: block; margin: 0 0 10px; color: #59616b; font-size: 13px; }
footer .col-lg-2 > p i { color: #159fc1; margin-right: 8px; }
.footer-bottom { padding: 11px 0; color: #fff; background: #059aa7; font-size: 14px; }

/* Motion and interaction */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-copy-in {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes hero-image-in {
  from { opacity: .35; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes route-flight {
  0%, 100% { transform: translate(0, 0) rotate(8deg); }
  50% { transform: translate(12px, -7px) rotate(13deg); }
}
@keyframes cta-glow {
  from { transform: translateX(-140%) skewX(-18deg); }
  to { transform: translateX(430%) skewX(-18deg); }
}
@keyframes services-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.018); }
}
@keyframes services-sweep {
  0%, 18% { left: -25%; opacity: 0; }
  28% { opacity: 1; }
  55%, 100% { left: 115%; opacity: 0; }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
}
.reveal-on-scroll.in-view {
  animation: reveal-up .7s cubic-bezier(.22, .61, .36, 1) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}
.carousel-item.active .hero-copy > * {
  opacity: 0;
  animation: hero-copy-in .65s cubic-bezier(.22, .61, .36, 1) forwards;
}
.carousel-item.active .hero-copy > :nth-child(2) { animation-delay: 90ms; }
.carousel-item.active .hero-copy > :nth-child(3) { animation-delay: 170ms; }
.carousel-item.active .hero-copy > :nth-child(4) { animation-delay: 220ms; }
.carousel-item.active .hero-copy > :nth-child(5) { animation-delay: 260ms; }
.carousel-item.active .hero-copy > :nth-child(6) { animation-delay: 330ms; }
.carousel-item.active .hero-visual img { animation: hero-image-in 1.1s ease-out both; }
.route-line i { animation: route-flight 2.6s ease-in-out infinite; }

.btn {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(26, 66, 151, .2); }
.hero-features > div,
.journey-steps article,
.why-track article {
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-features > div:hover { transform: translateY(-4px); }
.journey-steps article:hover { transform: translateY(-7px); }
.journey-steps article:hover .step-icon {
  border-color: #25aeca;
  box-shadow: 0 10px 24px rgba(20, 155, 190, .14);
}
.step-icon { transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease; }
.journey-steps article:hover .step-icon { transform: scale(1.06); }
.why-track article:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(31, 95, 154, .13);
}
.reg-image img { transition: transform .65s ease; }
.registration-panel:hover .reg-image img { transform: scale(1.025); }
.cta-panel::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -40%;
  bottom: -40%;
  left: 0;
  width: 90px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: cta-glow 5s ease-in-out infinite;
}
.cta-panel > * { position: relative; z-index: 2; }
.socials a { transition: transform .25s ease, background-color .25s ease; }
.socials a:hover { transform: translateY(-3px) rotate(5deg); background: var(--teal); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal-on-scroll { opacity: 1; transform: none; }
}

@media (max-width: 1199.98px) {
  .navbar-nav { gap: 7px; }
  .hero-visual { right: 0; width: 58%; }
  .hero-carousel .carousel-control-prev { left: 5px; }
  .hero-carousel .carousel-control-next { right: 5px; }
}

@media (max-width: 991.98px) {
  .site-header { position: relative; background: #fff; }
  .navbar-brand img { height: 65px; width: 110px; }
  .navbar-collapse { padding: 10px 0 20px; background: #fff; }
  .navbar .nav-link { padding: 8px 3px !important; }
  .navbar .nav-link.active::after { display: none; }
  .header-actions { justify-content: flex-start; text-align: left !important; }
  .hero { min-height: 0; }
  .hero .page-container { padding-top: 0; }
  .route-line { display: none; }
  .hero-copy { min-height: 0; padding: 55px 15px 35px; }
  .hero-actions { position: static; }
  .hero-carousel .carousel-item { min-height: 0; }
  .hero-visual { position: relative; top: auto; width: 100%; height: 460px; }
  .hero-carousel .hero-visual { top: auto; }
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next { top: 70%; width: 38px; height: 38px; }
  .hero-carousel .carousel-indicators { bottom: 45px; }
  .hero-visual::before { display: none; }
  .hero-features { position: relative; right: auto; bottom: auto; width: calc(100% - 30px); margin: -40px auto 30px; }
  .journey-intro { margin-bottom: 35px; }
  .service-copy { padding-right: 15px; margin-bottom: 10px; }
  .reg-content { padding: 30px; }
  .reg-image img { min-height: 300px; object-position: top center; }
  .why-layout { grid-template-columns: 1fr; }
  .why-track article { flex-basis: calc((100% - 18px) / 2); }
  .cta-panel { grid-template-columns: 220px 1fr; }
  .cta-actions { grid-column: 2; padding: 0 25px 20px; flex-direction: row; }
}

@media (max-width: 767.98px) {
  body { font-size: 17px; }
  .section-pad { padding: 42px 0; }
  .hero-copy h1 { font-size: 42px; }
  .hero-copy .tagline { font-size: 18px; }
  .hero-visual { height: 330px; }
  .hero-features { grid-template-columns: repeat(2, 1fr); }
  .journey-steps { overflow-x: auto; justify-content: flex-start; padding-bottom: 10px; }
  .journey-steps article { flex: 0 0 115px; }
  .step-arrow { flex: 0 0 55px; }
  .reg-services { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .why-track article { flex-basis: 100%; }
  .cta-panel { display: block; padding-bottom: 25px; text-align: center; }
  .cta-panel > img { height: 130px; }
  .cta-actions { padding: 5px 20px; justify-content: center; }
  .brand-column { grid-template-columns: 110px 1fr; }
}

@media (max-width: 479.98px) {
  .hero-copy h1 { font-size: 36px; }
  .hero-features { display: block; }
  .hero-features > div { margin: 12px 0; }
  .hero-visual { height: 270px; }
  .reg-content { padding: 25px 15px; }
  .reg-services { grid-template-columns: repeat(2, 1fr); }
  .registration-tags span { width: 100%; }
  .cta-actions { flex-direction: column; }
}
