@font-face {
  font-family: 'Kia Signature';
  src: url('./fonts/KiaSignatureRegular.eot');
  src: url('./fonts/KiaSignatureRegular.eot?#iefix') format('embedded-opentype'),
    url('./fonts/KiaSignatureRegular.woff2') format('woff2'),
    url('./fonts/KiaSignatureRegular.woff') format('woff'),
    url('./fonts/KiaSignatureRegular.ttf') format('truetype'),
    url('./fonts/KiaSignatureRegular.svg#KiaSignatureRegular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kia Signature';
  src: url('./fonts/KiaSignatureBold.eot');
  src: url('./fonts/KiaSignatureBold.eot?#iefix') format('embedded-opentype'),
    url('./fonts/KiaSignatureBold.woff2') format('woff2'),
    url('./fonts/KiaSignatureBold.woff') format('woff'),
    url('./fonts/KiaSignatureBold.ttf') format('truetype'),
    url('./fonts/KiaSignatureBold.svg#KiaSignatureBold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


/* ==========================================================================
   GLOBAL VARIABLES & RESET
   ========================================================================== */
:root {
  --ao-blue: #0091D2;
  --kia-black: #05141F;
  --dark-navy: #07131e;
  --card-dark: #0d1e2d;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #C7C8CA;
  --border-light: #e2e8f0;
  --border-dark: #1e293b;
  --card-light-bg: #f8fafc;
  --error-color: #EA0029;
  --btn-gray: #717d8a;
  --btn-gray-hover: #525d68;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Kia Signature';
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: var(--kia-black);
  line-height: 1.5;
  overflow-x: hidden;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

/* ==========================================================================
   HEADER & GLOBAL NAVIGATION
   ========================================================================== */
.header {
  border-bottom: 1px solid var(--border-light);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: 10%;
}

.brand-logos img {
  width: 100%;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #1e293b;
  font-size: 13.5px;
  font-weight: bold;
  font-style: normal;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ao-blue);
}

.btn-nav-register {
  background-color: var(--kia-black);
  color: #ffffff !important;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
}


.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--kia-black);
  border-radius: 3px;
  transition: all 0.3s ease;
}


/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.btn-white {
  background: #ffffff;
  color: var(--kia-black);
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.btn-white:hover {
  background: var(--kia-black);
  color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #969da1;
  color: #ffffff;
  padding: 10px 30px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background-color: var(--kia-black);
}

.btn-secondary {
  background-color: #969da1;
  color: #ffffff;
  padding: 10px 24px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-inline-action:hover {
  background-color: var(--kia-black);
}


/* ==========================================================================
   INDEX.HTML SECTIONS
   ========================================================================== */
/* Hero */
.hero-section {
  color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  padding: 90px 24px 100px;
  background-image: url(../images/header_banner.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  /* align-content: center; */
  flex-direction: row;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  align-items: center;
  position: relative;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 0.5;
}

.hero-title span {
  color: var(--ao-blue);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 24px;
  color: #f1f5f9;
}

.hero-description {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-brand-note {
  font-size: 14px;
  color: var(--text-subtle);
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-footer-note {
  font-size: 12.5px;
  color: #C7C8CA;
  line-height: 1.5;
}

.note-title {
  margin-bottom: 10px;
  font-size: 1rem;
}

.application-deadlines {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 18px;
}

.deadline {
  text-align: center;
}

.city {
  font-size: 1rem;
  margin-bottom: 2px;
}

.date {
  font-size: 1rem;
  white-space: nowrap;
}

.divider {
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, 0.6);
}

.ballkid-message {
  font-size: 1rem;
  color: #C7C8CA;
}

.mb-fotter {
  margin-bottom: 27px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image-wrap img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Grand Slam Strip */
.slam-stage-section {
  background: #ffffff;
  padding: 60px 24px;
}

.slam-card {
  max-width: 1140px;
  margin: 0 auto;
  background: #f7f7f8;
  border-radius: 16px;
  padding: 30px 30px 60px;
  text-align: center;
}

.slam-card h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--kia-black);
  margin-bottom: 40px;
}

.slam-grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  position: relative;
}

.slam-item {
  padding: 0 24px;
  text-align: center;
  position: relative;
}

.slam-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: -18%;
  height: 147px;
  width: 1.5px;
  background-color: #05141F;
}

.slam-item:first-child::after {
  right: -6px;
  /* change as needed */
}

.slam-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--kia-black);
  line-height: 1.25;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 87%;
  margin: 0 auto;
  margin-bottom: 12px;
}

