/*
=========================================================
              RAJASTHAN AURA TOURS
                 HOMEPAGE CSS
=========================================================
*/


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

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #222222;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #d6ad63;
    outline-offset: 3px;
}


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

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: 90px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: transparent;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.18);
}


/*
=========================================================
                         LOGO
=========================================================
*/

.logo-area {
    position: relative;
    z-index: 1001;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo-area a {
    display: block;
}

.logo-area img {
    display: block;

    width: 150px;
    height: auto;

    max-height: 65px;

    object-fit: contain;

    filter:
        drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
}


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

.desktop-nav {
    position: relative;
    z-index: 1001;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 27px;
}

.desktop-nav a {
    position: relative;

    padding: 32px 0;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    letter-spacing: 0.4px;
    white-space: nowrap;

    text-shadow:
        0 1px 5px rgba(0, 0, 0, 0.55);

    transition: color 0.3s ease;
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 22px;

    width: 0;
    height: 2px;

    background: #d6ad63;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: #e0bd79;
}

.desktop-nav a:hover::after {
    width: 100%;
}


/*
=========================================================
                PLAN YOUR TRIP BUTTON
=========================================================
*/

.header-btn {
    position: relative;
    z-index: 1001;

    display: inline-block;
    flex-shrink: 0;

    padding: 13px 21px;

    background: #b68b42;
    color: #ffffff;

    border: 1px solid #b68b42;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    letter-spacing: 0.5px;
    white-space: nowrap;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.header-btn:hover {
    background: rgba(0, 0, 0, 0.25);
    border-color: #ffffff;
}


/*
=========================================================
              MOBILE HEADER QUICK ACTIONS
=========================================================
*/

.mobile-header-actions {
    position: relative;
    z-index: 1001;

    display: none;
    align-items: center;

    gap: 8px;

    margin-left: auto;
}

.mobile-header-action {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-header-action:first-child {
    background: #0b6fd3;
}

.mobile-header-action:last-child {
    background: #25d366;
}

.mobile-header-action i {
    color: #ffffff;
}

.mobile-header-action:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}


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

.menu-toggle {
    position: relative;
    z-index: 1001;

    display: none;

    padding: 5px;

    border: 0;

    background: transparent;
    color: #ffffff;

    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    text-shadow:
        0 1px 5px rgba(0, 0, 0, 0.55);
}


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

.mobile-menu {
    position: absolute;

    top: 75px;
    left: 0;

    z-index: 999;

    width: 100%;

    display: none;

    padding: 10px 6% 20px;

    background: rgba(18, 18, 18, 0.97);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25);
}

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

.mobile-menu > a {
    display: block;

    padding: 14px 5px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.15);

    transition: color 0.3s ease;
}

.mobile-menu > a:hover {
    color: #d6ad63;
}

.mobile-menu-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 15px;
}

.mobile-menu-actions a {
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 12px;

    border: 0;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;

    text-align: center;
}

.mobile-menu-call {
    background: #b68b42;
}

.mobile-menu-whatsapp {
    background: #237d49;
}


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

.hero-slider {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 650px;

    overflow: hidden;

    background: #111111;
}

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    z-index: 1;

    pointer-events: none;

    transition:
        opacity 1.5s ease-in-out,
        visibility 1.5s ease-in-out;
}

.hero-slide.active {
    z-index: 2;

    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

.hero-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.04) 40%,
            rgba(0, 0, 0, 0.16) 100%
        );

    pointer-events: none;
}


/*
=========================================================
                    SLIDER CONTROLS
=========================================================
*/

.slider-arrow {
    position: absolute;
    top: 50%;

    z-index: 10;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border:
        1px solid rgba(255, 255, 255, 0.75);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.18);

    color: #ffffff;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    backdrop-filter: blur(2px);

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.slider-arrow:hover {
    background: #b68b42;
    border-color: #b68b42;
}

.prev-slide {
    left: 30px;
}

.next-slide {
    right: 30px;
}

.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 28px;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 10px;

    transform: translateX(-50%);
}

.dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 1px solid #ffffff;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.25);
}


/*
=========================================================
                    ABOUT SECTION
=========================================================
*/

.about-section {
    width: 100%;

    padding: 85px 6%;

    background: #111111;
    color: #ffffff;
}

