/* Global Settings */
:root {
    --primary: #0984e3;
    /* Vibrant Blue */
    --info: #74b9ff;
    /* Light Blue */
    --dark: #2d3436;
    --light: #dfe6e9;
    /* Light Grey */
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0984e3, #6c5ce7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: #f1f2f6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.logo .highlight {
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    /* RTL adjusted */
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.lang-toggle {
    display: flex;
    align-items: center;
}

.lang-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 132, 227, 0.3);
}

.lang-btn i {
    font-size: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Abstract movement lines */
.moving-line {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--info), transparent);
    animation: moveLight 3s infinite linear;
    transform: rotate(-15deg);
    opacity: 0.5;
    z-index: 1;
}

.delay-1 {
    animation-delay: 1s;
    top: 30%;
}

.delay-2 {
    animation-delay: 2s;
    top: 70%;
}

@keyframes moveLight {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Button Glow */
.btn-glow {
    padding: 15px 40px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(9, 132, 227, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(9, 132, 227, 0.6);
}

/* About Section */
.about-section {
    padding: 100px 50px;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    text-align: right;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(9, 132, 227, 0.3);
    transition: transform 0.3s;
}

.about-img:hover {
    transform: scale(1.05);
}

/* Features */
.features {
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 10;
    background: #f8f9fa;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    flex: 1;
    max-width: 350px;
    text-align: right;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(9, 132, 227, 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Fleet */
.fleet {
    padding: 100px 50px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 800;
    color: var(--dark);
}

.fleet-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
}

.fleet-item {
    min-width: 300px;
    height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.fleet-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.fleet-image.parts-image {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
}

.fleet-item:hover .fleet-image {
    transform: scale(1.1);
}

.fleet-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

/* CTA */
.cta {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: transform 0.3s;
}

.btn-white:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: right;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-details p {
    color: #666;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--info);
}

/* Footer */
.footer {
    background-color: #1e272e;
    color: var(--light);
    padding: 80px 50px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--light);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Responsive */
.fleet-item {
    width: 100%;
    min-width: auto;
}
}

/* New Sections Styles */
.partners {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    font-style: italic;
}

.faq-section {
    padding: 80px 50px;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-right: 4px solid var(--primary);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    padding: 80px 50px;
    background: #fff;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        padding: 50px 20px;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .lang-toggle {
        order: -1;
    }
    
    .lang-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-section {
        padding: 50px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-img {
        height: 300px;
    }
    
    .features {
        flex-direction: column;
        padding: 50px 20px;
    }
    
    .fleet {
        padding: 50px 20px;
    }
    
    .fleet-container {
        flex-direction: column;
        overflow-x: visible;
        align-items: center;
    }
    
    .fleet-item {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        max-width: 100%;
    }
    
    .faq-item {
        width: 100%;
        max-width: 100%;
    }
    
    .map-section {
        padding: 50px 20px;
    }
    
    .contact-section {
        padding: 50px 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 30px 20px;
    }
    
    .footer {
        padding: 50px 20px 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}