/* assets/css/study-hero.css */
:root {
  --study-red: #E31E24;
  --study-black: #111111;
  --study-gray: #666666;
  --study-bg: #f9f9f9;
  --study-font-main: 'Inter', sans-serif;
  /* Fallback if not loaded */
  --study-font-serif: 'Playfair Display', serif;
  /* Assuming they have a serif or I can use Times New Roman as fallback */
}

.study-hero {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--study-bg);
  /* Optional: Background image for the right side or whole section */
  background-image: url('../images-optimized/hero-uk.png');
  /* We will assume a placeholder or leave transparent if not found */
  background-size: cover;
  background-position: center;
  font-family: var(--study-font-main);
  overflow: hidden;
}

.study-hero::before {
  content: none;
}

.study-hero__bg-swoosh-2 {
  position: absolute;
  top: -10%;
  left: -5%;
  height: 120%;
  width: 65%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0 40% 40% 0;
  z-index: 1;
}

.study-hero__bg-swoosh {
  position: absolute;
  top: -5%;
  left: -5%;
  height: 110%;
  width: 60%;
  background: #ffffff;
  border-radius: 0 40% 40% 0;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.study-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* LEFT SIDE */
.study-hero__left {
  flex: 0 0 55%;
  max-width: 55%;
  padding-right: 40px;
}

.study-hero__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--study-black);
  text-transform: uppercase;
}

.study-hero__brand img {
  height: 24px;
}

.study-hero__title {
  font-family: var(--study-font-serif);
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 700;
  color: var(--study-black);
  line-height: 1.1;
  margin: 0;
}

.study-hero__title span {
  color: var(--study-red);
}

.study-hero__title-divider {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.study-hero__diamond {
  width: 8px;
  height: 8px;
  background-color: var(--study-red);
  transform: rotate(45deg);
}

.study-hero__line {
  height: 1px;
  background-color: var(--study-red);
  flex-grow: 1;
  max-width: 250px;
}

.study-hero__desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--study-gray);
  margin-bottom: 40px;
  max-width: 90%;
}

.study-hero__cards {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.study-hero__card {
  flex: 1 1 160px;
  background: #ffffff;
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  gap: 15px;
}

.study-hero__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(227, 30, 36, 0.15);
}

.study-hero__card-icon {
  width: 45px;
  height: 45px;
  background: var(--study-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.study-hero__card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.study-hero__card-text {
  font-weight: 700;
  font-size: 14px;
  color: var(--study-black);
  line-height: 1.3;
}

.study-hero__card-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--study-red);
  margin-top: 5px;
}

