/* ============================================================
   TALENTNET – NEXTGEN HR LEADER PROGRAM 2026
   Brand Colors:
     Primary Orange-Red: #B03A12
     Deep Red-Orange BG: #A43312
     Bright Orange: #F28A16
     Gold/Amber:    #F2B63A
     White:         #FFFFFF
     Dark:          #1A1A1A
     Charcoal:      #333333
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  background: rgba(242, 138, 22, 0.15);
  color: #F28A16;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-tag.white-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.section-title.white { color: #fff; }

.section-sub {
  font-size: 1rem;
  color: #666;
  max-width: 540px;
}

.section-sub.white { color: rgba(255,255,255,0.8); }

.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

.section-header { margin-bottom: 52px; }

.highlight { color: #F28A16; }
.highlight-gold { color: #F2B63A; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #1A1A1A;
  color: #fff;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: #F2B63A;
  color: #1A1A1A;
  font-weight: 800;
}

.btn-gold:hover {
  background: #f5c84d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 182, 58, 0.4);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #B03A12 0%, #F28A16 100%);
  color: #fff;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(176, 58, 18, 0.4);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(164, 51, 18, 0.97);
  backdrop-filter: blur(12px);
  padding: 6px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.nav-logo-img:hover {
  opacity: 0.85;
}

/* Legacy fallback kept but hidden */
.logo-i {
  color: #F2B63A;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.nav-links .nav-cta {
  background: #F2B63A;
  color: #1A1A1A;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
}

.nav-links .nav-cta:hover {
  background: #f5c84d;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #A43312 0%, #C04A18 40%, #D85F1A 70%, #E8721C 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

.hero-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.circle-lg {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.circle-md {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  border-color: rgba(242, 182, 58, 0.1);
}

.circle-sm {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 35%;
  border-color: rgba(255,255,255,0.06);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
  font-weight: 400;
}

/* ---- Hero Key Visual Logo ---- */
.hero-kv-logo {
  margin-bottom: 20px;
  display: block;
}

.hero-kv-img {
  max-width: 520px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  /* mix-blend-mode: screen knocks out the matching dark-orange bg,
     leaving only the white/gold text visually floating on the hero gradient */
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15));
}

/* Explicit blend class for clarity */
.hero-kv-blend {
  mix-blend-mode: screen;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.title-nextgen {
  display: block;
  color: #fff;
}

.x-mark {
  color: #F2B63A;
  font-style: normal;
  display: inline-block;
}

.title-hr {
  display: block;
}

.hero-program-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.hero-program-badge span {
  color: #F2B63A;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-meta-item i {
  color: #F2B63A;
}

.hero-meta-divider {
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-duration {
  display: flex;
  align-items: center;
  gap: 16px;
}

.duration-badge {
  background: #1A1A1A;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.duration-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #F2B63A;
  line-height: 1;
}

.duration-text {
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-duration > p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ======================================================
   HERO VISUAL — CIRCULAR RING SCENE
   ====================================================== */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---- Outer scene container ---- */
.hero-circle-scene {
  position: relative;
  width: 460px;
  height: 460px;
  flex-shrink: 0;
}

/* ---- Decorative spinning rings ---- */
.hc-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hc-ring-1 {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255,255,255,0.18);
  animation: ringSpinSlow 18s linear infinite;
  /* dashed look via SVG-like dash trick */
  border-style: dashed;
}

.hc-ring-2 {
  width: 82%;
  height: 82%;
  border: 2px solid rgba(242,182,58,0.28);
  animation: ringSpinSlow 12s linear infinite reverse;
}

.hc-ring-3 {
  width: 112%;
  height: 112%;
  border: 1.5px solid rgba(255,255,255,0.08);
  animation: ringPulseScale 4s ease-in-out infinite;
}

@keyframes ringSpinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringPulseScale {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.04); opacity: 1;   }
}

/* ---- Orbiting dot accents ---- */
.hc-orbit {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  pointer-events: none;
}

.hc-orbit-1 {
  width: 100%;
  height: 100%;
  margin: -50% 0 0 -50%;
  animation: orbitSpin 10s linear infinite;
}

.hc-orbit-2 {
  width: 82%;
  height: 82%;
  margin: -41% 0 0 -41%;
  animation: orbitSpin 7s linear infinite reverse;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hc-orbit-dot {
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  margin-left: -5px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,0.6);
}

