/* =================================================================
   EDURO JOB DETAIL - MODERN LIGHT DESIGN
   Inspired by Workwise.io - Clean, Fresh, Professional
   Corporate Colors: #DE6B3B (primary), #F2943C (secondary)
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --job-primary: #DE6B3B;
    --job-primary-hover: #c95d30;
    --job-primary-light: rgba(222, 107, 59, 0.08);
    --job-primary-lighter: rgba(222, 107, 59, 0.04);
    --job-secondary: #F2943C;
    
    --job-text-primary: #1a1a1a;
    --job-text-secondary: #4a4a4a;
    --job-text-muted: #7a7a7a;
    --job-text-light: #9a9a9a;
    
    --job-bg: #fafafa;
    --job-bg-warm: #fdf9f6;
    --job-white: #ffffff;
    --job-border: #e8e8e8;
    --job-border-light: #f0f0f0;
    
    --job-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --job-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --job-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
    --job-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
    
    --job-radius: 12px;
    --job-radius-sm: 8px;
    --job-radius-lg: 16px;
    --job-radius-xl: 24px;
    
    --job-transition: all 0.2s ease;
    --job-transition-slow: all 0.3s ease;
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* =============== HERO SECTION - LIGHT & TWO-COLUMN =============== */
.job-hero {
    position: relative;
    background: var(--job-bg-warm);
    overflow: hidden;
    padding: 0;
}

.job-hero__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 480px;
}

.job-hero__media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: var(--job-radius-xl);
    overflow: hidden;
    box-shadow: var(--job-shadow-xl);
}

.job-hero__media img,
.job-hero__media video,
.job-hero__media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.job-hero__media--slider .swiper-container {
    height: 100%;
}

.job-hero__media--slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-hero__overlay {
    display: none;
}

.job-hero__fallback {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: linear-gradient(135deg, #f5ebe4 0%, #ebe0d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-hero__fallback-icon {
    width: 100px;
    height: 100px;
    background: var(--job-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--job-shadow);
}

.job-hero__fallback-icon i {
    font-size: 40px;
    color: var(--job-primary);
}

/* Hero Content - Left side */
.job-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.job-hero__company {
    display: flex;
    align-items: center;
    gap: 16px;
}

.job-hero__company-logo {
    width: 72px;
    height: 72px;
    border-radius: var(--job-radius);
    background: var(--job-white);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--job-shadow);
    border: 1px solid var(--job-border-light);
}

.job-hero__company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.job-hero__company-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--job-primary) 0%, var(--job-secondary) 100%);
    color: var(--job-white);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: calc(var(--job-radius) - 8px);
}

.job-hero__company-info h2 {
    color: var(--job-text-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
}

.job-hero__company-info span {
    color: var(--job-text-muted);
    font-size: 14px;
}

.job-hero__title {
    color: var(--job-text-primary);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.job-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.job-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--job-white);
    color: var(--job-text-secondary);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--job-border);
    transition: var(--job-transition);
}

.job-hero__tag i {
    font-size: 14px;
    color: var(--job-primary);
}

.job-hero__tag:hover {
    border-color: var(--job-primary);
    background: var(--job-primary-lighter);
}

.job-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
}

.job-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--job-radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--job-transition);
    cursor: pointer;
    border: none;
}

.job-hero__btn--primary {
    background: var(--job-primary);
    color: var(--job-white);
    box-shadow: 0 2px 8px rgba(222, 107, 59, 0.25);
}

.job-hero__btn--primary:hover {
    background: var(--job-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(222, 107, 59, 0.35);
}

.job-hero__btn--secondary {
    background: var(--job-white);
    color: var(--job-text-secondary);
    border: 1px solid var(--job-border);
}

.job-hero__btn--secondary:hover {
    border-color: var(--job-text-muted);
    background: var(--job-bg);
}

/* Video Play Button */
.job-hero__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 72px;
    height: 72px;
    background: var(--job-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--job-transition);
    border: none;
    box-shadow: var(--job-shadow-lg);
}

.job-hero__play i {
    color: var(--job-primary);
    font-size: 24px;
    margin-left: 3px;
}

.job-hero__play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: var(--job-shadow-xl);
}

/* TikTok specific */
.job-hero__tiktok-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide decorative elements for clean look */
.job-hero__glass,
.job-hero__particles,
.job-hero__particle,
.job-hero::before {
    display: none !important;
}

