/* Career Page Styles - Standalone Version */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switcher */
.floating-language-switcher {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 1200;
    display: flex;
    gap: 0.2rem;
    background: rgba(20, 30, 40, 0.18);
    border-radius: 1.2rem;
    padding: 0.18rem 0.4rem;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.floating-language-switcher:hover {
    background: rgba(20, 30, 40, 0.28);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    padding: 0.12rem 0.5rem;
    border-radius: 0.7rem;
    transition: background 0.18s, color 0.18s;
    outline: none;
}

.lang-btn.active {
    background: #44cf6c;
    color: #fff;
}

.lang-btn:hover:not(.active) {
    background: rgba(255,255,255,0.08);
    color: #44cf6c;
}

@media (max-width: 600px) {
    .floating-language-switcher {
        left: 4px;
        bottom: 4px;
        padding: 0.08rem 0.2rem;
    }
    .lang-btn {
        font-size: 0.92rem;
        padding: 0.08rem 0.3rem;
        min-width: 26px;
    }
}

/* Career Header */
.career-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
}

.career-logo {
    position: relative;
    z-index: 1001;
    padding-left: 30px;
    padding-top: 10px;
    transition: opacity 0.3s ease;
}

.career-logo-img {
    height: 90px;
    width: auto;
    max-width: 500px;
}

.career-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease, opacity 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1001;
}

.career-back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.career-back-btn i {
    font-size: 1rem;
}

/* Hero Section */
.career-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 0 80px;
}

.career-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.career-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.career-hero .container {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.career-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.career-hero p {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.career-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.career-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #007bff);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}

.benefits-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

/* Open Positions Section */
.open-positions-section {
    padding: 100px 0;
    background: #fafafa;
    margin-top: 0;
}

.open-positions-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

/* Filter and Search Bar */
.positions-filter-bar {
    display: flex;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
}

.filter-dropdown {
    flex-shrink: 0;
    position: relative;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #007bff;
    color: #007bff;
}

.filter-btn.active {
    border-color: #007bff;
    color: #007bff;
}

.filter-btn-text {
    text-align: left;
    white-space: nowrap;
}

.filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.filter-dropdown.active .filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    display: block;
    padding: 12px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.filter-option:last-child {
    border-bottom: none;
}

.filter-option:hover {
    background: #f8f9fa;
    color: #007bff;
}

.filter-option.active {
    background: #f0f7ff;
    color: #007bff;
    font-weight: 500;
}

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

.search-input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.95rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #007bff;
}

.search-input::placeholder {
    color: #999;
}

.search-bar i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
}

.positions-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.position-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.position-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.position-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.position-left {
    flex: 1;
}

.position-category {
    display: inline-block;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.position-left h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.position-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.position-info-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #1a1a1a;
    white-space: nowrap;
}

.info-badge i {
    font-size: 0.75rem;
    color: #666;
}

.position-view-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.position-view-link:hover {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .career-header {
        padding: 15px 20px;
    }
    
    .career-logo {
        padding-left: 20px;
        padding-top: 10px;
    }
    
    .career-logo-img {
        height: 65px;
    }
    
    .career-back-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .career-back-btn span {
        display: none;
    }
    
    .career-hero {
        padding: 120px 0 60px;
    }
    
    .career-hero h1 {
        font-size: 2.5rem;
    }
    
    .career-hero p {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .positions-filter-bar {
        flex-direction: column;
    }
    
    .filter-dropdown {
        width: 100%;
        position: relative;
    }
    
    .filter-dropdown-menu {
        width: 100%;
        left: 0;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: flex-start;
    }
    
    .search-bar {
        width: 100%;
    }
    
    .position-card {
        padding: 1.25rem;
    }
    
    .position-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .position-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .position-view-link {
        align-self: flex-end;
    }
    
    .position-left h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .career-header {
        padding: 12px 15px;
    }
    
    .career-logo {
        padding-left: 15px;
        padding-top: 8px;
    }
    
    .career-logo-img {
        height: 50px;
    }
    
    .career-back-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .career-hero {
        padding: 100px 0 60px;
    }
    
    .career-hero h1 {
        font-size: 2rem;
    }
    
    .benefits-section,
    .open-positions-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #01122C 0%, #001F3F 50%, #004225 100%);
    color: #ccc;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: #44cf6c !important;
    margin-bottom: 0.7rem;
    position: relative;
    padding-bottom: 0.3rem;
    font-weight: normal !important;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #44cf6c;
    box-shadow: 0 0 10px #44cf6c;
}

.footer-section p {
    color: #ccc;
    line-height: 1.3;
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.social-link {
    color: #44cf6c !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.social-link:hover {
    color: #fff !important;
    background: #44cf6c;
    box-shadow: 0 0 15px rgba(68, 207, 108, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.2;
}

.footer-links a:hover {
    color: #44cf6c;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    color: #ccc;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    line-height: 1.4;
}

.contact-info li a {
    color: #ccc !important;
    text-decoration: none !important;
}

.contact-info i {
    color: #44cf6c !important;
    font-size: 1rem;
}

.working-hours {
    list-style: none;
}

.working-hours li {
    color: #ccc;
    margin-bottom: 0.4rem;
    font-size: 1rem;
    line-height: 1.2;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-bottom-links a:hover {
    color: #44cf6c;
}

/* Footer Dropdown Styles for Mobile */
.footer-dropdown-section {
    position: relative;
}

.footer-section-title {
    display: block;
}

.footer-mobile-title {
    display: none;
}

.footer-dropdown-toggle {
    display: none;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-dropdown-toggle h3 {
    margin-bottom: 0;
    flex: 1;
    pointer-events: none;
}

.footer-dropdown-icon {
    color: #44cf6c;
    font-size: 0.9rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.footer-dropdown-toggle[aria-expanded="true"] .footer-dropdown-icon {
    transform: rotate(180deg);
}

.footer-dropdown-content {
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                margin-top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    max-height: none;
    opacity: 1;
}

.footer-dropdown-icon {
    display: none;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .footer-section-title {
        display: none;
    }
    
    .footer-mobile-title {
        display: block;
    }
    
    .footer-dropdown-toggle {
        display: flex;
    }
    
    .footer-dropdown-icon {
        display: block;
    }
    
    .footer-dropdown-content {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
    }
    
    .footer-dropdown-section.active .footer-dropdown-content {
        max-height: 1000px;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
