/*
=========================================================
              RAJASTHAN AURA TOURS
          CAR RENTAL WITH DRIVER CSS
               CORRECTED VERSION
=========================================================
*/


/*
=========================================================
                    GLOBAL RESET
=========================================================
*/

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #292929;
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

.vehicle-container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}


/*
=========================================================
                        HEADER
=========================================================
*/

.vehicle-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vehicle-header-container {
    width: 94%;
    max-width: 1380px;
    min-height: 86px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.vehicle-logo-area {
    flex-shrink: 0;
}

.vehicle-logo-area a {
    display: block;
}

.vehicle-logo-area img {
    display: block;
    width: 155px;
    height: auto;
}


/*
=========================================================
                  DESKTOP NAVIGATION
=========================================================
*/

.vehicle-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.vehicle-desktop-nav a {
    position: relative;
    padding: 30px 0;
    color: #292929;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.vehicle-desktop-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: 0;
    height: 1px;
    background: #a77838;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.vehicle-desktop-nav a:hover,
.vehicle-desktop-nav a[aria-current="page"] {
    color: #a77838;
}

.vehicle-desktop-nav a:hover::after,
.vehicle-desktop-nav a[aria-current="page"]::after {
    width: 100%;
}


/*
=========================================================
                BOOK YOUR VEHICLE BUTTON
=========================================================
*/

.vehicle-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 44px;
    padding: 11px 20px;
    background: #a77838;
    border: 1px solid #a77838;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    white-space: nowrap;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.vehicle-header-btn:hover {
    background: #825a27;
    border-color: #825a27;
    transform: translateY(-1px);
}


/*
=========================================================
                   MOBILE MENU BUTTON
=========================================================
*/

.vehicle-menu-toggle {
    display: none;
    padding: 5px;
    border: 0;
    background: transparent;
    color: #292929;
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
}


/*
=========================================================
                     MOBILE MENU
=========================================================
*/

.vehicle-mobile-menu {
    position: relative;
    z-index: 999;
    display: none;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.vehicle-mobile-menu.active {
    display: block;
}

.vehicle-mobile-menu a {
    display: block;
    padding: 14px 6%;
    color: #292929;
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid #eeeeee;
    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.vehicle-mobile-menu a:hover,
.vehicle-mobile-menu a[aria-current="page"] {
    color: #a77838;
    background: #faf8f4;
}


/*
=========================================================
                         HERO
=========================================================
*/

.vehicle-hero {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #171717;
}

.vehicle-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vehicle-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 10, 0.72) 0%,
            rgba(10, 10, 10, 0.50) 48%,
            rgba(10, 10, 10, 0.16) 100%
        );
}

.vehicle-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
    color: #ffffff;
}

.vehicle-hero-subtitle {
    display: block;
    margin-bottom: 16px;
    color: #e0bd79;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.vehicle-hero-content h1 {
    max-width: 820px;
    margin: 0 0 22px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 62px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.vehicle-hero-content p {
    max-width: 670px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

.vehicle-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 27px;
    background: #a77838;
    border: 1px solid #a77838;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.vehicle-hero-btn:hover {
    background: #825a27;
    border-color: #825a27;
    transform: translateY(-2px);
}


/*
=========================================================
              PRIVATE CAR SERVICE
=========================================================
*/

.vehicle-intro {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
    text-align: center;
}

.vehicle-intro .vehicle-container {
    max-width: 900px;
}

.vehicle-section-subtitle {
    display: block;
    margin-bottom: 12px;
    color: #8c672b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.vehicle-intro h2 {
    max-width: 800px;
    margin: 0 auto 18px;
    color: #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
}

.vehicle-heading-line {
    width: 60px;
    height: 2px;
    margin: 24px auto 28px;
    background: #a77838;
}

.vehicle-intro p {
    max-width: 820px;
    margin: 0 auto 17px;
    color: #666666;
    font-size: 15px;
    line-height: 1.85;
}

.vehicle-intro p:last-child {
    margin-bottom: 0;
}


/*
=========================================================
                     OUR FLEET
=========================================================
*/

.our-fleet {
    width: 100%;
    padding: 90px 0;
    background: #f7f5f0;
}

.vehicle-section-heading {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
}

.vehicle-section-heading h2 {
    margin: 0 0 18px;
    color: #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
}

.vehicle-section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}