/* =============== STICKY NAV - CLEAN =============== */
.job-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--job-white);
    border-bottom: 1px solid var(--job-border-light);
}

.job-nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.job-nav__tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 12px 0;
}

.job-nav__tabs::-webkit-scrollbar {
    display: none;
}

.job-nav__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--job-radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--job-text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--job-transition);
    text-decoration: none;
    position: relative;
}

.job-nav__tab:hover {
    color: var(--job-text-primary);
    background: var(--job-bg);
}

.job-nav__tab.active {
    color: var(--job-primary);
    background: var(--job-primary-light);
}

.job-nav__tab.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--job-primary);
    border-radius: 1px;
}

.job-nav__apply {
    padding: 10px 20px;
    background: var(--job-primary);
    color: var(--job-white);
    border: none;
    border-radius: var(--job-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, 
                transform 0.3s ease,
                visibility 0s linear 0.3s;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(16px);
    pointer-events: none;
}

.job-nav.scrolled .job-nav__apply {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    transition: opacity 0.3s ease, 
                transform 0.3s ease,
                visibility 0s linear 0s;
}

.job-nav__apply:hover {
    background: var(--job-primary-hover);
}

.job-nav.scrolled .job-nav__apply:hover {
    transform: translateX(0);
}

/* =============== MAIN LAYOUT =============== */
.job-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.job-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* =============== SIDEBAR - CLEAN CARD =============== */
.job-sidebar {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
}

.job-sidebar__card {
    background: var(--job-white);
    border-radius: var(--job-radius-lg);
    border: 1px solid var(--job-border-light);
    overflow: visible;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.job-sidebar__header {
    padding: 24px;
    border-bottom: 1px solid var(--job-border-light);
}

.job-sidebar__header h3 {
    color: var(--job-text-primary);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
}

.job-sidebar__header p {
    color: var(--job-text-muted);
    font-size: 14px;
    margin: 0;
}

.job-sidebar__info {
    padding: 16px 24px;
    overflow-y: auto;
    flex: 1;
    max-height: 320px;
}

.job-sidebar__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--job-border-light);
    transition: var(--job-transition);
}

.job-sidebar__item:last-child {
    border-bottom: none;
}

.job-sidebar__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--job-primary-light);
    border-radius: var(--job-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-sidebar__icon i {
    font-size: 16px;
    color: var(--job-primary);
}

.job-sidebar__text h4 {
    font-size: 11px;
    font-weight: 600;
    color: var(--job-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px;
}

.job-sidebar__text p {
    font-size: 14px;
    font-weight: 500;
    color: var(--job-text-primary);
    margin: 0;
    line-height: 1.4;
}

.job-sidebar__actions {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--job-bg);
    border-top: 1px solid var(--job-border-light);
    flex-shrink: 0;
    border-radius: 0 0 var(--job-radius-lg) var(--job-radius-lg);
}

.job-sidebar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: var(--job-radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--job-transition);
    cursor: pointer;
    border: none;
    width: 100%;
}

.job-sidebar__btn--primary {
    background: var(--job-primary);
    color: var(--job-white);
}

.job-sidebar__btn--primary:hover {
    background: var(--job-primary-hover);
    transform: translateY(-1px);
}

.job-sidebar__btn--secondary {
    background: var(--job-white);
    color: var(--job-text-secondary);
    border: 1px solid var(--job-border);
}

.job-sidebar__btn--secondary:hover {
    background: var(--job-bg);
    border-color: var(--job-text-muted);
}

/* =============== SECTION CARDS - CLEAN =============== */
.job-section {
    background: var(--job-white);
    border-radius: var(--job-radius-lg);
    border: 1px solid var(--job-border-light);
    overflow: hidden;
    scroll-margin-top: 80px;
}

.job-section__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--job-border-light);
}

.job-section__icon {
    width: 40px;
    height: 40px;
    background: var(--job-primary-light);
    border-radius: var(--job-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-section__icon i {
    font-size: 18px;
    color: var(--job-primary);
}

.job-section__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--job-text-primary);
    margin: 0;
}

.job-section__body {
    padding: 24px;
}

/* Description Section */
.job-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--job-text-secondary);
}

.job-description p {
    margin-bottom: 16px;
}

.job-description ul,
.job-description ol {
    margin: 16px 0;
    padding-left: 20px;
}

.job-description li {
    margin-bottom: 8px;
}