.about-container {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

.about-label {
    display: block;

    margin-bottom: 14px;

    color: #c5a46d;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-title {
    margin: 0;

    color: #ffffff;

    font-size: 38px;
    font-weight: 400;

    line-height: 1.3;
}

.about-line {
    width: 65px;
    height: 2px;

    margin: 22px auto 25px;

    background: #b68b42;
}

.about-text {
    max-width: 780px;

    margin: 0 auto;

    color: #d5d5d5;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;

    line-height: 1.9;
}

.about-btn {
    display: inline-block;

    margin-top: 30px;

    padding: 13px 28px;

    border: 1px solid #b68b42;

    background: #b68b42;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.about-btn:hover {
    background: transparent;
    color: #c5a46d;
    border-color: #c5a46d;
}


/*
=========================================================
                  SIGNATURE JOURNEYS
=========================================================
*/

.featured-tours {
    width: 100%;

    padding: 90px 5%;

    background: #f7f5f0;
}

.featured-tours-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}

.section-heading {
    max-width: 780px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-subtitle {
    display: block;

    margin-bottom: 12px;

    color: #b68b42;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 44px;
    font-weight: 400;

    line-height: 1.2;
}

.section-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    line-height: 1.8;
}

.tour-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}

.tour-item {
    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.tour-item:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.11);
}

.tour-image {
    position: relative;

    display: block;

    width: 100%;
    overflow: hidden;

    background: #111111;
}

.tour-image img {
    display: block;

    width: 100%;
    height: auto;

    transition: transform 0.6s ease;
}

.tour-item:hover .tour-image img {
    transform: scale(1.025);
}

.tour-duration {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 2;

    display: inline-block;

    padding: 7px 11px;

    background: rgba(17, 17, 17, 0.86);

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.7px;
    line-height: 1.2;

    text-transform: uppercase;

    backdrop-filter: blur(3px);
}

.tour-info {
    position: static;

    padding: 23px 24px 25px;

    color: #222222;

    background: #ffffff;
}

.tour-info h3 {
    margin: 0 0 8px;

    color: #222222;

    font-size: 26px;
    font-weight: 400;

    line-height: 1.25;

    text-shadow: none;
}

.tour-info p {
    margin: 0 0 18px;

    color: #777777;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;

    line-height: 1.6;

    text-shadow: none;
}

.tour-card-cta {
    display: inline-block;

    color: #9a6d2e;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    border-bottom:
        1px solid rgba(154, 109, 46, 0.55);

    padding-bottom: 3px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.tour-card-cta:hover {
    color: #68471f;
    border-color: #68471f;
}

.tours-main-cta {
    margin-top: 50px;
    text-align: center;
}

.tours-main-cta a {
    display: inline-block;

    padding: 14px 30px;

    border: 1px solid #b68b42;

    background: #b68b42;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.tours-main-cta a:hover {
    background: transparent;
    color: #b68b42;
}


/*
=========================================================
               CAR RENTAL WITH DRIVER
=========================================================
*/

.home-vehicle-section {
    padding: 100px 0;

    background: #ffffff;
}

.home-vehicle-container {
    width: min(1180px, 90%);

    margin: 0 auto;
}

.home-vehicle-heading {
    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;
}

.home-vehicle-subtitle {
    display: block;

    margin-bottom: 12px;

    color: #a77838;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-vehicle-heading h2 {
    margin-bottom: 18px;

    color: #252525;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;

    line-height: 1.2;
}

.home-vehicle-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #686868;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;

    line-height: 1.8;
}

.home-vehicle-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;
}

.home-vehicle-card {
    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid rgba(0, 0, 0, 0.08);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.home-vehicle-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);
}

.home-vehicle-image {
    position: relative;

    display: block;

    height: 310px;

    overflow: hidden;

    background: #eeeeee;
}

.home-vehicle-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

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

.home-vehicle-content {
    padding: 24px 22px 25px;
}

.home-vehicle-content h3 {
    margin: 0 0 8px;

    color: #252525;

    font-size: 25px;
    font-weight: 400;

    line-height: 1.25;
}

.vehicle-description {
    margin: 0 0 18px;

    min-height: 44px;

    color: #686868;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;

    line-height: 1.65;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 20px;
}

.vehicle-features span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 7px 9px;

    background: #f7f4ee;

    color: #5f5f5f;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;

    line-height: 1.2;
}

.vehicle-features i {
    color: #a77838;
}

.vehicle-card-cta {
    display: inline-block;

    color: #8d642b;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    border-bottom:
        1px solid rgba(141, 100, 43, 0.5);

    padding-bottom: 3px;
}

