/* ==============================
   Modern Reset (no @layer)
   ============================== */
/* 1. Set sensible defaults */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
    font-family: "Source Sans 3", sans-serif;
}

/* 2. Reset lists that have a class */
/* 3. Remove default button styles */
button,
input,
select,
textarea {
    background: none;
    border: none;
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

/* 4. Images & media */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 5. Links */
a {
    text-decoration: none;
    color: inherit;
}

/* 6. Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 6. Tables */
ul,
ol {
    padding-left: 1.5rem;
}

/* Thin */
@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

/* Extra Light */
@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* Light */
@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Regular */
@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* SemiBold */
@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-SemiBold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-SemiBoldItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-BoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Extra Bold */
@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-ExtraBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* HEAVY */
@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-Heavy.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-HeavyItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* Black */
@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Squad';
    src: url('/upload/__pages/internship/font/Squad-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Squad", sans-serif;
}

body {
    font-family: "Source Sans 3", sans-serif;
    color: var(--text-primary);
}

:root {
    --primary: #0C4F2C;
    --on-primary: #FFFFFF;
    --primary-container: #036834;
    --primary-container-high: #00AA58;
    --container: #F4F5F7;
    --accent: #FFCC00;
    --radius-999: 999px;
    --radius-8: 8px;
    --radius-32: 32px;
    --text-primary: #180F0A;
    --header-font-family: "Squad", sans-serif;
    --body-font-family: "Source Sans 3", sans-serif;
}

.frame-part {
    width: 100%;
}

/* BUTTON */
.button {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-8);
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 700;
}

.button.button--secondary {
    background-color: white;
    color: var(--text-primary);
}

.button.button--accent {
    background-color: var(--accent);
}

.button.button--square {
    padding: 1rem;
    max-width: 3.5rem;
}

/* SECTION */
.section {
    padding: 2.5rem 0;
}

.section .section-header {
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--header-font-family);
}

.section .section-title {
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-container-high);
    text-transform: uppercase;
    word-break: keep-all;
}

.section .section-subtitle {
    font-size: 1.5rem;
    line-height: 1.28;
    font-weight: 500;
}

/* LAYOUT */
.row {
    row-gap: var(--bs-gutter-x);
}


.navbar.nav {
    display: flex;
    gap: 0.125rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.nav .nav__link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-999);
    background-color: var(--primary-container);
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav .nav__link:hover {
    background-color: var(--primary-container-high);
    transition: all 0.2s ease-in-out;
}

/* TABS */
.tab-nav {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
}

.tab-nav__link {
    display: flex;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-999);
    background-color: var(--container);
    transition: all ease-in-out;
    text-decoration: none;
    border: 0;
    white-space: nowrap;
}

.tab-nav__link.active {
    font-weight: 700;
    background-color: var(--accent);
    transition: all ease-in-out;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* FADE AND SHOW */
.fade {
    transition: opacity .15s linear;
}

.fade:not(.show) {
    opacity: 0;
}

/* LINKS */

.cover-link::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

@media (min-width: 992px) {

    /* SECTION */
    .section {
        padding: 5rem 0;
    }

    .section .section-header {
        margin-bottom: 2.5rem;
    }

    .section .section-title {
        font-size: 4.5rem;
    }

    .section .section-subtitle {
        font-size: 1.5rem;
        line-height: 1.28;
        font-weight: 500;
    }
}

/* ============================================================
   TABLE OF CONTENTS
   1. Header
   2. Footer
   3. Hero (Main)
   4. Hero (Detail/Inner pages)
   5. Course Cards
   6. Benefit Cards
   7. Perks Cards
   8. Feedback Section
   9. Form Section
   10. Steps Section
   11. Description Block
   12. Requirements
   13. Experience Card Slider
   14. Dropzone
   15. Magnetic
   16. Utilities
   17. Media Queries (min-width: 992px)
============================================================ */


/* ============================================================
   1. HEADER
============================================================ */
body:has(.intern-header.is-fixed) {
    padding-top: 6rem;
}

.intern-header.is-fixed {
    position: fixed;
    z-index: 400;
    top: 0;
    left: 0;
    width: 100%;
}

.intern-header-wrapper {
    background-color: var(--primary);
    color: var(--on-primary);
    padding: 1.5rem 0;
}

.header-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.header .header-nav {
    flex-grow: 1;
}

.header .header-logo__img {
    height: 3.5rem;
}

.header-action .button {
    padding: .5rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    font-weight: 500;
    width: 200px;
    justify-content: center;
}

/* Hamburger trigger */
.header-controls {
    display: flex;
    order: 1;
    gap: .5rem;
    align-items: center;
}

.header-mobile-trigger {
    display: flex;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-999);
    background-color: #036834;
    position: relative;
    z-index: 501;
}