/*
=========================================================
              CHOOSE YOUR VEHICLE
=========================================================
*/

.vehicle-category-selector {
    width: 100%;
    margin: 0 auto 72px;
    padding: 42px 35px;
    background: #ffffff;
    border: 1px solid rgba(167, 120, 56, 0.18);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.045);
}

.vehicle-selector-heading {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.vehicle-selector-heading h3 {
    margin: 0 0 10px;
    color: #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.25;
}

.vehicle-selector-heading p {
    max-width: 610px;
    margin: 0 auto;
    color: #686868;
    font-size: 14px;
    line-height: 1.7;
}

.vehicle-selector-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.vehicle-selector-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 160px;
    padding: 23px 14px;
    background: #faf8f4;
    border: 1px solid #e9e1d5;
    text-align: center;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.vehicle-selector-card i {
    margin-bottom: 16px;
    color: #a77838;
    font-size: 27px;
    line-height: 1;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.vehicle-selector-title {
    display: block;
    margin-bottom: 7px;
    color: #292929;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.3;
}

.vehicle-selector-text {
    display: block;
    color: #777777;
    font-size: 11px;
    line-height: 1.5;
}

.vehicle-selector-card:hover {
    background: #ffffff;
    border-color: #a77838;
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
}

.vehicle-selector-card:hover i {
    color: #825a27;
    transform: translateY(-2px);
}


/*
=========================================================
                 VEHICLE CATEGORY
=========================================================
*/

.vehicle-category {
    width: 100%;
    padding: 70px 0;
    border-top: 1px solid rgba(167, 120, 56, 0.18);

    /*
    Makes anchor links stop with the category heading
    comfortably visible.
    */
    scroll-margin-top: 28px;
}

.vehicle-category:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.vehicle-category:last-child {
    padding-bottom: 0;
}

.vehicle-category-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.vehicle-category-subtitle {
    display: block;
    margin-bottom: 10px;
    color: #8c672b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.vehicle-category-heading h3 {
    margin: 0 0 12px;
    color: #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.25;
}

.vehicle-category-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #686868;
    font-size: 14px;
    line-height: 1.75;
}


/*
=========================================================
                    VEHICLE GRID
=========================================================
*/

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.vehicle-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin: 0 auto;
}


/*
=========================================================
                    VEHICLE CARD
=========================================================
*/

.vehicle-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.055);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.09);
}

.vehicle-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #eeeeee;
}

.vehicle-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.vehicle-card:hover .vehicle-card-image img {
    transform: scale(1.035);
}

.vehicle-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px 24px 27px;
}

.vehicle-card-content h4 {
    margin: 0 0 10px;
    color: #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
}

.vehicle-card-content p {
    margin: 0 0 20px;
    color: #686868;
    font-size: 13px;
    line-height: 1.65;
}


/*
=========================================================
                    BOOK NOW BUTTON
=========================================================
*/

.vehicle-card-content .vehicle-card-btn,
.vehicle-feature-content .vehicle-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 42px;
    padding: 10px 20px;
    background: #292929;
    border: 1px solid #292929;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.vehicle-card-content .vehicle-card-btn {
    margin-top: auto;
}

.vehicle-card-content .vehicle-card-btn:hover,
.vehicle-feature-content .vehicle-card-btn:hover {
    background: #a77838;
    border-color: #a77838;
    transform: translateY(-2px);
}


/*
=========================================================
       TEMPO TRAVELLER + FORCE URBANIA
=========================================================
*/

.vehicle-feature-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto 34px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.vehicle-feature-card:last-child {
    margin-bottom: 0;
}

.vehicle-feature-image {
    position: relative;
    width: 100%;
    min-height: 430px;
    overflow: hidden;
    background: #eeeeee;
}