.home-vehicle-cta {
    margin-top: 45px;

    text-align: center;
}

.home-vehicle-cta a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 26px;

    background: #a77838;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.home-vehicle-cta a:hover {
    background: #825a27;
    transform: translateY(-2px);
}


/*
=========================================================
                PRIVATE TRAVEL SERVICES
=========================================================
*/

.home-services {
    width: 100%;

    padding: 90px 5%;

    background: #f7f5f0;
}

.home-services-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}

.home-services-heading {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}

.home-services-subtitle {
    display: block;

    margin-bottom: 12px;

    color: #a77838;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-services-heading h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 43px;
    font-weight: 400;

    line-height: 1.2;
}

.home-services-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #6d6d6d;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    line-height: 1.8;
}

.home-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.home-service-card {
    min-width: 0;

    padding: 38px 30px;

    background: #ffffff;

    text-align: center;

    border:
        1px solid rgba(182, 139, 66, 0.16);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.home-service-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.07);
}

.home-service-card > i {
    margin-bottom: 22px;

    color: #a77838;

    font-size: 28px;
}

.home-service-card h3 {
    margin: 0 0 12px;

    color: #222222;

    font-size: 24px;
    font-weight: 400;

    line-height: 1.3;
}

.home-service-card p {
    margin: 0;

    color: #707070;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;

    line-height: 1.75;
}

.home-services-cta {
    margin-top: 40px;

    text-align: center;
}

.home-services-cta a {
    display: inline-block;

    padding: 13px 27px;

    background: #b68b42;
    border: 1px solid #b68b42;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.home-services-cta a:hover {
    background: transparent;
    color: #9a6d2e;
}


/*
=========================================================
                 RAJASTHAN EXPERIENCES
=========================================================
*/

.rajasthan-experiences {
    width: 100%;

    padding: 90px 5%;

    background: #ffffff;
}

.experiences-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}

.experiences-heading {
    max-width: 780px;

    margin: 0 auto 50px;

    text-align: center;
}

.experiences-subtitle {
    display: block;

    margin-bottom: 12px;

    color: #7a5a25;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.experiences-heading h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 44px;
    font-weight: 400;

    line-height: 1.2;
}

.experiences-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    line-height: 1.8;
}

.experiences-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.experience-item {
    position: relative;

    display: block;

    width: 100%;
    height: 320px;

    overflow: hidden;

    background: #111111;

    color: #ffffff;
}

.experience-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.experience-item:hover img {
    transform: scale(1.05);
}

.experience-item::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 25%,
            rgba(0, 0, 0, 0.18) 55%,
            rgba(0, 0, 0, 0.86) 100%
        );
}

.experience-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 28px 25px;

    color: #ffffff;
}

.experience-overlay h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 25px;
    font-weight: 400;

    line-height: 1.2;

    text-shadow:
        0 2px 7px rgba(0, 0, 0, 0.6);
}

.experience-overlay p {
    margin: 0 0 12px;

    color: rgba(255, 255, 255, 0.88);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;

    line-height: 1.5;
}

.experience-cta {
    display: inline-block;

    color: #e5c181;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/*
=========================================================
                 WHY TRAVEL WITH US
=========================================================
*/

.why-travel-with-us {
    width: 100%;

    padding: 90px 5%;

    background: #f7f5f0;
}

.why-us-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}

.why-us-heading {
    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;
}

.why-us-subtitle {
    display: block;

    margin-bottom: 12px;

    color: #b68b42;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.why-us-heading h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 44px;
    font-weight: 400;

    line-height: 1.2;
}

.why-us-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    line-height: 1.8;
}

.why-us-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 50px 45px;
}

.why-us-item {
    position: relative;

    min-width: 0;

    padding: 0 10px 0 0;

    transition: transform 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-4px);
}

.why-us-item::before {
    content: "";

    display: block;

    width: 38px;
    height: 2px;

    margin-bottom: 22px;

    background: #b68b42;

    transition: width 0.3s ease;
}

.why-us-item:hover::before {
    width: 65px;
}

.why-us-item h3 {
    margin: 0 0 13px;

    color: #222222;

    font-size: 25px;
    font-weight: 400;

    line-height: 1.3;
}

.why-us-item p {
    margin: 0;

    color: #707070;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;

    line-height: 1.8;
}


/*
=========================================================
                    TRUST SECTION
=========================================================
*/