.slam-item p {
  font-size: 0.8rem;
  color: #05141F;
  line-height: 1.2;
}

/* Pitch / Program Intro */
.pitch-section {
  max-width: 1140px;
  margin: 40px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 50px;
  align-items: center;
  justify-items: center;
}

.rounded-media-box {
  overflow: hidden;
  height: auto;
  border-radius: 24px;
  width: 85%;
}

.rounded-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role-content-split .rounded-media-box,
.prep-section .rounded-media-box {
  width: 100%;
}

.pitch-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--kia-black);
  margin-bottom: 4px;
}

.pitch-content .pitch-tagline {
  font-size: 24px;
  font-weight: 400;
  color: var(--kia-black);
  margin-bottom: 26px;
}

.bullet-bar-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 15px;
}

.bar-item {
  display: flex;
  gap: 16px;
  align-items: center;
  align-content: center;
}

.bar-line {
  width: 4px;
  background: var(--kia-black);
  height: 100%;
  min-height: 36px;
  border-radius: 19px;
  flex-shrink: 0;
}

.bar-line-transparent {
  width: 4px;
  background: transparent;
  flex-shrink: 0;
}

.bar-item p {
  font-size: 13.5px;
  color: var(--kia-black);
  line-height: 1.45;
}

.pitch-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--kia-black);
  padding-top: 10px;
}

/* What Does A Ballkid Do (Dark Section) */
.ballkid-role-section {
  background: var(--dark-navy);
  color: #ffffff;
  padding: 80px 24px;
}

.ballkid-role-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.ballkid-role-inner h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ballkid-role-inner .tagline {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 26px;
}

.ballkid-role-intro {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.ballkid-role-lead {
  font-size: 16px;
  margin-bottom: 24px;
}

.ballkid-role-prompt {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 28px;
}

.role-content-split {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 50px;
  align-items: center;
}

.role-traits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trait-item {
  display: flex;
  gap: 28px;
  align-items: center;
}

.trait-bar {
  width: 4px;
  background: #ffffff;
  min-height: 60px;
  flex-shrink: 0;
  border-radius: 30px;
}

.trait-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1;
}

.trait-text p {
  font-size: 16px;
}

/* Eligibility Cards */
/* .eligibility-section {
  max-width: 1140px;
  margin: 80px auto;
  padding: 0 24px;
} */
.eligibility-section {
  padding: 80px 24px;
  background: #f7f7f8;
}

.eligibility-section>* {
  max-width: 1140px;
  margin: 0 auto;
}


.eligibility-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--kia-black);
  margin-bottom: 8px;
}

.eligibility-header p {
  font-size: 14.5px;
  color: var(--kia-black);
  margin-bottom: 36px;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.eligibility-card {
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.card-header-dark {
  background: var(--dark-navy);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
}

.icon-bx {
  width: 30px;
}

.icon-bx img {
  width: 100%;
  display: block;
}

.card-body-content {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body-content p {
  font-size: 13.5px;
  color: #334155;
  line-height: 1.5;
}

.card-tag-btn {
  align-self: flex-end;
  margin-top: 16px;
  background: #9ba1a5;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.card-tag-btn:hover {
  background: var(--kia-black);
  color: #ffffff;
}

/* Full Width Strip */
.squad-strip {
  width: 100%;
  max-height: fit-content;
  overflow: hidden;
  margin-bottom: 60px;
}

.squad-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Document Prep */
.prep-section {
  max-width: 1140px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.prep-section .rounded-media-box {
  width: 95%;
}

.prep-content .sub-label {
  font-size: 13px;
  color: var(--kia-black);
  margin-bottom: 6px;
}

.prep-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--kia-black);
  margin-bottom: 12px;
}

.prep-content .desc {
  font-size: 14px;
  color: var(--kia-black);
  line-height: 1.5;
  margin-bottom: 24px;
}

.prep-content h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--kia-black);
  margin-bottom: 16px;
}

