/**
 * ==========================================================================
 * Custom CSS - Al Nahda Frontend
 * ==========================================================================
 * All custom styles for the frontend
 * ==========================================================================
 */


/* ==========================================================================
   HERO SLIDER
   ========================================================================== */

.hero-slider-container {
    padding: 0;
    margin: 0;
}

.hero-slider {
    width: 100%;
    height: 80vh;
    min-height: 400px;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide {
    justify-content: flex-start;
}

/* Slide Content Box */
.hero-slide-content {
    padding: 40px;
    max-width: 500px;
    margin: 0 80px;
}

/* RTL: Text align right */
[dir="rtl"] .hero-slide-content {
    text-align: right;
}

/* LTR: Text align left */
[dir="ltr"] .hero-slide-content {
    text-align: left;
}

/* Title - Large Text */
.hero-slide-title {
    font-family: 'GEDemiBold', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Subtitle - Small Text */
.hero-slide-subtitle {
    font-family: 'GEDemiBold', sans-serif;
    font-size: 20px;
    color: #fff;
    margin: 0 0 25px 0;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Button */
.hero-slide-button {
    display: inline-block;
    padding: 15px 40px;
    border: none;
    font-family: 'GEDemiBold', sans-serif;
    font-weight: 900;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.hero-slide-button:hover {
    background: #b71c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #fff;
}

/* Button Only - Centered at Bottom */
.hero-slide-content.button-only-centered {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    max-width: none;
    text-align: center !important;
}

[dir="rtl"] .hero-slide-content.button-only-centered,
[dir="ltr"] .hero-slide-content.button-only-centered {
    text-align: center !important;
}

/* Slider Navigation Arrows */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(218, 41, 28, 0.8);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Slider Pagination Dots */
.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #da291c;
    transform: scale(1.2);
}


/* ==========================================================================
   RESPONSIVE - TABLET
   ========================================================================== */
@media (max-width: 1024px) {
    #header_logo img {
        width: 100px;
        height: auto;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        /*height: 60vh;*/
        /*min-height: 350px;*/
    }

    .hero-slide-content {
        padding: 30px;
        max-width: 400px;
        margin: 0 40px;
    }

    .hero-slide-content.button-only-centered {
        bottom: 60px;
    }

    .hero-slide-title {
        font-size: 32px;
    }

    .hero-slide-subtitle {
        font-size: 18px;
    }

    .hero-slide-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .hero-slider .swiper-button-next::after,
    .hero-slider .swiper-button-prev::after {
        font-size: 16px;
    }
}


/* ==========================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */
@media (max-width: 576px) {
    .hero-slider {
        height: 40vh;
        min-height: auto;
    }

    /* Center content on mobile */
    .hero-slide {
        justify-content: center !important;
    }

    .hero-slide-content {
        padding: 20px;
        max-width: 90%;
        margin: 0;
        text-align: center !important;
    }

    .hero-slide-content.button-only-centered {
        bottom: 40px;
    }

    .hero-slide-title {
        font-size: 24px;
    }

    .hero-slide-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-slide-button {
        padding: 10px 25px;
        font-size: 14px;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none;
    }
}


/* ==========================================================================
   CMS CONTENT - Preserve TinyMCE Formatting
   ========================================================================== */
.cms-content {
    font-size: 18px;
    color: #666666;
    /*font-family: GEBook;*/
}

.cms-content p {
    margin-bottom: 1em;
    color: #666666;
}

.cms-content strong,
.cms-content b {
    font-weight: bold !important;
    font-family: GEBook;
}

.cms-content em,
.cms-content i {
    font-style: italic !important;
}

.cms-content u {
    text-decoration: underline !important;
}

/* Allow inline styles to override */
.cms-content [style] {
    font-size: unset;
    color: unset;
    background-color: unset;
}

.cms-content span[style],
.cms-content p[style],
.cms-content div[style] {
    all: revert;
}

.cms-content ul,
.cms-content ol {
    margin: 1em 0;
    padding-right: 2em;
}

[dir="ltr"] .cms-content ul,
[dir="ltr"] .cms-content ol {
    padding-right: 0;
    padding-left: 2em;
}

.cms-content ul li,
.cms-content ol li {
    margin-bottom: 0.5em;
}

.cms-content a {
    color: #D7291C;
    text-decoration: underline;
}

.cms-content a:hover {
    color: #a81d12;
}


/* ==========================================================================
   HEADER DROPDOWN - Support Menu (Inside Navigation)
   ========================================================================== */
#header_menu .header-dropdown-item {
    position: relative;
}

#header_menu .header-dropdown-trigger {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#header_menu .header-dropdown-trigger i {
    font-size: 10px !important;
    transition: transform 0.3s ease;
}

