/* ===============================================
   CAREERS PAGE ADD-ONS (Extends Contact Theme)
   =============================================== */

/* NOTE: Most styles are inherited from contact.css (.glass-grid, .glass-panel, etc.)
   This file only handles Career-specific elements.
*/

/* --- 1. SIDEBAR ITEMS (Non-Clickable) --- */
/* Overrides standard directory-item to allow multi-line text */
.directory-item.non-clickable {
    cursor: default;
    align-items: flex-start; /* Align icon to top */
    padding: 15px;
    background: rgba(255,255,255,0.02);
}

.directory-item.non-clickable:hover {
    transform: none; /* No movement on hover */
    background: rgba(255,255,255,0.02);
    box-shadow: none;
}

.directory-item.non-clickable .dir-text h4 {
    margin-bottom: 4px;
    font-size: 1rem;
    color: #fff;
}

.directory-item.non-clickable .dir-text span {
    display: block;
    font-size: 0.8rem;
    color: #b0bec5;
    line-height: 1.4;
    white-space: normal; /* Allow text wrapping */
}

/* --- 2. CHECKBOX (Glass Style) --- */
.checkbox-wrapper-glass {
    display: flex; gap: 12px; align-items: flex-start; margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.03); padding: 12px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.checkbox-wrapper-glass input {
    margin-top: 3px; accent-color: #00BFB3; width: 18px; height: 18px; cursor: pointer;
}
.checkbox-wrapper-glass label {
    font-size: 0.85rem; line-height: 1.4; color: #cfd8dc; margin: 0; cursor: pointer;
}

/* --- 3. PROCESS STEPS (Glass Version) --- */
.process-steps-glass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
}

.step-card-glass {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card-glass:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    margin-bottom: -15px;
    position: relative;
    z-index: 0;
}

.step-card-glass h4 {
    position: relative; z-index: 1;
    font-size: 1.2rem; color: #fff; margin-bottom: 10px;
}

.step-card-glass p {
    position: relative; z-index: 1;
    font-size: 0.9rem; color: #b0bec5; line-height: 1.5; margin: 0;
}

.step-arrow {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-steps-glass { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: 10px 0; }
}