/* === CAREERS PAGE ENHANCEMENTS === */

/* Prevent CSS flickering and layout shifts */
.development-section *,
.under-development-banner * {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Allow only specific animations */
.under-development-banner i {
    animation: spin 2s linear infinite !important;
}

.development-icon i {
    animation: rocketFloat 3s ease-in-out infinite !important;
}

/* Under Development Banner */
.under-development-banner {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.15));
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    opacity: 1;
    visibility: visible;
    transition: none;
}

.under-development-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    flex-wrap: wrap;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
}

.under-development-banner i {
    font-size: 1.5rem;
    color: #ffc107;
    animation: spin 2s linear infinite;
}

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

.under-development-banner h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.under-development-banner p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.under-development-banner a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.under-development-banner a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

@media (max-width: 768px) {
    .under-development-banner .banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .under-development-banner h3 {
        font-size: 1.1rem;
    }
    
    .under-development-banner p {
        font-size: 0.9rem;
    }
}

/* Development Section */
.development-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: none;
}

.development-content {
    text-align: center;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    animation: none;
}

.development-icon {
    margin-bottom: 2rem;
}

.development-icon i {
    font-size: 4rem;
    color: #ffffff;
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

.development-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.development-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.contact-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-method i {
    font-size: 1.2rem;
    color: #ffffff;
}

.contact-method span {
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .development-content {
        padding: 3rem 2rem;
    }
    
    .development-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .development-description {
        font-size: 1rem;
    }
    
    .development-icon i {
        font-size: 3rem;
    }
    
    .contact-method {
        min-width: 200px;
        padding: 0.875rem 1.5rem;
    }
}

/* Filters Wrapper */
.filters-wrapper {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

.filters-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-search {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.filter-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.filter-search input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.filter-search input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.filter-search input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

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

.filter-selects select {
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    appearance: none;
}

.filter-selects select:hover,
.filter-selects select:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.filter-selects select option {
    background: #000000;
    color: #ffffff;
}

.btn-clear-filters {
    padding: 0.875rem 1.5rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-clear-filters:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
}

/* Enhanced Position Cards */
.position-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.position-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.position-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.badge-new,
.badge-type {
    padding: 0.35rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-new {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000000;
}

.badge-type {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.position-header {
    margin-bottom: 1.5rem;
}

.position-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.position-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.position-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.position-meta i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.position-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.position-footer {
    display: flex;
    justify-content: flex-end;
}

/* === CONTACT PAGE ENHANCEMENTS === */

/* Alert Container */
.alert-container {
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.alert-success {
    border-color: #00ff00;
    color: #00ff00;
}

.alert-error {
    border-color: #ff0000;
    color: #ff6b6b;
}

.alert-info {
    border-color: #00d9ff;
    color: #00d9ff;
}

.alert i {
    font-size: 1.2rem;
}

/* Enhanced Contact Info */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: #ffffff;
}

.contact-details h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-details p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ffffff;
}

/* Form Header */
.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Enhanced Form Inputs */
.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.input-icon-wrapper input {
    padding-left: 2.8rem;
}

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 150px;
}

.form-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    font-size: 0.85rem;
}

/* Map Section */
.map-section {
    position: relative;
    margin-top: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    filter: grayscale(100%) invert(100%) contrast(90%);
    opacity: 0.8;
}

/* Social Links Enhancement */
.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.1rem;
}

/* === CAREER DETAIL & APPLICATION FORM === */

/* Career Content Grid */
.career-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-top: 3rem;
}

.career-main {
    min-width: 0;
}

.career-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

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

.career-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.career-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Application Form Section */
.application-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    margin-top: 3rem;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input[type="file"] {
    padding: 0.75rem;
    cursor: pointer;
    font-size: 0.8rem;
}

.form-group input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.form-group small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -0.25rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Info Card Sidebar */
.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card .btn {
    margin-bottom: 0.75rem;
}

.info-card .btn:last-child {
    margin-bottom: 0;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.share-btn i {
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .career-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .career-sidebar {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .application-section {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .filters-form {
        flex-direction: column;
    }
    
    .filter-search {
        width: 100%;
    }
    
    .filter-selects {
        width: 100%;
        flex-direction: column;
    }
    
    .filter-selects select {
        width: 100%;
    }
    
    .position-badge {
        position: static;
        margin-bottom: 1rem;
        justify-content: flex-start;
    }
    
    .position-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .career-content-grid {
        gap: 1.5rem;
    }
}