.trust-section {
    width: 100%;

    padding: 82px 5%;

    background: #171717;

    color: #ffffff;
}

.trust-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}

.trust-heading {
    max-width: 720px;

    margin: 0 auto 50px;

    text-align: center;
}

.trust-heading span {
    display: block;

    margin-bottom: 12px;

    color: #d0aa65;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.trust-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 40px;
    font-weight: 400;

    line-height: 1.25;
}

.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 25px;
}

.trust-item {
    min-width: 0;

    padding: 28px 22px;

    text-align: center;

    border:
        1px solid rgba(255, 255, 255, 0.12);
}

.trust-item > i {
    margin-bottom: 18px;

    color: #d0aa65;

    font-size: 25px;
}

.trust-item h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 21px;
    font-weight: 400;

    line-height: 1.3;
}

.trust-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.67);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;

    line-height: 1.7;
}


/*
=========================================================
             LUXURY HOTELS & HERITAGE STAYS
=========================================================
*/

.luxury-stays {
    width: 100%;

    padding: 75px 5%;

    background: #ffffff;
}

.luxury-stays-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}

.luxury-stays-heading {
    max-width: 760px;

    margin: 0 auto 38px;

    text-align: center;
}

.luxury-stays-subtitle {
    display: block;

    margin-bottom: 12px;

    color: #b68b42;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.luxury-stays-heading h2 {
    margin: 0 0 14px;

    color: #222222;

    font-size: 44px;
    font-weight: 400;

    line-height: 1.2;
}

.luxury-stays-feature {
    width: 100%;

    overflow: hidden;

    background: #f7f4ee;

    border-radius: 4px;
}

.luxury-stays-feature-image {
    width: 100%;
    height: 420px;

    overflow: hidden;
}

.luxury-stays-feature-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.luxury-stays-feature-content {
    max-width: 900px;

    margin: 0 auto;

    padding: 34px 30px 38px;

    text-align: center;
}

.luxury-stays-types {
    display: flex;

    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px 28px;

    margin-bottom: 18px;
}

.luxury-stays-types span {
    color: #a77b32;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.luxury-stays-feature-content h3 {
    margin: 0 0 14px;

    color: #222222;

    font-size: 30px;
    font-weight: 400;

    line-height: 1.3;
}

.luxury-stays-feature-content p {
    max-width: 720px;

    margin: 0 auto 24px;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    line-height: 1.8;
}

.luxury-stays-explore {
    display: inline-block;

    padding: 13px 24px;

    border: 1px solid #b68b42;

    background: #b68b42;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.luxury-stays-explore:hover {
    background: #96702f;
    border-color: #96702f;
}


/*
=========================================================
               TRAVEL INSPIRATION / BLOG
=========================================================
*/

.travel-inspiration {
    width: 100%;

    padding: 100px 5%;

    background: #ffffff;
}

.inspiration-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}

.inspiration-heading {
    max-width: 780px;

    margin: 0 auto 60px;

    text-align: center;
}

.inspiration-subtitle {
    display: block;

    margin-bottom: 14px;

    color: #b68b42;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.inspiration-heading h2 {
    margin: 0 0 18px;

    color: #222222;

    font-size: 44px;
    font-weight: 400;

    line-height: 1.2;
}

.inspiration-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: #777777;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    line-height: 1.8;
}

.inspiration-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;
}

.inspiration-item {
    width: 100%;
    min-width: 0;
}

.inspiration-image {
    width: 100%;
    height: 300px;

    overflow: hidden;

    background: #eeeeee;
}

.inspiration-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.inspiration-item:hover .inspiration-image img {
    transform: scale(1.04);
}

.inspiration-content {
    padding: 25px 5px 0;
}

.inspiration-category {
    display: block;

    margin-bottom: 12px;

    color: #b68b42;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.inspiration-content h3 {
    margin: 0 0 14px;

    color: #222222;

    font-size: 26px;
    font-weight: 400;

    line-height: 1.3;
}

.inspiration-content p {
    margin: 0 0 20px;

    color: #777777;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;

    line-height: 1.7;
}

.inspiration-link {
    display: inline-block;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    transition: color 0.3s ease;
}

.inspiration-link:hover {
    color: #b68b42;
}

.inspiration-cta {
    margin-top: 55px;

    text-align: center;
}

.inspiration-button {
    display: inline-block;

    padding: 15px 28px;

    color: #ffffff;
    background: #b68b42;

    border: 1px solid #b68b42;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.inspiration-button:hover {
    background: #96702f;
    border-color: #96702f;
}


