:root {

    --primary: #1e293b;
    --primary-dark: #0f172a;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --border: #e2e8f0;


    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1210px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    box-sizing: border-box;
    position: relative !important;
}

.main-header {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
}

.lang-switch a.active {
    color: var(--primary);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(30, 41, 59, 0.3);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-text {
    color: var(--text);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.btn-text:hover {
    color: var(--primary);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.booking-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    text-align: left;
    border: 1px solid var(--border);
}

/* Attempt 3: Premium Vertical Search Card */
.modern-search-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 20px 25px -5px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 1rem auto 0;
}

.modern-form-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vertical-input-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.premium-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.premium-input-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.premium-input-wrapper {
    position: relative;
}

.premium-input-wrapper input,
.premium-input-wrapper select {
    width: 100%;
    padding: 0.875rem 1.125rem;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.premium-input-wrapper input:focus,
.premium-input-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.map-picker-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--primary);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.map-picker-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.map-picker-btn.d-flex {
    display: flex !important;
}

.modern-search-btn {
    width: 100%;
    padding: 1.125rem;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 14px;
    background: #000000;
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modern-search-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.modern-search-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .modern-search-container {
        padding: 1.5rem;
        max-width: 100%;
    }
}

.form-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
    align-items: end;
}

.form-row .input-group:nth-child(1),
.form-row .input-group:nth-child(2) {
    grid-column: span 3;
}

.form-row .input-group:nth-child(3) {
    grid-column: span 3;
}

.form-row .input-group:nth-child(4) {
    grid-column: span 1;
}

.form-row .btn-search {
    grid-column: span 2;
}

@media (max-width: 1200px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row .input-group,
    .form-row .btn-search {
        grid-column: span 1;
    }

    .form-row .btn-search {
        grid-column: span 2;
    }
}

.input-group label {
    display: block;
    color: var(--text);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: inherit;
    color: #1e293b !important;
    background-color: #ffffff !important;
}

.input-group input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input {
    padding-right: 3rem !important;

}

.map-picker-btn {
    position: absolute;
    right: 0.5rem;
    background: var(--primary);
    color: white;
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    z-index: 5;
}

.map-picker-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.map-picker-btn:active {
    transform: scale(0.95);
}

.results-page {
    padding: 3rem 0 6rem;
    background-color: #f8fafc;
    min-height: 80vh;
}

.results-header {
    margin-bottom: 2.5rem;
}

.results-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin: 0;
}

.fleet-item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
}

.fleet-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.fleet-content {
    display: flex;
    gap: 1.5rem;
    flex: 1;
}

.fleet-image {
    width: 200px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.75rem;

    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));

}

.fleet-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #e2e8f0;
}

.fleet-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fleet-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.fleet-specs {
    margin: 0.75rem 0;
    display: flex;
    gap: 1.5rem;
}

.fleet-specs span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
}

.fleet-specs i {
    color: #94a3b8;
    font-size: 1rem;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.feature-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.fleet-item:hover .feature-tag {
    background: #fff;
    border-color: #e2e8f0;
}

.fleet-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-left: 2.5rem;

    border-left: 1px solid #f8fafc;
    min-width: 220px;
}

