* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    button, 
    a, 
    .btn-primary, 
    .btn-outline,
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

:root {
    /* Light theme (default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-light: #f8f9fa;
    --text-primary: #111111;
    --text-secondary: #666666;
    --text-muted: #9a9a9a;
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --footer-bg: #1a1a1a;
    --footer-text: #e0e0e0;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #1a1a1a;
        --bg-secondary: #242424;
        --bg-light: #2a2a2a;
        --text-primary: #f5f5f5;
        --text-secondary: #cccccc;
        --text-muted: #999999;
        --border-color: #404040;
        --card-bg: #252525;
        --footer-bg: #0d0d0d;
        --footer-text: #f5f5f5;
    }
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; 
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4 { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; 
    font-weight: 700; 
}

h1 { 
    font-size: 42px; 
    line-height: 1.2; 
}

h2 { 
    font-size: 32px; 
    margin-bottom: 20px; 
}

h3 { 
    font-size: 24px; 
}

p { 
    font-size: 17px; 
    color: #444444; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* Buttons */
.btn-primary { 
    background: linear-gradient(135deg, #0052CC 0%, #003E99 100%); 
    color: white; 
    padding: 16px 36px; 
    border-radius: 8px; 
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; 
    font-weight: 600; 
    font-size: 16px; 
    transition: all 0.3s ease; 
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover { 
    background: linear-gradient(135deg, #003E99 0%, #002266 100%); 
    transform: translateY(-3px); 
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.4);
}

.btn-outline { 
    background: transparent; 
    color: #111111; 
    padding: 16px 36px; 
    border: 2px solid #111111; 
    border-radius: 8px; 
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; 
    font-weight: 600; 
    font-size: 16px; 
    transition: all 0.3s ease; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover { 
    background: #111111; 
    color: white; 
    transform: translateY(-3px); 
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp { 
    background: linear-gradient(135deg, #25D366 0%, #1fb855 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover { 
    background: linear-gradient(135deg, #1fb855 0%, #128c43 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* SVG Icon Styles */
.btn-primary svg,
.btn-outline svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}

.logo svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.feature-icon svg,
.service-icon svg {
    display: block;
    margin: 0 auto;
}

.btn-outline-white { 
    border-color: white; 
    color: white; 
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover { 
    background: white; 
    color: #0052CC; 
    border-color: white;
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

/* Header */
header { 
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    transition: background-color 0.3s ease;
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 0; 
}

.logo { 
    display: flex; 
    align-items: center; 
}

.header-logo {
    height: 80px;
    width: 80px;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: white;
    padding: 12px;
    border-radius: 50%;
}

.header-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.2);
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a { 
    color: #111111; 
    text-decoration: none; 
    font-weight: 500; 
    transition: color 0.3s;
    display: inline-block;
}

.nav-links a.active {
    color: #0052CC;
    font-weight: 600;
}

.nav-links a:hover { 
    color: #0052CC; 
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #0052CC;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .hamburger-icon span {
        background-color: #ffffff;
    }
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-switcher button {
    background: transparent;
    border: 2px solid #0052CC;
    color: #0052CC;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.language-switcher button.active {
    background: #0052CC;
    color: white;
}

.language-switcher button:hover {
    background: #0052CC;
    color: white;
}

/* Hero */
.hero { 
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('../images/Hero image.png') center/cover no-repeat; 
    min-height: 720px; 
    display: flex; 
    align-items: center; 
    color: white; 
    background-color: #f5f5f5;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.15) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.hero-content { 
    max-width: 640px; 
    padding: 60px 0; 
    position: relative;
    z-index: 1;
}

.hero h1 { 
    margin-bottom: 16px; 
}

.hero p { 
    font-size: 20px; 
    margin-bottom: 24px; 
    color: #e7e7e7; 
}

.hero-buttons { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Sections */
section { 
    padding: 70px 0; 
}

.bg-light { 
    background: #F7F7F7; 
}

.section-title { 
    text-align: center; 
    margin-bottom: 40px; 
}

.section-title h2 { 
    color: #0052CC; 
}

/* Features */
.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 28px; 
}

.feature-card { 
    text-align: center; 
    padding: 26px; 
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px; 
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s; 
}

.feature-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); 
}

.feature-icon { 
    font-size: 42px; 
    color: #0052CC; 
    margin-bottom: 12px; 
}

/* Fleet */
.fleet-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.fleet-grid { 
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-grid::-webkit-scrollbar {
    height: 8px;
}

.fleet-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.fleet-grid::-webkit-scrollbar-thumb {
    background: #0052CC;
    border-radius: 10px;
}

.fleet-grid::-webkit-scrollbar-thumb:hover {
    background: #003E99;
}

.fleet-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0052CC;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.fleet-arrow:hover {
    background: #003E99;
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.fleet-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.fleet-arrow-left {
    left: 0;
}

.fleet-arrow-right {
    right: 0;
}

.fleet-card { 
    background: white; 
    border-radius: 10px; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
    transition: all 0.3s ease; 
    display: flex;
    flex-direction: column;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.fleet-card:hover { 
    transform: translateY(-6px) scale(1.02); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fleet-card img { 
    width: 100%; 
    height: 240px; 
    object-fit: cover; 
    background: #ffffff;
    display: block;
}

.fleet-info { 
    padding: 20px; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-info h3 { 
    margin-bottom: 10px; 
    color: #0052CC; 
    font-size: 20px;
}

.fleet-info p {
    flex-grow: 1;
    margin: 12px 0;
    line-height: 1.6;
    font-size: 15px;
}

.fleet-details { 
    display: flex; 
    gap: 10px; 
    margin: 10px 0; 
    color: #444444; 
    font-size: 12px; 
}

.fleet-details span {
    background: #f0f7ff;
    padding: 5px 12px;
    border-radius: 16px;
    color: #0052CC;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    line-height: 1.3;
}

.fleet-details span svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* About */
.about-section { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    align-items: center; 
}

.about-image img { 
    width: 100%; 
    border-radius: 10px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); 
}

.about-logo-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #ffffff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.15);
    padding: 60px;
    border: 2px solid rgba(0, 82, 204, 0.3);
}

.about-logo {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.about-logo:hover {
    transform: scale(1.05);
}

.about-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-content ul li {
    margin-bottom: 10px;
    color: #444444;
    line-height: 1.8;
}

.about-content ul li::marker {
    color: #0052CC;
}

/* Services */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 20px; 
}

.service-card { 
    background: white; 
    padding: 28px; 
    border-radius: 10px; 
    text-align: center; 
    border: 1px solid #EAEAEA; 
    transition: all 0.3s; 
}

.service-card:hover { 
    border-color: #0052CC; 
    transform: translateY(-4px); 
}

.service-icon {
    font-size: 48px;
    color: #0052CC;
    margin-bottom: 16px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 32px;
    text-align: center;
    border: 2px solid #EAEAEA;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: #0052CC;
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.15);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0052CC;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    color: #0052CC;
    margin-bottom: 16px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #111111;
    margin: 20px 0;
}

.price span {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #0052CC;
    margin-right: 10px;
}

/* Reviews */
.reviews-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
}

.google-reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.google-reviews-badge > div {
    text-align: left;
}

.google-reviews-title {
    color: #0052CC;
    font-weight: 600;
    font-size: 18px;
}

.google-reviews-rating {
    color: #FFD700;
    font-size: 16px;
}

.google-reviews-rating span {
    color: #666;
    font-size: 14px;
}

.review-card { 
    background: white; 
    padding: 22px; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); 
}

.review-card p {
    color: #444;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-header .reviewer-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.review-date {
    font-size: 13px;
    color: #999;
    margin-top: 2px;
}

.review-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 12px;
}

.reviewer-name {
    font-weight: 600;
    color: #0052CC;
    margin-top: 12px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
}

.blog-date {
    color: #666;
}

.blog-category {
    color: #0052CC;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
    line-height: 1.4;
}

.blog-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-read-more {
    color: #0052CC;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #003E99;
}

/* Booking Form */
.booking-form { 
    max-width: 720px; 
    margin: 0 auto; 
    background: white; 
    padding: 30px; 
    border-radius: 10px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); 
}

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
    margin-bottom: 16px; 
}

.form-group { 
    margin-bottom: 16px;
}

.form-group label { 
    display: block; 
    margin-bottom: 6px; 
    font-weight: 600; 
    color: #111111; 
}

.form-group input, 
.form-group select, 
.form-group textarea { 
    width: 100%; 
    padding: 10px 12px; 
    border: 1px solid #E3E3E3; 
    border-radius: 6px; 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0052CC;
}

/* Date and Time Inputs */
.form-group input[type="date"],
.form-group input[type="time"] {
    cursor: pointer;
    position: relative;
    background-color: white;
    padding-right: 40px;
    min-height: 44px;
}

/* Force native date/time picker controls to show */
.form-group input[type="date"]::-webkit-date-and-time-value,
.form-group input[type="time"]::-webkit-date-and-time-value {
    text-align: left;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
    padding: 6px;
    margin-left: 4px;
    background-color: rgba(0, 82, 204, 0.1);
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    filter: brightness(0.4);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover,
.form-group input[type="time"]::-webkit-calendar-picker-indicator:hover {
    background-color: rgba(0, 82, 204, 0.2);
    filter: brightness(0.2);
}

/* Ensure time picker works on all browsers */
.form-group input[type="time"]::-webkit-inner-spin-button,
.form-group input[type="time"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

#formMessage {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

#formMessage.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#formMessage.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer { 
    background: #0c0c0c; 
    color: white; 
    padding: 50px 0 25px; 
}

.footer-logo {
    height: 80px;
    width: 80px;
    margin-bottom: 16px;
    object-fit: cover;
    background: white;
    padding: 12px;
    border-radius: 50%;
}

.footer-description {
    color: #d6d6d6;
    margin-top: 12px;
}

.footer-contact {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 24px; 
    margin-bottom: 30px; 
}

.footer-section h4 { 
    color: #0052CC; 
    margin-bottom: 14px; 
}

.footer-section a { 
    color: #e0e0e0; 
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #0052CC;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    color: #e0e0e0;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #0052CC;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom { 
    text-align: center; 
    padding-top: 18px; 
    border-top: 1px solid rgba(255, 255, 255, 0.06); 
    color: #9a9a9a; 
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    color: #0052CC;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

.faq-answer {
    color: #333;
    line-height: 1.8;
    font-size: 15px;
}

.faq-answer p {
    margin: 0;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0052CC;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

#backToTop:hover {
    background: #003E99;
    transform: translateY(-5px);
}

/* Loading Spinner */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Tablet & Mobile Responsive */
@media (max-width: 992px) {
    .features-grid,
    .services-grid,
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { 
        font-size: 32px; 
        line-height: 1.3;
    }
    
    h2 {
        font-size: 26px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    p {
        font-size: 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Mobile Navigation */
    .nav-links { 
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 20px;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 16px 20px;
        font-size: 18px;
        font-weight: 600;
        transition: background 0.3s ease;
    }
    
    .nav-links a:hover {
        background: #f5f5f5;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .language-switcher {
        position: fixed;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1002;
        background: rgba(255, 255, 255, 0.95);
        padding: 8px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        gap: 6px;
    }
    
    .language-switcher button {
        padding: 8px 16px;
        font-size: 14px;
        min-width: 50px;
    }
    
    .about-section { 
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .form-row { 
        grid-template-columns: 1fr; 
    }
    
    .hero-content { 
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .hero { 
        min-height: 500px;
        padding: 20px 0;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('../images/Hero image.png') center/cover no-repeat !important;
        background-color: #f5f5f5;
    }
    
    .hero-buttons { 
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .form-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-buttons .btn-primary,
    .form-buttons a {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .features-grid,
    .services-grid,
    .fleet-grid,
    .pricing-grid,
    .reviews-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .booking-form {
        padding: 24px 20px;
    }
    
    /* Fleet cards mobile optimization */
    .fleet-carousel-wrapper {
        padding: 0;
    }
    
    .fleet-grid {
        display: flex;
        flex-direction: column;
        overflow-x: visible;
        gap: 20px;
        padding: 0;
    }
    
    .fleet-card {
        min-width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .fleet-card img {
        height: 200px;
    }
    
    .fleet-arrow {
        display: none;
    }
    
    .fleet-info {
        padding: 16px;
    }
    
    .fleet-info h3 {
        font-size: 18px;
    }
    
    .fleet-info p {
        font-size: 14px;
    }
    
    .fleet-details {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .fleet-details span {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    h1 {
        font-size: 26px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    .hero {
        min-height: 450px;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('../images/Hero image.png') center/cover no-repeat !important;
    }
    
    .language-switcher {
        top: 12px;
        padding: 6px;
    }
    
    .language-switcher button {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 45px;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .feature-icon svg,
    .service-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .logo span {
        font-size: 18px;
    }
    
    /* Fleet cards for small screens */
    .fleet-card img {
        height: 180px;
    }
    
    .fleet-info {
        padding: 14px;
    }
    
    .fleet-info h3 {
        font-size: 17px;
    }
    
    .fleet-details span {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/* Social Icons */
.social-icons a svg {
    transition: transform 0.3s ease, opacity 0.8s ease;
}

.social-icons a:hover svg {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Footer Contact SVG Icons */
.footer-section a svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

/* Back to Top Button SVG */
#backToTop svg {
    display: block;
    margin: auto;
}

/* RTL Support for Arabic */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    gap: 25px;
}

[dir="rtl"] .about-content ul {
    padding-right: 20px;
    padding-left: 0;
}

[dir="rtl"] .pricing-features {
    text-align: right;
}

[dir="rtl"] .pricing-features li i {
    margin-right: 0;
    margin-left: 10px;
}

/* RTL Support for SVG icons */
[dir="rtl"] .logo svg {
    margin-right: 0;
    margin-left: 8px;
}

[dir="rtl"] .btn-primary svg,
[dir="rtl"] .btn-outline svg {
    margin-right: 0;
    margin-left: 6px;
}

[dir="rtl"] .footer-section a svg {
    margin-right: 0;
    margin-left: 6px;
}

/* Dark Mode Color Overrides */
@media (prefers-color-scheme: dark) {
    /* Update all text colors */
    .nav-links a {
        color: var(--text-primary);
    }
    
    .btn-outline {
        color: var(--text-primary);
        border-color: var(--text-primary);
    }
    
    .btn-outline:hover {
        background: var(--text-primary);
        color: var(--bg-primary);
    }
    
    .btn-outline-white {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.5);
        color: #ffffff;
    }
    
    .btn-outline-white:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.8);
    }
    
    /* Cards and containers */
    .feature-card,
    .service-card,
    .vehicle-card,
    .pricing-card,
    .review-card,
    .blog-card,
    .faq-item {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .feature-card:hover,
    .service-card:hover,
    .vehicle-card:hover,
    .pricing-card:hover,
    .review-card:hover,
    .blog-card:hover,
    .faq-item:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }
    
    /* Improve heading contrast */
    h1, h2, h3, h4, h5, h6 {
        color: var(--text-primary);
    }
    
    /* Section titles */
    .section-title h2 {
        color: var(--text-primary);
    }
    
    .section-title p {
        color: var(--text-secondary);
    }
    
    /* Booking Form */
    .booking-form {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: var(--bg-secondary);
        color: var(--text-primary);
        border-color: var(--border-color);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        background: var(--bg-secondary);
        border-color: #4d9eff;
    }
    
    .form-group label {
        color: var(--text-primary);
    }
    
    /* Fleet Cards */
    .fleet-card {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .fleet-card:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
    
    .fleet-card h3 {
        color: var(--text-primary);
    }
    
    .fleet-card p {
        color: var(--text-secondary);
    }
    
    /* Hero section - keep background image visible in dark mode */
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('../images/Hero image.png') center/cover no-repeat !important;
        background-color: #1a1a1a;
    }
    
    .hero::before {
        background: linear-gradient(135deg, rgba(0, 82, 204, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    }
    
    .hero h1,
    .hero p {
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    /* Footer links */
    footer a {
        color: var(--footer-text);
    }
    
    footer h4 {
        color: var(--footer-text);
    }
    
    /* Section backgrounds */
    section {
        background-color: var(--bg-primary);
    }
    
    section.bg-light {
        background-color: var(--bg-light) !important;
    }
    
    /* Header logo background in dark mode */
    .header-logo {
        background: white;
        padding: 12px;
    }
    
    /* Footer logo background in dark mode */
    .footer-logo {
        background: white;
        padding: 12px;
    }
    
    /* Scrollbar dark mode */
    .fleet-grid::-webkit-scrollbar-track {
        background: var(--bg-secondary);
    }
    
    /* Blog card text */
    .blog-card {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .blog-card:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
    
    .blog-card h3,
    .service-card h3,
    .vehicle-card h3,
    .pricing-card h3,
    .feature-card h3 {
        color: var(--text-primary);
    }
    
    .review-card p {
        color: var(--text-primary) !important;
    }
    
    .review-header .reviewer-name {
        color: var(--text-primary) !important;
    }
    
    .review-date {
        color: var(--text-secondary) !important;
    }
    
    .blog-content h3 {
        color: var(--text-primary);
    }
    
    .blog-content p {
        color: var(--text-secondary);
    }
    
    .blog-meta,
    .reviewer-name {
        color: var(--text-secondary);
    }
    
    .blog-date {
        color: var(--text-secondary);
    }
    
    .blog-category {
        color: #4d9eff;
    }
    
    /* Feature descriptions */
    .feature-card p,
    .service-card p,
    .vehicle-card p {
        color: var(--text-secondary);
    }
    
    /* Pricing features */
    .pricing-features li {
        color: var(--text-secondary);
    }
    
    /* Review stars should stay visible */
    .review-stars {
        opacity: 1;
        filter: brightness(1.2);
    }
    
    /* Footer bottom */
    .footer-bottom {
        border-top: 1px solid var(--border-color);
        color: var(--text-muted);
    }
    
    /* Mobile menu */
    .mobile-menu {
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-toggle {
        color: var(--text-primary);
    }
    
    .nav-links {
        background: var(--bg-primary);
    }
    
    .nav-links li {
        border-bottom-color: var(--border-color);
    }
    
    .nav-links a:hover {
        background: var(--bg-secondary);
    }
    
    .language-switcher {
        background: var(--card-bg) !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    }
    
    /* Price display */
    .price {
        color: var(--text-primary);
    }
    
    /* FAQ question */
    .faq-question {
        color: #4d9eff;
    }
    
    .faq-answer p {
        color: var(--text-secondary);
    }
    
    /* Feature icons */
    .feature-icon {
        color: #4d9eff;
    }
    
    /* Images should maintain visibility */
    img {
        opacity: 0.9;
    }
    
    .header-logo {
        opacity: 1;
        filter: brightness(1.1);
    }
    
    /* Vehicle images */
    .vehicle-card img,
    .blog-card img {
        opacity: 0.85;
    }
    
    /* Footer links hover */
    footer a:hover {
        color: #4d9eff;
    }
    
    /* Strong text */
    strong {
        color: var(--text-primary);
        font-weight: 700;
    }
    
    /* Links in content */
    a {
        color: #4d9eff;
    }
    
    /* Ensure form placeholders are visible */
    .form-group input::placeholder,
    .form-group select::placeholder,
    .form-group textarea::placeholder {
        color: var(--text-muted);
        opacity: 0.7;
    }
    
    /* Select dropdown options */
    .form-group select option {
        background: var(--card-bg);
        color: var(--text-primary);
    }
    
    /* Date and Time picker in dark mode */
    .form-group input[type="date"],
    .form-group input[type="time"] {
        color-scheme: dark;
        background-color: var(--bg-secondary);
    }
    
    .form-group input[type="date"]::-webkit-calendar-picker-indicator,
    .form-group input[type="time"]::-webkit-calendar-picker-indicator {
        filter: brightness(2.5) invert(1);
        opacity: 1;
        background-color: rgba(77, 158, 255, 0.15);
    }
    
    .form-group input[type="date"]::-webkit-calendar-picker-indicator:hover,
    .form-group input[type="time"]::-webkit-calendar-picker-indicator:hover {
        background-color: rgba(77, 158, 255, 0.3);
        filter: brightness(3) invert(1);
    }
    
    /* Fleet card details */
    .fleet-details {
        background: var(--bg-secondary);
    }
    
    .fleet-details p,
    .fleet-details li {
        color: var(--text-secondary);
    }
    
    .fleet-details span {
        background: rgba(0, 82, 204, 0.3) !important;
        color: #66b3ff !important;
        border: 1px solid #3d5a8c;
        padding: 5px 12px !important;
        border-radius: 16px !important;
        font-size: 12px !important;
    }
    
    .fleet-details svg path {
        fill: #66b3ff !important;
    }
    
    /* Success/error messages in forms */
    .success-message,
    .error-message {
        background: var(--card-bg);
        border-color: var(--border-color);
        color: var(--text-primary);
    }
    
    /* Booking page specific dark mode styles */
    .booking-info {
        background: var(--card-bg) !important;
        border: 1px solid var(--border-color);
    }
    
    .booking-info h2,
    .booking-info h3 {
        color: var(--text-primary) !important;
    }
    
    .booking-info h3 svg path {
        fill: #4d9eff !important;
    }
    
    .booking-info p {
        color: var(--text-secondary);
    }
    
    .booking-info a {
        color: #4d9eff !important;
    }
    
    .booking-info strong {
        color: var(--text-primary);
    }
    
    .booking-form h2 {
        color: var(--text-primary);
    }
    
    /* Fleet arrow buttons in dark mode */
    .fleet-arrow {
        background: #4d9eff;
        box-shadow: 0 4px 12px rgba(77, 158, 255, 0.3);
    }
    
    .fleet-arrow:hover {
        background: #3a8eef;
        box-shadow: 0 6px 16px rgba(77, 158, 255, 0.4);
    }
    
    /* About logo container in dark mode */
    .about-logo-container {
        background: var(--card-bg);
        border: 2px solid rgba(77, 158, 255, 0.2);
        box-shadow: 0 10px 30px rgba(77, 158, 255, 0.1);
    }
    
    .about-logo {
        filter: brightness(1.1);
    }
    
    /* About content text in dark mode */
    .about-content h2,
    .about-content h3 {
        color: var(--text-primary);
    }
    
    .about-content p {
        color: var(--text-secondary);
    }
    
    .about-content ul li {
        color: var(--text-secondary);
    }
    
    .about-content ul li::marker {
        color: #4d9eff;
    }
    
    /* Contact page dark mode styles */
    .contact-grid > div > div {
        background: var(--card-bg) !important;
        border: 1px solid var(--border-color);
    }
    
    .contact-grid h2,
    .contact-grid h3 {
        color: var(--text-primary) !important;
    }
    
    .contact-grid h3 svg path {
        fill: #4d9eff !important;
    }
    
    .contact-grid p {
        color: var(--text-secondary) !important;
    }
    
    .contact-grid a {
        color: #4d9eff !important;
    }
    
    .contact-grid strong {
        color: var(--text-primary);
    }
    
    .contact-grid li {
        color: var(--text-secondary);
        border-color: var(--border-color) !important;
    }
    
    .contact-grid ul {
        color: var(--text-secondary);
    }
    
    /* FAQ section dark mode */
    section > div > div > div[style*="background: white"] {
        background: var(--card-bg) !important;
        border: 1px solid var(--border-color);
    }
    
    section > div > div > div h3 {
        color: var(--text-primary) !important;
    }
    
    section > div > div > div p {
        color: var(--text-secondary) !important;
    }
}

/* Autocomplete Location Input Styles */
.location-autocomplete-wrapper {
    position: relative;
}

.location-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: var(--card-bg);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.location-input:focus {
    outline: none;
    border-color: #0052CC;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.location-input::placeholder {
    color: var(--text-muted);
}

.location-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-top: 4px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

.autocomplete-dropdown.active {
    display: block;
}

.autocomplete-group-label {
    padding: 10px 16px 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 1;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--text-primary);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: rgba(0, 82, 204, 0.05);
}

.autocomplete-item.selected {
    background: rgba(0, 82, 204, 0.1);
}

.autocomplete-item .item-main {
    font-weight: 500;
    color: var(--text-primary);
}

.autocomplete-item .item-secondary {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.no-results {
    padding: 20px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Scrollbar for autocomplete dropdown */
.autocomplete-dropdown::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-dropdown::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Custom location input container */
.custom-location-container {
    margin-top: 12px;
    padding: 16px;
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-location-label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.custom-location-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--bg-color);
    color: var(--text-color);
}

.custom-location-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.custom-location-input::placeholder {
    color: var(--text-muted);
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .autocomplete-dropdown {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .autocomplete-item:hover {
        background: rgba(77, 158, 255, 0.1);
    }
    
    .autocomplete-item.selected {
        background: rgba(77, 158, 255, 0.15);
    }
    
    .custom-location-container {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(77, 158, 255, 0.5);
    }
}

