:root {
    --primary: #37ada9;
    --primary-dark: #2ba19d;
    --primary-light: rgba(55, 173, 169, 0.15);
    --secondary: #1a3b5e;
    --secondary-light: #2c527e;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(26, 59, 94, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1,
h2,
h3 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
}

/* Buttons & Badges */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(55, 173, 169, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 173, 169, 0.6);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--secondary);
}

.btn-light:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.dot {
    color: var(--primary);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
    transition: 0.3s;
}

header.scrolled {
    background: #fff;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    max-width: 1600px; /* Wider to push to the left/right */
    padding: 0 3rem;
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(55, 173, 169, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    position: relative;
    z-index: 1005;
}

/* Mobile Menu - Minimalist Corporate */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 30px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    visibility: hidden;
}

.mobile-nav-overlay.open {
    transform: translateX(0);
    pointer-events: all;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: var(--secondary);
    cursor: pointer;
    transition: 0.3s;
}

.close-menu:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-nav-links li {
    border-bottom: 1px solid #e2e8f0;
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    color: var(--secondary);
    font-size: 1.15rem;
    font-weight: 500;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
}

.mobile-nav-links a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: #cbd5e1;
    transition: 0.3s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary);
    padding-left: 8px;
}

.mobile-nav-links a:hover::after,
.mobile-nav-links a.active::after {
    color: var(--primary);
    transform: translateX(-4px);
}

/* Dark Background Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 21, 35, 0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

body.menu-open::after {
    opacity: 1;
    pointer-events: all;
}

/* Hero */
.hero-section {
    padding: 140px 0 80px 0;
    background: radial-gradient(circle at 100% 0%, rgba(55, 173, 169, 0.08) 0%, transparent 40%), radial-gradient(circle at 0% 100%, rgba(26, 59, 94, 0.05) 0%, transparent 40%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary);
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero image styles diatur sepenuhnya di home.css */


/* Page Header */
.page-header {
    padding: 160px 0 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
}

/* Services */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Career */
.career-section {
    padding: 100px 0;
    background: var(--bg-light);
    border-top: 1px solid #e2e8f0;
}

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

.career-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    position: relative;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.career-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.career-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    padding-right: 70px;
}

.career-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.career-location i {
    color: var(--primary);
}

.career-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Clients */
.clients-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.clients-section h2 {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.client-logo {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    filter: grayscale(100%);
    cursor: pointer;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    color: var(--primary);
    transform: translateY(-3px);
}

.client-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, rgba(55, 173, 169, 0) 70%);
    top: -100px;
    right: -100px;
    opacity: 0.3;
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #0b1523;
    color: #94a3b8;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr max-content max-content;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    color: #fff;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-btns,
    .hero-stats {
        justify-content: center;
    }

    .services-grid,
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .nav-container {
        padding: 10px 1.5rem;
        height: auto;
        min-height: 80px;
    }
    
    .logo {
        font-size: 0.95rem;
        gap: 8px;
        max-width: 85%;
    }

    .logo-img {
        height: 38px;
    }



    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .page-header {
        padding: 120px 0 60px 0;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 10px 1rem;
        min-height: 70px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .logo {
        font-size: 0.75rem;
        max-width: 220px;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .logo-img {
        height: 30px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card, .career-card {
        padding: 24px 16px;
    }
    
    .career-card h3 {
        padding-right: 0;
        margin-top: 10px;
    }
    
    .career-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }

    .hero-btns,
    .cta-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-btns .btn,
    .cta-btns .btn,
    .cta-btns a {
        width: 100%;
        justify-content: center;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
}

/* Modal Service Card */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 21, 35, 0.75);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(6px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 550px;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--secondary);
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.close-modal:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.modal-body {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================================
   CAREER / LOKER SECTION & JOB MODAL
   ========================================================================== */

.career-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.career-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.career-filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid #cbd5e1;
    background: var(--white);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(26, 59, 94, 0.25);
}

/* Career Grid */
.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.career-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #2c527e);
    opacity: 0;
    transition: opacity 0.3s;
}

.career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -8px rgba(26, 59, 94, 0.12);
    border-color: #cbd5e1;
}

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

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.career-card:hover .job-icon-box {
    transform: scale(1.08) rotate(3deg);
    background: var(--primary);
    color: var(--white);
}

