/* CSS for Careers Page */

:root {
    --neon-cyan: #00f3e6;
    --neon-purple: #bc13fe;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: #050505;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

/* Neon Header */
.neon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 230, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo {
    height: 40px;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.nav-links li a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Hero Section */
.careers-hero {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), #050505);
    z-index: 0;
}

.hero-content-careers {
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.careers-hero h1.neon-text {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        0 0 80px var(--neon-cyan);
}

.careers-hero p {
    font-size: 1.2rem;
    color: #ddd;
}

/* Split Container */
.careers-container {
    display: flex;
    max-width: 1400px;
    margin: 40px auto;
    gap: 40px;
    padding: 0 20px;
}

.company-info-pane {
    flex: 1;
    padding-right: 20px;
}

.application-form-pane {
    flex: 1;
}

/* Info Pane Styles */
.info-block {
    margin-bottom: 40px;
}

.info-block h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(188, 19, 254, 0.4);
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--neon-cyan);
}

.info-block p {
    line-height: 1.6;
    color: #ccc;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eee;
}

.feature-list i {
    color: var(--neon-cyan);
}

/* Tracking Widget */
.tracking-widget {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 12px;
    margin-top: 40px;
}

.tracking-input-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.tracking-input-group input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
}

.tracking-input-group button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background: var(--neon-purple);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.tracking-result {
    margin-top: 15px;
    font-size: 0.95rem;
}

/* Form Styles */
.glass-form {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #aaa;
    font-size: 0.9rem;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: inherit;
    transition: all 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 243, 230, 0.2);
}

/* Input with Button */
.input-with-btn {
    display: flex;
    gap: 10px;
}

.input-with-btn input {
    flex: 1;
}

.input-with-btn button {
    padding: 0 20px;
    border: 1px solid var(--neon-cyan);
    background: transparent;
    color: var(--neon-cyan);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.input-with-btn button:hover {
    background: var(--neon-cyan);
    color: #000;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    border: 1px dashed #555;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: var(--neon-cyan);
}

input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-name {
    color: #888;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s;
    margin-top: 20px;
}

.submit-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 243, 230, 0.4);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #444;
}

.legal-note {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
}

/* Status Messages */
.status-msg {
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.text-success {
    color: #0f0;
}

.text-danger {
    color: #f00;
}

/* Responsive */
@media (max-width: 900px) {
    .careers-container {
        flex-direction: column;
    }
}