.header-mobile-trigger .close-x,
.header-mobile-trigger.is-open .hamburger {
    display: none;
}

.header-mobile-trigger.is-open .close-x {
    display: inline;
}

/* DROPDOWN */

.dropdown-menu {
    position: absolute;
    display: none;
    padding: 0.5rem 0;
    background-color: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    list-style: none;
    margin: 0;
    flex-direction: column;
    overflow: hidden;
}

.dropdown-menu li {
    margin-bottom: 0;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #000;
    display: flex;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f0f0f0;
}

/* TOP HEADER ACTIONS */


.top-header.top-header--mobile .top-header-action {
    padding: 0 0.5rem;
}

.top-header-action {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 1.25rem;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}

.top-header-action_v2 .top-header-action__content {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-header-action__chevron {
    flex-shrink: 0;
    color: var(--color-white);
    transition: transform 0.3s ease-in-out;
}

.top-header-action_v2 .top-header-action__text {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
}

.top-header-action_v2.show .top-header-action__chevron {
    transform: rotate(180deg);
}

@media (max-width: 1080px) {


    .top-header-action__chevron {
        display: none;
    }

    .top-header-action__text {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-primary);
    }


}


/* Navbar drawer */
.header-navbar {
    display: none;
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.header-navbar.is-open {
    display: flex;
    position: fixed;
    right: 0;
    top: 0;
    width: 80%;
    height: 100%;
    flex-direction: column;
    z-index: 500;
    padding: 1.5rem;
    background: #0C4F2C;
    transform: translateX(0);
}

.header-navbar.is-open .header-nav {
    margin-top: 7.5rem;
}

.header-navbar.is-open .navbar.nav {
    gap: 0.5rem;
    flex-direction: column;
}

.header-navbar.is-open .nav .nav__link {
    justify-content: center;
}

.header-navbar.is-open .action__item .button {
    width: 100%;
    justify-content: center;
}

.header-navbar.no-transition {
    transition: none !important;
}

/* Backdrop */
#nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 300ms cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0ms linear 300ms;
    z-index: 98;
}

#nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    transition:
        opacity 300ms cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0ms linear 0ms;
}

/* Scroll lock */
body.drawer-open {
    overflow: hidden;
}


/* ============================================================
   2. FOOTER
============================================================ */
.footer-main {
    background-color: #00592B;
    color: var(--on-primary);
    padding: 1.5rem 0;
}

.footer-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.footer-row:not(:last-child) {
    margin-bottom: 2rem;
}

.footer-action .button {
    white-space: nowrap;
}

.copyright-text {
    font-size: 0.875rem;
    line-height: 1;
    opacity: 0.5;
    text-align: center;
    margin: 0 auto;
}


/* ============================================================
   3. HERO (Main — homepage)
============================================================ */
.hero-section {
    background-color: var(--primary);
    overflow: hidden;
    position: relative;
}

.hero-section .frame-part {
    position: absolute;
    bottom: 0;
}

.hero {
    padding: 5rem 0;
    background-color: var(--primary);
    color: var(--on-primary);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero .hero__label {
    display: flex;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-999);
    background-color: var(--accent);
    color: var(--text-primary);
    font-size: 0.875rem;
    line-height: 1.28rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero .hero__title {
    font-size: 2.5rem;
    line-height: 0.8;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
    color: #1de585;
    letter-spacing: -2px;
    text-transform: uppercase;
    max-width: 1000px;
    font-family: var(--header-font-family);
    position: relative;
}

.hero .hero__title span {
    font-size: 44px;
    letter-spacing: -2px;
    line-height: 0.8;
    font-weight: 700;
    position: relative;
    z-index: 10;
}

.hero .hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    font-family: var(--header-font-family);
    text-align: center;
}

.hero .hero__cta .button {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
}

/* Hero icons */
.hero-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.hero-icon-1 {
    top: -6rem;
    right: -2rem;
    z-index: 1;
}

.hero-icon-2 {
    bottom: -8rem;
    left: -2rem;
    transform: rotate(-30deg);
    z-index: 11;
    width: 96px;
    height: 96px;
}

/* Hero video */
.hero-video {
    width: 90%;
    margin: 0 auto 7rem;
    transform-origin: top center;
    transition: transform 0.12s linear;
    will-change: transform;
}

