@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&family=Oxanium:wght@500;600;700;800&display=swap');

/* Color Variables */
:root {
    --primary-teal: #d7e0e5;
    --accent-yellow: #E7FF00;
    --accent-green: #3AAB74;
    --accent-gray: #1e252a;
    --light-gray: rgba(255, 255, 255, 0.05);
    --dark-gray: #0b1014;
    --white: #f3f7fa;
    --text-primary: #f3f7fa;
    --text-secondary: rgba(226, 236, 243, 0.8);
    --accent-soft: rgba(205, 254, 31, 0.22);
}

/* Reset & General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 12% 10%, rgba(58, 171, 116, 0.16) 0%, rgba(58, 171, 116, 0) 26%),
        radial-gradient(circle at 88% 78%, rgba(231, 255, 0, 0.08) 0%, rgba(231, 255, 0, 0) 30%),
        linear-gradient(170deg, #090d10 0%, #10161b 55%, #0b1014 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Orbitron', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: rgba(11, 16, 20, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Oxanium', 'Orbitron', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--white);
    letter-spacing: 1.45px;
    text-shadow: 0 0 24px rgba(58, 171, 116, 0.22);
}

.logo-i {
    font-size: 1em;
    color: var(--white);
    text-transform: none;
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1;
    --dot-x-adjust: -0.03em;
}

.logo-i::after {
    content: '';
    position: absolute;
    width: 0.2em;
    height: 0.2em;
    border-radius: 50%;
    background-color: var(--accent-green);
    top: -0.12em;
    left: 50%;
    transform: translate(calc(-50% + var(--dot-x-adjust)), -100%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: rgba(243, 247, 250, 0.86);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

.nav-cta {
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent-yellow), #CDFE1F);
    color: #0f1418;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(231, 255, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(231, 255, 0, 0.22);
}

/* Hero Section */
.hero {
    background:
        radial-gradient(circle at 18% 22%, var(--accent-soft) 0%, rgba(205, 254, 31, 0) 36%),
        radial-gradient(circle at 82% 28%, rgba(58, 171, 116, 0.28) 0%, rgba(58, 171, 116, 0) 34%),
        linear-gradient(135deg, var(--primary-teal) 0%, rgba(47, 52, 56, 0.92) 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    padding: 7px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background-color: rgba(11, 16, 20, 0.35);
    border: 1px solid var(--accent-green);
    color: var(--white);
    font-family: 'Oxanium', 'Orbitron', 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(18px, 2.4vw, 24px);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent-yellow), #CDFE1F);
    color: #0f1418;
    border: 1px solid rgba(231, 255, 0, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(120deg, #f0ff45, #ddff36);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(231, 255, 0, 0.22);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--white);
    border: 2px solid var(--accent-green);
}

.btn-secondary:hover {
    background-color: var(--accent-green);
    color: #08110d;
    transform: translateY(-2px);
}

/* About Section */
.about {
    background-color: transparent;
    padding: 80px 20px;
    text-align: center;
}

.about .container {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 52px 44px;
    backdrop-filter: blur(10px);
}

.about h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--white);
}

.about p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Page Header */
.page-header {
    background:
        radial-gradient(circle at 82% 24%, var(--accent-soft) 0%, rgba(205, 254, 31, 0) 34%),
        radial-gradient(circle at 18% 26%, rgba(58, 171, 116, 0.24) 0%, rgba(58, 171, 116, 0) 32%),
        linear-gradient(135deg, var(--primary-teal) 0%, rgba(47, 52, 56, 0.88) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 18px;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 16px;
}

.info-item a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-yellow);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-soft);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-green);
    color: var(--white);
}

/* Forms */
.contact-form,
.application-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(231, 255, 0, 0.26);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(243, 247, 250, 0.58);
}

.form-group textarea {
    resize: vertical;
}

/* Form status banner */
.form-status {
    grid-column: 1 / -1;
    margin-bottom: 25px;
    padding: 16px 20px;
    border-radius: 12px;
    background-color: rgba(58, 171, 116, 0.14);
    border: 1px solid var(--accent-green);
    color: var(--white);
    font-weight: 600;
    text-align: center;
}

.form-status.hidden {
    display: none;
}

/* Empty careers state */
.no-openings {
    grid-column: 1 / -1;
    text-align: center;
    background-color: var(--light-gray);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
}

.no-openings h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 16px;
}

.no-openings p {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

/* Connect Section */
.connect-section {
    padding: 60px 20px;
}

.connect-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.option-card {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 18px;
    border-top: 4px solid var(--accent-yellow);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.option-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.option-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.form-section {
    background-color: var(--light-gray);
    padding: 60px 40px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
}

.form-section h2 {
    color: var(--white);
    margin-bottom: 40px;
    font-size: 32px;
}

/* Jobs Section */
.jobs-section {
    padding: 60px 20px;
}

.filters {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.search-input,
.filter-select {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
}

.search-input {
    flex: 1;
    min-width: 200px;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(231, 255, 0, 0.26);
}

.jobs-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.job-card {
    background-color: var(--light-gray);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: rgba(231, 255, 0, 0.45);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    transform: translateY(-3px);
}

.job-card h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 20px;
}

.job-card .department {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: #0f1418;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.job-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.job-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(47, 52, 56, 0.2);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 52, 56, 0.55);
    overflow: auto;
}

.modal.hidden {
    display: none;
}

.modal:not(.hidden) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--text-primary);
}

#job-detail-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

#job-detail-content h3 {
    color: var(--white);
    margin-top: 25px;
    margin-bottom: 12px;
}

#job-detail-content p,
#job-detail-content ul {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

#job-detail-content ul {
    margin-left: 20px;
}

#job-detail-content li {
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(5, 9, 12, 0.9), rgba(6, 11, 15, 1));
    color: rgba(243, 247, 250, 0.88);
    padding: 40px 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .contact-wrapper,
    .options-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .jobs-list {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .about h2 {
        font-size: 32px;
    }

    .modal-content {
        width: 95%;
        padding: 25px;
    }

    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: auto;
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .search-input,
    .filter-select {
        width: 100%;
    }

    .filters {
        flex-direction: column;
    }
}
