
/* Benefits Section */
.ssg-benefits-section {
    padding: 80px 20px;
}

.ssg-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ssg-section-header {
    text-align: center;
    margin-bottom: 20px;
}

.ssg-section-title {
    font-size: 2.5em;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 15px;
}

.ssg-section-subtitle {
    font-size: 1.1em;
    color: var(--color-gray-500);
}

.ssg-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ssg-benefit-card {
    background: var(--color-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ssg-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ssg-benefit-card:hover::before {
    transform: scaleX(1);
}

.ssg-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.3);
    border-color: rgba(96, 165, 250, 0.5);
}

.ssg-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.ssg-benefit-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.ssg-benefit-desc {
    color: var(--color-gray-900);
    line-height: 1.6;
}

/* Jobs Section */
.ssg-jobs-section {
    padding: 20px;
}

.ssg-jobs-filter {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ssg-filter-btn {
    padding: 12px 30px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 50px;
    color: var(--color-gray-900);
    font-size: 0.95em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ssg-filter-btn:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.5);
    color: #60a5fa;
}

.ssg-filter-btn.active {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.4);
}

.ssg-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ssg-job-card {
    background: linear-gradient(135deg, var(--ssg-logo-color) 0%, #2c3e5f 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    cursor: pointer;
}

.ssg-job-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(96, 165, 250, 0.3);
    border-color: rgba(96, 165, 250, 0.5);
}

.ssg-job-info {
    flex: 1;
}

.ssg-job-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.ssg-job-title {
    font-size: 1.6em;
    font-weight: 700;
    color: #e0e7ff;
}

.ssg-job-badge {
    padding: 6px 15px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.ssg-job-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95em;
}

.ssg-job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ssg-job-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.ssg-job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ssg-job-tag {
    padding: 6px 15px;
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 20px;
    font-size: 0.85em;
    color: #60a5fa;
}

.ssg-job-action {
    text-align: center;
}

.ssg-apply-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ssg-apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.5);
}

/* Application Form Modal */
.ssg-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.ssg-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssg-modal-content {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 25px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ssg-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5em;
    color: #60a5fa;
    transition: all 0.3s ease;
}

.ssg-modal-close:hover {
    background: rgba(96, 165, 250, 0.2);
    transform: rotate(90deg);
}

.ssg-modal-title {
    font-size: 2em;
    font-weight: 800;
    color: #e0e7ff;
    margin-bottom: 30px;
}

.ssg-form-group {
    margin-bottom: 25px;
}

.ssg-form-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-weight: 500;
}

.ssg-form-input,
.ssg-form-select,
.ssg-form-textarea {
    width: 100%;
    padding: 15px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
}

.ssg-form-input:focus,
.ssg-form-select:focus,
.ssg-form-textarea:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(15, 23, 42, 0.8);
}

.ssg-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.ssg-form-file {
    padding: 15px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px dashed rgba(96, 165, 250, 0.3);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ssg-form-file:hover {
    border-color: #60a5fa;
    background: rgba(15, 23, 42, 0.8);
}

.ssg-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ssg-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .ssg-job-card {
        grid-template-columns: 1fr;
    }

    .ssg-job-action {
        text-align: left;
    }

    .ssg-apply-btn {
        width: 100%;
    }

    .ssg-modal-content {
        padding: 30px 20px;
    }
}

.ssg-pagination {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.ssg-pagination:last-child {
    border-bottom: none;
}

.ssg-pagesize-buttons {
    display: flex;
    gap: 8px;
    padding: 12px 0;
    align-items: center;
    justify-content: center;       
}

.ssg-page-button {
    padding: 8px 16px;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ssg-page-button:hover {
    border-color: #3b82f6;
    color: white;
    background: #3b82f6;
}

.ssg-page-button.active {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    border-color: transparent;
}

.ssg-pagesize-select {
    position: relative;
    display: inline-block;
}

.ssg-page-select {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    padding: 8px 16px;
}

.ssg-page-select:focus {
    border-color: #60a5fa;
}

.job-header {
            background: linear-gradient(135deg, #1e2a4a 0%, #2c3e5f 100%);
            color: white;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }

        .job-header::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: rgba(96, 165, 250, 0.1);
            border: 1px solid rgba(96, 165, 250, 0.3);
            border-radius: 10px;
            color: #60a5fa;
            text-decoration: none;
            font-weight: 500;
            margin: 24px 0px;
            transition: all 0.3s ease;
        }

        .back-link:hover {
            color: #3b82f6;
        }

        .back-link svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .job-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 32px;
            font-size: 15px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #cbd5e1;
        }

        .meta-item svg {
            width: 20px;
            height: 20px;
            fill: #2dd4bf;
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .tag {
            padding: 8px 16px;
            background: rgba(96, 165, 250, 0.15);
            border: 1px solid rgba(96, 165, 250, 0.3);
            color: #60a5fa;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        /* Main Content */
        .job-container {
            max-width: 1200px;
            margin: -40px auto 60px;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 40px;
            position: relative;
        }

        /* Left Content */
        .job-content {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .section {
            margin-bottom: 40px;
        }

        .section:last-child {
            margin-bottom: 0;
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid #60a5fa;
            display: inline-block;
        }

        .section-content {
            color: #475569;
            font-size: 15px;
            line-height: 1.8;
        }

        .section-content p {
            margin-bottom: 16px;
        }

        .section-content ul,
        .section-content ol {
            padding-left: 24px;
            margin-bottom: 16px;
        }

        .section-content li {
            margin-bottom: 12px;
            padding-left: 8px;
        }

        .section-content strong {
            color: #1e293b;
            font-weight: 600;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 20px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .benefit-text {
            flex: 1;
        }

        .benefit-title {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 4px;
            font-size: 14px;
        }

        .benefit-desc {
            font-size: 13px;
            color: #64748b;
        }

        /* Right Sidebar */
        .job-sidebar {
            position: sticky;
            top: 40px;
            height: fit-content;
        }

        .sidebar-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 24px;
        }

        .apply-button {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(96, 165, 250, 0.4);
            display: block;
            text-align: center;
            width: 100%;
        }

        .apply-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(96, 165, 250, 0.4);
        }

        .save-button {
            width: 100%;
            padding: 14px;
            background: white;
            color: #1e2a4a;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .save-button:hover {
            border-color: #60a5fa;
            color: #60a5fa;
        }

        .save-button svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .info-list {
            list-style: none;
            margin-top: 24px;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .info-item:first-child {
            padding-top: 0;
        }

        .info-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .info-label {
            color: #64748b;
            font-size: 14px;
        }

        .info-value {
            color: #1e293b;
            font-weight: 600;
            font-size: 14px;
            text-align: right;
        }

        .share-section {
            padding-top: 24px;
            border-top: 1px solid #e2e8f0;
        }

        .share-title {
            font-size: 14px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .share-buttons {
            display: flex;
            gap: 8px;
        }

        .share-btn {
            flex: 1;
            padding: 10px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .share-btn:hover {
            background: #e2e8f0;
        }

        .share-btn svg {
            width: 20px;
            height: 20px;
            fill: #64748b;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .job-container {
                grid-template-columns: 1fr;
                margin-top: -20px;
            }

            .job-sidebar {
                position: static;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .job-header {
                padding: 40px 20px;
            }

            .job-title {
                font-size: 32px;
            }

            .job-container {
                padding: 0 20px;
            }

            .job-content,
            .sidebar-card {
                padding: 24px;
            }

            .job-meta {
                flex-direction: column;
                gap: 12px;
            }
        }