.hc-orbit-dot-gold {
  background: #F2B63A;
  box-shadow: 0 0 12px rgba(242,182,58,0.8);
  width: 12px; height: 12px;
  margin-left: -6px;
}

/* ---- Soft radial glow behind the circle ---- */
.hc-glow-bg {
  position: absolute;
  top: 50%; left: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,182,58,0.18) 0%, rgba(164,51,18,0.35) 60%, transparent 80%);
  animation: glowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}

/* ---- Circular photo ---- */
.hc-photo-wrap {
  position: absolute;
  top: 50%; left: 50%;
  width: 84%;
  height: 84%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 0 0 5px rgba(255,255,255,0.15),
    0 0 0 10px rgba(255,255,255,0.06),
    0 28px 70px rgba(0,0,0,0.5);
  animation: photoFloat 5s ease-in-out infinite;
}

@keyframes photoFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50%       { transform: translate(-50%, -50%) translateY(-12px); }
}

.hc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.7s ease;
}

.hc-photo-wrap:hover .hc-photo {
  transform: scale(1.06);
}

/* Subtle vignette mask at the very bottom edge */
.hc-photo-mask {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(164,51,18,0.32) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* ---- Floating info badges ---- */
.hc-badge {
  position: absolute;
  z-index: 5;
  background: rgba(20, 10, 5, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  animation: badgeFloat 4s ease-in-out infinite;
}

.hc-badge i {
  font-size: 1.2rem;
  color: #F2B63A;
  flex-shrink: 0;
}

.hc-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.hc-badge span small {
  font-weight: 400;
  opacity: 0.72;
  font-size: 0.7rem;
  display: block;
}

.hc-badge span strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #F2B63A;
}

/* Destination badge — bottom-left */
.hc-badge-dest {
  bottom: 28px;
  left: -8px;
  animation-delay: 0s;
}

/* Year badge — top-right */
.hc-badge-year {
  top: 36px;
  right: -8px;
  animation-delay: 0.8s;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-7px); }
}

/* ---- Hover: speed up rings on scene hover ---- */
.hero-circle-scene:hover .hc-ring-1 { animation-duration: 8s; }
.hero-circle-scene:hover .hc-ring-2 { animation-duration: 5s; }


/* Hero Scroll */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  z-index: 3;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ---- About Key Visual Logo (horizontal wordmark) ---- */
.about-kv-logo {
  margin-bottom: 18px;
}

.about-kv-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(164, 51, 18, 0.15);
}

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(164, 51, 18, 0.15);
}

.about-img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #fdf4f0;
  border-radius: 12px;
  border-left: 3px solid #F28A16;
  transition: all 0.3s;
}

.pillar:hover {
  background: #fdeee7;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(242,138,22,0.12);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #B03A12, #F28A16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.85rem;
}

.pillar h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 3px;
}

.pillar h4 span {
  color: #F28A16;
}

.pillar p {
  font-size: 0.775rem;
  color: #777;
  line-height: 1.4;
}

/* ===== CAREER PATH ===== */
.career-path {
  padding: 100px 0;
  background: linear-gradient(135deg, #A43312 0%, #C04A18 50%, #D85F1A 100%);
  position: relative;
  overflow: hidden;
}

.career-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.career-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
}

.career-ring-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.career-ring-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  border-color: rgba(242,182,58,0.08);
}

/* ===================================================
   CAREER PATH — HORIZONTAL JOURNEY INFOGRAPHIC
   (replaces old career-timeline grid)
   =================================================== */

/* ---- Track wrapper ---- */
.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

/* ---- Each step column ---- */
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  animation: journeyStepIn 0.55s ease forwards;
  animation-delay: calc(var(--ji) * 0.18s + 0.2s);
}

@keyframes journeyStepIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Circle number ---- */
.journey-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: all 0.3s;
  cursor: default;
}

.journey-step:hover .journey-circle {
  background: rgba(242,182,58,0.18);
  border-color: #F2B63A;
  color: #F2B63A;
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(242,182,58,0.25);
}

/* Final step circle — gold trophy */
.journey-circle-final {
  background: #F2B63A;
  border-color: #F2B63A;
  color: #1A1A1A;
  width: 72px;
  height: 72px;
  font-size: 1.4rem;
  box-shadow: 0 0 0 8px rgba(242,182,58,0.2);
  animation: pulseGoldJourney 2.2s ease-in-out infinite, journeyStepIn 0.55s ease forwards;
  animation-delay: 0s, calc(3 * 0.18s + 0.2s);
}