.job-description--truncated {
    max-height: 280px;
    overflow: hidden;
    position: relative;
}

.job-description--truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--job-white));
}

.job-description__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--job-primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px 0;
    transition: var(--job-transition);
}

.job-description__more:hover {
    color: var(--job-primary-hover);
}

/* =============== MOBILE COLLAPSE - "Mehr lesen" =============== */
@media (max-width: 767px) {
    .job-description--collapsed {
        max-height: 100px;
        overflow: hidden;
        position: relative;
        -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
        transition: max-height 0.4s ease, -webkit-mask-image 0.4s ease, mask-image 0.4s ease;
    }
}

.job-desc-toggle-btn {
    display: none;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--job-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0 4px;
    transition: var(--job-transition);
}

.job-desc-toggle-btn:hover {
    color: var(--job-primary-hover);
}

@media (max-width: 767px) {
    .job-desc-toggle-btn {
        display: inline-flex;
    }
}

/* Benefits Section */
.job-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.job-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--job-bg);
    border-radius: var(--job-radius);
    transition: var(--job-transition);
}

.job-benefit:hover {
    background: var(--job-primary-lighter);
}

.job-benefit__icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--job-primary-light);
    border-radius: var(--job-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-benefit__icon i {
    font-size: 14px;
    color: var(--job-primary);
}

.job-benefit span {
    font-size: 13px;
    font-weight: 500;
    color: var(--job-text-secondary);
}

/* Options Grid */
.job-options__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.job-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--job-bg);
    border-radius: var(--job-radius);
}

.job-option__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--job-primary-light);
    border-radius: var(--job-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-option__icon i {
    font-size: 16px;
    color: var(--job-primary);
}

.job-option__text h4 {
    font-size: 11px;
    font-weight: 600;
    color: var(--job-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px;
}

.job-option__text p {
    font-size: 14px;
    font-weight: 500;
    color: var(--job-text-primary);
    margin: 0;
    line-height: 1.4;
}

/* Salary Section */
.job-salary {
    text-align: center;
    padding: 32px 24px;
}

.job-salary__amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--job-primary);
    margin-bottom: 6px;
}

.job-salary__period {
    font-size: 14px;
    color: var(--job-text-muted);
}

/* Map Section */
.job-map__wrapper {
    border-radius: var(--job-radius);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--job-border-light);
}

.job-map__wrapper #map {
    height: 360px;
    width: 100%;
    z-index: 1;
}

/* Leaflet custom styling */
.leaflet-eduro-marker {
    background: transparent !important;
    border: none !important;
}

.leaflet-popup-content-wrapper {
    border-radius: var(--job-radius-sm) !important;
    box-shadow: var(--job-shadow) !important;
}

.leaflet-popup-content {
    margin: 12px 14px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: var(--job-text-primary) !important;
}

.leaflet-popup-content strong {
    color: var(--job-primary) !important;
    font-weight: 600 !important;
}

.job-map__location-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--job-bg);
    border-radius: var(--job-radius);
    margin-top: 12px;
}

.job-map__location-info i {
    color: var(--job-primary);
    font-size: 16px;
}

.job-map__location-info span {
    color: var(--job-text-primary);
    font-size: 14px;
    font-weight: 500;
}

.job-map__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

.job-map__search-wrapper {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.job-map__input {
    position: relative;
}

.job-map__input input {
    width: 100%;
    padding: 12px 42px 12px 42px;
    border: 1px solid var(--job-border);
    border-radius: var(--job-radius);
    font-size: 14px;
    transition: var(--job-transition);
    background: var(--job-white);
}

.job-map__input input:focus {
    outline: none;
    border-color: var(--job-primary);
    box-shadow: 0 0 0 3px rgba(222, 107, 59, 0.1);
}

.job-map__input > i:first-child {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--job-text-muted);
    font-size: 14px;
    pointer-events: none;
}

.job-map__loading {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--job-primary);
    font-size: 14px;
}

.job-map__suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--job-white);
    border: 1px solid var(--job-border);
    border-top: none;
    border-radius: 0 0 var(--job-radius) var(--job-radius);
    box-shadow: var(--job-shadow-lg);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
}

.job-map__suggestion {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--job-transition);
    border-bottom: 1px solid var(--job-border-light);
}

.job-map__suggestion:last-child {
    border-bottom: none;
}

.job-map__suggestion:hover {
    background: var(--job-primary-lighter);
}