#header_menu .header-dropdown-item:hover .header-dropdown-trigger i {
    transform: rotate(180deg);
}

#header_menu .header-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 15px;
}

/* RTL Support */
[dir="ltr"] #header_menu .header-dropdown-menu {
    right: auto;
    left: 0;
}

/* Arrow pointer */
#header_menu .header-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

[dir="ltr"] #header_menu .header-dropdown-menu::before {
    right: auto;
    left: 20px;
}

#header_menu .header-dropdown-item:hover .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#header_menu .header-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #666 !important;
    font-size: 16px !important;
    white-space: nowrap;
    transition: all 0.2s ease;
}

#header_menu .header-dropdown-menu a:hover {
    background: #f5f5f5;
    color: #D7291C !important;
}


/* ==========================================================================
   MOBILE SUPPORT DROPDOWN (Header Button)
   ========================================================================== */
.mobile-support-toggle {
    padding: 9px 18px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    position: relative;
    top: -7px;
}

.mobile-support-toggle i {
    font-size: 10px !important;
    transition: transform 0.3s ease;
}

.mobile-support-toggle.active i {
    transform: rotate(180deg);
}

#header_donate .mobile-support-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 8px 0;
    margin-top: 5px;
}

[dir="ltr"] #header_donate .mobile-support-menu {
    right: auto;
    left: 0;
}

#header_donate .mobile-support-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

[dir="ltr"] #header_donate .mobile-support-menu::before {
    right: auto;
    left: 15px;
}

#header_donate .mobile-support-menu a {
    display: block;
    padding: 10px 18px;
    color: #666 !important;
    font-size: 14px !important;
    white-space: nowrap;
    transition: all 0.2s ease;
}

#header_donate .mobile-support-menu a:hover {
    background-color: #f5f5f5 !important;
    color: #D7291C !important;
    border-radius: 0;
}

/* ==========================================================================
   Donation - Tabs
   ========================================================================== */
.donation-tabs input {
    font-family: 'Century Gothic' !important;
}

.donation-tabs .nav-tabs li {
    margin-right: 1rem;
}