.price-container {
    text-align: right;
    margin-bottom: 1.25rem;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.booking-btn {
    width: 100%;
    padding: 1rem 1.5rem !important;
    border-radius: 12px;
    font-weight: 700 !important;
    text-align: center;
    transition: all 0.2s;
    white-space: nowrap;
}

.fleet-note {
    font-size: 0.8rem;

    color: #64748b;

    margin-top: 1rem;
    line-height: 1.5;
    display: block;
    font-style: italic;

}

@media (max-width: 991px) {
    .fleet-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .fleet-action {
        border-left: none;
        border-top: 1px solid #f1f5f9;
        padding-left: 0;
        padding-top: 1.5rem;
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .price-container {
        margin-bottom: 0 !important;
    }

    .booking-btn {
        width: auto !important;
    }
}

@media (max-width: 576px) {
    .fleet-content {
        flex-direction: column;
    }

    .fleet-image {
        width: 100%;
        height: 160px;
    }

    .fleet-action {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .price-container {
        text-align: center;
    }

    .booking-btn {
        width: 100% !important;
    }
}

.services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(14, 165, 233, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(10deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.main-footer {
    background: #0f172a;
    color: #f8fafc;
    padding: 4rem 0 2rem;
    border-top: 1px solid #1e293b;
    margin-top: auto;
}

.footer-payments {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.payment-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-badge-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 10px;
    height: 48px;
    min-width: 120px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.payment-badge-img img {
    max-height: 28px;
    max-width: 100%;
    object-fit: contain;
}

.payment-badge-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-brand p {
    color: #94a3b8;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.25rem;
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: flex-end;
    flex: 1;
}

@media (max-width: 992px) {
    .main-header {
        padding: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: block;
        margin-right: -0.5rem;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 10001;
        gap: 1.25rem;
        overflow-y: auto;
        display: flex !important;
        align-items: stretch;
        justify-content: flex-start;
    }

    .nav-wrapper.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .main-nav a {
        font-size: 1.1rem;
        padding: 0.4rem 0;
        width: 100%;
        display: block;
        border-bottom: 1px solid #f1f5f9;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 1.25rem;
        border-top: 2px solid #f1f5f9;
        padding-top: 1.25rem;
        align-items: stretch;
    }

    .lang-switch {
        width: 100%;
    }

    .lang-pill {
        display: flex;
        width: 100%;
        background: #f1f5f9;
        border-radius: 12px;
        padding: 4px;
    }

    .lang-pill a {
        flex: 1;
        text-align: center;
        padding: 8px;
        border-radius: 8px;
    }

    .auth-buttons,
    .user-menu {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .auth-buttons .btn,
    .user-menu .btn {
        width: 100%;
        justify-content: center;
    }
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.mobile-hide {
    display: inline-block;
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none;
    }
}

.hero-content h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .booking-widget {
        padding: 0.625rem;
        margin: 0.5rem 0;
        width: 100%;
        border-radius: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .input-group label {
        margin-bottom: 0.15rem;
        font-weight: 600;
        font-size: 0.75rem;
    }

    .input-group input,
    .input-group select {
        padding: 0.5rem 0.625rem;
        font-size: 0.85rem;
    }

    .btn-search {
        margin-top: 0.15rem;
        padding: 0.65rem !important;
        font-size: 0.9rem;
    }
}

@media (min-width: 992px) {
    .form-row {
        grid-template-columns: 2fr 2fr 1.5fr 0.8fr 1fr;
    }
}

.btn-search {
    width: 100%;
    margin-top: 0.5rem;
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-search:hover {
    background: #e2e8f0;
    color: #1e293b;
    border-color: #cbd5e1;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    table {
        font-size: 0.875rem;
    }

    td,
    th {
        padding: 0.75rem 0.5rem !important;
    }
}

.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.alert-error {
    background: #fee;
    color: #c33;
    border-left: 4px solid #c33;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

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

@media (min-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.confirm-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.confirm-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.confirm-left {
    text-align: left;
}

.confirm-right {
    position: sticky;
    top: 2rem;
}

@media (max-width: 991px) {
    .confirm-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .confirm-right {
        position: static;
    }
}

@media (max-width: 576px) {
    .confirm-card {
        padding: 1.25rem;
    }
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.auth-card {
    max-width: 400px;
    margin: 1rem auto 4rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

@media (max-width: 480px) {
    .auth-card {
        margin: 2rem auto;
        padding: 1.5rem;
    }
}

.map-view {
    height: 300px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
}

@media (min-width: 992px) {
    .map-view {
        height: 500px;
    }
}

.search-summary {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    border-left: 5px solid var(--primary);
}

.summary-item {
    display: flex;
    align-items: flex-start;

    gap: 1.25rem;
    margin-bottom: 1rem;
    color: #475569;
}

.summary-item i {
    color: var(--primary);
    width: 24px;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 0.2rem;

}

.summary-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
    min-width: 90px;
    padding-top: 0.1rem;
}

#summary-pickup,
#summary-dropoff,
#summary-distance {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.results-container h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

.booking-grid,
.results-container,
#fleet-results {
    width: 100%;
    display: block;
}

@media (min-width: 992px) {
    .booking-grid {
        display: grid;
    }
}

img,
iframe,
canvas {
    max-width: 100%;
}

@media (max-width: 768px) {
    h1 {
        text-align: center;
        margin-bottom: 2rem;
    }

    .fleet-info h3,
    .fleet-info p {
        text-align: center;
        justify-content: center;

    }

    .feature-tag-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .fleet-features {
        justify-content: center !important;
    }
}

.contact-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 6rem 0;
}

.contact-info-cards {
    display: grid;
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.info-content p {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.map-container {
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin-bottom: 6rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.help-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.help-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 4rem 0 8rem;
    align-items: flex-start;
}

.help-sidebar {
    position: sticky;
    top: 100px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.help-sidebar h3 {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.help-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-nav li {
    margin-bottom: 0.5rem;
}

.help-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.help-nav a:hover {
    background: rgba(14, 165, 233, 0.05);
    color: var(--primary);
}

.help-nav a.active {
    background: var(--primary);
    color: var(--white);
}

.tc-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 4rem;
    scroll-margin-top: 120px;
}

.tc-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tc-section p {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

.tc-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.tc-section ul li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

    .help-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

.about-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
}

.mission-vision-section {
    padding: 6rem 0;
    background: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mv-card {
    padding: 3rem;
    border-radius: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.stats-section {
    padding: 4rem 0;
    background: var(--secondary);
    color: var(--white);
}

@media (max-width: 768px) {
    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2.25rem;
    }
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #94a3b8;
    font-weight: 500;
}

.about-cta {
    padding: 6rem 0;
}

.cta-box {
    background: var(--primary);
    padding: 4rem;
    border-radius: 32px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }
}

.how-it-works {
    padding: 6rem 0;
    background-color: var(--white);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.how-flow-container {
    background: var(--bg);
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    border: 1px solid var(--border);
}

.flow-header {
    position: absolute;
    top: -15px;
    left: 40px;
    background: var(--white);
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.flow-visual {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.flow-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.flow-icon.icon-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #16a34a;
}

.flow-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.flow-line {
    flex: 1;
    height: 2px;
    margin-top: 30px;
    background: repeating-linear-gradient(to right, var(--border), var(--border) 4px, transparent 4px, transparent 8px);
}

.flow-line.horizontal {
    display: block;
}



@media (max-width: 991px) {
    .how-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .how-flow-container {
        width: 100%;
        max-width: 100%;
        padding: 2.5rem 1.5rem;
    }

    .flow-visual {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .flow-line.horizontal {
        width: 2px;
        height: 30px;
        margin: 5px 0;
        background: repeating-linear-gradient(to bottom, var(--border), var(--border) 4px, transparent 4px, transparent 8px);
        flex: none;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 4rem 0;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .step-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }

    .flow-header {
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        white-space: nowrap;
    }
}

.auth-body {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.auth-wrapper {
    width: 100%;
    max-width: 450px;
    margin: auto;
    padding: 3rem 1rem;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.auth-logo-wrapper {
    margin-bottom: 2.5rem;
    text-align: center;
}

.auth-logo-wrapper a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.auth-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.auth-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.025em;
}

.auth-card {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--white);
    width: 100%;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
}

.auth-footer p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.auth-card form div {
    margin-bottom: 1.25rem;
}

.auth-card label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

.auth-card input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.auth-card .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-card .mt-4 {
    margin-top: 1.5rem;
}

.auth-card button[type="submit"] {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.auth-card button[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.auth-card a {
    color: var(--primary);
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 500;
}

.auth-card a:hover {
    text-decoration: underline;
}

.auth-card .text-red-600 {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.journey-header {
    transition: var(--transition);
}

.map-compact #map {
    z-index: 1;
}

.fleet-premium-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 180px 1fr 200px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-bottom: 1.25rem;
    will-change: transform, box-shadow;
}

.fleet-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.fleet-image-box {
    height: 100%;
    position: relative;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}

.fleet-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.fleet-premium-card:hover .fleet-image-box img {
    transform: scale(1.05);
}

.fleet-details-box {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fleet-type-title {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
}

.fleet-desc-text {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.fleet-spec-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.fleet-spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.fleet-spec-icon {
    color: var(--text-light);
    font-size: 0.85rem;
}

.fleet-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fleet-feature-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.fleet-feature-icon {
    color: #22c55e;
    margin-right: 0.25rem;
}

.fleet-pricing-box {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-left: 1px solid var(--border);
    text-align: center;
}

.price-label-small {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.price-value-large {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary);
    margin: 0.25rem 0;
}

.price-inclusive-text {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-premium {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-premium:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.3);
    color: var(--white);
}

@media (max-width: 900px) {
    .journey-header {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        overflow: hidden;
        gap: 0 !important;
    }

    .map-compact {
        height: 200px !important;
        width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    .journey-info {
        padding: 20px !important;
        width: 100% !important;
    }

    .fleet-premium-card {
        grid-template-columns: 1fr !important;
    }

    .fleet-image-box {
        height: 200px !important;
    }

    .fleet-pricing-box {
        border-left: none !important;
        border-top: 1px solid #e2e8f0;
        padding-top: 24px !important;
    }
}

@media (max-width: 600px) {
    .journey-info {
        padding: 5px 0 !important;
    }

    .journey-info span {
        font-size: 0.85rem !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .contact-form-container {
        padding: 25px !important;
    }
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .contact-form-container {
        padding: 20px !important;
    }
}

/* Results Page Styles */
.results-page-wrapper {
    padding: 4rem 0;
    background: var(--bg);
    min-height: 100vh;
}

.results-container-width {
    max-width: 900px !important;
}

.journey-header-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    border: 1px solid var(--border);
}

.map-compact-wrapper {
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.full-size-map {
    height: 100%;
    width: 100%;
}

.journey-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journey-main-info {
    margin-bottom: 1.5rem;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 800;
    display: block;
    margin-bottom: 0.75rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}


.sub-label {
    display: block;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
}

.location-text {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.journey-meta-footer {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.fleet-results-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.loading-text {
    text-align: center;
    color: var(--text-light);
    padding: 5rem;
    font-weight: 600;
}

/* Autocomplete Styles */
.autocomplete-items {
    position: absolute;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    z-index: 10001;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--white);
    max-height: 300px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    color: var(--text);
    transition: var(--transition);
}

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

.autocomplete-item:hover {
    background-color: #f1f5f9;
}

.autocomplete-header {
    padding: 10px 15px;
    background: #f8fafc;
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.autocomplete-searching {
    padding: 15px;
    color: var(--text-light);
    font-style: italic;
}

.pos-relative {
    position: relative;
}

@media (max-width: 991px) {
    .journey-header-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .map-compact-wrapper {
        height: 200px;
    }

    .fleet-premium-card {
        grid-template-columns: 1fr !important;
        border-radius: var(--radius-lg);
    }

    .fleet-pricing-box {
        border-left: none !important;
        border-top: 1px solid var(--border);
        padding: 1.5rem !important;
    }
}

/* How it Works Styles */
.how-it-works {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 41, 59, 0.05);
    color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.step-item:hover .step-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
}

.step-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.step-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.how-flow-container {
    background: #f8fafc;
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

/* Modal Styles */
#mapPickerModal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#mapPickerModal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.modal-header {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
}

.close-modal {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    color: #64748b;
    transition: var(--transition);
}

.close-modal:hover {
    background: #fee2e2;
    color: #ef4444;
}

.picker-map {
    flex: 1;
    min-height: 400px;
}

.modal-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    background: #f8fafc;
}

.picked-address {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 200px;
    font-weight: 500;
}

.btn-confirm-loc {
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid #ef4444;
    font-weight: 500;
}

@media (max-width: 768px) {
    .how-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-flow-container {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Hero Split Section Styles */
.hero-split-section {
    padding: 6rem 0;
    background: #fcfcfc;
    overflow: hidden;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #f8fafc;
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.hero-image-wrapper:hover .hero-main-img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.hero-text-content {
    max-width: 500px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.badge-premium {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(30, 41, 59, 0.05);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-text-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
}

.hero-text-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.hero-search-action {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-search-hero {
    height: 58px;
    padding: 0 4rem;
    font-size: 1.15rem;
    width: auto !important;
    border-radius: var(--radius-lg);
}

.hero-content-wrapper .booking-widget {
    margin-top: 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: var(--white);
}

.hero-content-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* --- DEFINITIVE HERO FORM FIX --- */
.hero-content-wrapper .input-group {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--radius-lg) !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    min-height: 56px !important;
    transition: var(--transition) !important;
    position: relative !important;
    cursor: pointer !important;
    overflow: hidden !important;
}

.hero-content-wrapper .input-group:focus-within {
    border-color: var(--primary) !important;
    background: white !important;
}

/* Base style for ALL form elements in the hero */
.hero-content-wrapper .input-group input,
.hero-content-wrapper .input-group select {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    background: transparent !important;
    padding: 0 1rem !important;
    /* Perfect 1rem horizontal padding for ALL */
    margin: 0 !important;
    outline: none !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    color: var(--text) !important;
    cursor: pointer !important;
    min-height: 54px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* Force text inputs to show text cursor */
.hero-content-wrapper .input-group input[type="text"] {
    cursor: text !important;
}


/* HIDE ALL DEFAULT BROWSER ICONS AGGRESSIVELY */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    opacity: 0 !important;
    background: transparent !important;
    z-index: 5;
}

input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-clear-button,
select::-ms-expand {
    display: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.hero-content-wrapper .map-picker-btn {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

@media (max-width: 1024px) {
    .hero-split-section {
        padding: 0;
    }

    .hero-split-section>.container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: none !important;
    }

    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        min-height: calc(100vh - 64px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-image-wrapper {
        position: absolute;
        inset: 0;
        z-index: 1;
        border-radius: 0;
        box-shadow: none;
        max-height: none;
        aspect-ratio: auto;
    }

    .hero-main-img {
        height: 100% !important;
        object-fit: cover !important;
    }

    .hero-image-overlay {
        background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 100%);
        z-index: 2;
    }

    .hero-content-wrapper {
        position: relative;
        z-index: 10;
        padding: 2rem 1rem;
        width: 100%;
    }

    .hero-text-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-text-content h1 {
        color: white !important;
        font-size: 2.25rem !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-text-content p {
        color: rgba(255, 255, 255, 0.9) !important;
        margin: 0 auto;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    }

    .badge-premium {
        margin: 0 auto 1.5rem;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }

    .modern-search-container {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        margin-top: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .vertical-input-stack {
        gap: 0.75rem !important;
        margin-bottom: 1.25rem !important;
    }

    .modern-form-title {
        margin-bottom: 1rem !important;
        font-size: 1rem !important;
    }

    .premium-input-group {
        gap: 0.25rem !important;
    }

    .premium-input-wrapper input,
    .premium-input-wrapper select {
        padding: 0.65rem 1rem !important;
        min-height: 48px !important;
    }

    .modern-search-btn {
        padding: 0.85rem !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 768px) {
    .hero-split-grid {
        min-height: calc(100vh - 64px);
    }

    .hero-text-content h1 {
        font-size: 1.8rem !important;
    }

    .hero-content-wrapper {
        padding: 1rem 0.5rem;
    }
}