/* Jobs Section */
.jobs-section {
    padding: 120px 0 80px;
}

/* Jobs Section */
.jobs-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #d8b4fe;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Bar */
.filter-bar {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.filter-controls {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    flex: 1;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-label {
    font-size: 0.9rem;
    color: #d8b4fe;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 160px;
}

.filter-select:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.filter-select:hover {
    border-color: rgba(147, 51, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.filter-select option {
    background: #1a1a1a;
    color: white;
}

.filter-actions {
    display: flex;
    align-items: center;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #9333ea;
    color: #9333ea;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-primary:hover {
    background: #9333ea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.btn-outline-primary .lucide {
    width: 16px;
    height: 16px;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.job-card {
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 1.2rem;
    border: 1.5px solid rgba(255,255,255,0.13);
    box-shadow: 0 2px 16px 0 rgba(124,58,237,0.07);
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card:hover {
    box-shadow: 0 8px 32px 0 rgba(124,58,237,0.13);
    border: 1.5px solid rgba(147,51,234,0.18);
    transform: translateY(-4px) scale(1.01);
}

.job-card.inactive {
    opacity: 0.6;
    cursor: not-allowed;
}

.job-card.inactive:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.job-status {
    display: flex;
    align-items: center;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.9rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(34,197,94,0.08);
    color: #22c55e;
    border: none;
    box-shadow: none;
}

.status-badge.active {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-badge.inactive {
    background: rgba(239,68,68,0.08);
    color: #ef4444;
}

.status-badge .lucide {
    width: 1.1em;
    height: 1.1em;
    vertical-align: middle;
    stroke-width: 2.2;
}

.job-salary {
    text-align: right;
}

.salary-amount {
    background: rgba(124,58,237,0.13);
    color: #a78bfa;
    padding: 0.38rem 0.9rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: none;
    letter-spacing: 0.2px;
}

.job-card-body {
    flex: 1;
    margin-bottom: 2rem;
}

.job-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.job-description {
    color: #bda6f7;
    line-height: 1.6;
    margin-bottom: 1.1rem;
    font-size: 0.97rem;
}

.job-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #a78bfa;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.job-location .lucide {
    width: 1.1em;
    height: 1.1em;
    stroke-width: 2.2;
    color: #a78bfa;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: auto;
}

.job-meta {
    color: #bda6f7;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.job-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-date::before {
    content: '';
    display: none;
}

/* No Jobs State */
.no-jobs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    margin: 0 auto !important;
    grid-column: 1/-1;
}

.no-jobs-icon {
    width: 80px;
    height: 80px;
    color: #d8b4fe;
    margin-bottom: 2rem;
}

.no-jobs h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.no-jobs p {
    color: #d8b4fe;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Load More Button */
.load-more-section {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline-primary.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-width: 2px;
    border-radius: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-outline-primary.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(147, 51, 234, 0.4);
}

.btn-outline-primary.btn-lg .lucide {
    width: 20px;
    height: 20px;
}

/* Primary Button Improvements */
.btn-primary {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    color: white;
    text-decoration: none;
}

.btn-primary .lucide {
    width: 16px;
    height: 16px;
}

/* Why Join Us Section */
.why-join-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 40px !important;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(236, 72, 153, 0.05));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(147, 51, 234, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.benefit-icon .lucide {
    width: 35px;
    height: 35px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.2rem;
}

.benefit-card p {
    color: #d8b4fe;
    line-height: 1.7;
    font-size: 1rem;
}

/* Job Detail Styles */
.job-detail-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
}

.job-detail-header {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.job-detail-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-posted-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d8b4fe;
    font-size: 0.9rem;
}

.job-posted-date .lucide {
    width: 16px;
    height: 16px;
}

.job-detail-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.job-detail-title h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
    line-height: 1.1;
}
.job-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #d8b4fe;
    font-weight: 500;
    margin-top: 0.2rem;
}
.job-location .lucide {
    width: 20px;
    height: 20px;
    color: #d8b4fe;
}
@media (max-width: 576px) {
    .job-detail-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .job-detail-title h1 {
        font-size: 2rem;
    }
    .job-location {
        font-size: 1rem;
    }
}

.job-detail-salary {
    text-align: right;
}

.salary-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.salary-label {
    color: #d8b4fe;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.salary-amount {
    background: var(--gradient);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

/* Job Content Section */
.job-content-section {
    padding: 60px 0;
}

.job-description-card,
.job-requirements-card,
.job-benefits-card {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.job-description-content {
    color: #d8b4fe;
    line-height: 1.8;
    font-size: 1.1rem;
}

.requirements-content {
    display: grid;
    gap: 2rem;
}

.requirement-category h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.requirement-category .lucide {
    width: 24px;
    height: 24px;
    color: #22c55e;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    color: #d8b4fe;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.requirements-list li::before {
    content: '•';
    color: #9333ea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.benefit-item .lucide {
    width: 24px;
    height: 24px;
    color: #9333ea;
}

.benefit-item span {
    color: #d8b4fe;
    font-weight: 500;
}

/* Application Sidebar */
.application-sidebar {
    position: sticky;
    top: 120px;
}

    .quick-apply-card,
    .job-details-card,
    .share-job-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

/* Application Form Styles */
.application-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
}

.application-header {
    padding: 3rem;
}

.application-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.application-subtitle {
    font-size: 1.1rem;
    color: #d8b4fe;
    margin-bottom: 2rem;
}

.job-preview {
    margin-top: 2rem;
}

.job-preview-card {
    padding: 1.5rem;
    display: inline-block;
    text-align: left;
}

.job-preview-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.job-preview-card p {
    color: #d8b4fe;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.job-preview-card .lucide {
    width: 16px;
    height: 16px;
}

.application-form-section {
    padding: 60px 0;
}

.application-form-card {
    padding: 3rem;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section:last-child {
    margin-bottom: 2rem;
}

.form-section .section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section .section-title .lucide {
    width: 24px;
    height: 24px;
    color: #9333ea;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control,
.form-select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder,
textarea::placeholder {
    color: #a0a0a0;
}

.form-text {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.form-control.error,
.form-select.error,
textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: #d8b4fe;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload-wrapper:hover .file-upload-info {
    border-color: #9333ea;
    background: rgba(255, 255, 255, 0.08);
}

.file-upload-info .lucide {
    width: 32px;
    height: 32px;
    color: #9333ea;
}

.file-upload-info span {
    font-weight: 600;
    font-size: 1rem;
}

.file-upload-info small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Application Tips */
.application-tips {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(236, 72, 153, 0.05));
}

.tips-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.tips-header p {
    color: #d8b4fe;
    font-size: 1.1rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tip-icon .lucide {
    width: 30px;
    height: 30px;
    color: white;
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #d8b4fe;
    line-height: 1.6;
}

/* Success Page Styles */
.success-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
    text-align: center;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.success-icon .lucide {
    width: 60px;
    height: 60px;
    color: white;
}

.success-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.success-subtitle {
    font-size: 1.2rem;
    color: #d8b4fe;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.success-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-message p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #d8b4fe;
    padding: 0.75rem 0;
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.next-steps li .lucide {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

/* Next Steps Section */
.next-steps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(236, 72, 153, 0.05));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.step-icon .lucide {
    width: 40px;
    height: 40px;
    color: white;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.step-card p {
    color: #d8b4fe;
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-content {
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #d8b4fe;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for success page */
@media (max-width: 768px) {
    .success-title {
        font-size: 2rem;
    }
    
    .success-subtitle {
        font-size: 1rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
    }
    
    .success-icon .lucide {
        width: 40px;
        height: 40px;
    }
    
    .cta-content {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.quick-apply-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.quick-apply-card p {
    color: #d8b4fe;
    margin-bottom: 2rem;
}

.application-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d8b4fe;
    font-size: 0.9rem;
}

.info-item .lucide {
    width: 18px;
    height: 18px;
    color: #9333ea;
}

.job-details-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #d8b4fe;
    font-size: 0.9rem;
}

.detail-value {
    color: white;
    font-weight: 600;
}

.share-job-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #d8b4fe;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.share-btn .lucide {
    width: 18px;
    height: 18px;
}

/* Related Jobs Section */
.related-jobs-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(236, 72, 153, 0.05));
}

.related-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.related-job-card {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.related-job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.related-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.related-job-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.related-job-description {
    color: #d8b4fe;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.related-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .jobs-section {
        padding: 100px 0 60px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .filter-controls {
        gap: 1.5rem;
    }
    
    .jobs-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .job-detail-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .job-detail-salary {
        text-align: left;
    }
    
    .salary-display {
        align-items: flex-start;
    }
    
    .application-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .jobs-section {
        padding: 80px 0 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-select {
        min-width: auto;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .job-card {
        padding: 2rem;
    }
    
    .job-title {
        font-size: 1.3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .job-detail-title h1 {
        font-size: 2rem;
    }
    
    .job-description-card,
    .job-requirements-card,
    .job-benefits-card {
        padding: 1.5rem;
    }
    
    .related-jobs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .jobs-section {
        padding: 60px 0 30px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .filter-bar {
        padding: 1rem;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .job-title {
        font-size: 1.2rem;
    }
    
    .job-description {
        font-size: 0.9rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon .lucide {
        width: 30px;
        height: 30px;
    }
    
    .job-detail-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-apply-card,
    .job-details-card,
    .share-job-card {
        padding: 1.5rem;
    }
    
    .btn-outline-primary.btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
} 

/* --- HERO SECTION (copied from about.css for pixel-perfect match) --- */
.about-hero {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
  z-index: -1;
  will-change: transform, opacity;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-glow 6s ease-in-out infinite;
  z-index: -1;
  will-change: transform, opacity;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  position: relative;
  animation: title-glow 3s ease-in-out infinite;
  will-change: filter;
  display: inline-block;
  padding: 0 1rem;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  min-width: 120px;
  max-width: 420px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
    padding: 0 0.5rem;
  }
  .hero-title::after {
    min-width: 90px;
    max-width: 320px;
    height: 2.5px;
  }
}
@media (max-width: 768px) {
  .about-hero {
    padding: 2.5rem 0 2rem;
  }
  .hero-title {
    font-size: 2.5rem;
    padding: 0 0.2rem;
  }
  .hero-title::after {
    min-width: 90px;
    max-width: 220px;
    height: 2px;
  }
}
@media (max-width: 480px) {
  .about-hero {
    padding: 2rem 0 1.2rem;
  }
  .hero-title {
    font-size: 1.7rem;
    padding: 0;
  }
  .hero-title::after {
    min-width: 60px;
    max-width: 120px;
    height: 1.5px;
  }
}

/* End hero section copy */

.btn-sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.95rem;
    border-radius: 0.6rem;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(.4,0,.2,1);
    line-height: 1.2;
}
.btn-primary.btn-sm, .btn-secondary.btn-sm {
    padding: 0.38rem 1.1rem;
    font-size: 0.93rem;
    border-radius: 0.7rem;
    font-weight: 500;
    min-width: 0;
    box-shadow: none;
    background: rgba(124,58,237,0.18);
    color: #fff;
    border: none;
    transition: background 0.18s, color 0.18s, transform 0.18s;
}
.btn-primary.btn-sm:hover, .btn-secondary.btn-sm:hover {
    background: rgba(147,51,234,0.22);
    color: #fff;
    transform: translateY(-1px) scale(1.03);
}
.btn-secondary.btn-sm {
    background: rgba(239,68,68,0.13);
    color: #ef4444;
} 

.pagination-nav {
    margin-top: 2.5rem;
}
.pagination {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 1rem;
    padding: 0.5rem 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(124,58,237,0.06);
    gap: 0.2rem;
}
.page-item {
    margin: 0 0.1rem;
}
.page-link {
    color: #a78bfa;
    background: transparent;
    border: none;
    border-radius: 0.6rem;
    padding: 0.45rem 1.1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
    box-shadow: none;
}
.page-link:focus, .page-link:hover {
    background: rgba(147,51,234,0.13);
    color: #fff;
    outline: none;
    text-decoration: none;
}
.page-item.active .page-link {
    background: rgba(147,51,234,0.22);
    color: #fff;
    font-weight: 700;
    border: none;
}
.page-item.disabled .page-link {
    color: #bda6f7;
    opacity: 0.5;
    background: transparent;
} 

/* Jobs grid and card mobile improvements */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.job-card {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 1.2rem;
  border: 1.5px solid rgba(255,255,255,0.13);
  box-shadow: 0 2px 16px 0 rgba(124,58,237,0.07);
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .job-card {
    padding: 1.2rem 0.8rem;
    border-radius: 1rem;
  }
}
@media (max-width: 480px) {
  .job-card {
    padding: 0.7rem 0.3rem;
    border-radius: 0.7rem;
  }
} 

/* --- Job Detail Header Responsive Improvements --- */
.job-detail-header {
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.job-detail-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.job-detail-title h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
    line-height: 1.1;
    text-align: center;
}

.job-detail-info-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 0.5rem;
    flex-wrap: nowrap;
    width: 100%;
}

.job-detail-salary, .job-posted-date, .job-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #d8b4fe;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}

.job-detail-salary {
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.salary-label {
    color: #d8b4fe;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.1rem;
}

.salary-amount {
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
    margin-top: 0.1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .job-detail-header {
        padding: 1.2rem 0.5rem;
        gap: 1rem;
    }
    .job-detail-title h1 {
        font-size: 1.5rem;
    }
    .job-detail-info-row {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
        flex-wrap: wrap;
    }
    .job-detail-salary, .job-posted-date, .job-location {
        font-size: 0.9rem;
        justify-content: center;
        white-space: normal;
    }
    .job-detail-salary {
        flex-direction: row;
        gap: 0.3rem;
    }
    .salary-amount {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
} 

input[type="url"],
input[type="text"],
textarea {
    color: white !important;
    background: rgba(255, 255, 255, 0.05);
}
input[type="url"]:focus,
input[type="text"]:focus,
textarea:focus {
    color: white !important;
    background: rgba(255, 255, 255, 0.08);
} 