/* ----------------------------------------------------
   Scankart Coming Soon & Hiring Interns landing page
   Design Theme: Slate Dark Navy & Glowing Green Accents
------------------------------------------------------- */

:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #030712;
    --bg-card: rgba(17, 24, 39, 0.6);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(34, 197, 94, 0.25);
    
    --accent-green: #22c55e;
    --accent-green-rgb: 34, 197, 94;
    --accent-emerald: #10b981;
    --accent-emerald-rgb: 16, 185, 129;
    --accent-cyan: #06b6d4;
    --accent-cyan-rgb: 6, 182, 212;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 25px rgba(34, 197, 94, 0.25);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Ambient Background Glows */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.15;
    animation: drift 25s infinite alternate ease-in-out;
}

.bg-glow-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.4) 0%, rgba(16, 185, 129, 0) 70%);
}

.bg-glow-2 {
    top: 40%;
    right: -200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, rgba(34, 197, 94, 0) 70%);
    animation-delay: -5s;
}

.bg-glow-3 {
    bottom: -100px;
    left: 10%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(6, 182, 212, 0) 70%);
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 50px) scale(1.15);
    }
}

/* Typography & Links */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, #a7f3d0 70%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent-green);
}

.link-accent {
    color: var(--accent-green);
    position: relative;
}

.link-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-green);
    transition: var(--transition-normal);
}

.link-accent:hover::after {
    width: 100%;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    max-width: 800px;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-green);
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 9999px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Grids */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gap-md {
    gap: 2rem;
}

.gap-lg {
    gap: 2.5rem;
}

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

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: var(--transition-normal);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    transition: var(--transition-normal);
}

.logo-link:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #fff 40%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text.text-sm {
    font-size: 1.15rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--accent-green);
}

.btn-nav:hover {
    background: var(--accent-green);
    color: #030712;
    border-color: var(--accent-green);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.btn-primary {
    background: var(--accent-green);
    color: #030712;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    background: #4ade80;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-emerald));
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: var(--transition-normal);
}

.btn-glow:hover::after {
    opacity: 0.5;
}

.btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    display: flex;
    gap: 0.5rem;
}

/* Hero Section */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 6rem;
    text-align: center;
    position: relative;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-container {
    margin-bottom: 2rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e2e8f0;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-top: 3.5rem;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.countdown-box {
    flex: 1;
    min-width: 100px;
    padding: 1.5rem 1rem;
    text-align: center;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.countdown-box:hover {
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-3px);
}

.countdown-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 500;
}

/* Benefit/Feature Cards */
.benefit-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
    transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--accent-green);
    color: #030712;
    transform: scale(1.05) rotate(-3deg);
}

.benefit-icon {
    width: 24px;
    height: 24px;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Flexible aligned layout for benefits */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.benefits-grid .benefit-card {
    flex: 1 1 320px;
    max-width: 360px;
}

/* Roles Layout */
.roles-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.roles-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.role-tab {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 1.1rem 1.5rem;
    border-radius: 0.75rem;
    color: var(--text-muted);
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-normal);
}

.role-tab:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.role-tab.active {
    color: var(--text-main);
    border-color: var(--accent-green);
    background: rgba(34, 197, 94, 0.05);
    box-shadow: var(--shadow-sm);
}

.role-tab-icon {
    font-size: 1.25rem;
}

.roles-content-panel {
    min-height: 420px;
    padding: 3rem;
}

.role-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.role-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.role-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.role-title-detail {
    font-size: 1.8rem;
    font-weight: 700;
}

.role-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
    color: var(--accent-cyan);
}

.role-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.role-sub-heading {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.role-points-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.role-points-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.point-icon {
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 0.15rem;
}

.role-points-list li strong {
    color: var(--text-main);
}

.role-action-container {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

/* Candidate Profile (Audience) */
.criteria-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.criteria-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(16,185,129,0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.criteria-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.criteria-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-green) 0%, rgba(34, 197, 94, 0.1) 100%);
    z-index: 1;
}

.process-step {
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.process-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.step-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.process-step:hover .process-icon {
    border-color: var(--accent-green);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.process-step:hover .step-num {
    color: var(--accent-green);
}

.process-content {
    flex: 1;
    padding: 1.75rem 2rem;
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Info Callout */
.section-info-callout {
    padding: 2rem 0;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 0.75rem;
    align-items: flex-start;
}

.border-glow-amber {
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.03);
}

.border-glow-amber:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

.info-icon {
    font-size: 1.5rem;
    line-height: 1;
    padding-top: 0.15rem;
}

.info-text {
    font-size: 0.95rem;
    color: #f1f5f9;
}

.info-text strong {
    color: #fbbf24;
}

/* Apply Section Layout */
.apply-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}

/* Contact card left */
.contact-card {
    padding: 2.5rem;
}

.contact-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.contact-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    flex-shrink: 0;
}

.contact-icon {
    width: 22px;
    height: 22px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.contact-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
}

/* Apply Form wrapper right */
.apply-form-wrapper {
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.15);
    background: rgba(15, 23, 42, 0.8);
}

.form-group select option {
    background-color: var(--bg-primary);
    color: var(--text-main);
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.form-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-green);
    margin-top: 0.15rem;
    cursor: pointer;
}

.form-checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

/* Spinner */
.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(3, 7, 18, 0.2);
    border-radius: 50%;
    border-top-color: #030712;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

.hidden {
    display: none !important;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success State styling */
.form-success-message {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
}

.success-icon-anim {
    margin-bottom: 2rem;
}

.success-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.success-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 420px;
}

.circle-draw {
    stroke-dasharray: 188;
    stroke-dashoffset: 188;
    animation: drawCircle 0.8s ease-in-out forwards;
}

.check-draw {
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
    animation: drawCheck 0.5s 0.6s ease-in-out forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

/* Footer Section */
.footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    padding: 4rem 0 3rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 450px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3.25rem;
    }
    
    .roles-layout {
        grid-template-columns: 240px 1fr;
        gap: 2rem;
    }
    

}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .nav {
        display: none; /* Hide standard nav list on mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2.5rem;
    }
    
    .countdown-container {
        gap: 0.75rem;
    }
    
    .countdown-box {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    

    
    .roles-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .roles-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .role-tab {
        padding: 0.8rem 1.2rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .roles-content-panel {
        padding: 2rem;
        min-height: auto;
    }
    
    .role-title-detail {
        font-size: 1.5rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-icon {
        width: 42px;
        height: 42px;
    }
    
    .step-num {
        font-size: 0.95rem;
    }
    
    .process-content {
        padding: 1.25rem 1.5rem;
    }
    
    .apply-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .apply-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .roles-tabs {
        gap: 0.5rem;
    }
    
    .role-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .roles-content-panel {
        padding: 1.5rem 1rem;
    }
}
