 *
 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scrollbar-gutter: stable;
}
:root {
    /* Primary Gradient: #EA8534 -> #A0111A */
    --primary-start: #EA8534;
    --primary-end: #A0111A;
    --primary-gradient: linear-gradient(135deg, #EA8534, #A0111A);
    --primary-gradient-hover: linear-gradient(135deg, #A0111A, #EA8534);

    /* Secondary Color */
    --secondary: #4B2364;
    --secondary-light: rgba(75, 35, 100, 0.08);
    --secondary-medium: rgba(75, 35, 100, 0.12);
    --secondary-dark: #3a1b4f;

    /* Background & Text */
    --bg-body: #FFFFFF;
    --text-dark: #111827;
    --text-gray: #4B5563;
    --text-light-gray: #9CA3AF;
    --white: #FFFFFF;

    /* Cards & Borders */
    --card-bg: #FFFFFF;
    --card-border: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    --radius: 24px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
} 
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.7;
    padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-light);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(75, 35, 100, 0.15);
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.section-title .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 560px;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   HERO / PAGE HEADER (now the top section)
   ============================================================ */
.page-hero {
    padding: 4rem 0 3.5rem;
    background: var(--bg-body);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 133, 52, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .hero-content {
    text-align: center;
}

.page-hero .hero-content .badge .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gradient);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.page-hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-hero h1 .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ============================================================
   OPENINGS SECTION
   ============================================================ */
.openings-section {
    padding: 3rem 0 4rem;
    background: var(--bg-body);
}

.openings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.opening-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 1.8rem 1.8rem 2rem;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.7s ease both;
    animation-delay: calc(0.06s * var(--i, 1));
}

.opening-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition);
}

.opening-card:hover {
    transform: translateY(-6px);
    border-color: rgba(75, 35, 100, 0.2);
    box-shadow: var(--shadow-lg);
}

.opening-card:hover::before {
    opacity: 1;
}

.opening-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all var(--transition);
}

.opening-card:hover .icon-wrap {
    background: var(--secondary-medium);
}

.opening-card .icon-wrap i {
    font-size: 1.4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.opening-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.opening-card .meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-light-gray);
    margin-bottom: 0.8rem;
}

.opening-card .meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.opening-card .meta i {
    color: var(--primary-start);
    font-size: 0.7rem;
}

.opening-card .desc {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.opening-card .btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 0.45rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(234, 133, 52, 0.2);
}

.opening-card .btn-apply:hover {
    background: var(--primary-gradient-hover);
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(160, 17, 26, 0.3);
}

.opening-card .btn-apply i {
    transition: transform var(--transition);
}

.opening-card .btn-apply:hover i {
    transform: translateX(4px);
}

.opening-card .tag {
    display: inline-block;
    background: var(--secondary-light);
    color: var(--secondary);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(75, 35, 100, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
    padding: 4rem 0;
    background: #F9FAFB;
    border-top: 1px solid var(--card-border);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit-item {
    background: var(--card-bg);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    animation: fadeUp 0.7s ease both;
    animation-delay: calc(0.06s * var(--i, 1));
}

.benefit-item:hover {
    transform: translateY(-6px);
    border-color: rgba(75, 35, 100, 0.15);
    box-shadow: var(--shadow-md);
}

.benefit-item .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all var(--transition);
}

.benefit-item:hover .icon-wrap {
    background: var(--secondary-medium);
    transform: scale(1.05);
}

.benefit-item .icon-wrap i {
    font-size: 1.6rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================================
   HIRING PROCESS SECTION
   ============================================================ */
.process-section {
    padding: 4rem 0;
    background: var(--bg-body);
    border-top: 1px solid var(--card-border);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1.5rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    animation: fadeUp 0.7s ease both;
    animation-delay: calc(0.06s * var(--i, 1));
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(75, 35, 100, 0.15);
    box-shadow: var(--shadow-md);
}

.process-step .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 0.8rem;
    box-shadow: 0 4px 16px rgba(234, 133, 52, 0.25);
    transition: all var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(160, 17, 26, 0.3);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.2rem;
}

/* ============================================================
   APPLY FORM SECTION
   ============================================================ */
.apply-section {
    padding: 4rem 0 5rem;
    background: #F9FAFB;
    border-top: 1px solid var(--card-border);
}

.apply-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.apply-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.apply-info h3 .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apply-info p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.apply-info .info-list {
    list-style: none;
    padding: 0;
}

.apply-info .info-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--card-border);
}

.apply-info .info-list li:last-child {
    border-bottom: none;
}

.apply-info .info-list li i {
    width: 24px;
    color: var(--primary-start);
    font-size: 1rem;
}

/* Form */
.apply-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
}

.apply-form .form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.apply-form .form-sub {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.8rem;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.form-group label .required {
    color: var(--primary-end);
    margin-left: 0.2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius-xs);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-body);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px var(--secondary-light);
}

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

.form-group input[type="file"] {
    padding: 0.5rem 0.8rem;
    border: 1.5px dashed var(--card-border);
    background: var(--bg-body);
    cursor: pointer;
}

.form-group input[type="file"]::-webkit-file-upload-button {
    background: var(--secondary-light);
    color: var(--secondary);
    border: none;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
    background: var(--secondary-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.btn-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(234, 133, 52, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-submit:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(160, 17, 26, 0.3);
}

.btn-submit i {
    transition: transform var(--transition);
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .apply-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }

    .page-hero {
        padding: 2.5rem 0 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.4rem;
    }

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

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .apply-form {
        padding: 1.8rem 1.2rem;
    }

    .apply-info {
        text-align: center;
    }

    .apply-info .info-list li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }

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

    .benefit-item {
        padding: 1.2rem 0.8rem;
    }

    .benefit-item .icon-wrap {
        width: 48px;
        height: 48px;
    }

    .benefit-item .icon-wrap i {
        font-size: 1.2rem;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .process-step {
        padding: 1rem 0.6rem;
    }

    .process-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .opening-card {
        padding: 1.4rem 1.2rem 1.6rem;
    }

    .apply-form {
        padding: 1.2rem 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}