@keyframes pulseGoldJourney {
  0%, 100% { box-shadow: 0 0 0 8px rgba(242,182,58,0.2); }
  50%       { box-shadow: 0 0 0 18px rgba(242,182,58,0.06); }
}

/* ---- Horizontal connector line with shimmer ---- */
.journey-line {
  display: flex;
  align-items: center;
  width: 100%;
  height: 2px;
  position: relative;
  margin: 12px 0 0;
  overflow: visible;
}

.journey-line-fill {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.journey-line-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.75), transparent);
  animation: lineShimmer 2.5s linear infinite;
}

@keyframes lineShimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(200%); }
}

.journey-arrow-right {
  color: rgba(242,182,58,0.8);
  font-size: 0.7rem;
  margin-left: 2px;
  flex-shrink: 0;
  animation: arrowBounce 1.4s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50%       { transform: translateX(5px); opacity: 1; }
}

/* ---- Card beneath circle ---- */
.journey-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  transition: all 0.3s;
  width: 100%;
  margin-top: 20px;
}

.journey-step:hover .journey-card {
  background: rgba(255,255,255,0.18);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* Final card */
.journey-card-final {
  background: rgba(242,182,58,0.18);
  border-color: rgba(242,182,58,0.4);
}

.journey-step-final:hover .journey-card-final {
  background: rgba(242,182,58,0.28);
}

/* Card internals */
.journey-badge-final {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #F2B63A;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.journey-duration {
  font-size: 0.74rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 5px;
}

.journey-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.journey-step-final .journey-role {
  color: #F2B63A;
}

.journey-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin-bottom: 14px;
}

.journey-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.journey-tags span {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.journey-step-final .journey-tags span {
  background: rgba(242,182,58,0.2);
  color: #F2B63A;
}

/* ---- CTA below journey ---- */
.career-cta {
  text-align: center;
  margin-top: 52px;
  position: relative;
  z-index: 2;
}

/* ---- Standalone onboard note (selection section) ---- */
.sel-onboard-standalone {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-top: 48px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.sel-onboard-standalone strong { color: #F2B63A; }



/* ===== BENEFITS ===== */
.benefits {
  padding: 100px 0;
  background: #faf8f6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid #f0ece8;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(164, 51, 18, 0.1);
  border-color: transparent;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.benefit-icon.orange {
  background: linear-gradient(135deg, #B03A12, #F28A16);
  color: #fff;
}

.benefit-icon.gold {
  background: linear-gradient(135deg, #D4871A, #F2B63A);
  color: #fff;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, #8C2A0A 0%, #A43312 40%, #B84018 100%);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 20px;
  transition: all 0.3s;
  text-align: center;
}

.service-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.service-card.featured {
  background: rgba(242, 182, 58, 0.15);
  border-color: rgba(242, 182, 58, 0.35);
}

.service-card.featured:hover {
  background: rgba(242, 182, 58, 0.25);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #F2B63A;
  margin: 0 auto 16px;
}

.service-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ---- Services section Talentnet logo ---- */
.services-logo-wrap {
  margin-bottom: 16px;
}

.services-talentnet-logo {
  height: 36px;
  width: auto;
  margin: 0 auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.services-footer {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.services-footer p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.services-footer strong {
  color: #F2B63A;
}

/* ===== ELIGIBILITY ===== */
.eligibility {
  padding: 100px 0;
  background: #fff;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-sub-left {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}

.eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eligibility-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B03A12, #F28A16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.eligibility-list strong {
  display: block;
  font-size: 0.95rem;
  color: #1A1A1A;
  margin-bottom: 3px;
}

.eligibility-list p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

.eligibility-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(164, 51, 18, 0.15);
}

.eligibility-img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.eligibility-img:hover {
  transform: scale(1.02);
}

/* ---- Eligibility: category blocks ---- */
.elig-category {
  margin-top: 24px;
}

.elig-cat-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #B03A12;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.elig-cat-title i {
  font-size: 0.9rem;
}

.elig-qualities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.elig-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(176,58,18,0.08), rgba(242,138,22,0.08));
  border: 1px solid rgba(176,58,18,0.18);
  color: #B03A12;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  transition: all 0.2s;
}

.elig-tag:hover {
  background: linear-gradient(135deg, rgba(176,58,18,0.15), rgba(242,138,22,0.15));
  transform: translateY(-1px);
}

.elig-tag i {
  font-size: 0.75rem;
  color: #F28A16;
}

/* ---- Selection: onboard note ---- */
.sel-onboard-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #F2B63A !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sel-onboard-note i {
  font-size: 0.85rem;
}

/* ===== SELECTION ===== */
.selection {
  padding: 100px 0;
  background: linear-gradient(135deg, #A43312 0%, #C04A18 50%, #D85F1A 100%);
  position: relative;
  overflow: hidden;
}

.sel-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sel-ring-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border: 1px solid rgba(255,255,255,0.06);
}

.sel-ring-2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -80px;
  border: 1px solid rgba(242,182,58,0.08);
}

.selection-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ---- Selection Process: unified vertical connector line layout ---- */
.sel-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 0;
}

/* The left column holds the circle + vertical line + arrow */
.sel-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  flex-shrink: 0;
}

