:root {
    --primary-color: #FF5A1F;
    --primary-hover: #e54e1a;
    --secondary-color: #FFB800;
    --text-dark: #111111;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #F8F8F8;
    --bg-white: #FFFFFF;
    --border-color: #EEEEEE;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #f5f8fb;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Re-used & Shared */
.dr-header {
    background-color: var(--bg-light);
    padding: 1rem 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dr-nav-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.dr-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-fast);
    opacity: 0.8;
}

.dr-nav-link:hover {
    color: var(--primary-color);
    opacity: 1;
}

.dr-logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.dr-logo-link {
    text-decoration: none;
}

.dr-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dr-logo-svg {
    height: 50px;
    width: 250px;
}

.dr-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    color: var(--text-muted);
    margin-top: -5px;
    font-weight: 400;
    margin-left: 0.4rem;
}

.dr-cta-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.dr-btn-primary {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.8rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 77, 28, 0.3);
}

/* Main Content Styles */
.dr-main-content {
    padding: 4rem 1rem;
    position: relative;
    z-index: 10;
}

.dr-hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

.dr-hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: #FF6B3D;
    /* Vibrant orange from image */
}

.dr-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Form Card */
.dr-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dr-form-card {
    background: var(--bg-white);
    width: 100%;
    max-width: 1050px;
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* Sidebar */
.dr-form-sidebar {
    width: 40%;
    position: relative;
    padding: 4rem 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A1A, #333333);
    /* Dark base as per image */
    overflow: hidden;
}

.dr-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&fit=crop&q=80') center/cover;
    opacity: 0.15;
    mix-blend-mode: overlay;
    z-index: 1;
}

.dr-sidebar-content {
    position: relative;
    z-index: 5;
}

.dr-sidebar-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.dr-sidebar-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.dr-sidebar-features {
    list-style: none;
}

.dr-sidebar-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 400;
}

.dr-icon-check::before {
    content: '✓';
    font-weight: 700;
}

/* Decorative Circles on Sidebar */
.dr-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.dr-circle-1 {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -80px;
}

.dr-circle-2 {
    width: 180px;
    height: 180px;
    bottom: 50px;
    left: 100px;
}

/* Form Body */
.dr-form-body {
    width: 60%;
    padding: 4rem;
}

.dr-form-title {
    font-size: 2.2rem;
    color: #FF6B3D;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.dr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.dr-form-group {
    margin-bottom: 1.5rem;
}

.dr-form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    color: #7A7A7A;
    font-weight: 400;
}

.dr-required {
    color: #FF4D4D;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: #F4F7FA;
    border: 1px solid #E4EBF2;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

input:focus,
select:focus {
    outline: none;
    border-color: #CBD5E0;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.02);
}

/* Custom Select */
.dr-select-wrapper {
    position: relative;
}

.dr-select-wrapper::after {
    content: '⌵';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #A0AEC0;
}

select {
    appearance: none;
}

/* Radio Buttons */
.dr-radio-group {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-top: 0.5rem;
}

.dr-radio-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark) !important;
}

.dr-radio-label input {
    display: none;
}

.dr-radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #E2E8F0;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.dr-radio-label input:checked+.dr-radio-custom {
    border-color: #3182CE;
}

.dr-radio-label input:checked+.dr-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #3182CE;
    border-radius: 50%;
}

/* File Upload */
.dr-file-upload {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dr-file-input {
    display: none;
}

.dr-file-btn {
    background: #EEEEEE;
    border: 1px solid #DDDDDD;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
}

.dr-file-name {
    font-size: 0.85rem;
    color: #FF4D4D;
    /* As per image */
}

/* Submit Button */
.dr-btn-submit {
    width: 100%;
    background: #FF5429;
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: var(--transition-fast);
}

.dr-btn-submit:hover {
    background: #e6441b;
    transform: translateY(-1px);
}

.dr-form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #888888;
}

.dr-form-footer a {
    color: #FF5429;
    text-decoration: none;
}

