.hero-banner {
    position: relative;
    width: 100%;
    min-height: 630px;
    background-image: url('../Guest/img/karir/hero-list-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 60px 0;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #fff;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    opacity: 0.95;
    font-weight: 400;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 400px;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 350px;
        padding: 30px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.88rem;
    }
}

select {
    border: none;       /* Menghilangkan garis tepi */
    outline: none;      /* Menghilangkan garis fokus saat diklik */
    appearance: none;   /* Menghilangkan gaya bawaan browser (arrow/panah) */
    -webkit-appearance: none;
    -moz-appearance: none;
}

/*==========SECTION SEARCH===========*/
.search-card {
    background: linear-gradient(135deg, #1e90d4 0%, #0d7ab5 100%);
    border-radius: 24px;
    padding: 35px 35px 30px;
    width: 100%;
    max-width: 1100px;
}

.search-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.search-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.search-input-wrapper {
    flex: 1;
    min-width: 180px;
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #1e90d4;
    font-size: 1rem;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    background-color: #ffffff;
    transition: box-shadow 0.2s;
}

.search-input::placeholder {
    color: #1e90d4;
    font-weight: 500;
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-search {
    background-color: #d4e157;
    color: #1a1a2e;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-search:hover {
    background-color: #c5d04a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .search-card {
        padding: 25px 20px 20px;
        border-radius: 20px;
    }

    .search-title {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .search-input-wrapper {
        min-width: 100%;
    }

    .btn-search {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .search-title {
        font-size: 1.2rem;
    }
}

/*==========CARD JOBS==========*/
.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8ecf1;
    transition: all 0.3s ease;
    position: relative;
}

.job-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #d0d7e0;
}

/* Header: Logo + Icons */
.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0099cc 0%, #0066aa 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0099cc;
}

.header-icons {
    display: flex;
    gap: 12px;
}

.header-icons i {
    font-size: 1.1rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.header-icons i:hover {
    color: #0099cc;
}

/* Job Title */
.job-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    color: #00a1e2;
}

/* Tags */
.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    background-color: #f8f9fa;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #eee;
    font-size: 0.85rem;
}

.tag i {
    font-size: 0.75rem;
    color: #999;
}

/* Divider */
.card-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 16px 0;
}

/* Apply Button */
.btn-apply {
    background: linear-gradient(135deg, #0099cc 0%, #0077aa 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-apply:hover {
    background: linear-gradient(135deg, #0088bb 0%, #006699 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 119, 170, 0.3);
}

.btn-apply i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .job-card {
        margin-bottom: 20px;
    }
}

/*==========JOBS HEADER==========*/
.jobs-header {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #000;
    display: inline-block;
}

@media (max-width: 768px) {
    .jobs-header {
        font-size: 2rem;
    }
}

/*==========CTA==========*/
.cta-section {
    max-width: 1100px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    max-width: 520px;
}

.cta-email {
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.cta-email:hover {
    color: #0066cc;
    text-decoration: underline;
}

.cta-image-wrapper {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.cta-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-section {
        text-align: center;
    }

    .cta-description {
        max-width: 100%;
        margin: 0 auto;
    }

    .cta-image-wrapper {
        margin-top: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .cta-heading {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}