.job-map__suggestion i {
    color: var(--job-primary);
    font-size: 14px;
    flex-shrink: 0;
}

.job-map__suggestion-text {
    font-size: 14px;
    color: var(--job-text-primary);
    line-height: 1.4;
}

.job-map__suggestion-text small {
    display: block;
    font-size: 12px;
    color: var(--job-text-muted);
    margin-top: 2px;
}

.job-map__calculate-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--job-primary);
    color: white;
    border: none;
    border-radius: var(--job-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--job-transition);
}

.job-map__calculate-btn:hover {
    background: var(--job-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--job-shadow);
}

.job-map__calculate-btn:disabled {
    background: var(--job-text-muted);
    cursor: not-allowed;
    transform: none;
}

.job-map__calculate-btn i {
    font-size: 14px;
}

.job-map__error {
    padding: 10px 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--job-radius-sm);
    color: #dc2626;
    font-size: 13px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-map__travel {
    display: flex;
    gap: 8px;
}

.job-map__mode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: var(--job-bg);
    border: 1px solid transparent;
    border-radius: var(--job-radius-sm);
    cursor: pointer;
    transition: var(--job-transition);
}

.job-map__mode:hover {
    background: var(--job-primary-lighter);
}

.job-map__mode.active {
    background: var(--job-primary-light);
    border-color: var(--job-primary);
}

.job-map__mode i {
    font-size: 16px;
    color: var(--job-primary);
}

.job-map__mode span {
    font-size: 11px;
    font-weight: 600;
    color: var(--job-text-secondary);
}

/* Languages Section */
.job-languages__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-language {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--job-bg);
    border-radius: 50px;
}

.job-language__flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

.job-language span {
    font-size: 13px;
    font-weight: 500;
    color: var(--job-text-secondary);
}

.job-language__level {
    font-size: 12px;
    color: var(--job-text-muted);
    padding-left: 10px;
    border-left: 1px solid var(--job-border);
}

/* Services Section */
.job-services__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-service {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--job-bg);
    border-radius: var(--job-radius);
}

.job-service__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--job-primary-light);
    border-radius: var(--job-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-service__icon i {
    font-size: 16px;
    color: var(--job-primary);
}

.job-service__content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--job-text-primary);
    margin: 0 0 4px;
}

.job-service__content p {
    font-size: 13px;
    color: var(--job-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* =============== APPLY FORM - LIGHT =============== */
.job-apply {
    background: var(--job-bg);
    border-radius: var(--job-radius-lg);
    border: 1px solid var(--job-border-light);
    overflow: hidden;
}

.job-apply__header {
    padding: 28px 24px;
    text-align: center;
    background: var(--job-white);
    border-bottom: 1px solid var(--job-border-light);
}

.job-apply__header h3 {
    color: var(--job-text-primary);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
}

.job-apply__header p {
    color: var(--job-text-muted);
    font-size: 14px;
    margin: 0;
}

.job-apply__form {
    padding: 24px;
    background: var(--job-white);
}

.job-apply__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}

.job-apply__field {
    margin-bottom: 14px;
}

.job-apply__field.full-width {
    grid-column: span 2;
}

.job-apply__input {
    width: 100%;
    padding: 14px 16px;
    background: var(--job-bg);
    border: 1px solid var(--job-border);
    border-radius: var(--job-radius);
    color: var(--job-text-primary);
    font-size: 14px;
    transition: var(--job-transition);
}

.job-apply__input::placeholder {
    color: var(--job-text-muted);
}

.job-apply__input:focus {
    outline: none;
    border-color: var(--job-primary);
    background: var(--job-white);
}

.job-apply__file {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--job-bg);
    border: 1px dashed var(--job-border);
    border-radius: var(--job-radius);
    cursor: pointer;
    transition: var(--job-transition);
}

.job-apply__file:hover {
    border-color: var(--job-primary);
    background: var(--job-primary-lighter);
}

.job-apply__file input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.job-apply__file i {
    font-size: 20px;
    color: var(--job-primary);
}

.job-apply__file span {
    color: var(--job-text-muted);
    font-size: 14px;
}

.job-apply__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.job-apply__checkbox input {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--job-primary);
}

