/* =========================
   Internship Training Page
   Brand: Orange + Grey
========================= */

:root {
  --brand-orange: #fc2c00;
  --brand-orange-dark: #d82600;

  --dark: #202124;
  --heading: #1f2933;
  --text: #5f6673;
  --muted: #7a818c;

  --grey-bg: #f6f7f8;
  --soft-grey: #eef0f2;
  --card-grey: #fafafa;
  --white: #ffffff;

  --border: #e2e5e9;
  --border-dark: #d6d9de;

  --shadow-soft: 0 12px 32px rgba(32, 33, 36, 0.06);
  --shadow-hover: 0 18px 42px rgba(32, 33, 36, 0.1);

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

/* Common */

.internship-hero-section,
.student-focus-strip,
.internship-highlight-section,
.who-should-join-section,
.tracks-section,
.process-section,
.benefits-section,
.location-section,
.faq-section,
.final-cta-section {
  position: relative;
  overflow: hidden;
}

.page-label,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.page-label::before,
.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.hero-heading,
.hero-side-card h2,
.highlight-wrapper h2,
.who-should-join-section h2,
.tracks-section h2,
.process-section h2,
.benefits-section h2,
.location-section h2,
.faq-section h2,
.final-cta-box h2 {
  color: var(--heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.7px;
}

.hero-heading {
  font-size: clamp(34px, 4.6vw, 58px);
  margin-bottom: 18px;
}

.hero-side-card h2,
.highlight-wrapper h2,
.who-should-join-section h2,
.tracks-section h2,
.process-section h2,
.benefits-section h2,
.location-section h2,
.faq-section h2,
.final-cta-box h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 14px;
}

.hero-subtext {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 14px;
}

.hero-text,
.section-sub,
.student-card p,
.track-card p,
.process-card p,
.benefit-card p,
.faq_list p,
.location-box p,
.highlight-wrapper p,
.hero-side-card li,
.highlight-point span,
.mini-stat-box span,
.final-cta-box p {
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
}

.section-sub {
  max-width: 760px;
  margin: 0 auto;
}

/* Buttons */

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-orange);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(252, 44, 0, 0.18);
  transition: all 0.25s ease;
}

.btn-main:hover {
  background: var(--brand-orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(252, 44, 0, 0.22);
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--dark);
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid var(--border-dark);
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-secondary-custom:hover {
  background: var(--grey-bg);
  color: var(--dark);
  border-color: var(--brand-orange);
  transform: translateY(-2px);
}

/* Hero */

.internship-hero-section {
  background:
    radial-gradient(circle at top right, rgba(252, 44, 0, 0.06), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f6f7f8 100%);
  padding-top: 90px;
  padding-bottom: 80px;
}

.hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-mini-points span {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-side-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.hero-side-card h2 {
  font-size: 28px;
}

.hero-side-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-side-card li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--soft-grey);
  font-weight: 600;
}

.hero-side-card li:last-child {
  border-bottom: none;
}

.hero-side-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--brand-orange);
  font-weight: 900;
}

/* Top Strip */

.student-focus-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mini-stat-box {
  background: var(--card-grey);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  height: 100%;
  transition: all 0.25s ease;
}

.mini-stat-box:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.mini-stat-box strong {
  display: block;
  font-size: 18px;
  color: var(--heading);
  margin-bottom: 6px;
}

/* Highlight Section */

.internship-highlight-section {
  background: var(--grey-bg);
}

.highlight-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow-soft);
}

.highlight-points-box {
  display: grid;
  gap: 14px;
}

.highlight-point {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.highlight-point strong {
  display: block;
  font-size: 17px;
  color: var(--heading);
  margin-bottom: 4px;
}

/* Cards */

.who-should-join-section {
  background: var(--white);
}

.tracks-section {
  background: var(--grey-bg);
}

.benefits-section {
  background: var(--white);
}

.student-card,
.track-card,
.process-card,
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: 0 8px 24px rgba(32, 33, 36, 0.035);
  transition: all 0.25s ease;
}

.student-card:hover,
.track-card:hover,
.process-card:hover,
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-dark);
}

.student-card h3,
.track-card h3,
.process-card h3,
.benefit-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 10px;
}

.track-badge {
  display: inline-block;
  background: var(--soft-grey);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.track-link {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 800;
  color: var(--brand-orange);
  text-decoration: none;
}

.track-link:hover {
  color: var(--brand-orange-dark);
}

/* Process */

.process-section {
  background: var(--grey-bg);
}

.process-wrapper {
  background: var(--white);
  border-radius: 30px;
  padding: 42px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.process-no {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 15px;
}

/* Location */

.location-section {
  background: var(--white);
}

.location-box {
  background:
    radial-gradient(circle at top right, rgba(252, 44, 0, 0.08), transparent 30%),
    linear-gradient(135deg, #2b2f36 0%, #181b20 100%);
  color: var(--white);
  padding: 42px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.location-box h2,
.location-box p {
  color: var(--white);
}

.location-box p {
  opacity: 0.86;
}

.location-box .section-label {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-tags span {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* FAQ */

.faq-section {
  background: var(--grey-bg);
}

.compact-faq {
  max-width: 900px;
  margin: 0 auto;
}

.compact-faq h3 {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: 18px 20px 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin: 0;
}

.compact-faq p {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 0 20px 18px;
  margin-bottom: 16px;
}

/* Final CTA */

.final-cta-section {
  background: var(--white);
}

.final-cta-box {
  background:
    linear-gradient(135deg, #f6f7f8 0%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 52px 30px;
  box-shadow: var(--shadow-soft);
}

.final-cta-box p {
  max-width: 760px;
  margin: 0 auto;
}

/* Responsive */

@media (max-width: 991px) {
  .internship-hero-section {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .highlight-wrapper,
  .process-wrapper,
  .location-box,
  .final-cta-box,
  .hero-side-card {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .internship-hero-section {
    padding-top: 55px;
    padding-bottom: 50px;
  }

  .hero-heading {
    font-size: 32px;
  }

  .hero-subtext {
    font-size: 18px;
  }

  .btn-main,
  .btn-secondary-custom {
    width: 100%;
  }

  .hero-mini-points span {
    width: 100%;
    text-align: center;
  }

  .highlight-wrapper,
  .process-wrapper,
  .location-box,
  .final-cta-box,
  .hero-side-card {
    padding: 24px;
    border-radius: 22px;
  }

  .student-card,
  .track-card,
  .process-card,
  .benefit-card {
    padding: 22px;
  }

  .mini-stat-box strong {
    font-size: 16px;
  }

  .mini-stat-box span {
    font-size: 14px;
  }
}