/* Careers Page Specific Styles */
.careers-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 5% 80px;
    text-align: center;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
    linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.85) 100%),
    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070') center/cover;
    z-index: -1;
}

.careers-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.careers-hero h1 .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* No Postings Section */
.no-postings {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.no-postings-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.no-postings-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gradient-1);
}

.no-postings-icon {
    width: 120px;
    height: 120px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    position: relative;
}

.no-postings-icon::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px dashed rgba(0, 212, 170, 0.3);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.no-postings-icon i {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-postings-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.no-postings-card > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.notify-form {
    display: flex;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto 30px;
}

.notify-form input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 170, 0.05);
}

.notify-form input::placeholder {
    color: var(--text-muted);
}

.notify-form .btn {
    white-space: nowrap;
}

.no-postings-card .divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 35px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.no-postings-card .divider::before,
.no-postings-card .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-cta span {
    color: var(--text-muted);
}

.contact-cta a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-cta a:hover {
    gap: 12px;
}

/* Why Join Section */
.why-join {
    padding: 80px 5% 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(108, 92, 231, 0.03) 50%, transparent 100%);
}

.why-join .section-header {
    margin-bottom: 50px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.perk-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.perk-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.2);
}

.perk-card i {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    display: block;
}

.perk-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Syne', sans-serif;
}

.perk-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .perks-grid {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .no-postings-card {
    padding: 60px 30px;
    }

    .notify-form {
    flex-direction: column;
    }

    .perks-grid {
    grid-template-columns: 1fr;
    }

    .careers-hero {
    padding: 120px 5% 60px;
    }
}