.job-apply__checkbox label {
    color: var(--job-text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.job-apply__checkbox label a {
    color: var(--job-primary);
    text-decoration: underline;
}

.job-apply__submit {
    width: 100%;
    padding: 16px 28px;
    background: var(--job-primary);
    color: var(--job-white);
    border: none;
    border-radius: var(--job-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--job-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.job-apply__submit:hover {
    background: var(--job-primary-hover);
    transform: translateY(-1px);
}

.job-apply__error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 6px;
}

/* =============== SIMILAR JOBS =============== */
.job-similar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.job-similar__header {
    text-align: center;
    margin-bottom: 36px;
}

.job-similar__header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--job-text-primary);
    margin: 0 0 8px;
}

.job-similar__header p {
    font-size: 15px;
    color: var(--job-text-muted);
    margin: 0;
}

.job-similar__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* =============== SOCIAL SHARE =============== */
.job-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-social__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--job-bg);
    color: var(--job-text-secondary);
    font-size: 16px;
    transition: var(--job-transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.job-social__btn:hover {
    background: var(--job-primary);
    color: var(--job-white);
}

.job-social__btn--whatsapp:hover {
    background: #25D366;
}

.job-social__btn--facebook:hover {
    background: #1877F2;
}

.job-social__btn--twitter:hover {
    background: #1DA1F2;
}

.job-social__btn--linkedin:hover {
    background: #0A66C2;
}

.job-social__btn--email:hover {
    background: var(--job-primary);
}

/* =============== FLOATING APPLY BUTTON (MOBILE) =============== */
.job-floating-apply {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
}

.job-floating-apply__btn {
    width: 100%;
    padding: 16px 28px;
    background: var(--job-primary);
    color: var(--job-white);
    border: none;
    border-radius: var(--job-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(222, 107, 59, 0.35);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
    .job-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 24px;
        min-height: auto;
    }
    
    .job-hero__content {
        order: 0;
    }
    
    .job-hero__media {
        order: 1;
        min-height: 280px;
    }
    
    .job-hero__media img,
    .job-hero__media video,
    .job-hero__media iframe {
        min-height: 280px;
    }
    
    .job-main {
        grid-template-columns: 1fr;
    }
    
    .job-sidebar {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .job-hero__title {
        font-size: 30px;
    }
    
    .job-options__grid {
        grid-template-columns: 1fr;
    }
    
    .job-similar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .job-hero__wrapper {
        padding: 32px 20px;
        gap: 24px;
    }
    
    .job-hero__media {
        min-height: 240px;
    }
    
    .job-hero__title {
        font-size: 26px;
    }
    
    .job-hero__company-logo {
        width: 56px;
        height: 56px;
    }
    
    .job-hero__company-initials {
        font-size: 18px;
    }
    
    .job-hero__btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .job-nav__container {
        padding: 0 16px;
    }
    
    .job-nav__tab {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .job-main {
        padding: 24px 16px 100px;
        gap: 20px;
    }
    
    .job-section__body {
        padding: 20px;
    }
    
    .job-apply__row {
        grid-template-columns: 1fr;
    }
    
    .job-apply__field.full-width {
        grid-column: span 1;
    }
    
    .job-similar__grid {
        grid-template-columns: 1fr;
    }
    
    .job-floating-apply {
        display: block;
    }
    
    .job-salary__amount {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .job-hero__meta {
        gap: 8px;
    }
    
    .job-hero__tag {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .job-benefits__grid {
        grid-template-columns: 1fr;
    }
    
    .job-map__controls {
        flex-direction: column;
    }
    
    .job-map__input {
        width: 100%;
    }
    
    .job-map__travel {
        width: 100%;
        justify-content: space-between;
    }
}

/* =============== ANIMATIONS - SUBTLE =============== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.job-section {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.job-section:nth-child(1) { animation-delay: 0.05s; }
.job-section:nth-child(2) { animation-delay: 0.1s; }
.job-section:nth-child(3) { animation-delay: 0.15s; }
.job-section:nth-child(4) { animation-delay: 0.2s; }
.job-section:nth-child(5) { animation-delay: 0.25s; }
.job-section:nth-child(6) { animation-delay: 0.3s; }

.job-section:hover {
    box-shadow: var(--job-shadow-lg);
}

.job-sidebar {
    animation: slideUp 0.4s ease 0.1s forwards;
    opacity: 0;
}

/* Plyr video player styling */
.job-hero .plyr {
    height: 100%;
}

.job-hero .plyr__video-wrapper {
    height: 100%;
}

.job-hero .plyr video {
    object-fit: cover;
}

/* =============== SIMILAR JOBS CARDS =============== */
.job-similar .eduro-jobs__card {
    background: var(--job-white);
    border-radius: var(--job-radius-lg);
    border: 1px solid var(--job-border-light);
    overflow: hidden;
    transition: var(--job-transition);
}

.job-similar .eduro-jobs__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--job-shadow-lg);
}

.job-similar .eduro-jobs__card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.job-similar .eduro-jobs__card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.job-similar .eduro-jobs__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--job-transition-slow);
}

.job-similar .eduro-jobs__card:hover .eduro-jobs__card-image img {
    transform: scale(1.03);
}

.job-similar .eduro-jobs__card-content {
    padding: 18px;
}

.job-similar .eduro-jobs__card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--job-text-primary);
    margin: 0 0 6px;
    line-height: 1.4;
}

