:root {
    --navy: #002868;
    --red: #bf0a30;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    color: #333;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

header {
    background-color: var(--navy);
    padding: 1.8rem 6%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-image {
    max-height: 50px;
    width: auto;
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--red);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

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

.language-selector {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: 2rem;
}

.language-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.language-btn:hover {
    transform: scale(1.1);
}

.language-btn img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.hero-parallax {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.carousel-slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 40, 104, 0.8) 0%, rgba(0, 40, 104, 0.7) 100%);
}

.hero-content {
    z-index: 1;
    max-width: 650px;
    color: var(--white);
    padding: 3rem;
}

.hero h1, .hero-parallax h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero h1 span, .hero-parallax h1 span {
    color: var(--red);
}

.hero p, .hero-parallax p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #a00020;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--navy);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

section {
    padding: 6rem 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--red);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.highlights {
    background-color: #f9f9f9;
}

.highlights-container {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
}

.highlight-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 1.8rem;
}

.highlight-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--navy);
}

.highlight-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.vehicles {
    background: var(--navy);
    color: var(--white);
}

.vehicles .section-title h2 {
    color: var(--white);
}

.vehicles-container {
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: scale(1.05);
}

.vehicle-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.vehicle-details {
    padding: 2rem;
}

.vehicle-details h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.vehicle-details p {
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact {
    background: var(--white);
}

.contact-container {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    color: var(--navy);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.contact-form {
    flex: 2;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: var(--navy);
    font-size: 1.1rem;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    border-color: var(--navy);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 40, 104, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-group > label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--navy);
    font-size: 1.1rem;
}

.checkbox-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
    accent-color: var(--navy);
}

.checkbox-option label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: normal;
    font-size: 1.1rem;
}

.other-language {
    margin-top: 0.8rem;
    display: none;
}

.other-language.visible {
    display: block;
}

.other-language input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.other-language input:focus {
    border-color: var(--navy);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 40, 104, 0.1);
}

.careers {
    background: linear-gradient(135deg, var(--navy) 0%, rgba(0, 40, 104, 0.9) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 8%;
}

.careers-page {
    background-color: var(--white);
    color: #333;
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.careers-page h2, 
.careers-page p {
    color: var(--navy);
}

.careers-page .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.careers-content {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    gap: 2rem;
    align-items: stretch;
    padding: 0 2rem;
}

.driver-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: stretch;
}

.driver-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.careers h2 {
    font-size: 3rem;
    margin-bottom: 1.8rem;
}

.careers p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.career-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.careers-page .career-form-container {
    flex: 1;
    background: #f9f9f9;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.career-form-container h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
}

.careers-page .career-form-container h3 {
    color: var(--navy);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    gap: 20px;
}

.form-col {
    flex: 1;
    min-width: 250px;
}

.form-col.full-width {
    flex: 0 0 100%;
    width: 100%;
}

.form-languages {
    flex: 0 0 100%;
}

.work-permit-note {
    text-align: right;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

footer {
    background: #001233;
    color: var(--white);
    padding: 3.5rem 8%;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 1.8rem 0;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--red);
}

.copyright {
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

@media (max-width: 992px) {
    .highlights-container, 
    .vehicles-container, 
    .contact-container, 
    .form-row, 
    .careers-content,
    .checkbox-options {
        flex-direction: column;
    }
    
    .hero h1, .hero-parallax h1 {
        font-size: 3rem;
    }
    
    .parallax-content h2 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 5rem 5%;
    }
    
    .careers-content {
        padding: 2rem 1rem;
    }
    
    .career-form-container {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .driver-image {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: var(--navy);
        width: 80%;
        height: 100vh;
        justify-content: center;
        padding: 5rem 0;
        transition: 0.4s;
        box-shadow: -10px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 1.5rem 0;
        font-size: 1.3rem;
    }
    
    .language-selector {
        margin: 2rem 0 0 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1, .hero-parallax h1 {
        font-size: 2.5rem;
    }
    
    .hero p, .hero-parallax p {
        font-size: 1.2rem;
    }
    
    .overlay {
        background: linear-gradient(135deg, rgba(0, 40, 104, 0.9) 0%, rgba(0, 40, 104, 0.8) 100%);
    }
    
    .hero-content {
        padding: 2rem;
        text-align: center;
        margin: 0 auto;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .highlight-card, .vehicle-card {
        margin-bottom: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.2rem 5%;
    }
    
    .hero h1, .hero-parallax h1 {
        font-size: 2rem;
    }
    
    .hero p, .hero-parallax p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 5%;
    }
    
    .parallax-content h2 {
        font-size: 2rem;
    }
    
    .parallax-content p {
        font-size: 1.1rem;
    }
    
    .career-form-container {
        padding: 2rem 1.5rem;
    }
}

.hidden {
    display: none;
}

.terms-page {
    background-color: var(--white);
    color: #333;
    padding-top: 120px;
    min-height: 100vh;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.terms-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-content h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.terms-content h4 {
    font-size: 1.3rem;
    color: var(--navy);
    margin: 1.5rem 0 0.8rem;
}

.terms-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.parallax-header {
    position: relative;
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 104, 0.7);
}

.parallax-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    text-align: center;
    max-width: 900px;
    padding: 0 3rem;
}

.parallax-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.8rem;
    color: var(--white);
    line-height: 1.3;
}

.parallax-content p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Jobs Page Styles */
.jobs-page {
    background-color: var(--white);
    color: #333;
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.jobs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.job-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .job-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.job-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    height: 100%;
    width: 100%;
}

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

.job-header {
    padding: 1.5rem 2rem;
    background: var(--navy);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-header h3 {
    font-size: 1.5rem;
    margin: 0;
    flex-grow: 1;
}

.job-location {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.job-description {
    padding: 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.job-description p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.job-requirements {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.job-requirements li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.job-requirements li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
}

.job-details {
    background: #f9f9f9;
    padding: 1.2rem 2rem;
    border-radius: 6px;
    margin-top: auto;
}

.job-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.detail-label {
    font-weight: 600;
    color: var(--navy);
}

.job-footer {
    padding: 1.5rem 2rem;
    text-align: center;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-footer .cta-button {
    min-width: 150px;
}

.job-footer .cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.job-footer .cta-button.secondary:hover {
    background-color: var(--navy);
    color: var(--white);
}

@media (max-width: 992px) {
    .job-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-location {
        margin-top: 0.8rem;
    }
}

/* Job Detail Page Styles */
.job-detail-page {
    background-color: var(--white);
    color: #333;
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.job-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.job-detail-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-overview {
    margin-bottom: 2.5rem;
}

.job-overview h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.job-overview p {
    line-height: 1.7;
    font-size: 1.1rem;
}

.job-section {
    margin-bottom: 2.5rem;
}

.job-section h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--red);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.job-detail-list {
    list-style-type: none;
    padding: 0;
}

.job-detail-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.9rem;
    line-height: 1.6;
}

.job-detail-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
}

.application-cta {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.application-cta h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.application-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.application-cta .cta-button {
    min-width: 200px;
}

@media (max-width: 768px) {
    .job-detail-container {
        padding: 2rem 1rem;
    }
    
    .job-detail-content {
        padding: 1.5rem;
    }
    
    .application-cta {
        padding: 1.5rem;
    }
} 