.vehicle-feature-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vehicle-feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 45px;
}

.vehicle-feature-content h4 {
    margin: 0 0 15px;
    color: #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 33px;
    font-weight: 400;
    line-height: 1.2;
}

.vehicle-feature-content p {
    margin: 0 0 22px;
    color: #686868;
    font-size: 14px;
    line-height: 1.8;
}

.vehicle-capacity {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}

.vehicle-capacity span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 11px;
    background: #f4f0e9;
    border: 1px solid #e6dccd;
    color: #805a2b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.vehicle-feature-reverse .vehicle-feature-image {
    order: 2;
}

.vehicle-feature-reverse .vehicle-feature-content {
    order: 1;
}


/*
=========================================================
             WHY CHOOSE OUR SERVICE
=========================================================
*/

.vehicle-why-us {
    padding: 100px 0;
    background: #ffffff;
}

.vehicle-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.vehicle-benefit {
    padding: 34px 25px;
    background: #faf8f4;
    border: 1px solid #eee7dc;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.vehicle-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
}

.vehicle-benefit-number {
    margin-bottom: 18px;
    color: #b38a54;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1;
}

.vehicle-benefit h3 {
    margin: 0 0 11px;
    color: #292929;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
}

.vehicle-benefit p {
    margin: 0;
    color: #6b6b6b;
    font-size: 13px;
    line-height: 1.75;
}


/*
=========================================================
                24/7 GUEST ASSISTANCE
=========================================================
*/

.vehicle-assistance {
    padding: 100px 0;
    background: #171717;
    color: #ffffff;
}

.vehicle-assistance-heading {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
}

.vehicle-assistance-heading .vehicle-section-subtitle {
    color: #c69a61;
}

.vehicle-assistance-heading h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.2;
}

.vehicle-assistance-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.85;
}

.vehicle-assistance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.vehicle-assistance-item {
    padding: 36px 25px;
    border: 1px solid rgba(198, 154, 97, 0.25);
    background: #202020;
    text-align: center;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.vehicle-assistance-item:hover {
    transform: translateY(-5px);
    border-color: #c69a61;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.vehicle-assistance-item > i {
    margin-bottom: 22px;
    color: #c69a61;
    font-size: 30px;
}

.vehicle-assistance-item h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.35;
}

.vehicle-assistance-item p {
    margin: 0;
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.8;
}

.vehicle-assistance-contact {
    max-width: 760px;
    margin: 55px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.vehicle-assistance-contact > p {
    margin: 0 0 25px;
    color: #d0d0d0;
    font-size: 15px;
}

.vehicle-assistance-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.vehicle-assistance-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 23px;
    background: #a77838;
    border: 1px solid #a77838;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.vehicle-assistance-btn:hover {
    background: #825a27;
    border-color: #825a27;
    transform: translateY(-2px);
}

.vehicle-assistance-whatsapp {
    background: transparent;
    border: 1px solid #c69a61;
}

.vehicle-assistance-whatsapp:hover {
    background: #a77838;
    border-color: #a77838;
}


/*
=========================================================
                  VEHICLE ENQUIRY
=========================================================
*/

.vehicle-enquiry {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 500px;
    padding: 90px 5%;
    background:
        url("images/vehicles/private-car-chauffeur-service.webp")
        center center / cover no-repeat;
    text-align: center;
    overflow: hidden;
    scroll-margin-top: 25px;
}

.vehicle-enquiry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.70);
}

.vehicle-enquiry-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    color: #ffffff;
}

.vehicle-enquiry-subtitle {
    display: block;
    margin-bottom: 13px;
    color: #e5c28b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.vehicle-enquiry-content h2 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 400;
    line-height: 1.15;
}

.vehicle-enquiry-content p {
    max-width: 660px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 15px;
    line-height: 1.8;
}

.vehicle-enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 25px;
    background: #a77838;
    border: 1px solid #a77838;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.vehicle-enquiry-btn:hover {
    background: #825a27;
    border-color: #825a27;
    transform: translateY(-2px);
}