.prep-checklist {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-bottom: 28px;
}

.prep-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.prep-item-bar {
  width: 4px;
  background: var(--kia-black);
  height: 100%;
  min-height: 30px;
  border-radius: 32px;
  flex-shrink: 0;
}

.prep-item span {
  font-size: 14px;
  color: var(--kia-black);
  font-weight: bold;
}

.prep-note {
  font-size: 14px;
  color: var(--kia-black);
  line-height: 1.5;
}

/* Tips Strip */
.tips-strip {
  background: var(--kia-black);
  color: #ffffff;
  text-align: center;
  padding: 44px 20px;
}

.tips-strip h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tips-strip p {
  font-size: 16px;
  line-height: 1.8;
}

/* Enrollment Steps */
.steps-section {
  max-width: 1140px;
  margin: 70px auto 80px;
  padding: 0 24px;
}

.steps-heading-group {
  margin-bottom: 36px;
}

.steps-heading-group .prefix {
  font-size: 13px;
  margin-bottom: 4px;
}

.steps-heading-group h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--kia-black);
  margin-bottom: 12px;
}

.steps-heading-group p {
  font-size: 14px;
  line-height: 1.4;
}

.enroll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 50px;
}

.step-box-card {
  background: #f7f7f8;
  border-radius: 14px;
  padding: 36px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-box-card .step-num {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.step-box-card .step-title {
  font-size: 15px;
  font-weight: bold;
  color: var(--kia-black);
  margin-bottom: 14px;
}

.step-box-card .step-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
  width: 75%;
  margin: 0 auto;
}

.step-box-card .step-meta {
  font-size: 12px;
  font-weight: bold;
  color: #1e293b;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.step-meta-locations {
  display: flex;
  justify-content: space-around;
  padding-top: 14px;
  font-size: 12px;
  font-weight: bold;
}

.step-meta-locations>div:not(:first-child) {
  position: relative;
  padding-left: 17px;
}

.step-meta-locations>div:not(:first-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 35px;
  width: 1px;
  border-radius: 30px;
  background-color: var(--kia-black);
}

.step-annocement {
  font-size: 12px;
  font-weight: bold;
  padding-top: 14px;
}

.step-open {
  font-size: 12px;
  font-weight: bold;
  padding-top: 14px;
}

.step-meta-locations div strong {
  display: block;
  font-size: 12px;
  color: var(--kia-black);
}

/* Banner Interstitial */
.mid-banner {
  width: 100%;
  max-height: fit-content;
  overflow: hidden;
}

.mid-banner img {
  width: 100%;
  height: max-content;
  object-fit: cover;
  display: block;
}

/* Accordion FAQs */
.faqs-section {
  background: #f7f7f8;
}

.faq-inner-bx {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.faqs-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--kia-black);
  margin-bottom: 4px;
}

.faqs-section .faq-sub {
  font-size: 21px;
  margin-bottom: 45px;
}

.faq-list {
  border-top: 1px solid var(--border-light);
}

.faq-row {
  border-bottom: 1px solid var(--border-light);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--kia-black);
  cursor: pointer;
}

.faq-trigger svg {
  transition: transform 0.2s ease;
}

.faq-row.active .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  display: none;
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  background: white;
  padding: 20px;
  color: #6a6c6d;
}