.job-similar .eduro-jobs__card-company {
    font-size: 13px;
    color: var(--job-text-muted);
    margin: 0 0 12px;
}

.job-similar .eduro-jobs__card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-similar .eduro-jobs__card-meta span {
    font-size: 12px;
    color: var(--job-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-similar .eduro-jobs__card-meta span i {
    color: var(--job-primary);
    font-size: 11px;
}

/* =============== EDURO CTA SECTION - LIGHT =============== */
.eduro-cta {
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--job-bg-warm) 0%, #f5ebe4 100%);
    overflow: hidden;
}

.eduro-cta__bg {
    display: none;
}

.eduro-cta__shape {
    display: none;
}

.eduro-cta__container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.eduro-cta__header {
    text-align: center;
    margin-bottom: 48px;
}

.eduro-cta__badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--job-primary-light);
    color: var(--job-primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eduro-cta__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--job-text-primary);
    margin: 0 0 12px;
    line-height: 1.2;
}

.eduro-cta__subtitle {
    font-size: 16px;
    color: var(--job-text-muted);
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.eduro-cta__steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.eduro-cta__step {
    flex: 0 0 260px;
    background: var(--job-white);
    border: 1px solid var(--job-border-light);
    border-radius: var(--job-radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: var(--job-transition);
}

.eduro-cta__step:hover {
    transform: translateY(-4px);
    box-shadow: var(--job-shadow-lg);
}

.eduro-cta__step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--job-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eduro-cta__step-number span {
    color: var(--job-white);
    font-size: 14px;
    font-weight: 700;
}

.eduro-cta__step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--job-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eduro-cta__step-icon i {
    font-size: 24px;
    color: var(--job-primary);
}

.eduro-cta__step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--job-text-primary);
    margin: 0 0 8px;
}

.eduro-cta__step p {
    font-size: 13px;
    color: var(--job-text-muted);
    margin: 0;
    line-height: 1.5;
}

.eduro-cta__step-connector {
    display: flex;
    align-items: center;
    color: var(--job-text-light);
    font-size: 20px;
    padding-top: 48px;
}

.eduro-cta__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.eduro-cta__stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: var(--job-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.eduro-cta__stat-label {
    font-size: 13px;
    color: var(--job-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eduro-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.eduro-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--job-radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--job-transition);
    cursor: pointer;
    border: none;
}

.eduro-cta__btn--primary {
    background: var(--job-primary);
    color: var(--job-white);
}

.eduro-cta__btn--primary:hover {
    background: var(--job-primary-hover);
    transform: translateY(-2px);
    color: var(--job-white);
}

.eduro-cta__btn--secondary {
    background: var(--job-white);
    color: var(--job-text-secondary);
    border: 1px solid var(--job-border);
}

.eduro-cta__btn--secondary:hover {
    background: var(--job-bg);
    border-color: var(--job-text-muted);
    transform: translateY(-2px);
    color: var(--job-text-secondary);
}

@media (max-width: 1024px) {
    .eduro-cta__step {
        flex: 0 0 220px;
    }
    
    .eduro-cta__step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .eduro-cta {
        padding: 60px 20px;
    }
    
    .eduro-cta__title {
        font-size: 26px;
    }
    
    .eduro-cta__subtitle {
        font-size: 14px;
    }
    
    .eduro-cta__step {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .eduro-cta__stats {
        gap: 24px;
    }
    
    .eduro-cta__stat-number {
        font-size: 32px;
    }
    
    .eduro-cta__btn {
        width: 100%;
        justify-content: center;
    }
}