/*
=========================================================
                    QUICK ENQUIRY
=========================================================
*/

.quick-enquiry {
    width: 100%;

    padding: 80px 5%;

    background: #f7f4ee;
}

.quick-enquiry-container {
    width: 100%;
    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}

.quick-enquiry-subtitle {
    display: block;

    margin-bottom: 12px;

    color: #a77838;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.quick-enquiry h2 {
    margin: 0 0 16px;

    color: #222222;

    font-size: 41px;
    font-weight: 400;

    line-height: 1.2;
}

.quick-enquiry p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: #696969;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    line-height: 1.8;
}

.quick-enquiry-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.quick-enquiry-actions a {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 23px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.quick-enquiry-whatsapp {
    background: #237d49;
    border: 1px solid #237d49;

    color: #ffffff;
}

.quick-enquiry-contact {
    background: #b68b42;
    border: 1px solid #b68b42;

    color: #ffffff;
}


/*
=========================================================
                PLAN YOUR JOURNEY CTA
=========================================================
*/

.journey-cta {
    position: relative;

    width: 100%;
    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 5%;

    background-image:
        url("images/cta/journey-cta.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.journey-cta-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background: rgba(15, 15, 15, 0.55);

    pointer-events: none;
}

.journey-cta-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.journey-cta-subtitle {
    display: block;

    margin-bottom: 20px;

    color: #d4ad63;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.journey-cta-content h2 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: 52px;
    font-weight: 400;

    line-height: 1.2;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3);
}

.journey-cta-content p {
    max-width: 680px;

    margin: 0 auto 35px;

    color: rgba(255, 255, 255, 0.85);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;

    line-height: 1.8;
}

.journey-cta-button {
    display: inline-block;

    padding: 17px 30px;

    color: #ffffff;
    background: #b68b42;

    border: 1px solid #b68b42;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.journey-cta-button:hover {
    background: #96702f;
    border-color: #96702f;

    transform: translateY(-2px);
}


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

.site-footer {
    width: 100%;

    padding: 80px 5% 30px;

    background: #151515;
    color: #ffffff;
}

.footer-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;

    gap: 60px;
}

.footer-brand,
.footer-column {
    min-width: 0;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 22px;

    color: #ffffff;

    font-size: 28px;
    font-weight: 400;

    line-height: 1.3;

    transition: color 0.3s ease;
}

.footer-logo:hover {
    color: #d4ad63;
}

.footer-brand p {
    max-width: 360px;

    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.65);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;

    line-height: 1.8;
}

.footer-tagline {
    display: block;

    color: #b68b42;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    line-height: 1.6;

    text-transform: uppercase;
}

.footer-column h3 {
    position: relative;

    margin: 0 0 28px;

    padding-bottom: 14px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.3;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 1px;

    background: #b68b42;
}

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin-bottom: 13px;
}

.footer-column li:last-child {
    margin-bottom: 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.65);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;

    line-height: 1.6;

    transition: color 0.3s ease;
}

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

.footer-contact p {
    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.65);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;

    line-height: 1.7;
}

.footer-contact > a {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-bottom: 11px;

    overflow-wrap: anywhere;
}

.footer-contact > a:last-child {
    margin-bottom: 0;
}

.footer-divider {
    width: 100%;
    height: 1px;

    margin: 60px 0 25px;

    background:
        rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;

    letter-spacing: 0.5px;

    line-height: 1.6;
}

.footer-legal {
    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.45);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;

    line-height: 1.6;

    transition: color 0.3s ease;
}

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


/*
=========================================================
                 RESPONSIVE - 1100PX
=========================================================
*/

@media (max-width: 1100px) {

    .main-header {
        padding: 0 4%;
    }

    .desktop-nav {
        gap: 16px;
    }

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

    .header-btn {
        padding: 12px 15px;
    }

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

}


/*
=========================================================
                  RESPONSIVE - 900PX
=========================================================
*/