.faq-row.active .faq-content {
  display: block;
}

/* Bottom Call to Action */
.bottom-hero-section {
  /* background: radial-gradient(circle at 80% 40%, #15324d 0%, var(--dark-navy) 70%); */
  color: #ffffff;
  padding: 80px 24px;
  min-height: 90vh;
  background-image: url(../images/header_banner.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: row;
}

.bottom-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

.bottom-hero-inner h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.bottom-hero-inner p {
  font-size: 16px;
  margin-bottom: 28px;
}

.bottom-footer-note {
  padding-top: 1rem;
  font-size: 16px;
  line-height: 1.5;
}

/* ==========================================================================
   REGISTER.HTML (STEPPER, FORMS & UPLOADS)
   ========================================================================== */
.page-title-section {
  text-align: center;
  padding: 40px 20px 20px;
}

.page-title-section h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--kia-black);
  margin-bottom: 8px;
}

.page-title-section p {
  /* color: var(--text-muted); */
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.stepper-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px 20px;
  margin-bottom: 20px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f7f8f8;
  color: var(--kia-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: inherit !important;
  caret-color: inherit !important;
  transition: background-color 9999s ease-out !important;
}

.step-item.active .step-number {
  background: var(--kia-black);
  color: #ffffff;
}

.step-label {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}

.form-section {
  background: #f7f7f8;
  padding-top: 2rem;
  padding-bottom: 40px;
}

.form-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 30px 60px;
}

.step-indicator-title {
  font-size: 14px;
  color: var(--kia-black);
  margin-bottom: 4px;
}

.step-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--kia-black);
  margin-bottom: 6px;
}

.step-subtext1 {
  font-size: 14px;
  color: var(--kia-black);
  margin-bottom: 10px;
}

.step-subtext {
  font-size: 14px;
  color: var(--kia-black);
  margin-bottom: 60px;
}

.required-badge {
  color: var(--error-color);
  font-size: 12px;
  font-weight: 500;
  display: block;
  margin-bottom: 60px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group.col-span-2 {
  grid-column: span 2;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--kia-black);
  margin-bottom: 6px;
  opacity: 0.8;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 4px;
  border: none;
  border-bottom: 1.5px solid #cbd5e1;
  border-radius: 0;
  font-size: 14px;
  outline: none;
  background: transparent;
  color: #1e293b;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-bottom-color: var(--kia-black);
}

.form-group.has-error input,
.form-group.has-error select {
  border-bottom-color: var(--error-color);
}

.field-error-msg {
  color: var(--error-color);
  font-size: 11.5px;
  margin-top: 4px;
  display: none;
}

.form-group.has-error .field-error-msg {
  display: block;
}

/* =========================================
   CUSTOM SELECT
   ========================================= */

.custom-select-wrapper {
  position: relative;
  width: 100%;
  z-index: 10;
}

.custom-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Selected field */

.custom-select-trigger {
  width: 100%;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 8px;

  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #cbd5e1 !important;

  color: #0f172a;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;

  cursor: pointer;
  text-align: left;

  box-sizing: border-box;
}

.custom-select-trigger:hover,
.custom-select-trigger:focus {
  background: transparent !important;
  outline: none;
}

/* Placeholder */

.custom-select-trigger.placeholder {
  color: #64748b;
}

/* Selected text */

.custom-select-text {
  display: block;
  flex: 1;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  line-height: 42px;
}

/* Arrow */

.custom-select-arrow {
  width: 9px;
  height: 9px;

  flex-shrink: 0;

  border-right: 2px solid #071923;
  border-bottom: 2px solid #071923;

  transform: rotate(45deg);

  margin-right: 5px;
  margin-top: -5px;

  transition: transform 0.2s ease;
}

.custom-select-wrapper.open .custom-select-arrow {
  transform: rotate(225deg);
  margin-top: 5px;
}