.donation-tabs .nav-tabs li a {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.donation-tabs .nav-tabs > li.active > a {
    color: #ffffff;
    background-color: #DA291C;
    border-color: #DA291C;
}


/* ==========================================================================
   Donation - Page
   ========================================================================== */
.donation-section-wrapper {
    margin: 40px 0;
    text-align: center;
}

.donation-col {
    width: 20%;
    float: right;
    padding: 10px;
}

@media (max-width: 991px) {
    .donation-col {
        width: 50%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .donation-col {
        width: 100%;
    }
}

.donation-card {
    position: relative;
    display: block;
    background: #ffffff;
    line-height: 45px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #333;
    transition: all 0.35s ease;
}

.main-icon {
    font-size: 17px;
    margin: 0 5px 15px;
    color: #D7291C;
}

.donation-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: inline-block;
}

.action-arrow {
    position: absolute;
    bottom: -18px;
    left: 20px;
    width: 42px;
    height: 42px;
    background: #D7291C;
    border-radius: 50%;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    display: none;
}

.action-arrow i {
    color: #fff;
    font-size: 16px;
}

.donation-card:hover .action-arrow {
    left: 14px;
    border-color: #ffffff;
}

/* Active card (default highlighted) */
.donation-card:hover,
.donation-card.active {
    background: #D7291C;
    /*transform: translateY(-6px);*/
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.donation-card:hover h4,
.donation-card.active h4 {
    color: #ffffff;
}

.donation-card:hover .main-icon,
.donation-card.active .main-icon {
    color: #ffffff;
}

.donation-card:hover .action-arrow,
.donation-card.active .action-arrow {
    background: #ffffff;
    border-color: #D7291C;
}

.donation-card:hover .action-arrow i,
.donation-card.active .action-arrow i {
    color: #D7291C;
}

.content {
    padding-top: 0;
}

.donate-form .label {
    color: #000;
    display: block;
}

.donation-tabs .nav>li>a i {
    margin: 0 3px;
}
#header_mobile_links ol,
#header_mobile_links ul {
    padding: 0;
}
.timeline-flags {
    position:fixed;
    left:0;
    top:15%;
    z-index:1000;
    width: 100px;
}

.timeline-flags .flag-box {
    cursor: pointer;
    margin-bottom: 2px;
    padding:2px 10px;
    background-color: #FFF;
    opacity: 0.8;
    text-align: left;
}

.timeline-flags .flag-box img {
    -webkit-filter:grayscale(100%);
    margin: 0 10px;
}
.radio-button-container .radio {
    margin-top: 10px;
}

/* ============================================
       CAREERS PAGE STYLES
       ============================================ */

/* Page Header */
.careers-page-header {
    text-align: center;
    margin: 40px 0 30px;
}

/* Filters */
.careers-filters {
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.careers-filter-select {
    height: 48px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    padding: 0 15px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.careers-filter-select:focus {
    border-color: #D7291C;
    outline: none;
    box-shadow: 0 0 0 3px rgba(215, 41, 28, 0.1);
}

.careers-results-count {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    gap: 8px;
}

.careers-results-count i {
    color: #D7291C;
}

/* Careers Grid */
.careers-grid {
    margin-bottom: 40px;
}

/* ============================================
   CAREER CARD STYLES
   ============================================ */

.career-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Header with Type Badge */
.career-card-header {
    padding: 20px 20px 15px;
    position: relative;
}

.career-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.career-type-badge i {
    font-size: 12px;
}

/* Type Colors */
.career-type-badge.type-job {
    background: #D7291C;
}

.career-type-badge.type-training {
    background: #2196F3;
}

.career-type-badge.type-internship {
    background: #4CAF50;
}

/* Card Body */
.career-card-body {
    padding: 0 20px 20px;
}

.career-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.4;
}

.career-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.career-card-title a:hover {
    color: #D7291C;
}

/* Card Meta Info */
.career-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.career-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.career-meta-item i {
    color: #999;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Card Date */
.career-card-date {
    font-size: 13px;
    color: #999;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 6px;
}

.career-card-date i {
    color: #bbb;
}

/* Card Footer */
.career-card-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.career-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #D7291C;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.career-view-btn:hover {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}

.career-view-btn i {
    transition: transform 0.3s ease;
}

[dir="rtl"] .career-view-btn:hover i {
    transform: translateX(-4px);
}

[dir="ltr"] .career-view-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   EMPTY STATE
   ============================================ */

.careers-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 40px 0;
}

.careers-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-empty-icon i {
    font-size: 40px;
    color: #adb5bd;
}

.careers-empty h3 {
    margin-bottom: 10px;
}

.careers-empty p {
    margin-bottom: 25px;
}

.careers-btn-reset {
    background: #D7291C;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.careers-btn-reset:hover {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .careers-filters {
        padding: 20px;
    }

    .careers-results-count {
        margin-top: 15px;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .careers-page-header {
        margin: 30px 0 20px;
        font-size: 28px;
    }

    .career-card {
        margin-bottom: 20px;
    }

    .career-card-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
       CAREER DETAIL PAGE STYLES
       ============================================ */

/* Breadcrumb */
.career-breadcrumb {
    padding: 20px 0;
    margin-bottom: 10px;
}

.career-breadcrumb a {
    color: #D7291C;
    text-decoration: none;
}

.career-breadcrumb a:hover {
    text-decoration: underline;
}

.career-breadcrumb i {
    margin: 0 10px;
    font-size: 10px;
    color: #999;
}

/* Detail Card */
.career-detail-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

/* Header */
.career-detail-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.career-detail-title {
    margin: 20px 0 15px;
    font-size: 28px;
    line-height: 1.4;
}

.career-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.career-detail-meta .career-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
}

.career-detail-meta .career-meta-item i {
    color: #D7291C;
    width: 18px;
    text-align: center;
}

.career-detail-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.career-detail-date i {
    color: #999;
}

/* Type Badge */
.career-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.career-type-badge.type-job {
    background: #D7291C;
}

.career-type-badge.type-training {
    background: #2196F3;
}

.career-type-badge.type-internship {
    background: #4CAF50;
}

/* Image */
.career-detail-image {
    padding: 0 30px;
}

.career-detail-image img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

/* Content */
.career-detail-content {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.career-detail-content:last-of-type {
    border-bottom: none;
}

.career-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.career-section-title i {
    font-size: 20px;
}

.career-description {
    line-height: 1.8;
    color: #555;
}

/* Share Section */
.career-share {
    padding: 25px 30px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.career-share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.share-twitter { background: #1DA1F2; }
.share-linkedin { background: #0077B5; }
.share-whatsapp { background: #25D366; }
.share-email { background: #666; }

/* ============================================
   APPLICATION FORM STYLES
   ============================================ */

.career-apply-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.career-apply-header {
    background: linear-gradient(135deg, #D7291C 0%, #b71c1c 100%);
    padding: 20px 25px;
}

.career-apply-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.career-apply-body {
    padding: 25px;
}

.career-apply-body .form-group {
    margin-bottom: 20px;
}

.career-apply-body .control-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.career-apply-body .form-control {
    height: 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.career-apply-body .form-control:focus {
    border-color: #D7291C;
    box-shadow: 0 0 0 3px rgba(215, 41, 28, 0.1);
    outline: none;
}

/* CV Upload */
.cv-upload-wrapper {
    position: relative;
}

.cv-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.cv-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cv-upload-label:hover {
    border-color: #D7291C;
    background: #fff5f5;
}

.cv-upload-label i {
    font-size: 30px;
    color: #D7291C;
    margin-bottom: 10px;
}

.cv-upload-text {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.cv-upload-hint {
    font-size: 12px;
    color: #999;
}

.cv-file-name {
    margin-top: 10px;
    padding: 10px;
    background: #e8f5e9;
    border-radius: 6px;
    color: #2e7d32;
    font-size: 13px;
    display: none;
}

.cv-file-name.show {
    display: block;
}

/* Submit Button */
.career-submit-btn {
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #D7291C 0%, #b71c1c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.career-submit-btn:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #8b0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(215, 41, 28, 0.3);
    color: #fff;
}

/* Mobile Apply Button */
.career-mobile-apply {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.career-mobile-apply-btn {
    width: 100%;
    padding: 15px;
    background: #D7291C;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Related Careers */
.career-related-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.career-related-title {
    margin-bottom: 30px;
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .career-apply-card {
        position: relative;
        top: 0;
        margin-top: 30px;
    }

    .career-detail-title {
        font-size: 24px;
    }

    .career-detail-meta {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .career-detail-header,
    .career-detail-content,
    .career-share {
        padding: 20px;
    }

    .career-detail-title {
        font-size: 20px;
    }

    .career-detail-meta {
        flex-direction: column;
        gap: 10px;
    }

    .career-share {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Add padding for fixed mobile button */
    .career-related-section {
        padding-bottom: 80px;
    }
}