@media (max-width: 900px) {

    .main-header {
        height: 75px;

        padding: 0 20px;

        background: transparent;

        border-bottom: 0;

        gap: 10px;
    }

    .logo-area img {
        width: 200px;
        max-width: 52vw;

        height: auto;
        max-height: none;

        object-fit: contain;
    }

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

    .mobile-header-actions {
        display: flex;
    }

    .menu-toggle {
        display: block;

        color: #ffffff;

        font-size: 34px;
    }

    .mobile-menu {
        top: 75px;

        padding: 10px 20px 20px;
    }

    .hero-slider {
        width: 100%;
        height: 135vw;

        min-height: 0;
        max-height: 780px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;

        font-size: 18px;
    }

    .prev-slide {
        left: 14px;
    }

    .next-slide {
        right: 14px;
    }

    .slider-dots {
        bottom: 22px;
    }

    .featured-tours {
        padding: 70px 20px;
    }

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

    .home-vehicle-card:last-child {
        grid-column: 1 / -1;

        max-width: 570px;

        width: 100%;

        margin: 0 auto;
    }

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

    .home-service-card:last-child {
        grid-column: 1 / -1;

        max-width: 570px;

        width: 100%;

        margin: 0 auto;
    }

    .rajasthan-experiences {
        padding: 70px 20px;
    }

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

        gap: 15px;
    }

    .experience-item {
        height: 380px;
    }

    .why-travel-with-us {
        padding: 70px 30px;
    }

    .why-us-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 35px;
    }

    .luxury-stays {
        padding: 65px 20px;
    }

    .luxury-stays-heading h2 {
        font-size: 38px;
    }

    .luxury-stays-feature-image {
        height: 360px;
    }

    .travel-inspiration {
        padding: 80px 25px;
    }

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

        gap: 40px 20px;
    }

    .inspiration-image {
        height: 280px;
    }

    .journey-cta {
        min-height: 580px;

        padding: 80px 30px;
    }

    .journey-cta-content h2 {
        font-size: 44px;
    }

    .site-footer {
        padding: 70px 30px 25px;
    }

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

        gap: 50px 40px;
    }

}


/*
=========================================================
                  RESPONSIVE - 700PX
=========================================================
*/

@media (max-width: 700px) {

    .home-vehicle-section {
        padding: 75px 0 65px;
    }

    .home-vehicle-heading {
        margin-bottom: 40px;

        padding: 0 20px;
    }

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

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

    .home-vehicle-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .home-vehicle-card:last-child {
        grid-column: auto;

        max-width: none;
    }

    .home-vehicle-image {
        height: 330px;
    }

}


/*
=========================================================
                  RESPONSIVE - 600PX
=========================================================
*/

