/* =============================================
   VISHWADARSHANA CAREER PAGE STYLES - COMPACT VERSION
   All classes prefixed with vd_career_
============================================= */

/* Root Variables matching main theme */
.vd_career_root {
    --vd-career-primary: #0A2845;
    --vd-career-accent: #AF4D58;
    --vd-career-orange: #D68F41;
    --vd-career-cream: #F4EFE9;
    --vd-career-white: #FFFFFF;
    --vd-career-grey: #666666;
    --vd-career-light-grey: #f8f8f8;
    --vd-career-gradient-1: linear-gradient(135deg, #0A2845 0%, #AF4D58 100%);
    --vd-career-gradient-2: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    --vd-career-gradient-3: linear-gradient(135deg, #0A2845 0%, #AF4D58 50%, #D68F41 100%);
}

/* Hero Section */
.vd_career_hero {
    position: relative;
    min-height: 60vh;
    background: var(--vd-career-gradient-3, linear-gradient(135deg, #0A2845 0%, #AF4D58 50%, #D68F41 100%));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.vd_career_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIxMCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iMSIvPjwvc3ZnPg==');
    opacity: 0.02;
}

.vd_career_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 40, 69, 0.3);
}

.vd_career_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.vd_career_hero_title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

.vd_career_hero_subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.vd_career_hero_stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.vd_career_stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vd_career_stat_number {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #D68F41;
    margin-bottom: 5px;
}

.vd_career_stat_suffix {
    font-size: 36px;
    color: #D68F41;
}

.vd_career_stat_label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Container */
.vd_career_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Listings Section */
.vd_career_listings_section {
    padding: 120px 0;
    background: #F4EFE9;
}

.vd_career_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.vd_career_section_title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 200;
    color: #0A2845;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.vd_career_section_subtitle {
    font-size: 18px;
    color: #666666;
}

/* Filter Buttons */
.vd_career_filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.vd_career_filter_btn {
    padding: 12px 30px;
    background: #FFFFFF;
    border: 2px solid transparent;
    border-radius: 50px;
    color: #0A2845;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vd_career_filter_btn:hover {
    border-color: #AF4D58;
    transform: translateY(-2px);
}

.vd_career_filter_active {
    background: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    color: #FFFFFF;
}

/* Job List */
.vd_career_job_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vd_career_job_item {
    background: #FFFFFF;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vd_career_job_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vd_career_job_link {
    display: flex;
    align-items: center;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.3s ease;
}

.vd_career_job_link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.vd_career_job_item:hover .vd_career_job_link::before {
    transform: scaleY(1);
}

.vd_career_job_logo {
    flex: 0 0 100px;
    margin-right: 30px;
}

.vd_career_logo_placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(175, 77, 88, 0.1) 0%, rgba(214, 143, 65, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #AF4D58;
}

.vd_career_job_details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.vd_career_job_main {
    flex: 1;
    min-width: 250px;
}

.vd_career_job_title {
    font-size: 22px;
    font-weight: 600;
    color: #0A2845;
    margin-bottom: 15px;
}

.vd_career_job_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.vd_career_institution,
.vd_career_location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 14px;
}

.vd_career_institution i,
.vd_career_location i {
    color: #AF4D58;
}