/*
=========================================================
                     FOOTER
=========================================================
*/

.vehicle-footer {
    padding: 75px 0 27px;
    background: #171717;
    color: #d5d5d5;
}

.vehicle-footer-container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.vehicle-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 1.25fr;
    gap: 45px;
}

.vehicle-footer-logo {
    display: inline-block;
    margin-bottom: 17px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
}

.vehicle-footer-brand p {
    max-width: 340px;
    margin: 0 0 17px;
    color: #aaaaaa;
    font-size: 13px;
    line-height: 1.8;
}

.vehicle-footer-tagline {
    display: block;
    color: #c69a61;
    font-size: 11px;
    letter-spacing: 0.7px;
}

.vehicle-footer-column h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
}

.vehicle-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vehicle-footer-column li {
    margin-bottom: 9px;
    color: #aaaaaa;
    font-size: 13px;
    line-height: 1.6;
}

.vehicle-footer-column a {
    color: #aaaaaa;
    transition: color 0.3s ease;
}

.vehicle-footer-column a:hover {
    color: #c69a61;
}

.vehicle-footer-contact p {
    margin: 0 0 16px;
    color: #aaaaaa;
    font-size: 13px;
    line-height: 1.75;
}

.vehicle-footer-contact > a {
    display: block;
    margin-bottom: 9px;
    color: #aaaaaa;
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.vehicle-footer-contact > a:hover {
    color: #c69a61;
}

.vehicle-footer-divider {
    width: 100%;
    height: 1px;
    margin: 50px 0 23px;
    background: rgba(255, 255, 255, 0.12);
}

.vehicle-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #8f8f8f;
    font-size: 12px;
}

.vehicle-footer-bottom p {
    margin: 0;
}

.vehicle-footer-legal {
    display: flex;
    align-items: center;
    gap: 22px;
}

.vehicle-footer-legal a {
    color: #8f8f8f;
    transition: color 0.3s ease;
}

.vehicle-footer-legal a:hover {
    color: #c69a61;
}


/*
=========================================================
              SMALL DESKTOP
=========================================================
*/

@media (max-width: 1100px) {

    .vehicle-header-container {
        width: 92%;
    }

    .vehicle-desktop-nav {
        gap: 15px;
    }

    .vehicle-desktop-nav a {
        font-size: 12px;
    }

    .vehicle-header-btn {
        padding-left: 14px;
        padding-right: 14px;
        font-size: 11px;
    }

    .vehicle-hero-content h1 {
        font-size: 54px;
    }

    .vehicle-selector-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vehicle-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 35px;
    }
}


/*
=========================================================
                       TABLET
=========================================================
*/

@media (max-width: 1000px) {

    .vehicle-assistance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 900px) {

    .vehicle-header-container {
        width: 90%;
        min-height: 74px;
    }

    .vehicle-logo-area img {
        width: 138px;
    }

    .vehicle-desktop-nav,
    .vehicle-header-btn {
        display: none;
    }

    .vehicle-menu-toggle {
        display: block;
    }

    .vehicle-hero {
        height: 620px;
    }

    .vehicle-hero-content h1 {
        font-size: 48px;
    }

    .vehicle-intro {
        padding: 75px 0;
    }

    .vehicle-intro h2 {
        font-size: 38px;
    }

    .our-fleet {
        padding: 75px 0;
    }

    .vehicle-section-heading {
        margin-bottom: 50px;
    }

    .vehicle-section-heading h2 {
        font-size: 38px;
    }

    .vehicle-category-selector {
        margin-bottom: 62px;
        padding: 38px 28px;
    }

    .vehicle-selector-heading h3 {
        font-size: 31px;
    }

    .vehicle-selector-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .vehicle-selector-card {
        min-height: 145px;
    }

    .vehicle-category {
        padding: 60px 0;
    }

    .vehicle-category-heading h3 {
        font-size: 33px;
    }

    .vehicle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .vehicle-grid-two {
        max-width: none;
    }

    .vehicle-feature-card {
        grid-template-columns: 1fr;
    }

    .vehicle-feature-image {
        min-height: 380px;
    }

    .vehicle-feature-content {
        padding: 40px 35px;
    }

    .vehicle-feature-reverse .vehicle-feature-image,
    .vehicle-feature-reverse .vehicle-feature-content {
        order: initial;
    }

    .vehicle-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vehicle-enquiry {
        min-height: 470px;
        padding: 80px 5%;
    }
}


