/* Base */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #050508 0%, #1A1033 50%, #0B0B12 100%);
    color: #EDEDF5;
}

/* Header/Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(111, 231, 255, 0.1);
}

.nav {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #3A8DFF, #6FE7FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links li a,
.nav-links li button {
    color: #B8B8C7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.nav-item.dropdown.active > .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin-top: 12px;
    padding: 12px 0;
    display: block;
    background: rgba(5, 5, 8, 0.96);
    border: 1px solid rgba(111, 231, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2000;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #EDEDF5;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(111, 231, 255, 0.12);
    color: #6FE7FF;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.secondary-btn,
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.secondary-btn {
    background: rgba(255,255,255,0.08);
    color: #e8eef4;
    border: 1px solid rgba(255,255,255,0.12);
}

.primary-btn {
    background: linear-gradient(135deg, #3a8dff, #6fe7ff);
    color: #050505;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #6FE7FF;
    text-shadow: 0 0 10px rgba(111, 231, 255, 0.5);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3A8DFF, #6FE7FF);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 120px 20px 80px;
}

/* Headings */
h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(111, 231, 255, 0.2);
}

h2 {
    margin-top: 70px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #6FE7FF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

p {
    color: #B8B8C7;
    line-height: 1.7;
}

/* Hero */
.hero {
    display: grid;
    gap: 32px;
    text-align: left;
    margin-bottom: 80px;
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(111, 231, 255, 0.15), transparent 35%), radial-gradient(circle at bottom right, rgba(58, 141, 255, 0.08), transparent 25%);
    pointer-events: none;
}

.hero-copy {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-copy small {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #70d3ff;
    margin-bottom: 18px;
}

.hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.02;
    color: #fff;
    margin-bottom: 24px;
}

.hero-copy p {
    max-width: 640px;
    font-size: 1.05rem;
    color: #d3d5ea;
}

.hero-search {
    position: relative;
    z-index: 1;
}

.search-panel {
    display: grid;
    gap: 16px;
    background: rgba(6, 9, 20, 0.85);
    border: 1px solid rgba(111, 231, 255, 0.15);
    padding: 26px;
    border-radius: 24px;
    backdrop-filter: blur(18px);
}

.search-flex {
    display: grid;
    gap: 16px;
}

.search-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
}

.input-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
}

.input-field span {
    color: #6fe7ff;
    font-size: 1rem;
}