.badge-work-type {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.badge-work-type.hybrid {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.career-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--secondary);
    line-height: 1.3;
}

.job-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-meta-item i {
    color: var(--primary);
    font-size: 0.85rem;
}

.job-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.skill-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.card-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.92rem;
}

/* ==========================================================================
   INTERACTIVE JOB MODAL & APPLY FORM
   ========================================================================== */

.job-modal-content {
    background: var(--white);
    width: 92%;
    max-width: 820px;
    max-height: 88vh;
    border-radius: 20px;
    padding: 0;
    position: relative;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.modal-overlay.active .job-modal-content {
    transform: translateY(0) scale(1);
}

.job-modal-header {
    padding: 28px 36px 20px;
    background: linear-gradient(135deg, #1a3b5e 0%, #264a73 100%);
    color: var(--white);
    position: relative;
}

.job-modal-header .close-modal {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.job-modal-header .close-modal:hover {
    background: var(--white);
    color: var(--secondary);
}

.job-modal-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.job-modal-badge {
    background: var(--primary);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.job-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.job-modal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-modal-meta i {
    color: var(--primary);
}

/* Modal Tabs */
.job-modal-nav {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 36px;
}

.modal-nav-tab {
    padding: 16px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.modal-nav-tab:hover {
    color: var(--secondary);
}

.modal-nav-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--white);
}

/* Modal Scrollable Body */
.job-modal-body {
    padding: 32px 36px;
    overflow-y: auto;
    max-height: calc(88vh - 200px);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

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

/* Detail Styling */
.job-detail-block {
    margin-bottom: 28px;
}

.job-detail-block h4 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-detail-block h4 i {
    color: var(--primary);
    font-size: 1.1rem;
}

.job-detail-block p {
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 12px;
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.requirement-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.55;
}

.requirement-list li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.benefit-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--secondary);
    font-weight: 500;
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.modal-footer-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
}

/* ==========================================================================
   CAREER APPLY FORM & DRAG-AND-DROP DROPZONE
   ========================================================================== */

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

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

.form-group label span.req {
    color: #ef4444;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.2s;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 14px 13px 40px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--white);
    transition: all 0.25s;
}

.form-group textarea {
    padding-left: 14px;
    min-height: 90px;
    resize: vertical;
}

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

.input-with-icon input:focus + i,
.input-with-icon select:focus + i {
    color: var(--primary);
}

/* Drag and Drop Zone */
.cv-dropzone {
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cv-dropzone:hover,
.cv-dropzone.dragover {
    border-color: var(--primary);
    background: rgba(55, 173, 169, 0.06);
    transform: scale(1.01);
}

.cv-dropzone.has-file {
    border-color: #10b981;
    background: #ecfdf5;
}

.dropzone-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.cv-dropzone:hover .dropzone-icon {
    transform: translateY(-3px);
}

.dropzone-text {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.dropzone-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.file-preview-card {
    display: none;
    width: 100%;
    background: var(--white);
    border: 1px solid #99f6e4;
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 10px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.file-preview-card.show {
    display: flex;
}

.file-preview-info {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.file-preview-icon {
    font-size: 1.5rem;
    color: #0d9488;
}

.file-preview-details {
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
}

.file-preview-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;
}

.file-preview-size {
    font-size: 0.78rem;
    color: #64748b;
}

.file-remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 6px;
    border-radius: 6px;
    transition: background 0.2s;
}

.file-remove-btn:hover {
    background: #fee2e2;
}

/* Alert Box */
.apply-alert {
    display: none;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    align-items: center;
    gap: 10px;
}

.apply-alert.success {
    display: flex;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.apply-alert.error {
    display: flex;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .career-grid {
        grid-template-columns: 1fr;
    }

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

    .job-modal-header {
        padding: 24px 20px 16px;
    }

    .job-modal-title {
        font-size: 1.4rem;
    }

    .job-modal-nav {
        padding: 0 16px;
    }

    .modal-nav-tab {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .job-modal-body {
        padding: 20px 18px;
    }

    .card-actions {
        flex-direction: column;
    }

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

    .file-preview-name {
        max-width: 180px;
    }
}