.vd_career_job_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.vd_career_date {
    color: #999999;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vd_career_badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vd_career_badge_fulltime {
    background: linear-gradient(135deg, #0A2845 0%, #AF4D58 100%);
    color: #FFFFFF;
}

.vd_career_badge_parttime {
    background: linear-gradient(135deg, #D68F41 0%, #FFC857 100%);
    color: #FFFFFF;
}

/* Pagination */
.vd_career_pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.vd_career_pagination_info {
    color: #666666;
    font-size: 14px;
}

.vd_career_pagination_controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vd_career_page_btn,
.vd_career_page_num {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 50%;
    color: #0A2845;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.vd_career_page_btn:hover,
.vd_career_page_num:hover {
    border-color: #AF4D58;
    color: #AF4D58;
    transform: translateY(-2px);
}

.vd_career_page_active {
    background: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    border-color: transparent;
    color: #FFFFFF;
}

.vd_career_page_numbers {
    display: flex;
    gap: 10px;
}

/* Why Join Section */
.vd_career_why_join {
    padding: 120px 0;
    background: #FFFFFF;
}

.vd_career_benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.vd_career_benefit {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(10, 40, 69, 0.05) 0%, rgba(175, 77, 88, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.vd_career_benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vd_career_benefit i {
    font-size: 48px;
    color: #AF4D58;
    margin-bottom: 20px;
}

.vd_career_benefit h3 {
    font-size: 20px;
    color: #0A2845;
    margin-bottom: 15px;
}

.vd_career_benefit p {
    color: #666666;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional styles for job-single page */
.vd_career_single_hero {
    background: var(--vd-career-gradient-3, linear-gradient(135deg, #0A2845 0%, #AF4D58 50%, #D68F41 100%));
    padding: 120px 0 80px;
    margin-top: 80px;
}

.vd_career_single_content {
    padding: 80px 0;
    background: #F4EFE9;
}

.vd_career_single_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.vd_career_job_header {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vd_career_job_header_top {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.vd_career_job_icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(175, 77, 88, 0.1) 0%, rgba(214, 143, 65, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #AF4D58;
}

.vd_career_job_header_info h1 {
    font-size: 32px;
    color: #0A2845;
    margin-bottom: 10px;
}

.vd_career_job_header_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #666666;
    font-size: 14px;
}

.vd_career_job_header_meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vd_career_job_header_meta i {
    color: #AF4D58;
}

.vd_career_job_actions {
    display: flex;
    gap: 20px;
}

.vd_career_btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.vd_career_btn_primary {
    background: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    color: #FFFFFF;
}

.vd_career_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(175, 77, 88, 0.3);
}

.vd_career_btn_outline {
    background: #FFFFFF;
    color: #AF4D58;
    border: 2px solid #AF4D58;
}

.vd_career_btn_outline:hover {
    background: #AF4D58;
    color: #FFFFFF;
}

.vd_career_section_block {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vd_career_section_block h3 {
    font-size: 24px;
    color: #0A2845;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vd_career_section_block h3 i {
    color: #AF4D58;
    font-size: 20px;
}

.vd_career_requirements_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vd_career_requirements_list li {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.vd_career_requirements_list i {
    color: #D68F41;
    margin-right: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

.vd_career_main_content {
    min-width: 0;
}

.vd_career_sidebar {
    position: sticky;
    top: 100px;
}

.vd_career_summary {
    background: #FFFFFF;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.vd_career_summary h4 {
    font-size: 20px;
    color: #0A2845;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F4EFE9;
}

.vd_career_summary_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F4EFE9;
}

.vd_career_summary_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vd_career_summary_label {
    color: #666666;
    font-weight: 600;
}

.vd_career_summary_value {
    color: #0A2845;
}

.vd_career_share {
    background: #FFFFFF;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vd_career_share h4 {
    font-size: 20px;
    color: #0A2845;
    margin-bottom: 20px;
}

.vd_career_share_links {
    display: flex;
    gap: 15px;
}

.vd_career_share_link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(175, 77, 88, 0.1) 0%, rgba(214, 143, 65, 0.1) 100%);
    border-radius: 50%;
    color: #AF4D58;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vd_career_share_link:hover {
    background: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Application Popup Modal - COMPACT VERSION */
.vd_career_modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 40, 69, 0.7);
    z-index: 9999;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeIn 0.3s ease-out;
}

.vd_career_modal_overlay.vd_career_modal_active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vd_career_modal {
    background: #FFFFFF;
    border-radius: 16px;
    max-width: 580px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.vd_career_modal_header {
    background: linear-gradient(135deg, #0A2845 0%, #AF4D58 50%, #D68F41 100%);
    padding: 24px 30px;
    position: relative;
}

.vd_career_modal_close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd_career_modal_close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.vd_career_modal_title {
    font-size: 20px;
    color: #FFFFFF;
    margin: 0 35px 6px 0;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.vd_career_modal_subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

.vd_career_modal_body {
    padding: 24px 30px;
}

.vd_career_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.vd_career_form_group {
    margin-bottom: 16px;
}

.vd_career_form_group:last-of-type {
    margin-bottom: 0;
}

.vd_career_form_row .vd_career_form_group {
    margin-bottom: 0;
}

.vd_career_form_label {
    display: block;
    color: #0A2845;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.2px;
}

.vd_career_form_label span {
    color: #AF4D58;
}

.vd_career_form_input,
.vd_career_form_select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #E5E7EB;
    border-radius: 6px;
    font-size: 13px;
    color: #0A2845;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
}

.vd_career_form_select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A2845' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 35px;
}

.vd_career_form_select option {
    background: #FFFFFF;
    color: #0A2845;
    padding: 10px;
}

.vd_career_form_input:hover,
.vd_career_form_select:hover {
    border-color: #CBD5E0;
}

.vd_career_form_input:focus,
.vd_career_form_select:focus {
    outline: none;
    border-color: #AF4D58;
    box-shadow: 0 0 0 3px rgba(175, 77, 88, 0.08);
}

.vd_career_form_input::placeholder {
    color: #9CA3AF;
}

.vd_career_form_file {
    display: none;
}

.vd_career_file_upload {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1.5px dashed #CBD5E0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #FAFAFA;
}

.vd_career_file_upload:hover {
    border-color: #AF4D58;
    background: rgba(175, 77, 88, 0.03);
}

.vd_career_file_icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(175, 77, 88, 0.1) 0%, rgba(214, 143, 65, 0.1) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AF4D58;
    font-size: 18px;
    flex-shrink: 0;
}

.vd_career_file_info {
    flex: 1;
}

.vd_career_file_text {
    color: #0A2845;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 13px;
}

.vd_career_file_subtext {
    color: #6B7280;
    font-size: 11px;
}

.vd_career_file_name {
    display: none;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(76, 175, 80, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: #0A2845;
    font-size: 12px;
    font-weight: 500;
}

.vd_career_file_name.vd_career_file_selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vd_career_file_remove {
    background: rgba(175, 77, 88, 0.1);
    border: none;
    color: #AF4D58;
    cursor: pointer;
    font-size: 12px;
    padding: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.vd_career_file_remove:hover {
    background: rgba(175, 77, 88, 0.2);
}

/* CAPTCHA Field Styling - COMPACT */
.vd_career_captcha_wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #FAFAFA;
    border: 1.5px solid #E5E7EB;
    border-radius: 6px;
    flex-wrap: wrap;
}

.vd_career_captcha_question {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #0A2845;
    font-weight: 500;
    flex: 1;
    min-width: 200px;
}

.vd_career_captcha_question span {
    font-weight: 600;
    color: #AF4D58;
    font-size: 15px;
}

.vd_career_captcha_input {
    width: 70px;
    padding: 8px 12px;
    border: 1.5px solid #CBD5E0;
    border-radius: 6px;
    font-size: 13px;
    color: #0A2845;
    text-align: center;
    font-weight: 600;
    transition: all 0.2s ease;
}

.vd_career_captcha_input:focus {
    outline: none;
    border-color: #AF4D58;
    box-shadow: 0 0 0 3px rgba(175, 77, 88, 0.08);
}

.vd_career_captcha_input.vd_career_error {
    border-color: #DC2626;
}

.vd_career_captcha_refresh {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(175, 77, 88, 0.1) 0%, rgba(214, 143, 65, 0.1) 100%);
    border: none;
    border-radius: 6px;
    color: #AF4D58;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vd_career_captcha_refresh:hover {
    background: linear-gradient(135deg, rgba(175, 77, 88, 0.2) 0%, rgba(214, 143, 65, 0.2) 100%);
    transform: rotate(180deg);
}

.vd_career_captcha_refresh:active {
    transform: rotate(180deg) scale(0.95);
}

.vd_career_form_error {
    display: none;
    color: #DC2626;
    font-size: 11px;
    margin-top: 5px;
    font-weight: 500;
}

.vd_career_form_error.vd_career_show {
    display: flex;
    align-items: center;
    gap: 4px;
}

.vd_career_form_error.vd_career_show::before {
    content: '⚠';
    font-size: 13px;
}

.vd_career_form_input.vd_career_error,
.vd_career_form_select.vd_career_error {
    border-color: #DC2626;
}

.vd_career_modal_footer {
    padding: 18px 30px 24px 30px;
    display: flex;
    gap: 10px;
    border-top: 1px solid #F3F4F6;
    background: #FAFAFA;
}

.vd_career_btn_submit {
    flex: 1;
    padding: 11px 28px;
    background: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(175, 77, 88, 0.2);
}

.vd_career_btn_submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(175, 77, 88, 0.3);
}

.vd_career_btn_submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.vd_career_btn_cancel {
    padding: 11px 28px;
    background: #FFFFFF;
    color: #6B7280;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vd_career_btn_cancel:hover {
    border-color: #AF4D58;
    color: #AF4D58;
}

/* Success Message - COMPACT */
.vd_career_success_message {
    display: none;
    text-align: center;
    padding: 36px 30px;
}

.vd_career_success_message.vd_career_show {
    display: block;
}

.vd_career_success_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(129, 199, 132, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4CAF50;
    font-size: 30px;
    animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.vd_career_success_title {
    font-size: 19px;
    color: #0A2845;
    margin-bottom: 10px;
    font-weight: 600;
}

.vd_career_success_text {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 13px;
}

.vd_career_btn_close {
    padding: 11px 36px;
    background: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(175, 77, 88, 0.2);
}

.vd_career_btn_close:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(175, 77, 88, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vd_career_container {
        padding: 0 40px;
    }
    
    .vd_career_listings_section {
        padding: 80px 0;
    }

    .vd_career_single_grid {
        grid-template-columns: 1fr;
    }

    .vd_career_sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .vd_career_hero {
        min-height: 50vh;
    }
    
    .vd_career_hero_stats {
        gap: 30px;
    }
    
    .vd_career_container {
        padding: 0 20px;
    }
    
    .vd_career_job_link {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .vd_career_job_logo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .vd_career_job_details {
        flex-direction: column;
        text-align: center;
    }
    
    .vd_career_job_info {
        align-items: center;
        width: 100%;
    }
    
    .vd_career_filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .vd_career_filter_btn {
        width: 100%;
    }
    
    .vd_career_pagination {
        flex-direction: column;
        text-align: center;
    }
    
    .vd_career_benefits {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vd_career_listings_section,
    .vd_career_why_join {
        padding: 60px 0;
    }

    .vd_career_single_hero {
        padding: 100px 0 60px;
    }

    .vd_career_job_header_top {
        flex-direction: column;
        text-align: center;
    }

    .vd_career_job_actions {
        flex-direction: column;
        width: 100%;
    }

    .vd_career_btn {
        width: 100%;
        justify-content: center;
    }

    .vd_career_section_block {
        padding: 30px 20px;
    }

    .vd_career_summary,
    .vd_career_share {
        padding: 25px 20px;
    }

    .vd_career_modal {
        max-width: 480px;
    }

    .vd_career_form_row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .vd_career_form_row .vd_career_form_group {
        margin-bottom: 16px;
    }

    .vd_career_form_row .vd_career_form_group:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .vd_career_hero_title {
        font-size: 32px;
    }
    
    .vd_career_section_title {
        font-size: 28px;
    }
    
    .vd_career_job_title {
        font-size: 18px;
    }

    .vd_career_modal {
        margin: 12px;
    }

    .vd_career_modal_header {
        padding: 20px;
    }

    .vd_career_modal_title {
        font-size: 18px;
    }

    .vd_career_modal_body {
        padding: 20px;
    }

    .vd_career_form_group {
        margin-bottom: 14px;
    }

    .vd_career_modal_footer {
        padding: 16px 20px 20px 20px;
        flex-direction: column;
    }

    .vd_career_btn_cancel {
        order: 2;
    }

    .vd_career_btn_submit {
        order: 1;
    }

    .vd_career_captcha_wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .vd_career_captcha_question {
        justify-content: space-between;
        width: 100%;
    }
    
    .vd_career_captcha_input {
        width: 100%;
    }
    
    .vd_career_captcha_refresh {
        width: 100%;
    }
}