/* =========================================
   DROPDOWN PANEL
   ========================================= */

.custom-select-options {
  position: absolute;

  top: 42px;
  left: 0;
  right: 0;

  display: none;

  padding: 8px 0;

  background: #fff;

  border: none;

  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);

  z-index: 99999;
}

.custom-select-wrapper.open {
  z-index: 99999;
}

.custom-select-wrapper.open .custom-select-options {
  display: block;
}

/* =========================================
   OPTIONS
   ========================================= */

.custom-select-option {
  width: 100%;
  height: 40px;

  display: flex;
  align-items: center;

  padding: 0 22px;

  background: #fff;

  color: #17212b;

  font-size: 16px;
  font-weight: 400;

  cursor: pointer;

  box-sizing: border-box;
}

.custom-select-option:hover {
  background: #fff;
}

.custom-select-option.selected {
  background: #fff;
}

/* Checkmark */

.option-check {
  width: 22px;
  flex: 0 0 22px;

  color: #17212b;

  font-size: 13px;

  visibility: hidden;
}

.custom-select-option.selected .option-check {
  visibility: visible;
}

/* Option text */

.option-text {
  display: block;
  white-space: nowrap;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

  .custom-select-trigger {
    height: 44px;
    font-size: 14px;
  }

  .custom-select-text {
    line-height: 44px;
  }

  .custom-select-option {
    height: 44px;
    font-size: 15px;
  }

  .custom-select-options {
    top: 44px;
  }
}


.upload-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid #cbd5e1;
  padding: 6px 0;
}

.upload-label-text {
  font-size: 13.5px;
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 75%;
}

.btn-upload {
  background-color: #969da1;
  color: #fff;
  border: none;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
}

.btn-upload:hover {
  background: var(--kia-black);
}

.input-with-action {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.btn-inline-action {
  background: #969da1;
  color: #ffffff;
  border: none;
  padding: 7px 14px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.45;
  color: #334155;
  cursor: pointer;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.checkbox-item input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--kia-black);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.step-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.success-card {
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
}

.success-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.ref-code-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  padding: 24px;
  margin: 28px 0;
}

.ref-code {
  font-size: 30px;
  font-weight: 800;
  color: var(--ao-blue);
  letter-spacing: 1px;
}

/* Dual-Tone Toast Notification */
.toast-alert {
  position: fixed;
  top: 24px;
  right: 24px;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.toast-alert.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-alert.toast-red {
  background-color: #dc2626;
  box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.45);
}

.toast-alert.toast-green {
  background-color: #10b981;
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.45);
}

.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Cumulative Stepper (Active & Completed Stay Dark) */
.stepper-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 16px 20px 30px;
  margin-bottom: 20px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s ease;
}

/* Highlights current AND all previously completed steps */
.step-item.active .step-number,
.step-item.completed .step-number {
  background: var(--kia-black);
  color: #ffffff;
}

.step-label {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}

/* Exact UI from register6.jpg (Success Screen) */
.success-container {
  max-width: 860px;
  margin: 40px auto 100px;
  padding: 0 20px;
  text-align: center;
}

.success-check-badge {
  width: 52px;
  height: 52px;
  background-color: var(--kia-black);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-check-badge svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
}

.success-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--kia-black);
  margin-bottom: 12px;
}

.success-subtitle {
  font-size: 14.5px;
  color: #334155;
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.reference-box-card {
  background: #ffffff;
  max-width: 340px;
  margin: 0 auto 50px;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ref-label {
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}

.ref-number {
  font-size: 30px;
  font-weight: 800;
  color: var(--ao-blue);
  letter-spacing: 0.5px;
}

.btn-download-ref {
  background-color: #969da1;
  color: #ffffff;
  border: none;
  padding: 9px 36px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s ease;
}

.btn-download-ref:hover {
  background-color: var(--kia-black);
}

.steps-instruction-list {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}

.instruction-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.instruction-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--kia-black);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.instruction-text {
  font-size: 14px;
  color: var(--kia-black);
  line-height: 1.5;
}

.instruction-text a {
  color: #0f172a;
  text-decoration: underline;
}

/* Modal Styles */
.register-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 31, 0.75);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.register-modal-overlay.open {
  display: flex;
}