/* Background Decoration */
.dr-bg-decoration {
    position: fixed;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(240, 240, 240, 0.4);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive */
@media (max-width: 1024px) {
    .dr-form-card {
        flex-direction: column;
        max-width: 600px;
    }

    .dr-form-sidebar,
    .dr-form-body {
        width: 100%;
    }

    .dr-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .dr-form-row {
        grid-template-columns: 1fr;
    }

    .dr-form-body {
        padding: 2rem;
    }
}

:root {
    --primary-color: #FF5A1F;
    --primary-hover: #e54e1a;
    --secondary-color: #0FCDA3;
    --text-dark: #111111;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #F8F8F8;
    --accent-yellow: #E8A838;
    --accent-yellow-hover: #d1962f;
    --white: #FFFFFF;
    --border-color: #EEEEEE;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --container-width: 1300px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn--primary:hover {
    background-color: var(--primary-hover);
}

.btn--outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.btn--outline:hover {
    background-color: var(--bg-light);
}

.btn--yellow {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.btn--yellow:hover {
    background-color: var(--accent-yellow-hover);
}

.btn--sm {
    padding: 8px 20px;
    font-size: 12px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header__tag {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.section-header__title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header__desc {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.sticky {
    position: fixed;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.header.sticky .logo span:not(.logo-d) {
    color: var(--text-dark);
}

.header.sticky .header__nav a {
    color: var(--text-dark);
}

.header.sticky .login-link {
    color: var(--text-dark);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-d {
    color: var(--primary-color);
}

.logo-o1 {
    color: #22C55E;
}

.logo-n {
    color: #333333;
}

.logo-o2 {
    color: #FFB800;
}

.logo-r {
    color: #333333;
}

.logo-i {
    color: #333333;
}

.logo-d2 {
    color: #333333;
}

.logo-e {
    color: #EF4444;
}

.header__nav ul {
    display: flex;
    gap: 30px;
}

.header__nav a {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
}

.header__nav a.active,
.header__nav a:hover {
    color: var(--primary-color);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.login-link {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 15px rgba(255, 90, 31, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 120px 20px 60px;
}

.hero__content {
    margin-bottom: 40px;
}

.hero__tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* Booking Form */
.booking-form {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 1000px;
    box-shadow: var(--shadow-md);
}

.booking-form__tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.booking-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    transition: var(--transition);
}

.booking-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.booking-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.tab-icon {
    font-size: 16px;
}

.booking-form__fields {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background-color: #F9F9F9;
    color: var(--text-dark);
}

.form-field input::placeholder {
    color: var(--text-light);
}

.guests-input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #F9F9F9;
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
}

.search-btn {
    height: 45px;
    padding: 0 40px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.about-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Cab Types */
.cab-types {
    padding: 100px 0;
    background: var(--bg-light);
}

.cab-types__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cab-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cab-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cab-card--featured {
    border-color: var(--primary-color);
}

.cab-card__img {
    margin-bottom: 20px;
}

.cab-card__img img {
    width: 150px;
    height: auto;
    margin: 0 auto;
}

.cab-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cab-card__desc {
    color: var(--text-gray);
    font-size: 14px;
}

/* Destinations */
.destinations {
    padding: 100px 0;
}

.destinations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.dest-card__img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.dest-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dest-card:hover .dest-card__img img {
    transform: scale(1.1);
}

.dest-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
}

.dest-card__badge--new {
    background: #10B981;
}

.dest-card__badge--offer {
    background: var(--primary-color);
}

.dest-card__badge--featured {
    background: #3B82F6;
}

.dest-card__content {
    padding: 20px;
}

.dest-card__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.dest-card__location {
    color: var(--text-gray);
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    color: var(--white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 16px;
}

.testimonial-card__text {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-card__user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-card__info p {
    font-size: 12px;
    color: var(--text-gray);
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.why-card__icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 90, 31, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-card__icon img {
    width: 35px;
    height: 35px;
}

.why-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-card__desc {
    font-size: 14px;
    color: var(--text-gray);
}

/* Services */
.services {
    padding: 100px 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 90, 31, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card__icon img {
    width: 40px;
    height: 40px;
}

.service-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.services__rating {
    text-align: center;
    margin-top: 40px;
}

.services__rating span {
    color: var(--text-gray);
    font-size: 14px;
}

/* Corporate */
.corporate {
    padding: 80px 0;
    background: #EBF2F7;
}

.corporate__grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.corporate__img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.corporate__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corporate__content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.corporate__content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.corporate__content p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

/* Partners */
.partners {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.partners__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    width: 100px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
}


/* Available Vehicles Page Styles (Unique Prefix: av-) */
.av-body {
    background-color: #F5F7FA;
}

.av-main {
    padding: 120px 0 60px;
}

.header--static {
    background: var(--white);
    position: fixed;
    box-shadow: var(--shadow-sm);
}

.header-btn--dark {
    color: var(--text-dark) !important;
    border-color: var(--border-color) !important;
}

.user-icon--dark {
    background: rgba(0, 0, 0, 0.05);
}

.av-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.av-page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.av-page-subtitle {
    color: var(--text-gray);
    font-size: 16px;
}

.av-search-summary {
    background: #DCE7F2;
    border-radius: 12px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.av-summary-item label {
    display: block;
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.av-summary-value {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.av-summary-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

.av-edit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
}

.av-results-header {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.av-filters-count {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.av-red-text {
    color: var(--primary-color);
}

.av-results-count {
    color: var(--text-gray);
    font-weight: 500;
}

.av-green-text {
    color: var(--secondary-color);
    font-weight: 700;
}

.av-content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

.av-sidebar {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.av-sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.av-results-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
}

.av-clear-filters {
    background: none;
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
}

.av-filter-group {
    margin-bottom: 30px;
}

.av-filter-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.av-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.av-chip {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
    transition: var(--transition);
}

.av-chip--active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.av-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.av-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.av-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-gray);
    cursor: pointer;
}

.av-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.av-list-count {
    font-size: 16px;
    font-weight: 700;
}

.av-sort select {
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
}

.av-vehicle-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.av-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.av-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 90, 31, 0.2);
}

.av-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px 20px;
    font-size: 10px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    z-index: 2;
    border-bottom-right-radius: 16px;
}

.av-card__badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 20px;
    height: 100%;
    transform: skewX(-20deg);
    z-index: -1;
}

.av-card__badge--featured {
    background: #FF9800;
}

.av-card__badge--new {
    background: #03A9F4;
}

.av-card__badge--offer {
    background: #4CAF50;
}

.av-card__body {
    display: grid;
    grid-template-columns: 320px 1fr;
}

.av-card__image {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.av-card__image img {
    width: 100%;
    border-radius: 12px;
}

.av-card__content {
    padding: 25px;
    border-left: 1px solid var(--border-color);
}

.av-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.av-card__title {
    font-size: 24px;
    font-weight: 800;
}

.av-wishlist {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.av-card__location {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 15px;
}

.av-card__specs {
    list-style: none;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.av-card__specs li {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.av-card__footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: end;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
}

.av-price-main {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.av-price-old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 10px;
}

.av-price-off {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 14px;
    margin-left: 10px;
}

.av-price-note {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 5px;
}

.av-rating-badge {
    background: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.av-rating-count {
    display: block;
    font-size: 10px;
    color: var(--text-light);
    margin-top: 5px;
}

.av-card__actions {
    display: flex;
    gap: 10px;
}

.av-details-btn {
    border-color: #03A9F4 !important;
    color: #03A9F4 !important;
}

.av-book-btn {
    background-color: #03A9F4 !important;
}


/* View Details Page Styles (Unique Prefix: vd-) */
.vd-body {
    background-color: #F0F4F8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.vd-container {
    width: 100%;
    max-width: 1000px;
}

.vd-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.vd-header {
    background-color: #E2ECF6;
    padding: 30px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 2px solid rgba(255, 90, 31, 0.1);
}

.vd-back-btn {
    position: absolute;
    left: 40px;
    transition: var(--transition);
}

.vd-back-btn:hover {
    transform: translateX(-5px);
}

.vd-header-content {
    flex: 1;
    text-align: center;
}

.vd-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.vd-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.vd-content {
    padding: 50px 60px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.vd-section {
    margin-bottom: 40px;
}

.vd-section-title {
    font-size: 22px;
    font-weight: 800;
    color: #FF5A1F;
    margin-bottom: 30px;
}

.vd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vd-list {
    list-style: none;
    padding-left: 0;
}

.vd-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.vd-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-size: 25px;
    line-height: 1;
    top: -4px;
}

.vd-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vd-vehicle-image {
    width: 100%;
    margin-bottom: 30px;
}

.vd-vehicle-image img {
    width: 100%;
    transform: scale(1.2) translateX(30px);
}

.vd-book-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: 50px;
    background-color: #0076D7 !important;
}

/* Footer */


.footer {
    padding: 80px 0 30px;
    background: #1A1A2E;
    color: var(--white);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer__brand {
    padding-right: 40px;
}

.footer__logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.logo-dark {
    color: var(--white);
}

.logo-accent {
    color: var(--secondary-color);
}

.footer__social {
    margin-bottom: 20px;
}

.social-label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
}

.social-icons img {
    filter: brightness(0) invert(1);
}

.footer__phone {
    font-size: 18px;
    font-weight: 700;
}

.footer__col-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--secondary-color);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    gap: 20px;
}

.footer__bottom-links {
    display: flex;
    gap: 25px;
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer__bottom-links a:hover {
    color: var(--white);
}

.footer__lang {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__lang select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* Page Hero (for internal pages) */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1449034446853-66c86144b0ad?q=80&w=2070') center/cover;
    text-align: center;
    color: var(--white);
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 10px;
}

.breadcrumbs a {
    color: var(--secondary-color);
}

/* Vehicle Card (Available Vehicles Page) */
.vehicle-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.vehicle-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.vehicle-card__header {
    position: relative;
    padding: 20px;
    background: var(--bg-light);
}

.vehicle-card__badges {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.vehicle-badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.vehicle-badge--new {
    background: #10B981;
    color: white;
}

.vehicle-badge--featured {
    background: #3B82F6;
    color: white;
}

.vehicle-card__image {
    text-align: center;
}

.vehicle-card__image img {
    width: 180px;
    height: auto;
    margin: 0 auto;
}

.vehicle-card__body {
    padding: 20px;
}

.vehicle-card__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-score {
    background: #10B981;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
}

.rating-text {
    font-size: 12px;
    color: var(--text-gray);
}

.vehicle-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.vehicle-card__subtitle {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.vehicle-card__features {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.vehicle-card__pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.price-current {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
}

.price-original {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 10px;
}

.price-discount {
    background: #FEF3C7;
    color: #B45309;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
}

.price-taxes {
    font-size: 11px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero__title {
        font-size: 48px;
    }

    .footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .booking-form__fields {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .corporate__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose__grid,
    .services__grid,
    .cab-types__grid,
    .destinations__grid,
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 14px;
    }

    .booking-form {
        padding: 20px;
    }

    .booking-form__tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .booking-tab {
        flex-shrink: 0;
        padding: 10px 15px;
        font-size: 12px;
    }

    .booking-form__fields {
        grid-template-columns: 1fr;
    }

    .search-btn {
        width: 100%;
    }

    .section-header__title {
        font-size: 28px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-image img {
        height: 300px;
    }

    .why-choose__grid,
    .services__grid,
    .cab-types__grid,
    .destinations__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .corporate__content h2 {
        font-size: 32px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .partners__list {
        justify-content: center;
    }

    .header__actions .btn {
        display: none;
    }
}

body.wy-body {
    font-family: 'Outfit', sans-serif;
    color: var(--wy-text-body);
    line-height: 1.6;
    background-color: var(--wy-white);
    overflow-x: hidden;
}

.wy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.wy-hero {
    padding: 80px 0;
    position: relative;
}

.wy-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Staggered Image Layout */
.wy-hero-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wy-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--wy-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    position: relative;
}

.wy-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
}

.wy-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Custom Image Positioning to match design */
.wy-hero-left .wy-img-1 {
    width: 110%;
    margin-left: -5%;
}

.wy-hero-left .wy-img-2 {
    width: 90%;
    align-self: flex-end;
}

.wy-hero-right .wy-img-3 {
    width: 100%;
}

.wy-hero-right .wy-img-4 {
    width: 85%;
    margin-top: -20px;
}

/* Content Area */
.wy-hero-content {
    text-align: center;
    padding: 0 20px;
}

.wy-logo-area {
    margin-bottom: 40px;
}

.wy-logo {
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto 5px;
}

.wy-tagline {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
}

.wy-text-area .wy-subtitle {
    display: block;
    color: var(--wy-primary);
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 10px;
    font-style: italic;
}

.wy-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--wy-text-title);
    margin-bottom: 25px;
}

.wy-description {
    font-size: 16px;
    color: #888;
    max-width: 500px;
    margin: 0 auto 40px;
}

.wy-description strong {
    color: #555;
    font-weight: 600;
}

.wy-btn {
    display: inline-block;
    background: var(--wy-primary);
    color: var(--wy-white);
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 75, 43, 0.3);
}

.wy-btn:hover {
    background: var(--wy-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 75, 43, 0.4);
}

/* Why Choose Us Section */
.wy-features {
    padding: 100px 0;
}

.wy-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.wy-section-title {
    font-size: 48px;
    color: var(--wy-primary);
    font-weight: 400;
    margin-bottom: 10px;
}

.wy-section-subtext {
    font-size: 18px;
    color: #888;
}

.wy-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.wy-feature-card {
    background: var(--wy-white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #EEE;
    transition: all 0.3s ease;
}

.wy-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--wy-shadow);
    border-color: transparent;
}

.wy-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.wy-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wy-icon-box img {
    max-width: 100%;
    height: auto;
}

.wy-card-title {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    line-height: 1.2;
}

.wy-card-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wy-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .wy-hero-images {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .wy-image-wrapper {
        width: 45%;
    }

    .wy-hero-left,
    .wy-hero-right {
        order: 2;
    }

    .wy-hero-content {
        order: 1;
    }

    .wy-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wy-title {
        font-size: 42px;
    }

    .wy-section-title {
        font-size: 36px;
    }

    .wy-features-grid {
        grid-template-columns: 1fr;
    }

    .wy-hero-images {
        display: none;
        /* Hide images on small mobile to focus on content */
    }
}