/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a2a2a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
}

.apply-btn {
    background: #fff;
    color: #000;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s;
}

.apply-btn:hover {
    transform: scale(1.05);
}

/* Hero with background image */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 140px 0 80px;
    background-color: #0a0a0a;
    background-image: url('./assets/images/bus-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.tagline {
    font-size: 1.75rem;
    color: #e0e0e0;
    margin-bottom: 16px;
}

.description {
    font-size: 1.125rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto 48px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.75rem;
    color: #d4af37;
    margin-bottom: 4px;
}

.stat span {
    font-size: 0.875rem;
    color: #999;
    text-transform: uppercase;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #fff;
    color: #000;
    padding: 18px 36px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 18px 36px;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* Content */
.content {
    padding: 100px 0;
    background: #111;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.main h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.main h3 {
    font-size: 1.75rem;
    margin: 48px 0 24px;
}

.main p {
    color: #e0e0e0;
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.main ul {
    list-style: none;
}

.main li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.main li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.25rem;
}

.features {
    margin-top: 32px;
}

.feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    margin-bottom: 16px;
}

.feature .icon {
    font-size: 2rem;
}

.feature h4 {
    margin-bottom: 4px;
}

.feature p {
    color: #999;
    font-size: 0.95rem;
}

/* Sidebar */
.card {
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    padding: 32px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.checklist {
    list-style: none;
    margin-bottom: 24px;
}

.checklist li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: #e0e0e0;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.veterans {
    background: rgba(212,175,55,0.1);
    border: 1px solid #d4af37;
    padding: 16px;
    border-radius: 8px;
    margin: 24px 0;
}

.veterans strong {
    display: block;
    color: #d4af37;
    margin-bottom: 8px;
}

.veterans p {
    color: #e0e0e0;
    font-size: 0.875rem;
}

.btn-apply {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
}

/* Compensation */
.compensation {
    padding: 100px 0;
    background: #0a0a0a;
}

.compensation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 48px;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.comp-card {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.comp-card.highlight {
    border: 2px solid #d4af37;
}

.comp-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.pay {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4af37;
}

.pay-type {
    display: block;
    color: #999;
    margin-bottom: 24px;
}

.comp-card ul {
    list-style: none;
}

.comp-card li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    color: #e0e0e0;
}

.comp-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4af37;
}

/* Why Section */
.why {
    padding: 100px 0;
    background: #111;
}

.why h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.reason {
    text-align: center;
}

.number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #d4af37;
    opacity: 0.3;
    margin-bottom: 16px;
}

.reason h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.reason p {
    color: #999;
}

/* Other Positions */
.other {
    padding: 80px 0;
    background: #0a0a0a;
}

.other h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 16px;
}

.positions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.position {
    background: #111;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    text-align: center;
}

.position h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.salary {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.position ul {
    list-style: none;
    margin-bottom: 24px;
}

.position li {
    padding: 8px 0;
    color: #999;
}

.position button {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.position button:hover {
    background: #fff;
    color: #000;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #111, #1a1a1a);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.badges span {
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
}

.btn-cta {
    background: #fff;
    color: #000;
    padding: 20px 48px;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
}

.note {
    margin-top: 24px;
    color: #999;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #000;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

footer p {
    color: #666;
    margin: 8px 0;
}

/* Responsive */
@media (max-width: 968px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.8)), url('assets/images/bus-hero-mobile.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-row {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}