.search-panel input {
    flex: 1;
    width: 100%;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.search-panel input::placeholder {
    color: #9aa3b8;
}

.search-panel button {
    min-width: 140px;
    border: none;
    border-radius: 14px;
    padding: 16px 22px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #3a8dff, #6fe7ff);
    color: #050505;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-panel button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(58,141,255,0.35);
}

.search-inputs-wrapper {
    display: grid;
    gap: 12px;
}

.search-suggestions {
    display: none;
    max-height: 320px;
    overflow-y: auto;
    background: rgba(6, 9, 20, 0.95);
    border: 1px solid rgba(111, 231, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 10px 0;
}

.suggestion-item {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.suggestion-item:hover {
    background: rgba(111, 231, 255, 0.08);
}

.suggestion-item span {
    color: #9aa3b8;
    font-size: 0.95rem;
}

.suggestion-empty {
    color: #d3d5ea;
    padding: 14px 20px;
    font-size: 0.95rem;
}

.pill-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.pill-filters button {
    border: 1px solid rgba(111, 231, 255, 0.2);
    background: rgba(255,255,255,0.05);
    color: #d3d5ea;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.pill-filters button:hover {
    background: rgba(111, 231, 255, 0.12);
    border-color: rgba(111, 231, 255, 0.35);
}

/* Filter Controls */
.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #d3d5ea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select {
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236fe7ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.filter-group select:focus {
    outline: none;
    border-color: rgba(111, 231, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(111, 231, 255, 0.1);
}

.filter-group select:hover {
    border-color: rgba(111, 231, 255, 0.25);
    background-color: rgba(255,255,255,0.08);
}

.filter-group select option {
    background: #1a1033;
    color: #fff;
    padding: 8px;
}

/* Responsive filter controls */
@media (max-width: 768px) {
    .filter-controls {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .filter-group select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.secondary-btn,
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.secondary-btn {
    background: rgba(255,255,255,0.08);
    color: #e8eef4;
    border: 1px solid rgba(255,255,255,0.12);
}

.primary-btn {
    background: linear-gradient(135deg, #3a8dff, #6fe7ff);
    color: #050505;
}

.overview-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 60px;
}

.feature-card {
    background: rgba(26, 16, 51, 0.7);
    border: 1px solid rgba(111, 231, 255, 0.12);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(12px);
}

.feature-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #fff;
}

.feature-card p {
    margin: 0;
    color: #c1c4dd;
}

/* Jobs grid */
.jobs {
    display: grid;
    gap: 25px;
}

/* Job card */
.job {
    background: rgba(26, 16, 51, 0.7);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(106, 77, 255, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Glow accent */
.job::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3A8DFF, #6FE7FF);
}

/* Hover */
.job:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 10px 40px rgba(111, 231, 255, 0.25);
    border-color: rgba(111, 231, 255, 0.6);
}

/* Title */
.job h3 {
    margin: 0 0 10px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

/* Meta */
.meta {
    font-size: 0.9rem;
    color: #8A8AA3;
    margin-bottom: 10px;
}

/* Button */
.apply-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #3A8DFF, #6FE7FF);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(58, 141, 255, 0.3);
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 231, 255, 0.5);
}

/* No results state */
.no-results {
    text-align: center;
    padding: 60px 30px;
    background: rgba(26, 16, 51, 0.7);
    border: 1px solid rgba(106, 77, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.no-results h3 {
    margin: 0 0 15px 0;
    color: #6FE7FF;
    font-size: 1.5rem;
}

.no-results p {
    margin: 0 0 25px 0;
    color: #B8B8C7;
    font-size: 1rem;
}

/* CTA */
.cta {
    margin-top: 100px;
    text-align: center;
    padding: 50px;
    background: rgba(26, 16, 51, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(106, 77, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta h2 {
    color: #6FE7FF;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links li a {
        font-size: 0.9rem;
    }

    .container {
        padding: 100px 15px 60px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

.retail-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0;
}

.featured-jobs-card {
    background: #0b354f;
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.featured-jobs-card small,
.retail-job small {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
    font-size: 0.75rem;
}

.featured-jobs-card h2 {
    font-size: 3rem;
    margin: 0;
    color: #ffffff;
}

.featured-jobs-card p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.retail-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.retail-job {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.retail-job h3 {
    margin: 0.4rem 0 0.75rem;
    font-size: 2rem;
    color: #2577f2;
}

.retail-job p {
    margin: 0;
    color: #f5f7fb;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .retail-layout {
        grid-template-columns: 1fr;
    }

    .featured-jobs-card {
        min-height: auto;
    }
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.department-card {
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.department-card:hover {
    border-color: #2577f2;
    box-shadow: 0 12px 32px rgba(37, 119, 242, 0.15);
    transform: translateY(-4px);
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0b354f, #2577f2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.department-card:hover::before {
    transform: scaleX(1);
}

.department-card h3 {
    font-size: 1.75rem;
    margin: 0 0 0.75rem;
    color: #0b354f;
}

.department-card p {
    margin: 0 0 1.5rem;
    color: #666;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2577f2;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.card-link:hover {
    color: #0b354f;
}

@media (max-width: 768px) {
    .departments-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Job Search Specific Styles */
.job-filters {
    display: flex;
    gap: 1rem;
    margin: 3rem 0;
    padding: 1.5rem;
    background: rgba(11, 53, 79, 0.05);
    border-radius: 16px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 180px;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0b354f;
}

.filter-group select {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background: white;
    font-size: 0.9rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: #2577f2;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.open-slots {
    margin: 3rem 0;
}

.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.jobs-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b354f;
}

.sort-options {
    display: flex;
    gap: 0.5rem;
}

.sort-btn {
    padding: 0.5rem 1rem;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
}

.sort-btn.active {
    background: #2577f2;
    color: white;
    border-color: #2577f2;
}

.job-card {
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: #2577f2;
    box-shadow: 0 8px 24px rgba(37, 119, 242, 0.12);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #0b354f;
}

.job-badge {
    background: #2577f2;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.job-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-meta span {
    color: #888;
    font-size: 0.9rem;
}

.job-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apply-btn.small {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
}

.posted {
    color: #999;
    font-size: 0.85rem;
}

.load-more {
    text-align: center;
    padding: 2rem 0;
}

.load-more-btn {
    padding: 1rem 2.5rem;
    background: #2577f2;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {
    .job-filters {
        flex-direction: column;
    }

    .jobs-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .sort-options {
        justify-content: center;
    }
}