/*
=========================================================
                 ASSISTANCE MOBILE
=========================================================
*/

@media (max-width: 700px) {

    .vehicle-assistance {
        padding: 75px 0;
    }

    .vehicle-assistance-heading {
        margin-bottom: 42px;
    }

    .vehicle-assistance-heading h2 {
        font-size: 34px;
    }

    .vehicle-assistance-heading p {
        font-size: 15px;
    }

    .vehicle-assistance-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vehicle-assistance-item {
        padding: 30px 22px;
    }

    .vehicle-assistance-contact {
        margin-top: 42px;
        padding-top: 32px;
    }

    .vehicle-assistance-buttons {
        flex-direction: column;
        align-items: center;
    }

    .vehicle-assistance-btn {
        width: 100%;
        max-width: 320px;
    }
}


/*
=========================================================
                       MOBILE
=========================================================
*/

@media (max-width: 600px) {

    .vehicle-container,
    .vehicle-footer-container {
        width: 90%;
    }

    .vehicle-header-container {
        width: 100%;
        min-height: 72px;
        padding: 0 18px;
    }

    .vehicle-logo-area img {
        width: 150px;
    }

    .vehicle-mobile-menu a {
        padding: 14px 20px;
        font-size: 14px;
    }


    /*
    HERO
    */

    .vehicle-hero {
        height: 600px;
        min-height: 600px;
    }

    .vehicle-hero-image {
        object-position: center;
    }

    .vehicle-hero-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(10, 10, 10, 0.28) 0%,
                rgba(10, 10, 10, 0.42) 38%,
                rgba(10, 10, 10, 0.76) 100%
            );
    }

    .vehicle-hero-content {
        width: 100%;
        align-self: flex-end;
        padding: 0 22px 60px;
        text-align: left;
    }

    .vehicle-hero-subtitle {
        margin-bottom: 12px;
        font-size: 10px;
        letter-spacing: 2.3px;
    }

    .vehicle-hero-content h1 {
        max-width: 500px;
        margin-bottom: 17px;
        font-size: 37px;
        line-height: 1.12;
        letter-spacing: 0;
    }

    .vehicle-hero-content p {
        max-width: 500px;
        margin-bottom: 25px;
        font-size: 14px;
        line-height: 1.65;
    }

    .vehicle-hero-btn {
        min-height: 46px;
        padding: 12px 22px;
        font-size: 10px;
        letter-spacing: 1.2px;
    }


    /*
    INTRO
    */

    .vehicle-intro {
        padding: 60px 0;
    }

    .vehicle-intro .vehicle-container {
        width: 90%;
    }

    .vehicle-section-subtitle {
        margin-bottom: 10px;
        font-size: 10px;
        letter-spacing: 2.3px;
    }

    .vehicle-intro h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .vehicle-heading-line {
        width: 50px;
        margin: 20px auto 23px;
    }

    .vehicle-intro p {
        font-size: 14px;
        line-height: 1.75;
    }


    /*
    OUR FLEET
    */

    .our-fleet {
        padding: 60px 0;
    }

    .vehicle-section-heading {
        margin-bottom: 42px;
    }

    .vehicle-section-heading h2 {
        margin-bottom: 15px;
        font-size: 30px;
        line-height: 1.25;
    }

    .vehicle-section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }


    /*
    CHOOSE YOUR VEHICLE
    */

    .vehicle-category-selector {
        margin-bottom: 52px;
        padding: 30px 18px;
    }

    .vehicle-selector-heading {
        margin-bottom: 25px;
    }

    .vehicle-selector-heading h3 {
        margin-bottom: 9px;
        font-size: 28px;
    }

    .vehicle-selector-heading p {
        font-size: 13px;
        line-height: 1.65;
    }

    .vehicle-selector-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .vehicle-selector-card {
        min-height: 132px;
        padding: 19px 10px;
    }

    .vehicle-selector-card i {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .vehicle-selector-title {
        margin-bottom: 5px;
        font-size: 15px;
        line-height: 1.25;
    }

    .vehicle-selector-text {
        font-size: 10px;
        line-height: 1.4;
    }

    /*
    Make final category full width when there are five items.
    */

    .vehicle-selector-card:last-child {
        grid-column: 1 / -1;
        min-height: 115px;
    }


    /*
    VEHICLE CATEGORY
    */

    .vehicle-category {
        padding: 52px 0;
        scroll-margin-top: 18px;
    }

    .vehicle-category-heading {
        margin-bottom: 30px;
    }

    .vehicle-category-subtitle {
        margin-bottom: 8px;
        font-size: 9px;
        letter-spacing: 2px;
    }

    .vehicle-category-heading h3 {
        margin-bottom: 10px;
        font-size: 28px;
        line-height: 1.25;
    }

    .vehicle-category-heading p {
        font-size: 13px;
        line-height: 1.7;
    }


    /*
    VEHICLE CARDS
    */

    .vehicle-grid,
    .vehicle-grid-two {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
    }

    .vehicle-card-image {
        aspect-ratio: 3 / 2;
    }

    .vehicle-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .vehicle-card-content {
        padding: 22px 20px 24px;
    }

    .vehicle-card-content h4 {
        margin-bottom: 8px;
        font-size: 23px;
    }

    .vehicle-card-content p {
        margin-bottom: 17px;
        font-size: 13px;
        line-height: 1.6;
    }

    .vehicle-card-content .vehicle-card-btn {
        min-height: 40px;
        padding: 10px 18px;
        font-size: 9px;
        letter-spacing: 1.3px;
    }


    /*
    FEATURE CARDS
    */

    .vehicle-feature-card {
        display: block;
        width: 100%;
        margin-bottom: 24px;
    }

    .vehicle-feature-image {
        width: 100%;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .vehicle-feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .vehicle-feature-content {
        padding: 28px 21px 30px;
    }

    .vehicle-feature-content h4 {
        margin-bottom: 11px;
        font-size: 27px;
    }

    .vehicle-feature-content p {
        margin-bottom: 18px;
        font-size: 13px;
        line-height: 1.7;
    }

    .vehicle-capacity {
        gap: 7px;
        margin-bottom: 20px;
    }

    .vehicle-capacity span {
        min-height: 32px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .vehicle-feature-content .vehicle-card-btn {
        min-height: 40px;
        padding: 10px 18px;
        font-size: 9px;
    }


    /*
    WHY CHOOSE US
    */

    .vehicle-why-us {
        padding: 70px 0;
    }

    .vehicle-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vehicle-benefit {
        padding: 27px 22px;
    }

    .vehicle-benefit-number {
        margin-bottom: 14px;
        font-size: 29px;
    }

    .vehicle-benefit h3 {
        font-size: 20px;
    }


    /*
    ASSISTANCE
    */

    .vehicle-assistance {
        padding: 70px 0;
    }

    .vehicle-assistance-heading h2 {
        font-size: 32px;
        line-height: 1.22;
    }

    .vehicle-assistance-heading p {
        font-size: 14px;
        line-height: 1.75;
    }

    .vehicle-assistance-item {
        padding: 28px 21px;
    }

    .vehicle-assistance-item > i {
        margin-bottom: 18px;
        font-size: 28px;
    }

    .vehicle-assistance-item h3 {
        font-size: 20px;
    }

    .vehicle-assistance-item p {
        font-size: 13px;
        line-height: 1.7;
    }


    /*
    ENQUIRY
    */

    .vehicle-enquiry {
        min-height: 470px;
        padding: 70px 5%;
    }

    .vehicle-enquiry-subtitle {
        font-size: 10px;
        letter-spacing: 2.2px;
    }

    .vehicle-enquiry-content h2 {
        font-size: 34px;
        line-height: 1.17;
    }

    .vehicle-enquiry-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .vehicle-enquiry-btn {
        min-height: 45px;
        padding: 11px 22px;
        font-size: 10px;
    }


    /*
    FOOTER
    */

    .vehicle-footer {
        padding: 60px 0 25px;
    }

    .vehicle-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .vehicle-footer-logo {
        font-size: 23px;
    }

    .vehicle-footer-brand p {
        font-size: 13px;
    }

    .vehicle-footer-column h3 {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .vehicle-footer-column li,
    .vehicle-footer-contact p,
    .vehicle-footer-contact > a {
        font-size: 13px;
    }

    .vehicle-footer-divider {
        margin: 40px 0 22px;
    }

    .vehicle-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        font-size: 11px;
    }

    .vehicle-footer-legal {
        flex-wrap: wrap;
        gap: 10px 20px;
    }
}


/*
=========================================================
                    SMALL MOBILE
=========================================================
*/

@media (max-width: 380px) {

    .vehicle-header-container {
        padding: 0 16px;
    }

    .vehicle-logo-area img {
        width: 140px;
    }

    .vehicle-menu-toggle {
        font-size: 27px;
    }

    .vehicle-hero {
        height: 570px;
        min-height: 570px;
    }

    .vehicle-hero-content {
        padding: 0 18px 50px;
    }

    .vehicle-hero-content h1 {
        font-size: 32px;
    }

    .vehicle-hero-content p {
        font-size: 13px;
    }

    .vehicle-intro h2,
    .vehicle-section-heading h2 {
        font-size: 28px;
    }


    /*
    SELECTOR
    */

    .vehicle-category-selector {
        padding: 27px 14px;
    }

    .vehicle-selector-heading h3 {
        font-size: 26px;
    }

    .vehicle-selector-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-selector-card,
    .vehicle-selector-card:last-child {
        grid-column: auto;
        min-height: 112px;
        padding: 17px 12px;
    }

    .vehicle-selector-card i {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .vehicle-selector-title {
        font-size: 15px;
    }

    .vehicle-selector-text {
        font-size: 10px;
    }


    .vehicle-category-heading h3 {
        font-size: 26px;
    }

    .vehicle-card-content {
        padding: 20px 18px 22px;
    }

    .vehicle-card-content h4 {
        font-size: 21px;
    }

    .vehicle-card-content p {
        font-size: 12px;
    }

    .vehicle-feature-content {
        padding: 25px 18px 27px;
    }

    .vehicle-feature-content h4 {
        font-size: 25px;
    }

    .vehicle-capacity span {
        font-size: 9px;
    }

    .vehicle-benefit {
        padding: 24px 19px;
    }

    .vehicle-assistance-heading h2 {
        font-size: 29px;
    }

    .vehicle-enquiry-content h2 {
        font-size: 30px;
    }

    .vehicle-enquiry-btn {
        width: 100%;
        max-width: 290px;
    }

    .vehicle-footer {
        padding-top: 55px;
    }

    .vehicle-footer-grid {
        gap: 32px;
    }
}


/*
=========================================================
                 ACCESSIBILITY
=========================================================
*/

.vehicle-header a:focus-visible,
.vehicle-mobile-menu a:focus-visible,
.vehicle-hero-btn:focus-visible,
.vehicle-selector-card:focus-visible,
.vehicle-card-btn:focus-visible,
.vehicle-assistance-btn:focus-visible,
.vehicle-enquiry-btn:focus-visible,
.vehicle-footer a:focus-visible,
.vehicle-menu-toggle:focus-visible {
    outline: 2px solid #a77838;
    outline-offset: 3px;
}


/*
=========================================================
              REDUCED MOTION SUPPORT
=========================================================
*/

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/*
=========================================================
                  END OF CORRECTED CSS
=========================================================
*/