.dash-list {
  list-style: none;
  padding-left: 0;
}

.dash-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}

.dash-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.register-modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.register-modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
}

.register-modal-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--kia-black);
}

.register-modal-close {
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #64748b;
}

.register-modal-body {
  padding: 0px;
  overflow-y: auto;
  font-size: 13.5px;
  line-height: 1.6;
  color: #334155;
}

.register-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: #f8fafc;
}

.modal-clause {
  margin-bottom: 22px;
}

.modal-clause h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.modal-clause ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-clause li,
.modal-clause p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.55;
}

.open-modal-link {
  color: var(--ao-blue);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
}

/* ==========================================================================
   TERMS, CONSENT & MEDICAL GUIDES LAYOUT
   ========================================================================== */
.content-page-container {
  max-width: 1000px;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
}

.policy-heading {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 40px 20px;
}

.policy-heading h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--kia-black);
  line-height: 1.15;
}

.policy-subheading {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}

.policy-body {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
}

.policy-section-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.policy-body p,
.policy-body li {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
}

.policy-body ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   Consent Page
   ========================================================================== */
.consent-page-container {
  max-width: 1100px;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
}

.consent-sidebar {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 40px 20px;
}

.consent-sidebar h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--kia-black);
  line-height: 1.15;
}

.consent-content {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
}

.consent-top-divider {
  height: 1.5px;
  background-color: #0f172a;
  border: none;
  margin-bottom: 24px;
}

.consent-heading {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.consent-intro-text {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 28px;
}

.consent-declarations-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}

.consent-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #4b5563;
  cursor: pointer;
}

.consent-check-item input[type="checkbox"] {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--kia-black);
  cursor: pointer;
  flex-shrink: 0;
}

.consent-check-item strong {
  color: #111827;
  font-weight: 700;
}

.consent-footer-support {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 28px;
}

.consent-footer-support a {
  color: #1f2937;
  text-decoration: underline;
}

.btn-consent-submit {
  background-color: #8c96a0;
  color: #ffffff;
  border: none;
  padding: 10px 32px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: not-allowed;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.btn-consent-submit.active {
  background-color: var(--kia-black);
  cursor: pointer;
  opacity: 1;
}

.btn-consent-submit.active:hover {
  background-color: #112535;
}

@media (max-width: 860px) {
  .consent-page-container {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}

/* ==========================================================================
   Terms and Conditions
   ========================================================================== */

.terms-intro-text {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 24px;
}

.terms-section-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terms-section-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
}

.terms-bullet-list {
  list-style-type: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terms-bullet-list li {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.55;
}

.terms-paragraph {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.55;
}

.terms-action-box {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  margin-top: 16px;
}

.terms-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 20px;
}

.terms-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--kia-black);
  cursor: pointer;
}

#termsSubmitBtn:disabled {
  background-color: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

#termsSubmitBtn.btn-active {
  background-color: var(--kia-black);
  color: #ffffff;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transition: background-color 0.2s ease;
}

#termsSubmitBtn.btn-active:hover {
  background-color: #112535;
}

/* ==========================================================================
   Medical Fitness Page
   ========================================================================== */

.medical-page-container {
  max-width: 1060px;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
}

.medical-sidebar {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 40px 20px;
}

.medical-sidebar h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--kia-black);
  line-height: 1.15;
  margin-bottom: 12px;
}

.medical-sidebar p {
  font-size: 14px;
  color: #374151;
  line-height: 1.45;
}

.medical-content {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
}

.medical-divider {
  height: 1px;
  background-color: #0f172a;
  border: none;
  margin-bottom: 24px;
}