.study-hero__actions {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.study-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  padding: 0 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.study-hero__btn--primary {
  background: linear-gradient(135deg, #E31E24 0%, #b31219 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(227, 30, 36, 0.4);
  border: none;
}

.study-hero__btn--primary:hover {
  box-shadow: 0 15px 25px rgba(227, 30, 36, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

.study-hero__btn--secondary {
  background: #ffffff;
  color: var(--study-black);
  border: 2px solid var(--study-red);
}

.study-hero__btn--secondary:hover {
  background: var(--study-red);
  color: #ffffff;
}

.study-hero__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* RIBBON - BOTTOM BAR */
.study-hero__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
}

.study-hero__bottom-bar-red {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65%;
  height: 70px;
  background: #a31015;
  border-top-right-radius: 100px;
}

.study-hero__bottom-bar-black {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 62%;
  height: 60px;
  background: var(--study-black);
  border-top-right-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.study-hero__bottom-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.study-hero__bottom-content img {
  height: 24px;
  margin-right: 10px;
}

.study-hero__dot {
  width: 5px;
  height: 5px;
  background-color: var(--study-red);
  border-radius: 50%;
}

/* RIGHT SIDE */
.study-hero__right {
  flex: 0 0 40%;
  max-width: 40%;
}

.study-hero__form-container {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 50px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}



.study-hero__form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--study-black);
}

/* FORM OVERRIDES */
.study-hero__form-container input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.study-hero__form-container select,
.study-hero__form-container textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--study-black);
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.study-hero__form-container input:focus,
.study-hero__form-container select:focus,
.study-hero__form-container textarea:focus {
  outline: none;
  border-color: var(--study-red);
}

.study-hero__form-container input[type="submit"],
.study-hero__form-container button[type="submit"] {
  width: 100%;
  background: var(--study-red);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.study-hero__form-container input[type="submit"]:hover,
.study-hero__form-container button[type="submit"]:hover {
  background: #b31219;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .study-hero::before {
    background: rgba(255, 255, 255, 0.95);
  }

  .study-hero__left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 60px;
  }

  .study-hero__right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .study-hero__title {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .study-hero__container {
    padding: 120px 20px 60px;
  }

  .study-hero__title {
    font-size: 45px;
  }

  .study-hero__cards {
    flex-direction: column;
  }

  .study-hero__actions {
    flex-direction: column;
  }

  .study-hero__btn {
    width: 100%;
  }

  .study-hero__ribbon {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 20px;
    width: 100%;
  }

  .study-hero__ribbon-item:not(:last-child)::after {
    display: none;
  }

  .study-hero__ribbon-item {
    margin-bottom: 10px;
  }

  .study-hero__form-container {
    padding: 30px 20px;
  }
}

/* Canada Hero Overrides */
.study-hero--canada {
  --study-red: #D71920;
  --study-black: #111111;
  --study-gray: #555555;
  --study-bg: #FFFFFF;
}

.study-hero--canada .study-hero__left {
  flex: 0 0 50%;
  max-width: 50%;
}

.study-hero--canada .study-hero__right {
  position: relative;
  right: auto;
  top: auto;
  flex: 0 0 45%;
  max-width: 45%;
  height: auto;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.study-hero--canada .study-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.study-hero--canada .study-hero__bg-swoosh {
  width: 55%;
  border-radius: 0 45% 45% 0;
}

.study-hero--canada .study-hero__bg-swoosh-2 {
  width: 57%;
  border-radius: 0 45% 45% 0;
  border: 2px solid var(--study-red);
}

.study-hero--canada .study-hero__card {
  border-radius: 22px;
}

.study-hero--canada .study-hero__card-icon {
  background: transparent;
  color: var(--study-red);
}

.study-hero--canada .study-hero__card-icon svg {
  width: 32px;
  height: 32px;
}

.study-hero--australia {
  --study-red: #E31E24;
  --study-black: #111111;
  --study-bg: #FFFFFF;
  --study-navy: #040816;
}

.study-hero--australia .study-hero__left {
  flex: 0 0 48%;
  max-width: 48%;
}

.study-hero--australia .study-hero__right {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  z-index: 10;
  /* Set higher than study-hero__container so form is clickable */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.study-hero--australia .study-hero__form-container {
  width: 100%;
  max-width: 450px;
}

.study-hero--australia .study-hero__right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  /* initial zoom for animation */
  z-index: 0;
}

.study-hero--australia .study-hero__right .study-hero__flag {
  z-index: 1;
  opacity: 0.15;
  /* Subtle overlay */
  transform: none;
}

.study-hero--australia .study-hero__bg-swoosh {
  width: 55%;
  border-radius: 0 35% 55% 0;
  box-shadow: none;
  background: var(--study-bg);
  z-index: 1;
}

.study-hero--australia .study-hero__bg-swoosh-2 {
  width: 57%;
  border-radius: 0 38% 58% 0;
  background: var(--study-red);
  border: none;
  z-index: 0;
}

.study-hero--australia .study-hero__title {
  font-family: 'Poppins', var(--study-font-main), sans-serif;
  /* Target image uses a clean, bold sans-serif */
  font-weight: 900;
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.study-hero--australia .study-hero__title div {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

.study-hero--australia .study-hero__title span {
  color: var(--study-red);
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.study-hero--australia .study-hero__title-swoosh {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.study-hero--australia .study-hero__kangaroo {
  position: absolute;
  bottom: 15px;
  right: -40px;
  width: 40px;
  height: 40px;
}

.study-hero--australia .study-hero__airplane {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 140px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.study-hero--australia .study-hero__map-bg {
  position: absolute;
  top: 5%;
  left: 0;
  width: 75%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.study-hero--australia .study-hero__cards {
  gap: 20px;
  margin-bottom: 40px;
}

.study-hero--australia .study-hero__card {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 24px;
  padding: 6x 13px;
  gap: 15px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.study-hero--australia .study-hero__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.study-hero--australia .study-hero__card-icon {
  width: 60px;
  height: 60px;
  background: var(--study-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.study-hero--australia .study-hero__card-line {
  margin: 8px auto 0;
  width: 30px;
  height: 3px;
  background: var(--study-red);
  display: block;
}

.study-hero--australia .study-hero__btn {
  height: 68px;
  border-radius: 18px;
  padding: 0 30px;
}

.study-hero--australia .study-hero__btn--primary {
  background: linear-gradient(135deg, #E31E24, #B71015);
  border: none;
  color: #fff;
}

.study-hero--australia .study-hero__btn--secondary {
  border: 2px solid var(--study-black);
  color: var(--study-black);
  background: var(--study-bg);
}

.study-hero--australia .study-hero__btn--secondary:hover {
  background: var(--study-black);
  color: #fff;
}

.study-hero--australia .study-hero__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 50px;
  background: var(--study-navy);
  border-top-right-radius: 50% 120px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.study-hero--australia .study-hero__bottom-bar-red {
  display: none;
  /* using navy wave exclusively as requested */
}

.study-hero--australia .study-hero__bottom-content {
  color: #ffffff;
  justify-content: center;
  gap: 5px;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
}

.study-hero--australia .study-hero__bottom-content svg {
  margin-right: 10px;
}

.study-hero--australia .study-hero__dot {
  background-color: var(--study-red);
  margin: 0 20px;
}

.study-hero--australia .study-hero__dots-pattern {
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: radial-gradient(var(--study-red) 3px, transparent 3px);
  background-size: 15px 15px;
  z-index: 2;
  opacity: 0.8;
}

/* Specific right form container override */


.study-hero--canada .study-hero__btn {
  height: 64px;
  border-radius: 18px;
}

.study-hero--canada .study-hero__brand-line {
  height: 1px;
  background: var(--study-red);
  width: 40px;
  margin-left: 10px;
}

.study-hero--canada .study-hero__maple-outline {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  vertical-align: middle;
}

.study-hero--canada .study-hero__bottom-bar {
  position: relative;
  height: auto;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.study-hero--canada .study-hero__bottom-bar-red,
.study-hero--canada .study-hero__bottom-bar-black {
  display: none;
}

.study-hero--canada .study-hero__bottom-divider {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--study-bg);
  padding: 0 10px;
}

.study-hero--canada .study-hero__bottom-content {
  color: var(--study-black);
  font-weight: 600;
  font-size: 15px;
  justify-content: center;
  width: 100%;
}

/* /* New Zealand Hero Overrides */
.study-hero--newzealand {
  --study-red: #E31E24;
  --study-black: #111111;
  --study-bg: #FFFFFF;
  --study-navy: #040816;
}

.study-hero--newzealand .study-hero__left {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  z-index: 10;
}

.study-hero--newzealand .study-hero__right {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.study-hero--newzealand .study-hero__form-container {
  width: 100%;
  max-width: 450px;
}

.study-hero--newzealand .study-hero__bg-swoosh {
  width: 55%;
  border-radius: 0 35% 55% 0;
  box-shadow: none;
  background: var(--study-bg);
  z-index: 1;
}

.study-hero--newzealand .study-hero__bg-swoosh-2 {
  width: 57%;
  border-radius: 0 38% 58% 0;
  background: var(--study-red);
  border: none;
  z-index: 0;
}

.study-hero--newzealand .study-hero__title {
  font-family: 'Poppins', var(--study-font-main), sans-serif;
  font-weight: 900;
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.study-hero--newzealand .study-hero__title div {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

.study-hero--newzealand .study-hero__title span {
  color: var(--study-red);
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.study-hero--newzealand .study-hero__title-swoosh {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.study-hero--newzealand .study-hero__kangaroo {
  position: absolute;
  bottom: 15px;
  right: -40px;
  width: 40px;
  height: 40px;
}

.study-hero--newzealand .study-hero__cards {
  gap: 20px;
  margin-bottom: 40px;
}

.study-hero--newzealand .study-hero__card {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 24px;
  padding: 6px 13px;
  gap: 15px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.study-hero--newzealand .study-hero__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.study-hero--newzealand .study-hero__card-icon {
  width: 60px;
  height: 60px;
  background: var(--study-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.study-hero--newzealand .study-hero__card-line {
  margin: 8px auto 0;
  width: 30px;
  height: 3px;
  background: var(--study-red);
  display: block;
}

.study-hero--newzealand .study-hero__btn {
  height: 68px;
  border-radius: 18px;
  padding: 0 30px;
}

.study-hero--newzealand .study-hero__btn--primary {
  background: linear-gradient(135deg, #E31E24, #B71015);
  border: none;
  color: #fff;
}

.study-hero--newzealand .study-hero__btn--secondary {
  border: 2px solid var(--study-black);
  color: var(--study-black);
  background: var(--study-bg);
}

.study-hero--newzealand .study-hero__btn--secondary:hover {
  background: var(--study-black);
  color: #fff;
}

.study-hero--newzealand .study-hero__map-dots {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: url('../images-optimized/newzealand/nz-map-dots.svg') no-repeat center;
  background-size: contain;
  opacity: 0.8;
  z-index: 1;
}

.study-hero--newzealand .study-hero__fern-wave {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top right, transparent, rgba(227, 30, 36, 0.8)), url('../images-optimized/newzealand/red-wave-fern.svg') no-repeat bottom right;
  background-size: cover;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1024px) {
  .study-hero--newzealand {
    flex-direction: column;
  }

  .study-hero--newzealand .study-hero__bg-swoosh,
  .study-hero--newzealand .study-hero__bg-swoosh-2,
  .study-hero--newzealand .study-hero__fern-wave,
  .study-hero--newzealand .study-hero__map-dots {
    display: none;
  }

  .study-hero--newzealand .study-hero__container {
    order: 1;
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .study-hero--newzealand .study-hero__right {
    position: relative;
    width: 100%;
    height: auto;
    border-bottom-left-radius: 0;
    margin-top: 0;
    order: 2;
    padding: 20px;
  }

  .study-hero--newzealand .study-hero__left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 30px;
  }
}

/* Force GSAP elements to be visible in case JS fails to animate or pauses on mobile */
@media (max-width: 1024px) {

  .study-hero--newzealand .nz-gsap-heading,
  .study-hero--newzealand .nz-gsap-desc,
  .study-hero--newzealand .nz-gsap-heading>div,
  .study-hero--newzealand .study-hero__card,
  .study-hero--newzealand .study-hero__btn,
  .study-hero--newzealand .nz-gsap-img,
  .study-hero--newzealand .nz-gsap-left,
  .study-hero--newzealand .study-hero__actions,
  .study-hero--newzealand .study-hero__cards {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

.study-hero--newzealand .study-hero__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.study-hero--newzealand .study-hero__btn--primary {
  color: #ffffff !important;
}

.study-hero--newzealand .study-hero__card {
  display: flex !important;
}

/* Europe Hero Overrides */
.study-hero--europe {
  --study-red: #E31E24;
  --study-black: #111111;
  --study-bg: #FFFFFF;
  --study-navy: #040816;
}

.study-hero--europe .study-hero__left {
  flex: 0 0 48%;
  max-width: 48%;
}

.study-hero--europe .study-hero__right {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  z-index: 10;
  /* Set higher than study-hero__container so form is clickable */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.study-hero--europe .study-hero__form-container {
  width: 100%;
  max-width: 450px;
}

.study-hero--europe .study-hero__right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  /* initial zoom for animation */
  z-index: 0;
}

.study-hero--europe .study-hero__right .study-hero__flag {
  z-index: 1;
  opacity: 0.15;
  /* Subtle overlay */
  transform: none;
}

.study-hero--europe .study-hero__bg-swoosh {
  width: 55%;
  border-radius: 0 35% 55% 0;
  box-shadow: none;
  background: var(--study-bg);
  z-index: 1;
}

.study-hero--europe .study-hero__bg-swoosh-2 {
  width: 57%;
  border-radius: 0 38% 58% 0;
  background: var(--study-red);
  border: none;
  z-index: 0;
}

.study-hero--europe .study-hero__title {
  font-family: 'Poppins', var(--study-font-main), sans-serif;
  /* Target image uses a clean, bold sans-serif */
  font-weight: 900;
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.study-hero--europe .study-hero__title div {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

.study-hero--europe .study-hero__title span {
  color: var(--study-red);
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.study-hero--europe .study-hero__title-swoosh {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.study-hero--europe .study-hero__kangaroo {
  position: absolute;
  bottom: 15px;
  right: -40px;
  width: 40px;
  height: 40px;
}

.study-hero--europe .study-hero__airplane {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 140px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.study-hero--europe .study-hero__map-bg {
  position: absolute;
  top: 5%;
  left: 0;
  width: 75%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.study-hero--europe .study-hero__cards {
  gap: 20px;
  margin-bottom: 40px;
}

.study-hero--europe .study-hero__card {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 24px;
  padding: 6x 13px;
  gap: 15px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.study-hero--europe .study-hero__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.study-hero--europe .study-hero__card-icon {
  width: 60px;
  height: 60px;
  background: var(--study-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.study-hero--europe .study-hero__card-line {
  margin: 8px auto 0;
  width: 30px;
  height: 3px;
  background: var(--study-red);
  display: block;
}

.study-hero--europe .study-hero__btn {
  height: 68px;
  border-radius: 18px;
  padding: 0 30px;
}

.study-hero--europe .study-hero__btn--primary {
  background: linear-gradient(135deg, #E31E24, #B71015);
  border: none;
  color: #fff;
}

.study-hero--europe .study-hero__btn--secondary {
  border: 2px solid var(--study-black);
  color: var(--study-black);
  background: var(--study-bg);
}

.study-hero--europe .study-hero__btn--secondary:hover {
  background: var(--study-black);
  color: #fff;
}

.study-hero--europe .study-hero__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 50px;
  background: var(--study-navy);
  border-top-right-radius: 50% 120px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.study-hero--europe .study-hero__bottom-bar-red {
  display: none;
  /* using navy wave exclusively as requested */
}

.study-hero--europe .study-hero__bottom-content {
  color: #ffffff;
  justify-content: center;
  gap: 5px;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
}

.study-hero--europe .study-hero__bottom-content svg {
  margin-right: 10px;
}

.study-hero--europe .study-hero__dot {
  background-color: var(--study-red);
  margin: 0 20px;
}

.study-hero--europe .study-hero__dots-pattern {
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: radial-gradient(var(--study-red) 3px, transparent 3px);
  background-size: 15px 15px;
  z-index: 2;
  opacity: 0.8;
}


/* Europe Mobile Overrides */

@media (max-width: 1024px) {
  .study-hero--europe {
    flex-direction: column;
  }

  .study-hero--europe .study-hero__bg-swoosh,
  .study-hero--europe .study-hero__bg-swoosh-2 {
    display: none;
  }

  .study-hero--europe .study-hero__container {
    order: 1;
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .study-hero--europe .study-hero__right {
    position: relative;
    width: 100%;
    height: 400px;
    /* give it some height on mobile */
    border-bottom-left-radius: 0;
    margin-top: 0;
    order: 2;
    padding: 0;
    background: transparent;
  }

  .study-hero--europe .study-hero__right img {
    position: relative;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* optional to look nice on mobile */
  }

  .study-hero--europe .study-hero__left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 30px;
    position: relative;
    z-index: 10;
  }

  .study-hero--europe .study-hero__bottom-bar {
    order: 3;
    position: relative;
    border-radius: 0;
    padding: 20px;
    flex-wrap: wrap;
    height: auto;
  }

  .study-hero--europe .study-hero__bottom-content {
    flex-wrap: wrap;
  }

  .study-hero--europe .study-hero__airplane,
  .study-hero--europe .study-hero__kangaroo {
    display: none;
  }
}

@media (max-width: 768px) {
  .study-hero--europe .study-hero__title {
    font-size: 45px;
  }

  .study-hero--europe .study-hero__title div {
    font-size: 35px;
  }

  .study-hero--europe .study-hero__right {
    height: 300px;
  }

  .study-hero--europe .study-hero__bottom-content {
    font-size: 14px;
    flex-direction: column;
    text-align: center;
  }

  .study-hero--europe .study-hero__dot {
    display: none;
  }
}

/* Germany Hero Overrides */
.study-hero--germany {
  --study-red: #E31E24;
  --study-black: #111111;
  --study-bg: #FFFFFF;
  --study-navy: #040816;
}

.study-hero--germany .study-hero__left {
  flex: 0 0 48%;
  max-width: 48%;
}

.study-hero--germany .study-hero__right {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  z-index: 10;
  /* Set higher than study-hero__container so form is clickable */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.study-hero--germany .study-hero__form-container {
  width: 100%;
  max-width: 450px;
}

.study-hero--germany .study-hero__right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  /* initial zoom for animation */
  z-index: 0;
}

.study-hero--germany .study-hero__right .study-hero__flag {
  z-index: 1;
  opacity: 0.15;
  /* Subtle overlay */
  transform: none;
}

.study-hero--germany .study-hero__bg-swoosh {
  width: 55%;
  border-radius: 0 35% 55% 0;
  box-shadow: none;
  background: var(--study-bg);
  z-index: 1;
}

.study-hero--germany .study-hero__bg-swoosh-2 {
  width: 57%;
  border-radius: 0 38% 58% 0;
  background: var(--study-red);
  border: none;
  z-index: 0;
}

.study-hero--germany .study-hero__title {
  font-family: 'Poppins', var(--study-font-main), sans-serif;
  /* Target image uses a clean, bold sans-serif */
  font-weight: 900;
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.study-hero--germany .study-hero__title div {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

.study-hero--germany .study-hero__title span {
  color: var(--study-red);
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.study-hero--germany .study-hero__title-swoosh {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.study-hero--germany .study-hero__kangaroo {
  position: absolute;
  bottom: 15px;
  right: -40px;
  width: 40px;
  height: 40px;
}

.study-hero--germany .study-hero__airplane {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 140px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.study-hero--germany .study-hero__map-bg {
  position: absolute;
  top: 5%;
  left: 0;
  width: 75%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.study-hero--germany .study-hero__cards {
  gap: 20px;
  margin-bottom: 40px;
}

.study-hero--germany .study-hero__card {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 24px;
  padding: 6x 13px;
  gap: 15px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.study-hero--germany .study-hero__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.study-hero--germany .study-hero__card-icon {
  width: 60px;
  height: 60px;
  background: var(--study-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.study-hero--germany .study-hero__card-line {
  margin: 8px auto 0;
  width: 30px;
  height: 3px;
  background: var(--study-red);
  display: block;
}

.study-hero--germany .study-hero__btn {
  height: 68px;
  border-radius: 18px;
  padding: 0 30px;
}

.study-hero--germany .study-hero__btn--primary {
  background: linear-gradient(135deg, #E31E24, #B71015);
  border: none;
  color: #fff;
}

.study-hero--germany .study-hero__btn--secondary {
  border: 2px solid var(--study-black);
  color: var(--study-black);
  background: var(--study-bg);
}

.study-hero--germany .study-hero__btn--secondary:hover {
  background: var(--study-black);
  color: #fff;
}

.study-hero--germany .study-hero__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 50px;
  background: var(--study-navy);
  border-top-right-radius: 50% 120px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.study-hero--germany .study-hero__bottom-bar-red {
  display: none;
  /* using navy wave exclusively as requested */
}

.study-hero--germany .study-hero__bottom-content {
  color: #ffffff;
  justify-content: center;
  gap: 5px;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
}

.study-hero--germany .study-hero__bottom-content svg {
  margin-right: 10px;
}

.study-hero--germany .study-hero__dot {
  background-color: var(--study-red);
  margin: 0 20px;
}

.study-hero--germany .study-hero__dots-pattern {
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: radial-gradient(var(--study-red) 3px, transparent 3px);
  background-size: 15px 15px;
  z-index: 2;
  opacity: 0.8;
}



/* Germany Mobile Overrides */
/* Germany Mobile Overrides */

@media (max-width: 1024px) {
  .study-hero--germany {
    flex-direction: column;
  }

  .study-hero--germany .study-hero__bg-swoosh,
  .study-hero--germany .study-hero__bg-swoosh-2 {
    display: none;
  }

  .study-hero--germany .study-hero__container {
    order: 1;
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .study-hero--germany .study-hero__right {
    position: relative;
    width: 100%;
    height: 400px;
    /* give it some height on mobile */
    border-bottom-left-radius: 0;
    margin-top: 0;
    order: 2;
    padding: 0;
    background: transparent;
  }

  .study-hero--germany .study-hero__right img {
    position: relative;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* optional to look nice on mobile */
  }

  .study-hero--germany .study-hero__left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 30px;
    position: relative;
    z-index: 10;
  }

  .study-hero--germany .study-hero__bottom-bar {
    order: 3;
    position: relative;
    border-radius: 0;
    padding: 20px;
    flex-wrap: wrap;
    height: auto;
  }

  .study-hero--germany .study-hero__bottom-content {
    flex-wrap: wrap;
  }

  .study-hero--germany .study-hero__airplane,
  .study-hero--germany .study-hero__kangaroo {
    display: none;
  }
}

@media (max-width: 768px) {
  .study-hero--germany .study-hero__title {
    font-size: 45px;
  }

  .study-hero--germany .study-hero__title div {
    font-size: 35px;
  }

  .study-hero--germany .study-hero__right {
    height: 300px;
  }

  .study-hero--germany .study-hero__bottom-content {
    font-size: 14px;
    flex-direction: column;
    text-align: center;
  }

  .study-hero--germany .study-hero__dot {
    display: none;
  }
}

/* Slovakia Hero Overrides */
/*  */
.study-hero--slovakia {
  --study-red: #E31E24;
  --study-black: #111111;
  --study-bg: #FFFFFF;
  --study-navy: #040816;
}

.study-hero--slovakia .study-hero__left {
  flex: 0 0 48%;
  max-width: 48%;
}

.study-hero--slovakia .study-hero__right {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  z-index: 10;
  /* Set higher than study-hero__container so form is clickable */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.study-hero--slovakia .study-hero__form-container {
  width: 100%;
  max-width: 450px;
}

.study-hero--slovakia .study-hero__right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  /* initial zoom for animation */
  z-index: 0;
}

.study-hero--slovakia .study-hero__right .study-hero__flag {
  z-index: 1;
  opacity: 0.15;
  /* Subtle overlay */
  transform: none;
}

.study-hero--slovakia .study-hero__bg-swoosh {
  width: 55%;
  border-radius: 0 35% 55% 0;
  box-shadow: none;
  background: var(--study-bg);
  z-index: 1;
}

.study-hero--slovakia .study-hero__bg-swoosh-2 {
  width: 57%;
  border-radius: 0 38% 58% 0;
  background: var(--study-red);
  border: none;
  z-index: 0;
}

.study-hero--slovakia .study-hero__title {
  font-family: 'Poppins', var(--study-font-main), sans-serif;
  /* Target image uses a clean, bold sans-serif */
  font-weight: 900;
  font-size: 90px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.study-hero--slovakia .study-hero__title div {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

.study-hero--slovakia .study-hero__title span {
  color: var(--study-red);
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.study-hero--slovakia .study-hero__title-swoosh {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.study-hero--slovakia .study-hero__kangaroo {
  position: absolute;
  bottom: 15px;
  right: -40px;
  width: 40px;
  height: 40px;
}

.study-hero--slovakia .study-hero__airplane {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 140px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.study-hero--slovakia .study-hero__map-bg {
  position: absolute;
  top: 5%;
  left: 0;
  width: 75%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.study-hero--slovakia .study-hero__cards {
  gap: 20px;
  margin-bottom: 40px;
}

.study-hero--slovakia .study-hero__card {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 24px;
  padding: 6x 13px;
  gap: 15px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.study-hero--slovakia .study-hero__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.study-hero--slovakia .study-hero__card-icon {
  width: 60px;
  height: 60px;
  background: var(--study-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.study-hero--slovakia .study-hero__card-line {
  margin: 8px auto 0;
  width: 30px;
  height: 3px;
  background: var(--study-red);
  display: block;
}

.study-hero--slovakia .study-hero__btn {
  height: 68px;
  border-radius: 18px;
  padding: 0 30px;
}

.study-hero--slovakia .study-hero__btn--primary {
  background: linear-gradient(135deg, #E31E24, #B71015);
  border: none;
  color: #fff;
}

.study-hero--slovakia .study-hero__btn--secondary {
  border: 2px solid var(--study-black);
  color: var(--study-black);
  background: var(--study-bg);
}

.study-hero--slovakia .study-hero__btn--secondary:hover {
  background: var(--study-black);
  color: #fff;
}

.study-hero--slovakia .study-hero__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 50px;
  background: var(--study-navy);
  border-top-right-radius: 50% 120px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.study-hero--slovakia .study-hero__bottom-bar-red {
  display: none;
  /* using navy wave exclusively as requested */
}

.study-hero--slovakia .study-hero__bottom-content {
  color: #ffffff;
  justify-content: center;
  gap: 5px;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
}

.study-hero--slovakia .study-hero__bottom-content svg {
  margin-right: 10px;
}

.study-hero--slovakia .study-hero__dot {
  background-color: var(--study-red);
  margin: 0 20px;
}

.study-hero--slovakia .study-hero__dots-pattern {
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: radial-gradient(var(--study-red) 3px, transparent 3px);
  background-size: 15px 15px;
  z-index: 2;
  opacity: 0.8;
}




/* Slovakia Mobile Overrides */
/*  */
/*  */

@media (max-width: 1024px) {
  .study-hero--slovakia {
    flex-direction: column;
  }

  .study-hero--slovakia .study-hero__bg-swoosh,
  .study-hero--slovakia .study-hero__bg-swoosh-2 {
    display: none;
  }

  .study-hero--slovakia .study-hero__container {
    order: 1;
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .study-hero--slovakia .study-hero__right {
    position: relative;
    width: 100%;
    height: 400px;
    /* give it some height on mobile */
    border-bottom-left-radius: 0;
    margin-top: 0;
    order: 2;
    padding: 0;
    background: transparent;
  }

  .study-hero--slovakia .study-hero__right img {
    position: relative;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* optional to look nice on mobile */
  }

  .study-hero--slovakia .study-hero__left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 30px;
    position: relative;
    z-index: 10;
  }

  .study-hero--slovakia .study-hero__bottom-bar {
    order: 3;
    position: relative;
    border-radius: 0;
    padding: 20px;
    flex-wrap: wrap;
    height: auto;
  }

  .study-hero--slovakia .study-hero__bottom-content {
    flex-wrap: wrap;
  }

  .study-hero--slovakia .study-hero__airplane,
  .study-hero--slovakia .study-hero__kangaroo {
    display: none;
  }
}

@media (max-width: 768px) {
  .study-hero--slovakia .study-hero__title {
    font-size: 45px;
  }

  .study-hero--slovakia .study-hero__title div {
    font-size: 35px;
  }

  .study-hero--slovakia .study-hero__right {
    height: 300px;
  }

  .study-hero--slovakia .study-hero__bottom-content {
    font-size: 14px;
    flex-direction: column;
    text-align: center;
  }

  .study-hero--slovakia .study-hero__dot {
    display: none;
  }
}