/* Vertical connecting line between steps */
.sel-step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), rgba(255,255,255,0.1));
  margin-top: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 4px;
}

/* Animated down-arrow indicator inside the connector line */
.sel-arrow-down {
  color: rgba(242, 182, 58, 0.85);
  font-size: 0.75rem;
  animation: bounceDown 1.4s ease-in-out infinite;
  line-height: 1;
  margin-bottom: 2px;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%       { transform: translateY(5px); opacity: 1; }
}

/* Remove old disconnected connector */
.sel-connector { display: none; }

.sel-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.3s;
}

.sel-step:hover .sel-step-number {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

.sel-final-num {
  background: #F2B63A;
  border-color: #F2B63A;
  color: #1A1A1A;
  width: 72px;
  height: 72px;
  font-size: 1.7rem;
}

.sel-step-body {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 22px 26px;
  transition: all 0.3s;
  margin-bottom: 24px; /* space between steps */
}

.sel-step-body-final {
  background: rgba(242, 182, 58, 0.15);
  border-color: rgba(242, 182, 58, 0.35);
  margin-bottom: 0;
}

.sel-step:hover .sel-step-body {
  background: rgba(255,255,255,0.16);
  transform: translateX(4px);
}

/* .sel-step-final .sel-step-body is now handled by .sel-step-body-final */

.sel-step-dates {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.sel-step-final .sel-step-dates {
  color: #F2B63A;
}

.sel-step-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sel-step-final .sel-step-body h3 {
  color: #F2B63A;
}

.sel-step-body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* .selection-img-wrap and .selection-poster removed — replaced by animated infographic */

/* ============================================================
   SELECTION ANIMATED INFOGRAPHIC
   ============================================================ */
.sel-infographic {
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.sel-info-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 16px 0 24px;
}

.sel-info-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: stepPopIn 0.5s ease forwards;
  animation-delay: calc(var(--i) * 0.18s + 0.3s);
}

@keyframes stepPopIn {
  to { opacity: 1; transform: translateY(0); }
}

.sel-info-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  transition: all 0.3s;
  cursor: default;
}

.sel-info-dot:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(255,255,255,0.2);
}

.sel-info-dot-final {
  background: #F2B63A;
  border-color: #F2B63A;
  color: #1A1A1A;
  width: 68px;
  height: 68px;
  font-size: 1.2rem;
  box-shadow: 0 0 0 6px rgba(242,182,58,0.25);
  animation: pulseGold 2s ease-in-out infinite, stepPopIn 0.5s ease forwards;
  animation-delay: 0s, calc(4 * 0.18s + 0.3s);
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 6px rgba(242,182,58,0.25); }
  50%       { box-shadow: 0 0 0 14px rgba(242,182,58,0.08); }
}

.sel-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.35;
  max-width: 80px;
}

.sel-info-line {
  flex: 1;
  min-width: 32px;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0.15));
  position: relative;
  margin-bottom: 32px; /* align with dot center */
  overflow: hidden;
}

.sel-info-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

.sel-info-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  display: inline-block;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sel-info-note strong { color: #F2B63A; }
.stats {
  padding: 72px 0;
  background: #1A1A1A;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #F2B63A;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-unit {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ===== APPLY ===== */
.apply {
  padding: 100px 0;
  background: linear-gradient(135deg, #A43312 0%, #C04A18 50%, #D85F1A 100%);
  position: relative;
  overflow: hidden;
}

.apply-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.apply-ring {
  position: absolute;
  border-radius: 50%;
}

.apply-ring-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border: 1px solid rgba(255,255,255,0.06);
}

.apply-ring-2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  right: -80px;
  border: 1px solid rgba(242,182,58,0.08);
}

.apply-wrapper {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.apply-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.title-nextgen-sm .x-mark {
  color: #F2B63A;
}

.apply-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #F2B63A;
  font-weight: 700;
}

.apply-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.apply-deadline {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(242, 182, 58, 0.15);
  border: 1px solid rgba(242, 182, 58, 0.3);
  border-radius: 10px;
  padding: 12px 18px;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.apply-deadline i {
  color: #F2B63A;
}

.apply-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.apply-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
}

.apply-detail i {
  color: #F2B63A;
  width: 18px;
  text-align: center;
}

/* ---- Apply section Key Visual Logo ---- */
.apply-kv-logo {
  margin-bottom: 22px;
  display: block;
}

.apply-kv-img {
  max-width: 340px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.25));
}