@media (max-width: 600px) {

    .about-section {
        padding: 65px 22px;
    }

    .about-label {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .about-title {
        font-size: 29px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .featured-tours {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 35px;

        padding: 0 20px;
    }

    .section-subtitle {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

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

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

    .tour-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        padding: 0 14px;
    }

    .tour-info {
        padding: 20px 18px 22px;
    }

    .tour-info h3 {
        font-size: 23px;
    }

    .tour-duration {
        top: 12px;
        left: 12px;

        padding: 6px 9px;

        font-size: 9px;
    }

    .home-services {
        padding: 65px 20px;
    }

    .home-services-heading {
        margin-bottom: 38px;
    }

    .home-services-heading h2 {
        font-size: 30px;
    }

    .home-services-heading p {
        font-size: 14px;
    }

    .home-services-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .home-service-card:last-child {
        grid-column: auto;

        max-width: none;
    }

    .home-service-card {
        padding: 30px 22px;
    }

    .rajasthan-experiences {
        padding: 60px 0;
    }

    .experiences-heading {
        margin-bottom: 25px;

        padding: 0 20px;
    }

    .experiences-heading h2 {
        font-size: 30px;
        line-height: 1.25;
    }

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

    .experiences-grid {
        grid-template-columns: 1fr;

        gap: 4px;
    }

    .experience-item {
        width: 100%;
        height: auto;
    }

    .experience-item img {
        width: 100%;
        height: auto;

        object-fit: initial;
    }

    .experience-overlay {
        padding: 24px 20px;
    }

    .experience-overlay h3 {
        font-size: 24px;
    }

    .why-travel-with-us {
        padding: 65px 24px;
    }

    .why-us-heading {
        margin-bottom: 50px;
    }

    .why-us-heading h2 {
        font-size: 30px;
    }

    .why-us-heading p {
        font-size: 14px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .why-us-item {
        padding: 30px 5px;

        border-bottom:
            1px solid rgba(182, 139, 66, 0.25);
    }

    .why-us-item:first-child {
        padding-top: 0;
    }

    .why-us-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .trust-section {
        padding: 65px 20px;
    }

    .trust-heading {
        margin-bottom: 38px;
    }

    .trust-heading h2 {
        font-size: 30px;
    }

    .trust-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .trust-item {
        padding: 27px 20px;
    }

    .luxury-stays {
        padding: 50px 0;
    }

    .luxury-stays-heading {
        margin-bottom: 18px;

        padding: 0 20px;
    }

    .luxury-stays-heading h2 {
        font-size: 30px;
    }

    .luxury-stays-feature-image {
        width: 100%;
        height: auto;
    }

    .luxury-stays-feature-image img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }

    .luxury-stays-feature-content {
        padding: 26px 20px 30px;
    }

    .luxury-stays-feature-content h3 {
        font-size: 25px;
    }

    .travel-inspiration {
        padding: 65px 18px;
    }

    .inspiration-heading {
        margin-bottom: 42px;
    }

    .inspiration-heading h2 {
        font-size: 31px;
    }

    .inspiration-heading p {
        font-size: 14px;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .inspiration-image {
        height: 230px;
    }

    .quick-enquiry {
        padding: 65px 20px;
    }

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

    .quick-enquiry p {
        font-size: 14px;
        line-height: 1.7;
    }

    .quick-enquiry-actions {
        flex-direction: column;
    }

    .quick-enquiry-actions a {
        width: 100%;
        max-width: 320px;
    }

    .journey-cta {
        min-height: 560px;

        padding: 70px 22px;

        background-position: center;
    }

    .journey-cta-subtitle {
        margin-bottom: 16px;

        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .journey-cta-content h2 {
        margin-bottom: 22px;

        font-size: 34px;
        line-height: 1.25;
    }

    .journey-cta-content p {
        margin-bottom: 30px;

        font-size: 14px;
        line-height: 1.7;
    }

    .site-footer {
        padding: 60px 22px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

}


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

@media (max-width: 480px) {

    .main-header {
        height: 72px;

        padding: 0 12px;

        gap: 7px;
    }

    .logo-area img {
        width: 190px;
        max-width: 49vw;

        height: auto;
        max-height: none;

        object-fit: contain;
    }

    .mobile-header-actions {
        gap: 5px;
    }

    .mobile-header-action {
        width: 30px;
        height: 30px;

        font-size: 12px;
    }

    .menu-toggle {
        padding: 3px;

        font-size: 31px;
    }

    .mobile-menu {
        top: 72px;

        padding: 10px 15px 20px;
    }

    .hero-slider {
        width: 100%;
        height: 190vw;

        min-height: 0;
        max-height: none;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .hero-slide:nth-child(3) img {
        object-position: center 45%;
    }

    .hero-slide:nth-child(4) img {
        object-position: center 40%;
    }

    .hero-slide:nth-child(5) img {
        object-position: center 42%;
    }

    .hero-slide:nth-child(6) img {
        object-position: center 40%;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;

        font-size: 17px;
    }

    .prev-slide {
        left: 10px;
    }

    .next-slide {
        right: 10px;
    }

    .slider-dots {
        bottom: 18px;
    }

    .home-vehicle-image {
        height: 300px;
    }

    .home-vehicle-content {
        padding: 21px 18px 22px;
    }

    .home-vehicle-content h3 {
        font-size: 23px;
    }

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

}


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

@media (max-width: 380px) {

    .logo-area img {
        width: 175px;
        max-width: 47vw;
    }

    .mobile-header-action {
        width: 28px;
        height: 28px;

        font-size: 11px;
    }

    .menu-toggle {
        font-size: 29px;
    }

    .tour-grid {
        padding: 0 10px;
    }

    .tour-info h3 {
        font-size: 21px;
    }

    .home-vehicle-image {
        height: 270px;
    }

    .luxury-stays-feature-content {
        padding: 24px 16px 28px;
    }

    .inspiration-content h3 {
        font-size: 23px;
    }

    .journey-cta {
        min-height: 520px;

        padding: 60px 18px;
    }

    .journey-cta-content h2 {
        font-size: 30px;
    }

    .site-footer {
        padding: 55px 18px 22px;
    }

    .footer-legal {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

}


/*
=========================================================
              REDUCED MOTION ACCESSIBILITY
=========================================================
*/

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

    html {
        scroll-behavior: auto;
    }

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

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

}


/*
=========================================================
                 END OF HOMEPAGE CSS
=========================================================
              RAJASTHAN AURA TOURS
=========================================================
*/