/* Dark Mode - Mobile Fully Fixed */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; background: #363845; color: #feffff; line-height: 1.8; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header {
    background: #363845;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #44475a;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.logo-text {
    font-size: 2.6em;
    font-weight: 900;
    color: #feffff;
    text-decoration: none;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}
.logo-text:hover {
    color: #535465;
}
.nav {
    display: flex;
    flex-wrap: wrap;
}
.nav a {
    color: #feffff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 400;
    font-size: 1.1em;
    transition: color 0.4s ease;
}
.nav a:hover { color: #535465; }
body { padding-top: 100px; }

/* Hero Banner (Top Part Only) */
.hero-banner {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}
.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 90%;
    width: 100%;
    z-index: 2;
    padding: 30px;
    background: rgba(54, 56, 69, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}
.hero h1 {
    font-size: 2.2em;
    font-weight: 700;
    color: #feffff;
    margin-bottom: 20px;
}
.hero p {
    font-size: 2.2em;
    color: #cccccc;
    margin-bottom: 60px;
    font-weight: 400;
}
.search-bar {
    display: flex;
    max-width: 900px;
    margin: 0 auto 60px;
    background: rgba(68, 71, 90, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.search-bar input {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    font-size: 1.1em;
    color: #feffff;
}
.search-bar input::placeholder { color: #888888; }
.search-bar button {
    padding: 0 50px;
    background: #535465;
    color: #feffff;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
}
.search-bar button:hover {
    background: #44475a;
    box-shadow: 0 0 20px rgba(83,84,101,0.6);
}
.btn {
    display: inline-block;
    background: #535465;
    color: #feffff;
    padding: 18px 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(83,84,101,0.3);
}
.btn:hover {
    background: #44475a;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(83,84,101,0.5);
}
.btn.large {
    font-size: 1.2em;
    padding: 20px 60px;
}

/* Categories */
.categories {
    padding: 120px 20px;
    background: #363845;
    text-align: center;
}
.categories h2 {
    font-size: 2.6em;
    color: #feffff;
    margin-bottom: 80px;
    font-weight: 300;
}
.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
.category-card {
    padding: 40px;
    transition: all 0.4s ease;
    border-radius: 16px;
}
.category-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 25px 50px rgba(83,84,101,0.3);
}
.category-card h3 {
    font-size: 1.6em;
    color: #feffff;
    margin-bottom: 20px;
    font-weight: 400;
}
.category-card p {
    font-size: 1.1em;
    color: #cccccc;
}

/* Featured Jobs */
.featured-jobs {
    padding: 120px 20px;
    background: #363845;
    text-align: center;
}
.featured-jobs h2 {
    font-size: 2.6em;
    color: #feffff;
    margin-bottom: 80px;
    font-weight: 300;
}
.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 70px;
}
.job-card {
    background: #44475a;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    text-align: left;
}
.job-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(83,84,101,0.4);
}
.job-card h3 {
    font-size: 1.6em;
    color: #feffff;
    margin-bottom: 12px;
}
.job-card .company {
    font-size: 1.2em;
    color: #535465;
    font-weight: bold;
    margin-bottom: 8px;
}
.job-card .details,
.job-card .salary {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
}
.job-btn {
    display: inline-block;
    background: #535465;
    color: #feffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.4s;
}
.job-btn:hover {
    background: #feffff;
    color: #363845;
}

/* Contact Form */
.contact {
    padding: 120px 20px;
    background: #363845;
    text-align: center;
}
.contact h2 {
    font-size: 2.6em;
    color: #feffff;
    margin-bottom: 25px;
}
.contact p {
    font-size: 1.3em;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}
.contact-form input,
.contact-form textarea {
    padding: 18px;
    background: #44475a;
    border: none;
    border-radius: 12px;
    font-size: 1em;
    color: #feffff;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}
.contact-form button {
    padding: 18px;
    font-size: 1.2em;
    cursor: pointer;
}

/* Main & Footer */
.main-content {
    padding: 120px 20px;
    text-align: center;
    background: #363845;
}
.main-content h2 { font-size: 2.6em; color: #feffff; }
footer {
    background: #363845;
    color: #888888;
    text-align: center;
    padding: 80px;
    border-top: 1px solid #44475a;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .header .container { padding: 15px 20px; flex-direction: column; align-items: flex-start; }
    .nav { margin-top: 15px; width: 100%; justify-content: center; }
    .nav a { margin: 0 15px; }
    .logo-text { font-size: 2.2em; }
    .hero-banner { height: 500px; }
    .hero-content { bottom: 30px; padding: 20px; width: 95%; }
    .hero h1 { font-size: 1.8em; }
    .hero p { font-size: 1.8em; margin-bottom: 50px; }
    .search-bar { flex-direction: column; border-radius: 12px; }
    .search-bar input { padding: 18px; text-align: center; font-size: 1.1em; }
    .search-bar button { padding: 18px; font-size: 1.1em; }
    .btn { padding: 16px 40px; font-size: 1.1em; }
    .categories, .featured-jobs, .contact, .main-content { padding: 80px 20px; }
    .categories h2, .featured-jobs h2, .contact h2, .main-content h2 { font-size: 2.4em; margin-bottom: 50px; }
    .categories-grid, .jobs-grid { gap: 40px; }
    .category-card, .job-card { padding: 30px; }
    .category-card h3, .job-card h3 { font-size: 1.5em; }
}