/* Apply Form */
.apply-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.apply-form-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.apply-form-card > p {
  color: #888;
  font-size: 0.875rem;
  margin-bottom: 28px;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e8e4e0;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.875rem;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #F28A16;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242, 138, 22, 0.1);
}

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

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #F28A16;
}

.form-check label {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
}

.form-check a {
  color: #F28A16;
  font-weight: 600;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 3.5rem;
  color: #22c55e;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-brand > p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: #F28A16;
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #F2B63A;
}

.footer-contact {
  gap: 12px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: #F28A16;
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact span,
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B03A12, #F28A16);
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(176, 58, 18, 0.4);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s;
}

.scroll-top.visible {
  transform: translateY(0);
  opacity: 1;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(176, 58, 18, 0.5);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-kv-img { max-width: 420px; }
  .apply-kv-img { max-width: 280px; }
  .journey-track { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .journey-line { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .sel-info-track { gap: 0; }
  .sel-info-line { min-width: 20px; }
  .hero-content { max-width: 600px; margin: 0 auto; text-align: center; }
  .hero-meta { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-duration { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-logo-img { height: 34px; }

  .hero-kv-img { max-width: 100%; border-radius: 0; }
  .about-kv-img { max-width: 100%; }
  .apply-kv-img { max-width: 100%; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(164, 51, 18, 0.97);
    backdrop-filter: blur(12px);
    padding: 16px;
    gap: 4px;
  }

  .nav-links.open { display: flex; }

  .hamburger { display: flex; }

  .navbar { position: fixed; }

  .about-grid,
  .eligibility-grid,
  .apply-wrapper { grid-template-columns: 1fr; gap: 40px; }

  .about-image-col { order: -1; }

  .journey-track { grid-template-columns: 1fr; }
  .journey-line { display: none; }

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

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .stats-grid { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }

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

  .apply-form-card { padding: 0; }

  .sel-step { grid-template-columns: 72px 1fr; }
  .sel-step-left { width: 72px; }
  .nav-logo-img { height: 80px; }
  /* infographic on tablet */
  .sel-info-dot { width: 48px; height: 48px; font-size: 1.1rem; }
  .sel-info-dot-final { width: 54px; height: 54px; }
  .sel-info-label { font-size: 0.7rem; max-width: 66px; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .countdown-blocks { gap: 8px; }
  .cd-num { font-size: 1.6rem; min-width: 44px; }
  .faq-grid { grid-template-columns: 1fr; }
  .sel-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .sel-step-left { width: 56px; }
  .sel-step-number { width: 52px; height: 52px; font-size: 1.2rem; }
  .sel-final-num { width: 58px; height: 58px; font-size: 1.4rem; }
  .nav-logo-img { height: 80px; }
  .footer-logo-img { height: 80px; }
  /* infographic on small mobile */
  .sel-info-track { gap: 0; padding: 10px 8px 20px; }
  .sel-info-dot { width: 40px; height: 40px; font-size: 0.95rem; }
  .sel-info-dot-final { width: 46px; height: 46px; font-size: 0.9rem; }
  .sel-info-label { font-size: 0.62rem; max-width: 54px; }
  .sel-info-line { min-width: 14px; }
  .gform-cta-wrap { padding: 20px 18px; }
  .gform-header { padding: 22px 18px 16px; }
}

/* ============================================================
   COUNTDOWN TIMER — HERO
   ============================================================ */
.hero-countdown {
  margin-bottom: 28px;
}

.countdown-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.countdown-label i {
  color: #F2B63A;
}

.countdown-blocks {
  display: flex;
  align-items: center;
  gap: 10px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 64px;
  backdrop-filter: blur(6px);
}

.cd-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #F2B63A;
  line-height: 1;
  min-width: 52px;
  text-align: center;
  /* flip animation */
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cd-num.flip {
  transform: scaleY(0);
  opacity: 0;
}

.cd-unit {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.cd-colon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ============================================================
   COUNTDOWN TIMER — APPLY SECTION
   ============================================================ */
.apply-countdown-wrap {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.apply-cd-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.apply-cd-label i { color: #F2B63A; }

.apply-countdown-blocks {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.acd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 10px;
  min-width: 56px;
}

.acd-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #F2B63A;
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.acd-num.flip {
  transform: scaleY(0);
  opacity: 0;
}

.acd-unit {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.acd-colon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  animation: blink 1s step-start infinite;
}

.apply-deadline-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.apply-deadline-note strong {
  color: #F2B63A;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: 100px 0;
  background: #faf8f6;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f0ece8;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item.open {
  border-color: #F28A16;
  box-shadow: 0 4px 20px rgba(242, 138, 22, 0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  text-align: left;
  font-size: 0.925rem;
  font-weight: 600;
  color: #1A1A1A;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}

.faq-item.open .faq-q {
  color: #B03A12;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #F28A16;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 18px;
}

.faq-a p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 8px;
}

.faq-a p:last-child { margin-bottom: 0; }

.faq-a ul,
.faq-a ol {
  padding-left: 20px;
  margin-top: 8px;
}

.faq-a li {
  font-size: 0.855rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 5px;
  list-style: disc;
}

.faq-a ol li { list-style: decimal; }

.faq-a strong { color: #1A1A1A; }

.faq-a a {
  color: #F28A16;
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================================
   GOOGLE FORM EMBED — APPLY SECTION (REDESIGNED)
   ============================================================ */
.apply-form-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.gform-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid #f0ece8;
  text-align: center;
}

.gform-header-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #B03A12, #F28A16);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto 12px;
}

.gform-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.gform-header p {
  color: #888;
  font-size: 0.875rem;
  max-width: 340px;
  margin: 0 auto;
}

/* CTA block */
.gform-cta-wrap {
  padding: 24px 32px;
  border-bottom: 1px solid #f0ece8;
  background: linear-gradient(135deg, #fdf4f0, #fff9f5);
}

.gform-checklist {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gform-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #444;
  font-weight: 500;
}

.gform-checklist li i {
  color: #B03A12;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- Prepare label ---- */
.gform-prep-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #B03A12;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ---- Base CTA button ---- */
.btn-apply-gform {
  display: block;
  width: 100%;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  background: linear-gradient(135deg, #A43312 0%, #E8721C 60%, #F2B337 100%);
  box-shadow: 0 10px 32px rgba(164,51,18,0.40);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-apply-gform:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(164,51,18,0.55);
}

.btn-apply-gform:active {
  transform: translateY(0);
}

/* ---- Hero variant (larger) ---- */
.btn-apply-gform--hero .btn-apply-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  gap: 16px;
}

.btn-apply-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.btn-apply-text strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-apply-text small {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
}

.btn-apply-arrow {
  font-size: 1.4rem;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.btn-apply-gform:hover .btn-apply-arrow {
  background: rgba(255,255,255,0.30);
  transform: translateX(4px);
}

/* Shimmer sweep animation on the button */
.btn-apply-gform--hero::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: btnShimmer 2.8s linear infinite;
  pointer-events: none;
}

@keyframes btnShimmer {
  0%   { left: -100%; }
  100% { left: 180%; }
}

/* ---- Urgency strip ---- */
.gform-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #B03A12;
  font-weight: 600;
  background: rgba(176,58,18,0.07);
  border: 1px solid rgba(176,58,18,0.15);
  border-radius: 8px;
  padding: 9px 14px;
  margin-bottom: 0;
}

.gform-urgency i {
  color: #E8721C;
  font-size: 0.9rem;
}

.gform-urgency strong { color: #A43312; }

/* ---- Note footer ---- */
.gform-note {
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-top: 1px solid #f0ece8;
}

/* (gform-placeholder, btn-gform-setup, and legacy iframe styles removed — no longer used) 

.gform-note i { color: #22c55e; }

/* Responsive FAQ & Countdown */
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .countdown-blocks { gap: 8px; }
  .cd-num { font-size: 1.8rem; min-width: 48px; }
  .apply-countdown-blocks { gap: 6px; }
  .acd-num { font-size: 1.6rem; }
  .gform-header { padding: 22px 20px 16px; }
  #googleFormIframe { min-height: 900px; }
}