.medical-section {
  margin-bottom: 28px;
}

.medical-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.medical-lead-sub {
  font-size: 13.5px;
  color: #4b5563;
  margin-bottom: 12px;
}

.medical-paragraph {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
}

.medical-dot-list {
  list-style-type: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.medical-dot-list li {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

.medical-checklist {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.medical-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

.medical-checklist li svg {
  width: 15px;
  height: 15px;
  stroke: #475569;
  stroke-width: 2.2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.medical-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-med-download {
  background-color: #8c96a0;
  color: #ffffff;
  border: none;
  padding: 9px 26px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-med-download:hover {
  background-color: #78828b;
}

.btn-med-submit {
  background-color: #8c96a0;
  color: #ffffff;
  border: none;
  padding: 9px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-med-submit:hover {
  background-color: #78828b;
}

@media (max-width: 860px) {
  .medical-page-container {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}

/* ==========================================================================
   DASHBOARD / ADMIN PORTAL
   ========================================================================== */
.dashboard-wrapper {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.auth-overlay {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.admin-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  font-size: 13.5px;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.data-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #334155;
}

.pagination-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.search-input {
  padding: 8px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 13.5px;
  width: 250px;
}

/* ==========================================================================
   UNIVERSAL POPUP MODAL
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 31, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
}

.modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--kia-black);
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #64748b;
  line-height: 1;
}

.modal-body {
  padding: 30px;
  overflow-y: auto;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: #f8fafc;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {

  .hero-wrapper,
  .pitch-section,
  .role-content-split,
  .prep-section,
  .bottom-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .slam-grid,
  .eligibility-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* .slam-item:not(:last-child)::after {
    display: none;
  } */

  .enroll-grid {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }

  .hero-image-wrap {
    justify-content: center;
  }
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .form-group.col-span-2 {
    grid-column: span 1;
  }

  .content-page-container {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .stepper-container {
    gap: 12px;
  }

  .step-label {
    display: none;
  }
}

@media (max-width: 640px) {

  .brand-logos {
    width: 30%;
  }

  .slam-grid,
  .eligibility-grid {
    grid-template-columns: 1fr;
  }

  .hero-wrapper {
    margin: 0;
  }

  .hero-title {
    font-size: 21px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    font-weight: normal;
    margin-top: 0px;
  }

  .hero-ctas {
    align-items: flex-start;
  }

  .hero-footer-note {
    font-size: 8px;
    width: 75%;
  }

  .application-deadlines {
    gap: 8px;
    margin-bottom: 10px;
  }

  .bottom-hero-inner .heder-footer {
    bottom: -60px;
  }

  .bottom-hero-inner .heder-footer .ballkid-message {
    width: 50%;
  }

  .deadline {
    flex: 0 0 auto;
  }

  .city {
    font-size: 8px;
  }

  .date {
    font-size: 8px;
  }

  .divider {
    display: block;
    width: 1px;
    min-width: 1px;
    height: 45px;
    flex: 0 0 1px;
    background-color: rgba(255, 255, 255, 0.6);
  }

  .ballkid-message {
    font-size: 8px;
    width: 80%;
  }

  .rounded-media-box {
    width: 100%;
    height: 100%;
  }

  .bullet-bar-list {
    margin-bottom: 35px;
  }

  .pitch-content h2 {
    font-size: 24px;
  }

  .hero-description {
    font-size: 0.7rem;
  }

  .hero-brand-note {
    font-size: 8px;
  }

  .slam-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .bottom-hero-inner {
    margin: 0px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .slam-item h3 {
    font-size: 1.5rem;
    width: 100%;
  }

  .ballkid-role-inner {
    display: flex;
    flex-direction: column;
  }

  .role-content-split .rounded-media-box {
    margin-bottom: 2rem;
    border-radius: 10px;
  }

  .prep-section .rounded-media-box {
    width: 100%;
    height: 100%;
  }

  .role-content-split {
    display: contents;
  }

  .rounded-media-box {
    order: -1;
  }

  .role-traits {
    order: 5;
  }

  .slam-card {
    padding: 21px 30px 0px;
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  .spacer {
    height: 10px;
  }

  .heder-footer {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
  }

  .hero-wrapper,
  .bottom-hero-inner {
    align-content: space-between;
  }

  .pitch-content h2,
  .ballkid-role-inner h2,
  .steps-heading-group h2 {
    line-height: normal;
  }

  .ballkid-role-intro,
  .ballkid-role-lead,
  .ballkid-role-prompt,
  .trait-text h4,
  .trait-text p,
  .faqs-section .faq-sub,
  .bottom-hero-inner p {
    font-size: 14px;
  }

  .pitch-content .pitch-tagline,
  .ballkid-role-inner .tagline,
  .eligibility-header p,
  .prep-content .desc,
  .steps-heading-group p,
  .faqs-section .faq-sub {
    font-size: 20px;
  }

  .slam-item {
    position: relative;
    padding-bottom: 18px;
  }

  .slam-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 115px;
    height: 2px;
    background-color: var(--kia-black);
  }

  .tips-strip p {
    font-size: 13px !important;
    line-height: 1.5;
  }

  .bottom-footer-note {
    font-size: 8px;
    width: 65%;
  }

  .step-box-card .step-text {
    width: 100%;
    font-size: 12px;
  }

  .step-box-card .step-meta {
    padding-top: 10px;
  }

  .slam-stage-section {
    padding: 40px 24px;
  }

  .steps-section {
    margin: 35px auto 35px;
  }

  .faq-inner-bx {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .pitch-section {
    margin: 0px auto 0px;
  }

  .barline3 {
    min-height: 80px;
    border-radius: 50px;
  }

  .ballkid-role-section,
  .eligibility-section {
    padding: 35px 24px;
  }

  .squad-strip {
    margin-bottom: 35px;
  }

  .prep-section {
    margin: 0 auto 40px;
  }

  .step-meta-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .step-meta-locations>div:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }

  .step-meta-locations>div:last-child::after {
    display: none;
  }

  .bottom-hero-inner h2 {
    font-size: 24px;
  }

  .slam-item:first-child::after {
    right: 0;
  }

  .note-title {
    font-size: 11px;
    margin-bottom: 5px;
  }


}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-title {
    font-size: 2.3rem;
    line-height: 1.2;
  }

  .brand-logos {
    width: 16%;
  }
}

@media (max-width: 768px) {

  .hero-section,
  .bottom-hero-section {
    background-image: url(../images/mobile_header.png);
  }

  .nav-container {
    padding: 12px 18px;
  }

  /* Keep logo at a sensible size */
  .brand-logos {
    width: 120px;
  }

  .hamburger {
    display: flex;
  }

  /* Hide navigation by default */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 0;
    margin: 0;
    padding: 12px 18px 18px;

    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    z-index: 1000;
  }

  /* Show menu when hamburger is clicked */
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 13px 8px;
    font-size: 15px;
  }

  /* Register button */
  .btn-nav-register {
    margin-top: 8px;
    text-align: center;
    padding: 12px 20px !important;
  }


  /* ==========================================================================
     HAMBURGER → X ANIMATION
     ========================================================================== */

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media print {

    @page {
        size: A4;
        margin: 0;
    }

    html,
    body {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .print-container,
    .confirmation-page,
    .success-page {
        width: 210mm !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 20mm !important;

        position: static !important;
        overflow: visible !important;

        transform: none !important;
        box-sizing: border-box !important;
    }

    /* Important if any parent is a scroll container */
    .printing,
    .printing .print-container,
    .printing .confirmation-page,
    .printing .success-page {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }

    .download-btn,
    button,
    .no-print {
        display: none !important;
    }

    .reference-box,
    .instruction,
    .instructions {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}