/* Directions tab */
.directions-tab .tab-nav {
    overflow-x: auto;
    justify-content: flex-start;
    max-width: 860px;
    margin: 0 auto 1.5rem;
}


/* ============================================================
   4. HERO (Detail / Inner pages)
============================================================ */
.hero .hero__tag-list {
    display: flex;
    gap: 2px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero .hero__city {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 4rem;
}

.hero__icon {
    width: 136px;
    height: 136px;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.tag {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-999);
    border: 1px solid #036834;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
}


/* ============================================================
   5. COURSE CARDS
============================================================ */
.course-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-32);
    background-color: var(--container);
    height: 100%;
    min-height: 285px;
    transition: 0.2s all ease-in-out;
    position: relative;
}

.course-card:hover {
    transform: scale(1.01);
    transition: 0.2s all ease-in-out;
}

.course-card .course-card__head {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
}

.course-card .course-card__body {
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

.course-card .course-card__body-head {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: var(--header-font-family);
    margin-bottom: auto;
}

.course-card .course-card__body-footer {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.course-card .course-card__title {
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 600;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 5.25rem;

}

.course-card .course-card__text {
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 600;
}

.course-card .course-card__desc {
    font-size: 0.875rem;
    line-height: 1.28;
}

.course-card .course-card__action {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-shrink: 0;
}

.course-card .course-card__meta-label {
    display: flex;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-999);
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 600;
    background-color: var(--container);
}

.course-card .course-card__meta-label.course-card__meta-label--success {
    background-color: #d2fac3;
    color: var(--primary);
}

.load-more-button.button {
    display: flex;
    margin: .5rem auto 0;
    background-color: var(--container);
    gap: .5rem;
}

.load-more-row {
    display: none;
    margin-top: 1.25rem;
}


/* ============================================================
   6. BENEFIT CARDS
============================================================ */
.cards-wrapper {
    display: flex;
    align-items: center;
    overflow-x: auto;
    position: relative;
    gap: 0.5rem;
    margin-right: calc(var(--bs-gutter-x) *-.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.benefit-card-wrapper {
    display: flex;
    padding: 1rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    align-items: center;
    background-color: var(--container);
    border-radius: var(--radius-32);
    padding: 1.5rem;
    height: 386px;
    width: 250px;
    transform-box: fill-box;
}

.benefit-card-wrapper:nth-child(even) .benefit-card {
    transform: rotate(2.5deg);
    background-color: #f4f5f7;
}

.benefit-card-wrapper:nth-child(odd) .benefit-card {
    transform: rotate(-2.5deg);
    background-color: #ebedf0;
}

.benefit-card .benefit-card__img img {
    width: 88px;
    height: 88px;
    object-fit: cover;
}

.benefit-card .benefit-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.benefit-card .benefit-card__title {
    font-size: 1.375rem;
    font-family: var(--header-font-family);
    line-height: 1.1;
    font-weight: 600;
}

.benefit-card .benefit-card__subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.cards-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 0;
}

.cards-cta .button {
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
}


/* ============================================================
   7. PERKS CARDS
============================================================ */
.perks-card {
    display: flex;
    padding: 1.5rem;
    gap: 1rem;
    border-radius: var(--radius-32);
    background-color: var(--container);
    align-items: center;
}

.perks-card .perks-card__img {
    flex-shrink: 0;
}

.perks-card .perks-card__img img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.perks-card .perks-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.perks-card .perks-card__title {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.1;
    font-family: var(--header-font-family);
}

/* Variant */
.perks-card.perks-card--second .perks-card__img img {
    width: 3.5rem;
    height: 3.5rem;
}

.perks-card.perks-card--second .perks-card__title {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 600;
}


/* ============================================================
   8. FEEDBACK SECTION
============================================================ */
.feedback-section {
    background-color: #00592B;
}

.feedback-section .section-title {
    color: #1de585;
}

.feedback-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 2rem;
    background-color: #036834;
    color: white;
}

.feedback-card .feedback-card__icon {
    margin-bottom: 0.75rem;
}

.feedback-card .feedback-card__content {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.feedback-card .feedback-card__title {
    font-family: var(--header-font-family);
    font-size: 2.125rem;
    font-weight: 600;
    line-height: 1.1;
}

.feedback-card .feedback-card__footer {
    display: flex;
    align-items: center;
}

.feedback-card .feedback-card__info {
    opacity: 0.8;
    flex-grow: 1;
}

.leave-feedback {
    padding: 2.5rem 0;
    color: white;
    font-family: var(--header-font-family);
    font-size: 2.125rem;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
}

.leave-feedback .leave-feedback__contact {
    color: #1de585;
    font-size: 1.5rem;
}


/* ============================================================
   9. FORM SECTION
============================================================ */
.form-section {
    background-color: #00592B;
}

.form-section .section-header {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.form-section.section .section-title {
    margin-bottom: 0.75rem;
    color: #086E39;
}

.form-wrapper {
    padding: 2rem 1.5rem 1.5rem;
    background-color: white;
    border-radius: 1.5rem;
}

.intern-form {
    max-width: 480px;
    margin: 0 auto 1.5rem;
}

.form-control {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-control__label a {
    text-decoration: underline;
}

.form-control .minmax-label {
    font-size: 13px;
    line-height: 1.5;
    color: #83888F;
    opacity: .6;
    padding: 0 1rem;
    text-align: end;
}

textarea {
    resize: vertical;
}

.form-control .form-control__label {
    font-size: 0.875rem;
    line-height: 1.4;
}

.form-control__label a {
    text-decoration: underline !important;
}

.button:disabled {
    background-color: var(--container);
    color: #aaa;
    cursor: not-allowed;
}

.form-control .form-control__el {
    padding: 1rem;
    display: inline-flex;
    background-color: var(--container);
    border-radius: 0.75rem;
}

.form-control .form-control__el::placeholder {
    color: #83888f;
}

.form-toggle {
    display: inline-flex;
    gap: 0.5rem;
}

.form-toggle .form-toggle__el {
    flex-shrink: 0;
    border: 1px solid var(--container);
    width: 1.25rem;
    height: 1.25rem;
    margin: 2px;
    background-color: var(--container);
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    border-radius: 6px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.form-toggle .form-toggle__el:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-toggle .form-toggle__el::before {
    content: "";
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    background-color: transparent;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2214%22%20height%3D%2210%22%20viewBox%3D%220%200%2014%2010%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12.8999%200.899902L4.6499%208.8999L0.899902%205.26354%22%20stroke%3D%22black%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E") no-repeat center/contain;
    mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2214%22%20height%3D%2210%22%20viewBox%3D%220%200%2014%2010%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12.8999%200.899902L4.6499%208.8999L0.899902%205.26354%22%20stroke%3D%22black%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E") no-repeat center/contain;
}

.form-toggle .form-toggle__el:checked::before {
    background-color: var(--text-primary);
}

.intern-form-submit {
    display: flex;
}

.intern-form-submit .button {
    width: 100%;
    justify-content: center;
}


/* ============================================================
   10. STEPS SECTION
============================================================ */
.steps-section.section .section-header {
    max-width: 487px;
    text-align: left;
    position: sticky;
    top: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: var(--container);
    border-radius: 2rem;
    padding: 1.875rem 2rem;
}

.step-card.step-card--plus {
    background-color: white;
    border: 1px solid #E9ECF2;
}

.step-card.step-card--plus .step-card__title {
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.step-card .step-card__label {
    align-self: flex-start;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-999);
    background-color: var(--accent);
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 600;
}

.step-card .step-card__title {
    font-size: 1.5rem;
    line-height: 1.17;
    font-weight: 600;
    font-family: var(--header-font-family);
}

.step-card .step-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-card .step-card__text p:not(:last-child) {
    margin-bottom: 1rem;
}


/* ============================================================
   11. DESCRIPTION BLOCK
============================================================ */
.description-block {
    padding: 1.5rem;
    border-radius: 30px;
    background-color: var(--container);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.description__title {
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 600;
    flex-shrink: 0;
}

.description__text {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}


/* ============================================================
   12. REQUIREMENTS
============================================================ */
.requirement-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background-color: var(--container);
}

.requirement-card .requirement-card__icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 800;
    background-color: var(--primary-container-high);
    color: var(--on-primary);
    border-radius: var(--radius-999);
    flex-shrink: 0;
}

.requirement-card .requirement-card__title {
    font-size: 1rem;
    line-height: 1.37;
    font-weight: 600;
    font-family: var(--header-font-family);
}


/* ============================================================
   13. EXPERIENCE CARD SLIDER
============================================================ */
.what-to-expect-section {
    overflow-x: hidden;
}

.ex-card-slider {
    position: relative;
    width: 284px;
    height: 412px;
    margin: 100px auto;
    perspective: 1000px;
}

.ex-card {
    --icon-color: #1DE585;
    --bg-color: #036834;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 1.5rem;
    background-color: var(--bg-color);
    padding: 1.875rem 2rem;
    align-items: center;
    color: white;
    text-align: center;
    gap: 1.5rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    user-select: none;
    transform-origin: bottom center;
    cursor: grab;
}

/* Color variants */
.ex-card:nth-child(1) {
    --icon-color: #FFD4B9;
    --bg-color: #E75F0B;
}

.ex-card:nth-child(2) {
    --icon-color: #FFE1BC;
    --bg-color: #FFAC47;
}

.ex-card:nth-child(3) {
    --icon-color: #1DE585;
    --bg-color: #036834;
}

.ex-card:nth-child(4) {
    --icon-color: #55D2F8;
    --bg-color: #1D9CC3;
}

.ex-card:nth-child(5) {
    --icon-color: #FFD4B9;
    --bg-color: #E75F0B;
}

/* Slider states */
.ex-card.active {
    transform: translateX(-50%) rotate(0deg) scale(1);
    z-index: 3;
    opacity: 1;
}

.ex-card.prev {
    transform: translateX(-60%) rotate(-5deg) scale(0.9);
    z-index: 2;
    opacity: 1;
}

.ex-card.next {
    transform: translateX(-40%) rotate(5deg) scale(0.9);
    z-index: 2;
    opacity: 1;
}

.ex-card:not(.active):not(.prev):not(.next) {
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    z-index: 1;
}


/* ============================================================
   14. DROPZONE
============================================================ */
.dropzone {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: var(--container);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.dropzone-main {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dropzone-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dropzone-title {
    font-weight: 600;
}

.dropzone-subtitle {
    font-size: 0.875rem;
}

.dropzone-button {
    flex-shrink: 0;
}

.dropzone-button .button {
    padding: 0.75rem 1rem;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    cursor: pointer;
    gap: 0.5rem;
}

.dropzone-file-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropzone-file-list:empty {
    display: none;
}

.dropzone-file {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: white;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    align-items: center;
}

.dropzone-file-name {
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #086E39;
    font-weight: 500;
}

.dropzone-file-x {
    margin-left: auto;
    cursor: pointer;
}

.file-input {
    display: none;
}

.error-message {
    color: red;
}

.error-message:empty {
    display: none;
}


/* ============================================================
   15. MAGNETIC
============================================================ */
.magnetic {
    transition: transform 0.2s ease-out;
    will-change: transform;
}


/* ============================================================
   16. UTILITIES
   (tag already declared in Hero Detail — listed here for ref)
============================================================ */


/* ============================================================
   17. Form errors
============================================================ */
.intern-alert {
    display: flex;
    padding: 1rem 2rem;
    border-radius: 2rem;
    background-color: var(--container);
    font-family: var(--header-font-family);
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
    justify-content: center;
    font-weight: 600;
}

.intern-alert-error {
    color: red;
    background-color: rgba(255, 96, 96, 0.5);
}

.intern-alert-success {
    color: green;
    background-color: rgba(29, 229, 133, 0.3);
}

/* ============================================================
   18. MEDIA QUERIES — min-width: 992px
============================================================ */
@media (min-width: 992px) {

    /* Header */
    .header-mobile-trigger {
        display: none;
    }

    .header-navbar {
        display: flex;
        flex-grow: 1;
        gap: 0;
        transform: translateX(0);
        /* reset drawer transform on desktop */
    }

    .header-wrapper {
        justify-content: flex-start;
    }

    .header-logo {
        display: flex;
        width: 270px;
    }

    .header-action {
        display: flex;
        width: max-content;
        justify-content: flex-end;
        align-items: center;
    }

    /* Footer */
    .footer-row {
        flex-direction: row;
        gap: 78px;
    }

    .footer-row:not(:last-child) {
        margin-bottom: 1.875rem;
    }

    /* Hero (main) */
    .hero-section .hero {
        padding: 10rem 0;
    }

    .hero .hero__label {
        font-size: 1.125rem;
        line-height: 1.5rem;
        font-weight: 600;
    }

    .hero .hero__title {
        font-size: 150px;
        margin-bottom: 1rem;
        letter-spacing: -6px;
    }

    .hero .hero__title span {
        font-size: 124px;
        letter-spacing: -4.96px;
    }

    .hero .hero__subtitle {
        font-size: 1.5rem;
        line-height: 1.2;
        font-weight: 500;
        margin-bottom: 3rem;
    }

    .directions-tab .tab-nav {
        overflow-x: visible;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto 2.5rem;
    }

    /* Hero icons */
    .hero-icon {
        width: 138px;
        height: 138px;
    }

    .hero-icon-1 {
        top: 2rem;
        right: -1.25rem;
        transform: rotate(10deg);
    }

    .hero-icon-2 {
        bottom: -5rem;
        left: -2rem;
        width: 165px;
        height: 165px;
    }

    /* Hero video */
    .hero-video {
        margin: 0 auto 3rem;
        transform: translateY(-460px) rotate(-10deg) scale(0.12);
    }

    /* Hero (detail) */
    .hero {
        padding: 4rem 0;
    }

    .hero__icon {
        width: 184px;
        height: 184px;
    }

    .hero .hero__city {
        font-size: 1.5rem;
        line-height: 1.28;
        font-weight: 500;
        margin-bottom: 2rem;
    }

    /* Dropzone */

    .dropzone-main {
        flex-direction: row;
        align-items: center;
    }

    /* Course cards */
    .course-card {
        min-height: 416px;
    }

    .course-card .course-card__head {
        padding: 1.5rem 2rem;
    }

    .course-card .course-card__body {
        padding: 0 2rem 2rem;
    }

    .course-card .course-card__title {
        font-size: 2.125rem;
        line-height: 1.1;
        max-height: 7rem;
    }

    .course-card .course-card__body-footer {
        gap: 0;
        align-items: stretch;
        flex-direction: column;
    }

    .course-card .course-card__desc {
        font-size: 1rem;
        line-height: 1.5;
    }

    .load-more-button.button {
        margin: 1rem auto 0;
    }

    .load-more-row {
        margin-top: 2rem;
    }

    /* Perks cards */
    .perks-card {
        padding: 2rem;
        gap: 1.5rem;
        height: 180px;
    }

    .perks-card .perks-card__img img {
        width: 4rem;
        height: 4rem;
    }

    .perks-card .perks-card__title {
        font-size: 1.875rem;
        font-weight: 700;
    }

    /* Benefit cards */
    .cards-wrapper {
        flex-direction: column;
        align-items: center;
        overflow-x: unset;
        margin-left: 0;
        margin-right: 0;
        padding-right: 0;
        padding-left: 0;
    }

    .benefit-card-wrapper {
        position: sticky;
        top: 0;
        height: 70vh;
        align-items: flex-end;
        scroll-snap-align: center;
    }

    .benefit-card {
        gap: 2.5rem;
        padding: 1.875rem 2.5rem;
        height: 512px;
        width: 384px;
    }

    .benefit-card .benefit-card__img img {
        width: 120px;
        height: 120px;
    }

    .benefit-card .benefit-card__title {
        font-size: 2.125rem;
    }

    .benefit-card .benefit-card__subtitle {
        font-size: 1.125rem;
        font-weight: 600;
        line-height: 1.5rem;
    }

    .cards-cta {
        height: 30vh;
    }

    /* Start section */
    .start-section .section-title {
        text-align: left;
    }

    .start-section .section-header {
        height: 100vh;
        display: flex;
        align-items: center;
        position: sticky;
        top: 0;
    }

    /* Description block */
    .description-block {
        padding: 1.875rem 2rem;
        flex-direction: row;
    }

    .description__title {
        font-size: 2.5rem;
        line-height: 1.1;
        width: 430px;
        flex-shrink: 0;
    }

    .description__text {
        font-size: 1.125rem;
        line-height: 1.5rem;
        font-weight: 600;
    }

    /* Experience card slider */
    .ex-card {
        border-radius: 2rem;
        padding: 1.875rem 2rem;
        gap: 1.5rem;
    }

    .ex-card-slider {
        width: 384px;
        height: 512px;
    }

    .ex-card.prev {
        transform: translateX(-120%) rotate(-15deg) scale(0.9);
    }

    .ex-card.next {
        transform: translateX(20%) rotate(15deg) scale(0.9);
    }

    /* FEEDBACK */

    .leave-feedback .leave-feedback__contact {
        font-size: inherit;
    }

    /* REQUIREMENTS */

    .requirement-card {
        gap: 2rem;
        padding: 1.875rem;
        border-radius: 30px;
    }

    .requirement-card .requirement-card__icon {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
        line-height: 1.2;
    }

    .requirement-card .requirement-card__title {
        font-size: 1.5rem;
        line-height: 1.17;
    }

    /* FORM */

    .form-wrapper {
        padding: 3rem 2rem 2rem;
    }
}