/* ----------------------------------------------------------------------------------------
* Author        :  Mawshook
* Template Name : Finest - Motor Trading 
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Perfect Fleets css
08. Luxury Collection css
09. How It Work Css
10. Intro Video css
11. Why Choose Us css
12. Our Faqs css
13. Our Testiminial css
14. CTA Box css
15. Latest Article css
16. Footer css
17. About us Page css
18. Services Page css
19. Service Single css
20. Page Cars css
21. Car Single css
22. Page Cars Type css
23. Our Drivers css
24. Drivers Single css
25. Blog Archive css
26. Blog Single css
27. Page Pricing css
28. Testimonial Page css 
29. Image Gallery css
30. Video Gallery css
31. Contact us Page css
32.	FAQs Page css
33. 404 Page css
34. Responsive css
-------------------------------------------------------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap");

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
    --primary-color: #000000;
    --secondary-color: #191919;
    --text-color: #cecece;
    --accent-color: #A77C37;
    --white-color: #ffffff;
    --divider-color: #ffffff2e;
    --dark-divider-color: #ececec;
    --error-color: rgb(230, 87, 87);
    --default-font: "Cormorant Garamond", "DM Sans", serif;
    --accent-font: "Epilogue", sans-serif;
    --heading-font: "Cormorant Garamond", serif;
    --ui-font: "DM Sans", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65em;
    background-color: var(--primary-color);
    color: var(--text-color);
}

/* Navigation, forms, and buttons stay in DM Sans for legibility at small sizes */
.main-header .nav-link,
.main-header .navbar-brand,
.floating-nav-pill__link,
.floating-nav-pill__brand,
.main-footer,
.main-footer a,
.slicknav_nav a,
input,
select,
textarea,
button,
.btn,
.form-control {
    font-family: var(--ui-font);
}

p {
    line-height: 1.7em;
    margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2em;
    color: var(--white-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.mfp-container {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > * {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 100px;
    padding: 16px 25px;
    margin-right: 48px;
    border: none;
    transition: all 0.5s ease-in-out;
    position: relative;
    z-index: 1;
}

/* .btn-default::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-color);
    background-image: url("../images/arrow-white.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px auto;
    transform: translate(48px, 0px);
    transition: all 0.4s ease-in-out;
} */

.btn-default:hover::before {
    background-size: 14px auto;
    transform: translate(48px, 0px) rotate(45deg);
}

.btn-default.btn-highlighted {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-default.btn-highlighted:before {
    background-color: var(--white-color);
    background-image: url("../images/arrow-black.svg");
}

.section-icon-btn {
    background-color: var(--accent-color);
    border-radius: 100%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.section-icon-btn img {
    max-width: 14px;
    transition: all 0.4s ease-in-out;
}

#magic-cursor {
    position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    width: 8px !important;
    height: 8px !important;
    background: var(--accent-color);
    margin: 0;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1 !important;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Luxury full-screen loader (see partials/site-preloader.blade.php) */
.preloader--luxury {
    background: radial-gradient(ellipse 90% 60% at 50% 120%, rgba(207, 170, 97, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% -10%, rgba(255, 255, 255, 0.04) 0%, transparent 45%),
        linear-gradient(168deg, #030303 0%, #0a0908 38%, #060504 100%);
    overflow: hidden;
}

.preloader__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 45%, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.preloader__grain {
    position: absolute;
    inset: -50%;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: preloader-grain-shift 8s steps(10) infinite;
    pointer-events: none;
}

@keyframes preloader-grain-shift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-5%, -5%);
    }
}

.preloader__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    max-width: 420px;
}

.preloader__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    flex-shrink: 0;
}

.preloader__logo {
    width: min(200px, 46vw);
    height: min(200px, 46vw);
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 8px 36px rgba(0, 0, 0, 0.8));
    animation: preloader-logo-pulse 2.2s ease-in-out infinite;
}

@keyframes preloader-logo-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.92;
        transform: scale(1.04);
    }
}

.preloader__wordmark {
    font-family: "Cormorant Garamond", "Georgia", serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 6px;
}

.preloader__sub {
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(207, 170, 97, 0.75);
    margin: 0 0 28px;
}

.preloader__bar {
    width: min(280px, 85vw);
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.preloader__bar-fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(207, 170, 97, 0.2), rgba(207, 170, 97, 0.95), rgba(255, 255, 255, 0.5));
    animation: preloader-bar-fill 2s cubic-bezier(0.45, 0, 0.15, 1) forwards;
    box-shadow: 0 0 16px rgba(207, 170, 97, 0.45);
}

@keyframes preloader-bar-fill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.preloader__audio {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 180px;
    width: 180px;
    transform: translate(-50%, -50%);
}

#loading-icon img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 180px;
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-section {
    position: relative;
    width: 100%;
    max-width: 1820px;
    background: var(--secondary-color);
    border-radius: 46px;
    margin: 0 auto;
}

.section-row {
    margin-bottom: 60px;
}

.section-row .section-title {
    width: 100%;
    max-width: 705px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 0;
}

.section-btn {
    text-align: end;
}

.section-title {
    margin-bottom: 40px;
    font-family: var(--heading-font);
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.section-title h3::before {
    display: none; /* Star icon removed from section headers */
}

.section-title h1 {
    font-size: 74px;
    font-weight: 700;
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 0;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

/* Classic full-width header only (floating pill uses .site-floating-header below) */
header.main-header:not(.site-floating-header) {
    position: relative;
    z-index: 100;
}

header.main-header:not(.site-floating-header) .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header:not(.site-floating-header) .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header:not(.site-floating-header) .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--secondary-color);
    border-bottom: 1px solid var(--dark-divider-color);
    backdrop-filter: blur(30px);
}

.navbar {
    padding: 30px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
}

.main-menu .nav-menu-wrapper > ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0 5px;
    position: relative;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 600;
    padding: 14px 15px !important;
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 220px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu ul li.submenu > a:after {
    content: "\f105";
    float: right;
}

.main-menu ul li.submenu:first-child ul ul {
    width: 250px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.responsive-menu-trade,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

/* Mobile: full-page overlay — main site menu only (not trade modal; avoids double overlay / flicker) */
@media only screen and (max-width: 991px) {
    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100dvh;
        z-index: 99998;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: max(72px, calc(env(safe-area-inset-top, 0px) + 52px)) 20px max(24px, env(safe-area-inset-bottom, 0px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.mobile-nav-closing .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .header-sticky {
        z-index: 99999;
    }

    body.mobile-nav-open .navbar,
    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .floating-nav-pill {
        position: relative;
        z-index: 100000;
    }

    body.mobile-nav-open .inquiry-form-modal.active .site-floating-header {
        z-index: 20050 !important;
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_menu {
        position: relative !important;
        width: 100% !important;
        max-width: min(400px, 94vw);
        background: transparent !important;
        padding: 0;
        flex-shrink: 0;
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav {
        position: relative;
        max-height: min(70vh, 520px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: linear-gradient(165deg, rgba(16, 14, 12, 0.94) 0%, rgba(6, 6, 6, 0.92) 100%);
        border-radius: 22px;
        padding: 22px 0 16px;
        border: 1px solid rgba(207, 170, 97, 0.42);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 24px 80px rgba(0, 0, 0, 0.75),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav::before {
        content: "Finest";
        display: block;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: clamp(1.35rem, 4.2vw, 1.65rem);
        font-weight: 500;
        letter-spacing: 0.42em;
        text-transform: uppercase;
        text-align: center;
        color: rgba(207, 170, 97, 0.88);
        margin: 0 0 8px;
        padding: 0 24px 16px;
        border-bottom: 1px solid rgba(207, 170, 97, 0.2);
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav li {
        border-bottom: 1px solid rgba(207, 170, 97, 0.1);
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav li:last-child {
        border-bottom: none;
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav .slicknav_row,
    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav li a {
        padding: 16px 24px;
        font-size: 17px;
        font-weight: 500;
        font-family: "Cormorant Garamond", Georgia, serif;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.94) !important;
        transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav a:hover,
    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav a:focus,
    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav .slicknav_row:hover {
        background: rgba(207, 170, 97, 0.12) !important;
        color: #e8c97a !important;
        padding-left: 28px;
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_menu ul ul li a {
        padding: 12px 24px 12px 36px;
        font-size: 15px;
        letter-spacing: 0.04em;
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav ul {
        background: rgba(0, 0, 0, 0.2) !important;
        border-radius: 12px;
        margin: 6px 16px 10px !important;
        padding: 6px 0 !important;
        border: 1px solid rgba(207, 170, 97, 0.12);
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav ul .slicknav_row,
    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_nav ul li a {
        padding: 12px 20px !important;
        font-size: 15px !important;
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu .slicknav_arrow:after {
        color: rgba(207, 170, 97, 0.75) !important;
    }

    body.mobile-nav-open,
    body.mobile-nav-open-trade {
        overflow: hidden;
    }
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(1),
.navbar-toggle
    button.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(2),
.navbar-toggle
    button.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(3),
.navbar-toggle
    button.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--primary-color);
}

/* Floating pill: never use legacy solid SlickNav bar (classic pages keep rules above) */
.site-floating-header .responsive-menu .slicknav_menu {
    background: transparent !important;
    box-shadow: none !important;
    float: none !important;
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.slicknav_menu ul ul li a {
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
    transform: rotate(-180deg);
    color: var(--accent-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    position: relative;
}

.hero-section.bg-section {
    position: relative;
    background: url("../images/hero-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    padding: 130px 0 350px;
}

.hero-section.bg-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 13.62%,
        rgba(0, 0, 0, 0.5) 68.99%
    );
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-section.bg-section.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero-slider-layout .hero-slide {
    position: relative;
    padding: 130px 0 350px;
}

.hero.hero-slider .hero-slider-layout {
    position: relative;
    z-index: 2;
}

.hero-slider-layout .hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.5) 13.62%,
        rgba(0, 0, 0, 0.5) 68.99%
    );
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
}

.hero-slider-layout .hero-pagination {
    position: absolute;
    text-align: center;
    bottom: 250px;
    z-index: 2;
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.hero-section.bg-section.hero-video {
    position: relative;
    background: none;
    overflow: hidden;
    padding: 130px 0 80px;
}

.hero-section.bg-section.hero-video::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 20%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
    text-align: center;
}

/* Hide hero text/button until API populates (avoids flash of empty content) */
.hero-video #heroSubtitle,
.hero-video #heroTitle,
.hero-video #heroDescription,
.hero-video #heroButton {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hero-content .section-title h1 {
    color: var(--white-color);
}

.hero-content .section-title p {
    width: 100%;
    max-width: 745px;
    margin: 0 auto;
    font-size: 18px;
    margin-top: 20px;
    color: var(--white-color);
}

.hero-content-body .btn-default.btn-highlighted {
    margin-left: 20px;
}

.rent-details {
    position: absolute;
    bottom: 65px;
    width: 100%;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.rent-details-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 30px;
    padding: 25px 30px;
    margin: 0;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: none !important;
}

.rent-details-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.rent-details-item {
    width: calc(20% - 30px);
    display: flex;
    border-right: 1px solid var(--divider-color);
    padding-right: 20px;
}

.rent-details-item:nth-last-child(2) {
    border-right: none;
}

.rent-details-item:last-child {
    border: none;
    padding-right: 0;
}

.rent-details-search {
    width: 50px;
}

.rent-details-item .icon-box {
    margin-right: 10px;
}

.rent-details-item .icon-box img {
    max-width: 24px;
}

.rent-details-content {
    width: calc(100% - 34px);
}

.rent-details-content h3 {
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.rent-details-content input,
.rent-details-content select {
    font-size: 16px;
    width: 100%;
    display: block;
    border: none;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.25);
    color: var(--white-color);
    box-shadow: none;
    outline: none;
    padding: 8px 36px 8px 12px;
    background-position: right 10px center;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.rent-details-content input:hover,
.rent-details-content select:hover,
.rent-details-content select:focus {
    outline: none;
}

.rent-details-content option {
    color: var(--primary-color);
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(10px);
    text-transform: capitalize;
    font-weight: 500;
    padding: 12px 16px;
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.custom-dropdown-selected:hover,
.custom-dropdown-selected:focus,
.custom-dropdown.open .custom-dropdown-selected {
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 1px rgba(207, 170, 97, 0.4);
}

.custom-dropdown-text {
    font-size: 16px;
    color: var(--white-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.custom-dropdown-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.custom-dropdown.open .custom-dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-options {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    min-width: 100%;
    width: max-content;
    max-width: 280px;
    max-height: 240px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    z-index: 100;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.custom-dropdown.open .custom-dropdown-options {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.custom-dropdown-options li {
    padding: 10px 18px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    text-transform: capitalize;
}

.custom-dropdown-options li:hover {
    background: rgba(207, 170, 97, 0.15);
    color: #cfaa61;
}

.custom-dropdown-options li.selected {
    background: rgba(207, 170, 97, 0.2);
    color: #cfaa61;
    font-weight: 600;
}

.custom-dropdown-options::-webkit-scrollbar {
    width: 5px;
}

.custom-dropdown-options::-webkit-scrollbar-track {
    background: transparent;
}

.custom-dropdown-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.rent-details-content .datepicker {
    background: transparent url(../images/icon-calendar.svg) no-repeat right
        center;
    background-size: auto 14px;
    border: none;
    margin-left: 0;
    line-height: 1.5em;
}

.rent-details-content input::placeholder {
    color: var(--white-color);
}


.ui-datepicker.ui-widget-content {
    width: 100%;
    max-width: 240px;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    display: none;
}

.ui-datepicker.ui-widget-content table {
    width: 100%;
}

.ui-datepicker-header {
    position: relative;
    border-bottom: 1px solid var(--divider-color);
    padding: 0 40px 10px;
    margin-bottom: 10px;
}

.ui-datepicker-header .ui-datepicker-title {
    font-weight: 700;
    text-align: center;
    color: var(--white-color);
}

.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    top: 0;
}

.ui-datepicker-prev {
    left: 0;
}

.ui-datepicker-next {
    right: 0;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {
    margin: 0 !important;
}

.rent-details-content input:hover,
.rent-details-content select:hover,
.rent-details-content select:focus {
    box-shadow: 0 0 0 1px rgba(207, 170, 97, 0.5);
    outline: none;
    border-color: rgba(207, 170, 97, 0.3);
}

.rent-details-content p {
    display: flex;
    color: var(--primary-color);
    margin: 0;
}

.rent-details-content p input {
    padding-right: 0;
    margin-left: 5px;
    border: 1px solid var(--divider-color);
}

.ui-datepicker {
    background-color: var(--secondary-color);
    padding: 20px 15px;
}

.ui-datepicker .ui-icon {
    color: var(--accent-color);
}

.ui-datepicker .ui-icon:hover {
    color: var(--white-color);
}

.ui-datepicker-calendar tr td {
    text-align: center;
}

.ui-datepicker-calendar tr td.ui-datepicker-today a {
    font-weight: 700;
    color: var(--accent-color);
}

.ui-datepicker-calendar tr td a {
    font-weight: 600;
    color: var(--white-color);
}

.rent-details-search a,
.rent-details-search button {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.rent-details-search a:hover,
.rent-details-search button:hover {
    background-color: transparent;
    transform: scale(1.1);
}

.rent-details-search a i,
.rent-details-search button i {
    font-size: 24px;
    color: var(--white-color);
}

/************************************/
/***        05. About Us css	  ***/
/************************************/

.about-us {
    padding: 100px 0;
}

.about-image {
    position: relative;
    background: url("../images/about-image-bg.svg") no-repeat;
    background-position: bottom 25px right 50px;
    background-size: auto;
    padding-bottom: 100px;
    margin-right: 40px;
    padding-left: 10px;
}

.about-img-1 {
    width: 414px;
    position: relative;
}

.about-img-1::before {
    content: "";
    position: absolute;
    top: -10px;
    bottom: 0;
    left: -10px;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--divider-color);
    border-radius: 200px;
    z-index: 1;
}

.about-img-1 img {
    width: 100%;
    aspect-ratio: 1 / 1.37;
    object-fit: cover;
    border-radius: 200px;
}

.about-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.about-img-2::before {
    content: "";
    position: absolute;
    top: -8px;
    bottom: 0;
    left: -8px;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--divider-color);
    border-radius: 160px;
    z-index: 1;
}

.about-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 1.37;
    object-fit: cover;
    border-radius: 160px;
}

.about-content-body {
    margin-bottom: 40px;
}

.about-trusted-booking {
    display: flex;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.about-trusted-booking:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.about-trusted-booking .icon-box {
    position: relative;
    margin-right: 20px;
    padding: 10px 0px 0px 10px;
}

.about-trusted-booking .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white-color);
    opacity: 10%;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.about-trusted-booking:hover .icon-box::before {
    background-color: var(--white-color);
    opacity: 30%;
}

.about-trusted-booking .icon-box img {
    position: relative;
    max-width: 74px;
    z-index: 1;
}

.trusted-booking-content {
    width: calc(100% - 94px);
}

.trusted-booking-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.trusted-booking-content p {
    margin: 0;
}

/************************************/
/***     06. Our Services css	  ***/
/************************************/

.our-services {
    background: var(--secondary-color) url("../images/asterisk-icon-bg.svg")
        no-repeat;
    background-position: bottom left;
    background-size: auto;
    padding: 100px 0;
}

.service-item {
    position: relative;
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 30px 25px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

.service-item:before {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--accent-color);
    border-radius: 500px 500px 0 0;
    transition: all 0.4s ease-in-out;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0;
}

.service-item:hover:before {
    top: 0;
    border-radius: 0;
    opacity: 1;
}

.service-item .icon-box {
    position: relative;
    padding: 10px 0px 0px 10px;
    margin-bottom: 30px;
    z-index: 1;
}

.service-item .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white-color);
    opacity: 10%;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 0;
    transition: all 0.5s ease-in-out;
}

.service-item:hover .icon-box::before {
    background-color: var(--white-color);
    opacity: 30%;
}

.service-item .icon-box img {
    position: relative;
    max-width: 62px;
    z-index: 1;
}

.service-content {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 0.5s ease-in-out;
}

.service-item:hover .service-content h3 {
    color: var(--white-color);
}

.service-content p {
    margin: 0;
    transition: all 0.5s ease-in-out;
}

.service-content .readmore-btn {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.service-content .readmore-btn:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.service-item:hover .service-content p {
    color: var(--white-color);
}

.service-item:hover .service-content .readmore-btn {
    color: var(--white-color);
}

.service-footer {
    position: relative;
    z-index: 1;
}

.service-item:hover .section-icon-btn {
    background-color: var(--primary-color);
}

.service-item:hover .section-icon-btn img {
    transform: rotate(45deg);
}

.services-box-footer {
    width: 100%;
    max-width: 630px;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
}

/* Global .btn-default uses margin-right: 48px — skews “Explore Our Services” under text-align:center */
.services-box-footer .btn-default {
    margin: 24px 0 0;
}

/************************************/
/***    07. Perfect Fleets css    ***/
/************************************/

.perfect-fleet {
    padding: 30px 0 20px;
}

.popular-makes-section {
    /* Padding inherited from .perfect-fleet */
}

.perfect-fleet.bg-section {
    background-color: transparent;
    max-width: 1620px;
}

.car-details-slider {
    cursor: none;
}

.swiper-slide {
    float: left;
    width: 200px;
    gap: 30px;
    padding: 0px;
}

/* Swiper controls slide sizing; custom margins/padding can cause the last card to be cut */
.car-details-slider .swiper-slide {
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    height: auto;
    display: flex;
}

/* Make all slides/cards equal height */
.car-details-slider .swiper-wrapper {
    align-items: stretch;
}

/* Makes Tabs Container */
.makes-tabs-container {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .makes-tabs-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-top: 20px;
        padding-bottom: 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-left: 15px; /* Add some left padding for the first item */
        padding-right: 15px;
    }
    
    .makes-tabs-container::-webkit-scrollbar {
        display: none;
    }

    .makes-tabs-container .make-tab-btn {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

.perfect-fleet-item {
    background-color: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.perfect-fleet-item:hover {
    transform: translateY(-5px);
}

/* In the slider, let the card fill the slide width */
.car-details-slider .perfect-fleet-item {
    width: 100%;
}

.perfect-fleet-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.perfect-fleet-item .image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin: 0;
}

.perfect-fleet-item .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.perfect-fleet-item:hover .image-box img {
    transform: scale(1.05);
}

/* Title & Subtitle */
.perfect-fleet-title {
    margin-bottom: 15px;
}

.perfect-fleet-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 5px;
}

.fleet-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Specs Grid */
.perfect-fleet-body {
    margin-bottom: 15px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.perfect-fleet-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.perfect-fleet-body ul li {
    text-align: center;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.spec-item i {
    font-size: 18px;
    color: var(--white-color);
}

.spec-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

/* Divider */
.fleet-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

/* Footer */
.perfect-fleet-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.perfect-fleet-footer h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
}

.perfect-fleet-footer .section-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.perfect-fleet-footer .section-icon-btn:hover {
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.perfect-fleet-footer .section-icon-btn i {
    font-size: 14px;
    color: var(--white-color);
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.perfect-fleet-footer .section-icon-btn:hover i {
    transform: rotate(0deg);
}

.car-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.car-details-slider .car-button-next,
.car-details-slider .car-button-prev {
    position: relative;
    width: 48px;
    height: 48px;
    background-color: var(--accent-color);
    border-radius: 100%;
    transition: all 0.4s ease-in-out;
}

.car-details-slider .car-button-next {
    margin-left: 20px;
}

.car-details-slider .car-button-next:hover,
.car-details-slider .car-button-prev:hover {
    background-color: var(--secondary-color);
}

.car-details-slider .car-button-next::before,
.car-details-slider .car-button-prev::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/arrow-white.svg") no-repeat center center;
    background-size: 14px auto;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.car-details-slider .car-button-prev::before {
    transform: rotate(225deg);
}

/************************************/
/***   08. Luxury Collection css  ***/
/************************************/

.luxury-collection {
    padding: 30px 0;
}

.luxury-collection .container-fluid {
    padding: 0 10px;
}

.luxury-collection-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.luxury-collection-item {
    position: relative;
    border-radius: 30px;
    width: calc(25% - 7.5px);
    overflow: hidden;
}

.luxury-collection-image {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border-radius: 30px;
}

.luxury-collection-image a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    cursor: none;
}

.luxury-collection-image a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        220deg,
        rgba(249, 192, 119, 0) 0.73%,
        rgba(4, 4, 1, 0.49) 90.71%
    );
    z-index: 1;
}

.luxury-collection-image figure {
    margin: 0;
    width: 100%;
    height: 100%;
}

.luxury-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 30px;
    transition: all 0.5s ease-in-out;
}

.luxury-collection-item:hover .luxury-collection-image img {
    transform: scale(1.1);
}

.luxury-collection-title {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
}

.luxury-collection-title h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--white-color);
    text-transform: capitalize;
}

.luxury-collection-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
}

.luxury-collection-item .luxury-collection-btn .section-icon-btn {
    transition: all 0.4s ease-in-out;
}

.luxury-collection-item:hover .luxury-collection-btn .section-icon-btn {
    background-color: var(--primary-color);
}

.luxury-collection-item:hover .luxury-collection-btn .section-icon-btn img {
    transform: rotate(45deg);
}

/************************************/
/***     09. How It Work css      ***/
/************************************/

.how-it-work {
    padding: 50px 0 100px;
}

.how-work-accordion .accordion-item {
    position: relative;
    background: none;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.how-work-accordion .accordion-item:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.how-work-accordion .accordion-header {
    position: relative;
}

.how-work-accordion .accordion-item .icon-box {
    padding: 5px 0px 0px 5px;
    position: absolute;
    left: 0;
    top: 4px;
}

.how-work-accordion .accordion-item .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white-color);
    opacity: 10%;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: 0;
}

.how-work-accordion .accordion-item .icon-box img {
    position: relative;
    max-width: 34px;
    z-index: 1;
}

.how-work-accordion .accordion-item .accordion-button {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    border: none;
    box-shadow: none;
    padding: 5px 30px 5px 60px;
}

.how-work-accordion .accordion-header .accordion-button::after,
.how-work-accordion .accordion-header .accordion-button.collapsed::after {
    content: "\f077";
    position: absolute;
    top: 50%;
    right: 0;
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    font-weight: 900;
    color: var(--white-color);
    transform: translate(0px, -50%);
    transition: all 0.3s ease-in-out;
}

.how-work-accordion .accordion-header .accordion-button.collapsed::after {
    transform: rotate(-180deg) translate(0px, 50%);
}

.how-work-accordion .accordion-item .accordion-body {
    padding: 5px 30px 0px 60px;
}

.how-work-accordion .accordion-item .accordion-body p {
    margin: 0;
}

.how-work-image {
    position: relative;
    background: url("../images/about-image-bg.svg") no-repeat;
    background-position: bottom right;
    padding-bottom: 50px;
    margin-left: 30px;
}

.how-work-img {
    position: relative;
    text-align: center;
}

.how-work-img::before {
    content: "";
    position: absolute;
    top: -10px;
    bottom: 0;
    left: -10px;
    right: 0;
    width: 414px;
    height: 100%;
    margin: 0 auto;
    border: 1px solid var(--divider-color);
    border-radius: 200px;
    z-index: 1;
}

.how-work-img img {
    border-radius: 200px;
}

.trusted-client {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 16px;
    width: 100%;
    max-width: 200px;
    padding: 20px;
    animation: trustedmoveobject 3s infinite linear alternate;
    z-index: 2;
}

@keyframes trustedmoveobject {
    50% {
        right: 50px;
    }
}

.trusted-client-content {
    border-bottom: 2px solid var(--white-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.trusted-client-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
}

/************************************/
/***     10. Intro Video css      ***/
/************************************/

.work-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.video-card {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    aspect-ratio: 3 / 4;
    overflow: visible;
    border-radius: 15px;
}

.intro-video {
    position: relative;
    background: var(--secondary-color);
    background-position: center center;
    background-size: cover;
    padding: 40px 20px;
    overflow: visible;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-video .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.intro-video::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 50%;
    z-index: 0;
}

.intro-video .section-title h2 {
    color: var(--white-color);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    padding: 0;
    margin: 0;
    z-index: 2;
}

.intro-video-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.video-card .section-row {
    display: none;
}

.video-card .client-slider {
    display: none;
}

/************************************/
/***  Home Videos Section - Card   ***/
/************************************/

.home-videos-section {
    overflow: hidden;
    padding: 30px 0 40px;
}

@media (min-width: 992px) {
    .home-videos-section {
        padding: 30px 0 50px;
    }

    .home-videos-section + .our-services {
        padding-top: 80px !important;
    }
}

.home-videos-fullwidth {
    position: relative;
    width: 100%;
    margin-top: 30px;
}

.home-videos-swiper {
    width: 100%;
    overflow: hidden;
}

.home-videos-swiper .swiper-wrapper {
    align-items: stretch;
}

.home-video-slide {
    height: auto;
    overflow: hidden;
    isolation: isolate;
}

.home-video-card {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.home-video-fullslide {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 70vh;
    background: #000;
}

@media (min-width: 768px) {
    .home-video-fullslide {
        min-height: 55vh;
    }
}

@media (min-width: 992px) {
    .home-video-fullslide {
        min-height: 60vh;
    }
}

.home-video-fullslide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-appearance: none;
    appearance: none;
}

.home-video-fullslide video::-webkit-media-controls,
.home-video-fullslide video::-webkit-media-controls-enclosure {
    display: none !important;
}

.home-video-sound-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0.6;
    transition: opacity 0.2s, background 0.2s;
}

.home-video-sound-toggle:hover,
.home-video-sound-toggle.home-video-sound-visible {
    opacity: 1;
    background: rgba(167, 124, 55, 0.9);
}

/* Reduce gap between videos and our-services on mobile */
@media (max-width: 767px) {
    body.page-home .home-videos-section {
        padding: 8px 0 16px;
    }

    .home-videos-section {
        padding: 20px 0 20px;
    }

    .home-videos-section + .our-services {
        padding-top: 30px !important;
    }

    .home-video-fullslide {
        min-height: 52vh;
    }

    .home-video-card {
        border-radius: 16px;
    }

    .home-video-sound-toggle {
        width: 44px;
        height: 44px;
        right: 16px;
        bottom: 16px;
        font-size: 18px;
    }
}

/* Experience Our Excellence: hide native video controls and any browser UI */
.experience-video-wrapper video.experience-video-no-controls,
.intro-video-box video {
    -webkit-appearance: none;
    appearance: none;
}
.experience-video-wrapper video.experience-video-no-controls::-webkit-media-controls,
.experience-video-wrapper video.experience-video-no-controls::-webkit-media-controls-enclosure,
.intro-video-box video::-webkit-media-controls,
.intro-video-box video::-webkit-media-controls-enclosure {
    display: none !important;
}
.experience-video-wrapper video.experience-video-no-controls::-webkit-media-controls-panel,
.intro-video-box video::-webkit-media-controls-panel {
    display: none !important;
}
/* Firefox: hide controls when controls attribute is not set we rely on no controls; some browsers show them by default */
.experience-video-wrapper video.experience-video-no-controls::-moz-media-controls,
.intro-video-box video::-moz-media-controls {
    display: none !important;
}

.experience-video-thumb:hover .experience-video-play-icon {
    transform: scale(1.08);
    background: #A77C37 !important;
}

.video-play-button a {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 100%;
    width: 80px;
    height: 80px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.video-play-button a:before {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--dark-divider-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--dark-divider-color);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
    animation-delay: 0.3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button a i {
    font-size: 30px;
    color: var(--white-color);
}

.company-logo {
    text-align: center;
}

.company-logo img {
    height: 50px;
}

/************************************/
/***    11. Why Choose Us css     ***/
/************************************/

.why-choose-us {
    background: url("../images/why-choose-us-bg.svg") no-repeat;
    background-position: center center;
    background-size: auto;
    padding: 100px 0;
}

.why-choose-item {
    display: flex;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 45px;
    margin-bottom: 45px;
}

.why-choose-item:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.why-choose-item .icon-box {
    position: relative;
    padding: 5px 0px 0px 5px;
    margin-right: 20px;
}

.why-choose-item .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white-color);
    opacity: 10%;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: 0;
    transition: all 0.5s ease-in-out;
}

.why-choose-item .icon-box img {
    position: relative;
    max-width: 32px;
    z-index: 1;
}

.why-choose-content {
    width: calc(100% - 52px);
}

.why-choose-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.why-choose-content p {
    margin: 0;
}

.why-choose-image {
    position: relative;
    text-align: center;
}

.why-choose-image::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("../images/logo.svg") no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    z-index: 1;
}

.why-choose-image img {
    aspect-ratio: 1 / 1.65;
    object-fit: cover;
    border-radius: 200px;
}

/************************************/
/***       12. Our Faqs css       ***/
/************************************/

.our-faqs {
    padding: 100px 0;
}

.our-faqs-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.our-faqs-image::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../images/our-faqs-car-img.png) no-repeat;
    background-position: center center;
    background-size: 100% auto;
    z-index: 1;
}

.faqs-img-2 figure,
.faqs-img-1 figure {
    display: inline-block;
    mask-image: url(../images/our-faqs-bg-shape.svg);
    background-image: url(../images/our-faqs-bg-shape.svg);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 307px;
    height: 466px;
}

.faqs-img-2 img,
.faqs-img-1 img {
    width: 100%;
    height: 100%;
}

.faqs-img-1 {
    margin-right: -30px;
}

.faqs-img-2 {
    margin-left: -30px;
}

.our-faqs-content {
    margin-left: 30px;
}

.our-faqs-accordion .accordion-item {
    position: relative;
    background: none;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.our-faqs-accordion .accordion-item:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.our-faqs-accordion .accordion-item .accordion-button {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    border: none;
    box-shadow: none;
    padding: 5px 30px 5px 0px;
}

.our-faqs-accordion .accordion-header .accordion-button::after,
.our-faqs-accordion .accordion-header .accordion-button.collapsed::after {
    content: "\f077";
    position: absolute;
    top: 50%;
    right: 0;
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    font-weight: 900;
    color: var(--white-color);
    transform: translate(0px, -50%);
    transition: all 0.3s ease-in-out;
}

.our-faqs-accordion .accordion-header .accordion-button.collapsed::after {
    transform: rotate(-180deg) translate(0px, 50%);
}

.our-faqs-accordion .accordion-item .accordion-body {
    padding: 5px 30px 0px 0px;
}

.our-faqs-accordion .accordion-item .accordion-body p {
    margin: 0;
}

/************************************/
/***   13. Our Testimonials css   ***/
/************************************/

.our-testimonial {
    background: url("../images/testimonial-bg.png") no-repeat;
    background-position: center center;
    background-size: auto;
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-slider {
    overflow: hidden;
}

.testimonial-slider .swiper {
    overflow: hidden;
}

.testimonial-slider .swiper-wrapper {
    cursor: grab;
    align-items: stretch;
}

.testimonial-slider .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-item {
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}

.testimonial-header {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-rating {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.testimonial-rating i {
    font-size: 18px;
    color: var(--accent-color);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
    position: relative;
}

.testimonial-content p {
    margin: 0;
    overflow: hidden;
    line-height: 1.6em;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.testimonial-content.collapsed p {
    display: block;
    overflow: visible;
    max-height: none;
    line-height: 1.6em;
}

.testimonial-content.expanded p {
    max-height: none;
    overflow: visible;
}

.testimonial-read-more {
    display: none;
}

.testimonial-read-more:hover {
    opacity: 0.8;
}

.testimonial-body {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-top: auto;
}

.author-image {
    margin-right: 15px;
}

.author-image figure,
.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-content {
    width: calc(100% - 75px);
}

.author-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.author-content p {
    text-transform: capitalize;
    margin: 0;
}

/************************************/
/***       14. CTA Box css        ***/
/************************************/

.cta-box {
    position: relative;
    background: var(--secondary-color) url("../images/cta-box-bg.svg") no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0;
}

.cta-box.bg-section {
    max-width: 1500px;
}

.cta-box-content {
    width: 100%;
    max-width: 520px;
}

.cta-box-content .section-title p,
.cta-box-content .section-title h2 {
    color: var(--white-color);
}

.cat-box-image {
    text-align: center;
}

.cat-box-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cta-box-btn .btn-default:hover::before {
    background-color: var(--accent-color);
}

/************************************/
/***    15. Latest Article css    ***/
/************************************/

.latest-article {
    padding: 100px 0;
}

.highlighted-article-post {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.highlighted-article-featured-img a {
    display: block;
    position: relative;
    cursor: none;
}

.highlighted-article-featured-img a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 2.8%, #000000 156.55%);
    z-index: 0;
}

.highlighted-article-featured-img img {
    width: 100%;
    aspect-ratio: 1/ 0.85;
    object-fit: cover;
}

.highlighted-article-body {
    max-width: 420px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 20px;
    z-index: 1;
}

.highlighted-article-body .article-meta {
    margin-bottom: 10px;
}

.highlighted-article-body .article-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.highlighted-article-body .article-meta ul li a i {
    margin-right: 10px;
}

.highlighted-article-body .article-meta ul li a {
    color: var(--white-color);
    text-transform: capitalize;
}

.highlighted-article-body .highlighted-article-content h3 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.highlighted-article-body .highlighted-article-content h3 a {
    color: inherit;
}

.highlighted-article-post:hover
    .highlighted-article-content
    .section-icon-btn
    img {
    transform: rotate(45deg);
}

.article-post {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.article-post:last-child {
    margin-bottom: 0;
}

.article-post .article-featured-img {
    width: 33%;
}

.article-post .article-featured-img a {
    display: block;
    cursor: none;
    border-radius: 15px;
}

.article-post .article-featured-img img {
    width: 100%;
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    border-radius: 15px;
}

.article-post .article-post-body {
    width: calc(100% - 33%);
    margin-left: 30px;
}

.article-post-body .article-meta {
    margin-bottom: 15px;
}

.article-post-body .article-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-post-body .article-meta ul li a i {
    font-size: 18px;
    margin-right: 10px;
}

.article-post-body .article-meta ul li a {
    color: var(--text-color);
    text-transform: capitalize;
}

.article-post-body .article-post-content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 20px;
}

.article-post-body .article-post-content h3 a {
    color: inherit;
}

.article-post-content .read-story-btn {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 35px;
    transition: all 0.4s ease-in-out;
}

.article-post:hover .article-post-content .read-story-btn {
    color: var(--white-color);
}

.article-post-content .read-story-btn::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 0;
    background-image: url("../images/arrow-white.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px auto;
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: all 0.4s ease-in-out;
}

.article-post:hover .article-post-content .read-story-btn::after {
    transform: rotate(45deg);
}

/************************************/
/***        16. Footer css        ***/
/************************************/

.main-footer {
    /* background: var(--secondary-color) url("../images/footer-bg.svg") no-repeat; */
    background-position: top center;
    background-size: 100% auto;
    padding: 70px 0 25px;
    margin-bottom: 50px;
}

.about-footer {
    padding-right: 40px;
}

.about-footer .footer-logo {
    margin-bottom: 30px;
}

.about-footer .about-footer-content p {
    color: var(--white-color);
    margin: 0;
}

.footer-links {
    margin-left: 70px;
}

.footer-links h3,
.footer-newsletter h3 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a {
    color: var(--accent-color);
}

.footer-newsletter-form .form-group {
    width: 100%;
    display: flex;
    position: relative;
}

.footer-newsletter-form .form-group .form-control {
    width: 100%;
    padding: 14px 20px;
    background: var(--divider-color);
    color: var(--white-color);
    border: none;
    border-radius: 100px;
    box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--white-color);
}

.footer-newsletter-form .form-group .section-icon-btn {
    content: "";
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translate(48px, -50%);
    border: none;
    padding: 0;
}

.footer-newsletter-form .section-icon-btn:hover {
    background-color: var(--primary-color);
    transform: translate(48px, -50%);
}

.footer-newsletter-form .section-icon-btn:hover img {
    transform: rotate(45deg);
}

.footer-copyright {
    border-top: 1px solid var(--divider-color);
    padding: 25px 0;
    margin-top: 50px;
}

.footer-copyright .footer-copyright-text p {
    color: var(--white-color);
    margin: 0;
}

.footer-copyright .footer-social-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: end;
}

.footer-copyright .footer-social-links ul li {
    display: inline-block;
    margin-right: 10px;
}

.footer-copyright .footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-copyright .footer-social-links ul li a {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-copyright .footer-social-links ul li a i {
    font-size: 16px;
}

.footer-copyright .footer-social-links ul li a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/************************************/
/***    17. About us Page css	  ***/
/************************************/

.page-header {
    position: relative;
    background: url("../images/page-header-bg.jpg") no-repeat center center;
    background-size: cover;
    border-radius: 46px;
    overflow: hidden;
    padding: 140px 0;
}

.page-header:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 25%;
    z-index: 1;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-header-box h1 {
    font-size: 74px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
    color: var(--accent-color);
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.about-us.page-about-us {
    padding: 100px 0;
}

.about-us.page-about-us .about-content-body {
    margin-bottom: 0px;
}

.exclusive-partners {
    background: var(--secondary-color) url("../images/asterisk-icon-bg.svg")
        no-repeat;
    background-position: bottom left;
    background-size: auto;
    padding: 100px 0 70px;
}

.partners-logo {
    background-color: var(--primary-color);
    border-radius: 20px;
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.brand-logo-box {
    width: 100%;
    max-width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-logo-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    margin: 0;
    text-align: center;
}

.partners-logo img {
    width: 190px;
    margin: 0 auto;
}

.vision-mission {
    padding: 100px 0;
}

.vision-mission .section-title {
    max-width: 780px;
}

.our-projects-nav {
    margin-bottom: 50px;
    text-align: center;
}

.our-projects-nav .nav-tabs {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-flex;
    background-color: var(--secondary-color);
    border-radius: 100px;
    border: none;
    padding: 15px;
}

.our-projects-nav ul li {
    margin-right: 25px;
}

.our-projects-nav ul li:last-child {
    margin-right: 0;
}

.our-projects-nav ul li .nav-link {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 100px;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1em;
    text-transform: capitalize;
    border: none;
    padding: 15px 30px;
    transition: all 0.4s ease-in-out;
}

.our-projects-nav ul li .nav-link:hover {
    border: none;
}

.our-projects-nav ul li .nav-link.active {
    background-color: var(--accent-color);
    color: var(--white-color);
    border: none;
}

.vision-mission-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-mission-list ul li {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 20px;
    padding-left: 30px;
}

.vision-mission-list ul li:last-child {
    margin-bottom: 0;
}

.vision-mission-list ul li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.vision-image {
    text-align: right;
    margin-left: 30px;
}

.vision-image figure {
    display: block;
    border-radius: 46px;
}

.vision-image img {
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
    border-radius: 46px;
}

.our-video {
    padding: 100px 0;
}

.customer-counter-item {
    position: relative;
}

.customer-counter-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.customer-counter-image::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 30%;
    z-index: 0;
}

.customer-counter-image img {
    aspect-ratio: 1 / 0.98;
    object-fit: cover;
    border-radius: 30px;
}

.satisfied-customer-counter {
    position: absolute;
    top: 40px;
    left: 50px;
}

.satisfied-customer-counter h3 {
    font-size: 40px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 5px;
}

.satisfied-customer-counter p {
    color: var(--white-color);
    text-transform: capitalize;
    margin: 0;
}

.satisfied-customer-image {
    position: absolute;
    bottom: 40px;
    left: 50px;
    animation: satisfiedmoveobject 3s infinite linear alternate;
}

@keyframes satisfiedmoveobject {
    50% {
        left: 90px;
    }
}

.satisfied-customer-image img {
    max-width: 220px;
}

.video-image-box {
    position: relative;
    padding-bottom: 50px;
    cursor: none;
}

.video-image {
    border-radius: 30px;
    overflow: hidden;
}

.video-image img {
    width: 100%;
    aspect-ratio: 1 / 0.47;
    object-fit: cover;
    border-radius: 30px;
}

.video-image a {
    position: relative;
    display: block;
    cursor: none;
    z-index: 1;
}

.video-image a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 30%;
    z-index: 0;
}

.video-image-play-button {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.video-image-play-button a {
    background-color: var(--accent-color);
    border: 12px solid var(--secondary-color);
    border-radius: 100%;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.video-image-play-button a i {
    font-size: 30px;
    color: var(--white-color);
}

.our-team {
    padding: 100px 0 70px;
}

.team-member-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
    transform: scale(1.1);
}

.team-social-icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    transform: translateY(100%);
    text-align: center;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon {
    left: 10px;
    right: 10px;
    bottom: 20px;
    transform: translateY(0);
}

.team-social-icon ul {
    backdrop-filter: blur(30px);
    display: inline-block;
    list-style: none;
    line-height: normal;
    margin: 0;
    padding: 12px 25px;
    border-radius: 30px;
    overflow: hidden;
}

.team-social-icon ul li {
    position: relative;
    display: inline-block;
    text-align: center;
    margin-right: 20px;
    z-index: 1;
}

.team-social-icon ul li:last-child {
    margin-right: 0;
}

.team-social-icon ul li a {
    display: block;
}

.team-social-icon ul li a i {
    color: var(--white-color);
    font-size: 24px;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover i {
    color: var(--accent-color);
}

.team-content {
    text-align: center;
}

.team-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-content p {
    text-transform: capitalize;
    margin: 0;
}

/************************************/
/***    18. Page Services css	  ***/
/************************************/

.page-services {
    padding: 100px 0 70px;
}

.page-services .service-item {
    background-color: var(--secondary-color);
}

/************************************/
/***    19. Service Single css    ***/
/************************************/

.page-service-single {
    padding: 100px 0;
}

.service-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 30px;
}

.service-catagery-list {
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 50px;
}

.service-catagery-list h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.service-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-catagery-list ul li {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.service-catagery-list ul li:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-catagery-list ul li a {
    display: block;
    position: relative;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
    color: var(--accent-color);
}

.service-catagery-list ul li a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0px, -50%);
    background-image: url("../images/arrow-orange.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px auto;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::after {
    transform: translate(0px, -50%) rotate(45deg);
}

.sidebar-cta-box {
    background: var(--secondary-color);
    border-radius: 30px;
    text-align: center;
    padding: 40px 30px;
}

.cta-contact-item .icon-box {
    margin-bottom: 30px;
}

.cta-contact-item .icon-box img {
    max-width: 65px;
    margin: 0 auto;
}

.cta-contact-content {
    margin-bottom: 30px;
}

.cta-contact-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-contact-content p {
    margin: 0;
}

.service-featured-image {
    margin-bottom: 30px;
}

.service-featured-image figure {
    display: block;
    border-radius: 30px;
}

.service-featured-image img {
    border-radius: 30px;
}

.service-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.service-entry h2 {
    font-size: 44px;
    margin-bottom: 30px;
}

.service-entry h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.service-entry p {
    margin-bottom: 30px;
}

.service-entry p:last-child {
    margin-bottom: 0px;
}

.service-entry ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.service-entry ul li {
    position: relative;
    width: calc(50% - 10px);
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    padding-left: 30px;
}

.service-entry ul li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.service-gallery a {
    cursor: none;
}

.service-gallery figure {
    border-radius: 30px;
}

.service-gallery img {
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 30px;
}

/************************************/
/***       20. Page Cars css	  ***/
/************************************/

.page-fleets {
    padding: 100px 0;
}

.fleets-sidebar {
    position: sticky;
    top: 20px;
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 25px;
}

.fleets-search-box {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.fleets-search-box .form-group {
    position: relative;
    width: 100%;
    display: flex;
    flex: 1;
}

.fleets-search-box .form-group .form-control {
    width: 100%;
    padding: 12px 52px;
    background: var(--primary-color);
    color: var(--text-color);
    font-weight: 500;
    border: none;
    border-radius: 30px;
    box-shadow: none;
    font-size: 15px;
}

.fleets-search-box .form-group .form-control::placeholder {
    color: var(--text-color);
    font-weight: 500;
}

.fleets-search-box .form-group .section-icon-btn {
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    width: 42px;
    height: 42px;
    transform: translate(40px, -50%);
    border: none;
    padding: 0;
}

.fleets-search-box .section-icon-btn:hover {
    background-color: var(--divider-color);
}

.fleets-search-box .form-group .section-icon-btn i {
    font-size: 18px;
    color: var(--white-color);
}

.mobile-filter-toggle {
    display: none;
}

.fleets-sidebar-list {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.fleets-sidebar-list:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fleets-list-title {
    margin-bottom: 20px;
}

.fleets-list-title h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.fleets-sidebar-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleets-sidebar-list ul li {
    margin-bottom: 10px;
    padding-left: 0;
}

.fleets-sidebar-list ul li:last-child {
    margin-bottom: 0;
}

.fleets-sidebar-list ul li .form-check-input {
    background-color: transparent;
    border: 1px solid var(--text-color);
    border-color: var(--text-color);
    width: 16px;
    height: 16px;
    margin-top: 6px;
    margin-left: 0;
    margin-right: 15px;
    box-shadow: none;
    outline: none;
}

.fleets-sidebar-list ul li .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.fleets-sidebar-list ul li .form-check-label {
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1.5;
    display: inline-block;
    white-space: nowrap;
    font-size: 15px;
    color: var(--white-color);
    font-family: var(--accent-font);
}

#price-filter-list .form-check {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    gap: 12px;
}

#price-filter-list .form-check-input {
    margin: 0 !important;
    margin-top: 4px !important;
    flex-shrink: 0;
}

#price-filter-list .form-check-label {
    font-family: var(--accent-font);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--white-color);
    white-space: normal;
    text-transform: none;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    word-spacing: 2px;
}

.perfect-fleet-item.fleets-collection-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.fleets-pagination {
    margin-top: 30px;
    text-align: center;
}

.fleets-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.fleets-pagination ul li a,
.fleets-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.fleets-pagination ul li.active a,
.fleets-pagination ul li a:hover {
    background: var(--secondary-color);
}

/************************************/
/***      21. Car Single css	  ***/
/************************************/

.page-fleets-single {
    padding: 100px 0;
}

.fleets-single-sidebar {
    position: sticky;
    top: 20px;
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 40px;
    margin-right: 30px;
}

.fleets-single-sidebar-pricing {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.fleets-single-sidebar-pricing h2 {
    font-family: var(--default-font);
    font-size: 50px;
}

.fleets-single-sidebar-pricing h2 span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.fleets-single-sidebar-list {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.fleets-single-sidebar-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleets-single-sidebar-list ul li {
    position: relative;
    font-family: var(--accent-font);
    font-weight: 500;
    color: var(--white-color);
    padding-left: 40px;
    padding-right: 150px;
    margin-bottom: 25px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: ellipsis;
}

.fleets-single-sidebar-list ul li span {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 20px;
}

.fleets-single-sidebar-list ul li:last-child {
    margin-bottom: 0;
}

.fleets-single-sidebar-list ul li img {
    position: absolute;
    left: 0;
    top: 50%;
    max-width: 30px;
    transform: translateY(-50%);
}

.fleets-single-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fleets-single-sidebar-btn span {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.fleets-single-sidebar-btn .wp-btn {
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.fleets-single-sidebar-btn .wp-btn:hover {
    background-color: var(--primary-color);
}

.fleets-single-sidebar-btn .wp-btn i {
    font-size: 24px;
    color: var(--white-color);
}

.fleets-single-slider {
    margin-bottom: 40px;
}

.fleets-slider-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.fleets-slider-image::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 74.81%,
        rgba(0, 0, 0, 0.88) 92.46%
    );
    z-index: 1;
}

.fleets-slider-image img {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
}

.fleets-single-slider .swiper-pagination {
    position: relative;
    text-align: center;
    bottom: 40px;
}

.fleets-single-slider .swiper-pagination .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: var(--white-color);
    opacity: 1;
    margin: 0px 4px;
}

.fleets-single-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    opacity: 1;
}

.fleets-benefits {
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.fleets-benefits-item {
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
}

.fleets-benefits-item .icon-box {
    position: relative;
    margin-right: 15px;
    padding: 5px 0px 0px 5px;
}

.fleets-benefits-item .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white-color);
    opacity: 10%;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 0;
    transition: all 0.5s ease-in-out;
}

.fleets-benefits-item .icon-box img {
    max-width: 40px;
}

.fleets-benefits-content {
    width: calc(100% - 55px);
}

.fleets-benefits-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.fleets-benefits-content p {
    margin: 0;
}

.fleets-information {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.fleets-information-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleets-information-list ul li {
    position: relative;
    font-family: var(--accent-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 20px;
}

.fleets-information-list ul li:last-child {
    margin-bottom: 0;
}

.fleets-information-list ul li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.fleets-amenities {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.fleets-amenities-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.fleets-amenities-list ul li {
    position: relative;
    font-family: var(--accent-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
    width: calc(25% - 15px);
    padding-left: 30px;
}

.fleets-amenities-list ul li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.rental-condition-accordion .accordion-item {
    border: 1px solid var(--secondary-color);
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.rental-condition-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.rental-condition-accordion .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 20px 50px 20px 20px;
    transition: all 0.3s ease-in-out;
}

.rental-condition-accordion .accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: var(--white-color);
    border-bottom: 1px solid var(--divider-color);
}

.rental-condition-accordion .accordion-header .accordion-button.collapsed {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.rental-condition-accordion .accordion-item .accordion-button::after,
.rental-condition-accordion .accordion-item .accordion-button.collapsed::after {
    content: "\f068";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 20px;
    top: 50%;
    bottom: auto;
    transform: translate(0px, -10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    width: 20px;
    height: 20px;
    padding: 5px;
    color: var(--white-color);
}

.rental-condition-accordion .accordion-item .accordion-button.collapsed::after {
    content: "\f067";
    color: var(--white-color);
}

.rental-condition-accordion .accordion-item .accordion-body {
    background-color: var(--accent-color);
    padding: 20px 50px 20px 20px;
}

.rental-condition-accordion .accordion-item .accordion-body p {
    color: var(--white-color);
    margin: 0;
}

.booking-form {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 30px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
}

.booking-form .section-title p {
    color: var(--white-color);
    margin-top: 15px;
}

.booking-form-group .booking-form-control {
    width: 100%;
    padding: 12px 25px 12px 20px;
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    color: var(--white-color);
    box-shadow: none;
}

.booking-form-group .booking-form-control::placeholder {
    font-weight: 500;
    color: var(--white-color);
}

.booking-form-group .booking-form-control option {
    color: var(--primary-color);
    text-transform: capitalize;
    font-weight: 500;
}

.booking-form-group .form-select {
    filter: brightness(0) invert(1);
}

.booking-form-group .booking-form-control:hover,
.booking-form-group .booking-form-control:focus {
    border-color: var(--divider-color);
    box-shadow: none;
    outline: none;
}

.booking-form-group .booking-form-control.datepicker {
    background: transparent url(../images/icon-calendar.svg) no-repeat right
        15px center;
    background-size: auto 14px;
    margin-left: 0;
    line-height: 1.5em;
}

.booking-form .mfp-close {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 1.4em;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.booking-form .mfp-close:hover {
    background-color: var(--secondary-color);
}

.booking-form .btn-default.btn-highlighted {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.booking-form .btn-default.btn-highlighted::before {
    background-color: var(--primary-color);
    background-image: url("../images/arrow-white.svg");
}

/************************************/
/***     22. Page Cars Type css	  ***/
/************************************/

.page-cars {
    padding: 100px 0 70px;
}

.luxury-collection-item.luxury-car-type {
    width: 100%;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***     23. Our Drivers css	  ***/
/************************************/

.page-drivers {
    padding: 100px 0 70px;
}

/************************************/
/***    24. Drivers Single css	  ***/
/************************************/

.page-team-single {
    padding: 100px 0;
}

.team-member-details {
    position: sticky;
    top: 20px;
    margin-right: 30px;
}

.team-member-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.team-member-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 30px 30px 0 0;
    transition: all 0.5s ease-in-out;
}

.team-member-details:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-content {
    border: 1px solid var(--divider-color);
    border-top: none;
    border-radius: 0 0 30px 30px;
    padding: 40px;
}

.team-member-title {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.team-member-title h2 {
    font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-member-title p {
    font-size: 20px;
    text-transform: capitalize;
    margin: 0;
}

.team-member-body {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.team-member-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member-body ul li {
    font-size: 18px;
    margin-bottom: 20px;
}

.team-member-body ul li:last-child {
    margin-bottom: 0;
}

.team-member-body ul li span {
    font-weight: 600;
    color: var(--white-color);
    text-transform: capitalize;
}

.member-social-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li {
    display: inline-block;
    margin-right: 20px;
}

.member-social-list ul li:last-child {
    margin-right: 0;
}

.member-social-list ul li a i {
    font-size: 22px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a i {
    color: var(--white-color);
}

.team-member-intro {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.team-member-intro .section-title {
    margin-bottom: 30px;
}

.team-intro-content {
    margin-bottom: 30px;
}

.team-intro-content p:last-child {
    margin-bottom: 0;
}

.team-member-specialty ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member-specialty ul li {
    position: relative;
    font-size: 18px;
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 20px;
}

.team-member-specialty ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.team-member-specialty ul li:last-child {
    margin-bottom: 0;
}

.team-member-specialty ul li span {
    font-family: var(--accent-font);
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
}

.team-member-features {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.team-member-features .section-title {
    margin-bottom: 30px;
}

.team-features-content {
    margin-bottom: 30px;
}

.team-features-content p:last-child {
    margin-bottom: 0;
}

.team-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.team-features-list ul li {
    width: calc(50% - 10px);
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
    padding-left: 30px;
}

.team-features-list ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.team-member-testimonials .section-title {
    margin-bottom: 30px;
}

.team-member-slider .swiper-wrapper {
    cursor: none;
}

.team-feedback-item .quote-icon-box {
    margin-bottom: 10px;
}

.team-feedback-item .quote-icon-box img {
    max-width: 36px;
}

.team-feedback-content {
    margin-bottom: 20px;
}

.team-feedback-content p {
    margin: 0;
}

.team-feedback-body h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.team-feedback-body p {
    margin: 0;
}

.team-member-slider .swiper-pagination {
    position: relative;
    text-align: left;
    bottom: 0px;
    margin-top: 30px;
}

.team-member-slider .swiper-pagination .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: var(--white-color);
    opacity: 100%;
    margin: 0px 4px;
}

.team-member-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    opacity: 1;
}

/************************************/
/***     25. Blog Archive css	  ***/
/************************************/

.page-blog {
    padding: 100px 0;
}

.post-item {
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.post-item .post-featured-image {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
}

.post-item .post-featured-image a {
    cursor: none;
    display: block;
}

.post-item .post-featured-image img {
    border-radius: 30px;
    aspect-ratio: 1 / 0.66;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item .post-meta {
    margin-bottom: 10px;
}

.post-item .post-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-item .post-meta ul li a i {
    margin-right: 5px;
}

.post-item .post-meta ul li a {
    color: var(--text-color);
    text-transform: capitalize;
}

.post-item-content h2 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.post-item-content h2 a {
    color: inherit;
}

.post-item-btn .read-story-btn {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 35px;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-item-btn .read-story-btn {
    color: var(--white-color);
}

.post-item-btn .read-story-btn::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 0;
    background-image: url("../images/arrow-white.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px auto;
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-item-btn .read-story-btn::after {
    background-size: 8px auto;
    transform: rotate(45deg);
}

.post-pagination {
    margin-top: 30px;
    text-align: center;
}

.post-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
    background: var(--secondary-color);
}

/************************************/
/***     26. Blog Single css	  ***/
/************************************/

.page-single-post {
    padding: 100px 0;
}

.post-single-meta ol li.breadcrumb-item {
    font-size: 18px;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--accent-color);
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
}

.post-image figure,
.post-image img {
    aspect-ratio: 1 / 0.5;
    object-fit: cover;
    border-radius: 46px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: "";
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    margin: 0 0 0.6em;
}

.post-entry h1 {
    font-size: 54px;
}

.post-entry h2 {
    font-size: 44px;
}

.post-entry h3 {
    font-size: 40px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 18px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ol li {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    position: relative;
    margin-bottom: 18px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: var(--secondary-color) url(../images/icon-blockquote.svg)
        no-repeat 35px 40px;
    background-size: 45px;
    border-radius: 40px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-size: 22px;
    font-weight: 600;
    color: var(--white-color);
    display: inline-block;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 100px;
    padding: 8px 20px;
    margin-left: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--secondary-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background-color: var(--secondary-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i {
    color: var(--secondry-color);
}

/************************************/
/***     27. Page Pricing css	  ***/
/************************************/

.page-pricing {
    padding: 100px 0 70px;
}

.pricing-item {
    background-color: var(--secondary-color);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 50px;
}

.pricing-item-image {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-item-image img {
    max-width: 254px;
}

.pricing-item-content {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-item-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.pricing-item-content h2 {
    font-size: 60px;
}

.pricing-item-content h2 sup {
    font-size: 40px;
    top: 0;
    vertical-align: middle;
}

.pricing-item-content h2 sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    bottom: 0;
}

.pricing-item-btn {
    text-align: center;
}

.pricing-item.highlighted-box {
    background-color: var(--accent-color);
}

.pricing-item.highlighted-box .pricing-item-content h2 sub,
.pricing-item.highlighted-box .pricing-item-content h2,
.pricing-item.highlighted-box .pricing-item-content p,
.pricing-item.highlighted-box .pricing-item-content h3 {
    color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-item-btn .btn-default.btn-highlighted {
    color: var(--accent-color);
}

.pricing-item.highlighted-box
    .pricing-item-btn
    .btn-default.btn-highlighted::before {
    background-image: url("../images/arrow-orange.svg");
}

/************************************/
/***   28. Testimonial Page css   ***/
/************************************/

.page-testimonials {
    padding: 100px 0 70px;
}

.page-testimonials .testimonial-item.page-testimonial-box {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***     29. Image Gallery css    ***/
/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.page-gallery-box .photo-gallery figure {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Instagram-style gallery: no space between images */
.gallery-instagram-grid {
    margin-left: 0;
    margin-right: 0;
}
.gallery-instagram-grid [class^="col-"] {
    padding: 0;
}
.gallery-instagram-grid .photo-gallery,
.gallery-instagram-grid .photo-gallery figure,
.gallery-instagram-grid .photo-gallery img {
    border-radius: 0;
}
.gallery-instagram-grid .photo-gallery figure {
    margin: 0;
}

/* ─── Luxury image gallery (Finest) ─── */
.luxury-page-gallery {
    padding: 0 0 100px;
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(207, 170, 97, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #080808 0%, #0d0d0d 35%, #0a0a0a 100%);
}

.luxury-gallery-hero {
    position: relative;
    padding: clamp(100px, 14vw, 160px) 0 clamp(48px, 8vw, 72px);
    text-align: center;
    overflow: hidden;
}

.luxury-gallery-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(207, 170, 97, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.luxury-gallery-eyebrow {
    font-family: "Epilogue", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(207, 170, 97, 0.95);
    margin-bottom: 20px;
}

.luxury-gallery-title {
    font-family: "Cormorant Garamond", "Epilogue", serif;
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.08;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.luxury-gallery-sub {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(15px, 1.35vw, 17px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin: 0 auto 28px;
    font-weight: 400;
}

.luxury-gallery-hero-line {
    width: 72px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, #cfaa61, transparent);
    box-shadow: 0 0 24px rgba(207, 170, 97, 0.5);
}

.luxury-gallery-container {
    padding-top: clamp(24px, 4vw, 40px);
}

.luxury-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(14px, 2vw, 26px);
    align-items: stretch;
}

.luxury-gallery-item {
    grid-column: span 4;
    min-height: 0;
}

.luxury-gallery-item--hero {
    grid-column: span 8;
    grid-row: span 2;
}

.luxury-gallery-item--tall {
    grid-row: span 2;
}

.luxury-photo-card {
    height: 100%;
    min-height: 220px;
}

.luxury-gallery-item--hero .luxury-photo-card {
    min-height: clamp(320px, 50vw, 520px);
}

.luxury-gallery-item--tall .luxury-photo-card {
    min-height: clamp(380px, 52vh, 560px);
}

.luxury-photo-card__link {
    cursor: pointer;
    display: block;
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s ease;
}

.luxury-photo-card__link:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(207, 170, 97, 0.25),
        0 0 48px rgba(207, 170, 97, 0.12);
}

.luxury-photo-card__figure {
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: inherit;
    overflow: hidden;
    border-radius: 20px;
}

.luxury-photo-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease;
    filter: brightness(0.92) contrast(1.05);
}

.luxury-photo-card__figure .video-gallery-preview {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease;
    filter: brightness(0.92) contrast(1.05);
    pointer-events: none;
}

.luxury-photo-card--video .luxury-photo-card__link:hover .video-gallery-preview {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.02);
}

.luxury-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(207, 170, 97, 0.92);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    pointer-events: none;
    opacity: 0.95;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s ease, background 0.35s ease;
    z-index: 2;
}

.luxury-photo-card--video .luxury-photo-card__link:hover .luxury-video-play-icon {
    transform: translate(-50%, -50%) scale(1.08);
    background: #cfaa61;
}

.luxury-photo-card__link:hover .luxury-photo-card__figure img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.02);
}

.luxury-photo-card__frame {
    position: absolute;
    inset: 12px;
    border-radius: 14px;
    border: 1px solid rgba(207, 170, 97, 0);
    pointer-events: none;
    transition: border-color 0.45s ease, inset 0.45s ease;
}

.luxury-photo-card__link:hover .luxury-photo-card__frame {
    inset: 14px;
    border-color: rgba(207, 170, 97, 0.35);
}

.luxury-photo-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 28px 20px 24px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.82) 100%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
}

.luxury-photo-card__link:hover .luxury-photo-card__overlay {
    opacity: 1;
}

.luxury-photo-card__kicker {
    font-family: "Epilogue", sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #cfaa61;
    margin-bottom: 8px;
}

.luxury-photo-card__caption {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.35;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.luxury-gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 60px 20px;
    font-size: 16px;
}

/* Magnific Popup — luxury skin */
.luxury-mfp.mfp-bg {
    background: rgba(4, 4, 4, 0.94);
    opacity: 1;
}

.luxury-mfp .mfp-content {
    box-shadow: 0 0 0 1px rgba(207, 170, 97, 0.2),
        0 40px 100px rgba(0, 0, 0, 0.6);
}

.luxury-mfp .mfp-figure:after {
    box-shadow: none;
}

.luxury-mfp .mfp-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    padding-top: 12px;
}

.luxury-mfp .mfp-counter,
.luxury-mfp-counter {
    font-family: "Epilogue", sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(207, 170, 97, 0.9);
}

.luxury-mfp .mfp-close {
    color: #fff;
    opacity: 0.7;
    font-size: 36px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    right: 12px;
    top: 12px;
    transition: color 0.2s, opacity 0.2s;
}

.luxury-mfp .mfp-close:hover {
    color: #cfaa61;
    opacity: 1;
}

.luxury-mfp .mfp-arrow {
    opacity: 0.85;
}

.luxury-mfp .mfp-arrow:before {
    border-color: transparent transparent transparent rgba(207, 170, 97, 0.9);
}

.luxury-mfp .mfp-arrow.mfp-arrow-right:before {
    border-color: transparent transparent transparent rgba(207, 170, 97, 0.9);
}

.luxury-mfp .mfp-arrow.mfp-arrow-left:before {
    border-color: transparent rgba(207, 170, 97, 0.9) transparent transparent;
}

@media only screen and (max-width: 1199px) {
    .luxury-gallery-item {
        grid-column: span 6;
    }

    .luxury-gallery-item--hero {
        grid-column: span 12;
        grid-row: span 1;
    }

    .luxury-gallery-item--tall {
        grid-row: span 1;
    }

    .luxury-gallery-item--hero .luxury-photo-card {
        min-height: 300px;
    }

    .luxury-gallery-item--tall .luxury-photo-card {
        min-height: 280px;
    }
}

@media only screen and (max-width: 767px) {
    .luxury-page-gallery {
        padding-bottom: 70px;
    }

    .luxury-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .luxury-gallery-item,
    .luxury-gallery-item--hero,
    .luxury-gallery-item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .luxury-photo-card__overlay {
        opacity: 1;
        padding-bottom: 18px;
        background: linear-gradient(
            180deg,
            transparent 20%,
            rgba(0, 0, 0, 0.75) 100%
        );
    }

    .luxury-photo-card__link {
        transform: none;
    }

    .luxury-photo-card__link:active {
        transform: scale(0.99);
    }

    /* Fixed nav + hero: avoid stacking spacer + 88px + huge hero top */
    .luxury-page-gallery {
        padding-top: 0 !important;
    }

    .luxury-gallery-hero {
        padding-top: max(6px, env(safe-area-inset-top, 0px) + clamp(52px, 14vw, 72px));
        padding-bottom: clamp(20px, 5vw, 40px);
    }

    .luxury-gallery-container {
        padding-top: 12px;
    }
}

/************************************/
/***     30. Video Gallery css    ***/
/************************************/

.page-video-gallery {
    padding: 100px 0 70px;
}

.page-video-gallery.luxury-page-gallery {
    padding: 0 0 100px;
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(207, 170, 97, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #080808 0%, #0d0d0d 35%, #0a0a0a 100%);
}

/* Video gallery Instagram-style: no space between items (like image gallery) */
.gallery-video-instagram-grid {
    margin-left: 0;
    margin-right: 0;
}
.gallery-video-instagram-grid [class^="col-"] {
    padding: 0;
}
.gallery-video-instagram-grid .video-gallery-image,
.gallery-video-instagram-grid .video-gallery-image figure,
.gallery-video-instagram-grid .video-gallery-thumb figure {
    border-radius: 0;
    margin: 0;
}
.gallery-video-instagram-grid .video-gallery-poster {
    border-radius: 0;
}
.gallery-video-instagram-grid .video-gallery-image img {
    border-radius: 0;
}

/* Video gallery: preview shows first frame; no native controls; play icon on hover only */
.page-video-gallery .video-gallery-preview {
    -webkit-appearance: none;
    appearance: none;
}
.page-video-gallery .video-gallery-preview::-webkit-media-controls,
.page-video-gallery .video-gallery-preview::-webkit-media-controls-enclosure,
.page-video-gallery .video-gallery-preview::-webkit-media-controls-panel {
    display: none !important;
}

.video-gallery-preview-wrap {
    cursor: pointer;
    overflow: hidden;
}

.video-gallery-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 42px;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.video-gallery-thumb:hover .video-gallery-play-overlay {
    opacity: 1;
}

.video-gallery-play-overlay i {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.video-gallery-image {
    border-radius: 10px;
    overflow: visible;
    height: 100%;
}

.video-gallery-image a {
    position: relative;
    cursor: none;
    display: block;
    width: 100%;
    height: 100%;
}

.video-gallery-image a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 25px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 60%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: "\f04b";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 900;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image figure {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 25px;
}

.video-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

/************************************/
/***    31. Contact us Page css   ***/
/************************************/

.page-contact-us {
    padding: 100px 0 50px;
}

.contact-info-form {
    background: var(--secondary-color) url("../images/contact-form-plan.svg")
        no-repeat;
    background-position: bottom -10px right 50px;
    background-size: auto;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 50px 35px;
}

.contact-information {
    background: var(--primary-color) url("../images/contact-information-bg.svg")
        no-repeat;
    background-position: bottom right;
    background-size: auto;
    border-radius: 30px;
    padding: 40px;
    margin-right: 30px;
}

.contact-information .section-title {
    margin-bottom: 100px;
}

.contact-information .section-title p,
.contact-information .section-title h2 {
    color: var(--white-color);
}

.contact-info-list {
    margin-bottom: 100px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon-box {
    margin-right: 15px;
}

.contact-info-item .icon-box img {
    max-width: 40px;
}

.contact-info-content {
    width: calc(100% - 55px);
}

.contact-info-content p {
    color: var(--white-color);
    margin: 0;
}

.contact-info-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info-social ul li {
    display: inline-block;
    margin-right: 10px;
}

.contact-info-social ul li:last-child {
    margin-right: 0;
}

.contact-info-social ul li a {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.contact-info-social ul li:hover a {
    border-color: var(--accent-color);
}

.contact-info-social ul li a i {
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.contact-info-social ul li:hover a i {
    color: var(--accent-color);
}

.contact-us-form .form-group label {
    font-family: var(--accent-font);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.contact-us-form .form-control {
    padding: 12px 0px;
    font-size: 16px;
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid var(--divider-color);
    border-radius: 0;
    color: var(--white-color) !important;
    box-shadow: none;
    outline: none;
}

.contact-us-form .form-control::placeholder {
    color: var(--text-color);
    text-transform: capitalize;
}

.contact-us-form .form-control:focus {
    background-color: transparent !important;
    border-bottom-color: var(--accent-color);
    color: var(--white-color) !important;
}

.contact-us-form .form-control:-webkit-autofill,
.contact-us-form .form-control:-webkit-autofill:hover,
.contact-us-form .form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--white-color) !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.alert-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    animation: slideInUp 0.5s ease-out;
}

.alert-message i {
    margin-right: 10px;
    font-size: 18px;
}

.alert-success {
    background: linear-gradient(
        135deg,
        rgba(46, 204, 113, 0.1),
        rgba(39, 174, 96, 0.1)
    );
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.alert-error {
    background: linear-gradient(
        135deg,
        rgba(231, 76, 60, 0.1),
        rgba(192, 57, 43, 0.1)
    );
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.google-map {
    padding: 50px 0 100px;
}

.google-map .section-title {
    text-align: center;
}

.google-map .section-title h3 {
    color: var(--accent-color);
}

.google-map-iframe {
    width: 100%;
    height: 550px;
}

.google-map-iframe iframe {
    width: 100%;
    height: 550px;
    border-radius: 30px;
}

/************************************/
/***      32. FAQs Page css 	  ***/
/************************************/

.page-faqs {
    padding: 100px 0;
}

.faq-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 30px;
}

.faq-catagery-list {
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 30px;
}

.faq-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-catagery-list ul li {
    position: relative;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-right: 25px;
}

.faq-catagery-list ul li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-catagery-list ul li:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateY(6px);
    background: url("../images/arrow-orange.svg") no-repeat center center;
    background-size: 12px auto;
    width: 14px;
    height: 14px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover:before {
    transform: translateY(6px) rotate(45deg);
}

.faq-catagery-list ul li a {
    display: block;
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
    color: var(--accent-color);
}

.page-faqs .rental-condition-accordion {
    margin-bottom: 60px;
}

.page-faqs .rental-condition-accordion:last-child {
    margin-bottom: 0;
}

.page-faqs .faqs-section-title {
    margin-bottom: 30px;
}

/************************************/
/***       33. 404 Page css       ***/
/************************************/

.error-page {
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 60px;
}

.error-page .error-page-content {
    text-align: center;
}

.error-page-content-heading {
    margin-bottom: 30px;
}

.error-page-content-heading h2 {
    font-size: 44px;
}

.error-page-content-heading h2 span {
    color: var(--accent-color);
}

/************************************/
/***      34. responsive css      ***/
/************************************/

@media only screen and (max-width: 1820px) {
    .bg-section {
        width: calc(100% - 100px);
        margin: 0 50px;
    }

    .main-footer {
        margin-bottom: 50px;
    }

    .perfect-fleet.bg-section {
        width: 100%;
        margin: 0 auto;
    }

    .work-section {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 20px;
    }
}

@media only screen and (max-width: 1366px) {
    .bg-section {
        width: calc(100% - 30px);
        margin: 0 15px;
    }

    .main-footer {
        margin-bottom: 15px;
    }

    .contact-info-form {
        width: calc(100% - 30px);
        margin: 0 15px;
    }

    .video-card {
        flex: 0 0 calc(25% - 15px);
        max-width: calc(25% - 15px);
        aspect-ratio: 3 / 4;
        overflow: visible;
        border-radius: 15px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .main-menu ul li {
        margin-left: 0;
    }

    .work-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 20px;
        gap: 20px;
    }

    .video-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        aspect-ratio: 4 / 3;
        overflow: visible;
        border-radius: 15px;
        margin-bottom: 20px;
        margin-left: 0;
        overflow: visible;
    }
}

/* Home videos: swipeable horizontal scroll on mobile, first video visible at start */
@media (max-width: 767px) {
    .work-section {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 12px;
        margin: 20px 0;
        padding: 0 16px 16px;
        justify-content: flex-start;
        scroll-padding-inline-start: 16px;
    }
    .work-section .video-card {
        flex: 0 0 85%;
        min-width: 85%;
        max-width: 85%;
        scroll-snap-align: start;
        aspect-ratio: 4 / 3;
    }
}

@media only screen and (max-width: 991px) {
    header.main-header:not(.site-floating-header) {
        margin-bottom: 15px;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    /* Classic header only: floating pill uses .site-floating-header rules (no legacy block menu leak) */
    header.main-header:not(.site-floating-header) .responsive-menu,
    header.main-header:not(.site-floating-header) .navbar-toggle {
        display: block;
    }

    .header-btn .btn-default {
        display: none;
    }

    .section-icon-btn {
        width: 40px;
        height: 40px;
    }

    .section-icon-btn img {
        max-width: 12px;
    }

    .bg-section {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 54px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        margin-top: 15px;
    }

    .section-btn {
        text-align: left;
        margin-top: 20px;
    }

    .hero {
        padding-bottom: 0px;
        margin-bottom: 0;
    }

    .hero-section.bg-section {
        padding: 100px 0 150px;
        margin-bottom: 0;
    }

    .hero-slider-layout .hero-slide {
        padding: 100px 0 150px;
    }

    .hero-slider-layout .hero-pagination {
        bottom: 50px;
    }

    .rent-details {
        position: initial;
    }

    .rent-details-box {
        display: block;
        padding: 20px;
    }

    .rent-details-form {
        flex-wrap: wrap;
        gap: 15px;
    }

    .rent-details-item {
        flex: 0 0 calc(33.33% - 10px);
        min-width: 0;
        border-right: none;
        border-bottom: 1px solid var(--divider-color);
        padding: 10px 0;
    }

    .rent-details-item:first-child {
        padding-left: 0;
    }

    .rent-details-item:nth-child(3n) {
        border-right: none;
    }

    .rent-details-item:nth-last-child(2) {
        border-bottom: none;
    }

    .rent-details-search {
        flex: 0 0 auto;
        padding-left: 0;
        padding-top: 10px;
    }

    .rent-details-search a,
    .rent-details-search button {
        margin: 0;
    }

    .about-us {
        padding: 50px 0;
    }

    .about-image {
        width: 100%;
        max-width: 550px;
        padding-bottom: 100px;
        margin-right: 0px;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .about-trusted-booking {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .about-trusted-booking .icon-box img {
        max-width: 64px;
    }

    .trusted-booking-content {
        width: calc(100% - 84px);
    }

    .about-content-body {
        margin-bottom: 30px;
    }

    .our-services {
        padding: 50px 0;
    }

    .service-item {
        padding: 20px;
    }

    .service-item .icon-box {
        margin-bottom: 20px;
    }

    .service-content {
        margin-bottom: 20px;
    }

    .services-box-footer {
        margin-top: 10px;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    .services-box-footer .btn-default {
        margin: 18px 0 0;
        max-width: calc(100% - 8px);
        box-sizing: border-box;
    }

    .perfect-fleet {
        padding: 50px 0 25px;
    }

    .perfect-fleet-item {
        padding: 20px;
        width: 100%;
    }

    .perfect-fleet-item .image-box {
        margin-bottom: 20px;
    }

    .perfect-fleet-item .image-box img {
        width: 100%;
        height: 100%;
        max-width: none;
    }

    .perfect-fleet-title {
        margin-bottom: 20px;
    }

    .perfect-fleet-body {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .perfect-fleet-pricing h2 {
        font-size: 22px;
    }

    .luxury-collection {
        padding: 25px 0;
    }

    .luxury-collection-item {
        width: calc(50% - 5px);
    }

    .luxury-collection-title {
        top: 30px;
        left: 30px;
        right: 30px;
    }

    .luxury-collection-title h2 {
        font-size: 24px;
    }

    .luxury-collection-btn {
        bottom: 30px;
        right: 30px;
    }

    .how-it-work {
        padding: 25px 0 50px;
    }

    .how-work-image {
        background-size: 40% auto;
        padding-bottom: 30px;
        max-width: 600px;
        margin-left: 0px;
        margin: 0 auto;
    }

    .how-work-content {
        margin-bottom: 40px;
    }

    .how-work-accordion .accordion-item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .how-work-accordion .accordion-item .icon-box {
        top: 0px;
    }

    .trusted-client-content {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .trusted-client-content h3 {
        font-size: 18px;
    }

    .intro-video {
        padding: 50px 0;
    }

    .video-play-button {
        padding-bottom: 80px;
        margin-bottom: 40px;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .why-choose-item {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .why-choose-image {
        margin: 30px 0 0;
    }

    .why-choose-image img {
        aspect-ratio: 1 / 1.6;
    }

    .why-choose-image::before {
        background-size: 50% auto;
    }

    .our-faqs {
        padding: 50px 0;
    }

    .our-faqs-image::before {
        background-size: 80% auto;
    }

    .our-faqs-content {
        margin-left: 0px;
        margin-bottom: 30px;
    }

    .our-faqs-accordion .accordion-item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .our-faqs-accordion .accordion-item .icon-box {
        top: 0px;
    }

    .our-testimonial {
        padding: 50px 0;
    }

    .testimonial-item {
        padding: 20px;
        height: 100%;
        margin: 0;
    }

    .testimonial-rating {
        margin-bottom: 10px;
    }

    .testimonial-rating i {
        font-size: 16px;
    }

    .testimonial-header {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .cta-box {
        padding: 50px 0;
    }

    .cta-box-content {
        max-width: 100%;
    }

    .latest-article {
        padding: 50px 0;
    }

    .highlighted-article-post {
        margin-bottom: 30px;
    }

    .highlighted-article-featured-img img {
        aspect-ratio: 1 / 0.7;
    }

    .article-post .article-featured-img img {
        aspect-ratio: 1 / 0.7;
    }

    .article-post-body .article-meta ul li a i {
        font-size: 16px;
        margin-right: 5px;
    }

    .article-post-content .read-story-btn::after {
        width: 22px;
        height: 22px;
    }

    .main-footer {
        padding: 50px 0 0;
        margin: 0;
    }

    .about-footer .footer-logo {
        margin-bottom: 20px;
    }

    .about-footer {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .footer-links {
        margin-left: 0px;
    }

    .footer-links h3,
    .footer-newsletter h3 {
        margin-bottom: 20px;
    }

    .footer-newsletter-form .form-group .form-control {
        padding: 12px 20px;
    }

    .footer-copyright {
        padding: 20px 0;
        margin-top: 40px;
    }

    .page-header {
        padding: 100px 0;
    }

    .page-header-box h1 {
        font-size: 54px;
        margin-bottom: 10px;
    }

    .about-us.page-about-us {
        padding: 90px 0 50px;
    }

    .exclusive-partners {
        padding: 50px 0 20px;
    }

    .partners-logo {
        padding: 20px 30px;
    }

    .vision-mission {
        padding: 50px 0;
    }

    .our-projects-nav {
        margin-bottom: 30px;
    }

    .our-projects-nav .nav-tabs {
        padding: 10px;
    }

    .our-projects-nav ul li {
        margin-right: 20px;
    }

    .our-projects-nav ul li .nav-link {
        padding: 12px 20px;
    }

    .vision-mission-content {
        margin-bottom: 30px;
    }

    .vision-mission-list ul li {
        font-size: 18px;
        margin-bottom: 15px;
        padding-left: 25px;
    }

    .vision-mission-list ul li:before {
        font-size: 18px;
    }

    .vision-image {
        text-align: center;
        margin-left: 0px;
    }

    .vision-image img {
        aspect-ratio: 1 / 0.8;
    }

    .our-video {
        padding: 50px 0;
    }

    .customer-counter-image img {
        aspect-ratio: 1 / 1.1;
    }

    .satisfied-customer-counter {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .satisfied-customer-counter h3 {
        font-size: 34px;
    }

    .satisfied-customer-image {
        bottom: 20px;
        left: 20px;
    }

    @keyframes satisfiedmoveobject {
        50% {
            left: 60px;
        }
    }

    .satisfied-customer-image img {
        max-width: 160px;
    }

    .video-image-box {
        padding-bottom: 40px;
    }

    .video-image img {
        aspect-ratio: 1 / 0.76;
    }

    .video-image-play-button a {
        width: 90px;
        height: 90px;
    }

    .video-image-play-button a i {
        font-size: 26px;
    }

    .our-team {
        padding: 50px 0 20px;
    }

    .team-social-icon ul li a i {
        font-size: 22px;
    }

    .page-services {
        padding: 90px 0 20px;
    }

    .page-service-single {
        padding: 50px 0;
    }

    .service-sidebar {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .service-catagery-list {
        padding: 20px;
        margin-bottom: 30px;
    }

    .service-catagery-list h3 {
        margin-bottom: 20px;
    }

    .service-catagery-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .sidebar-cta-box {
        padding: 30px 20px;
    }

    .cta-contact-item .icon-box {
        margin-bottom: 20px;
    }

    .cta-contact-content {
        margin-bottom: 20px;
    }

    .cta-contact-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .service-entry {
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .service-entry h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .service-entry p {
        margin-bottom: 20px;
    }

    .service-entry ul {
        margin-bottom: 20px;
    }

    .service-gallery {
        margin-bottom: 30px;
    }

    .service-gallery a {
        cursor: none;
    }

    .service-gallery img {
        aspect-ratio: 1 / 0.85;
    }

    .page-fleets {
        padding: 50px 0;
    }

    .fleets-sidebar {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .fleets-sidebar {
        padding: 20px;
    }

    .fleets-search-box {
        margin-bottom: 20px;
        padding-bottom: 20px;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: flex-end;
    }

    .mobile-filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background-color: var(--accent-color);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .mobile-filter-toggle i {
        font-size: 20px;
        color: var(--white-color);
    }

    .mobile-filter-toggle:hover {
        background-color: var(--white-color);
    }

    .mobile-filter-toggle:hover i {
        color: var(--accent-color);
    }

    .mobile-filter-toggle.active {
        background-color: var(--white-color);
    }

    .mobile-filter-toggle.active i {
        color: var(--accent-color);
    }

    .fleets-search-box .form-group {
        flex: 1;
    }

    .fleets-sidebar-list-box {
        display: none;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
    }

    .fleets-sidebar-list-box.show {
        display: block;
    }

    .fleets-sidebar-list {
        width: 100%;
        border: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .fleets-pagination {
        margin-top: 10px;
    }

    .page-fleets-single {
        padding: 50px 0;
    }

    .booking-form {
        max-width: 100%;
        margin: 0;
        padding: 30px;
    }

    .booking-form .mfp-close {
        width: 30px;
        height: 30px;
    }

    .fleets-single-sidebar {
        padding: 30px;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .fleets-single-sidebar-pricing {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .fleets-single-sidebar-pricing h2 {
        font-size: 40px;
    }

    .fleets-single-sidebar-list ul li {
        margin-bottom: 20px;
    }

    .fleets-single-sidebar-list {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .fleets-single-sidebar-btn {
        width: 100%;
        max-width: 300px;
    }

    .fleets-single-slider {
        margin-bottom: 30px;
    }

    .fleets-benefits {
        padding: 20px;
        margin-bottom: 30px;
    }

    .fleets-information {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .fleets-information-list ul li {
        margin-bottom: 15px;
    }

    .fleets-information-list ul li:before {
        top: 2px;
    }

    .fleets-amenities {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .rental-condition-accordion .accordion-header .accordion-button {
        padding: 15px 40px 15px 15px;
    }

    .rental-condition-accordion .accordion-item .accordion-body {
        padding: 15px 40px 15px 15px;
    }

    .page-cars {
        padding: 50px 0 20px;
    }

    .page-drivers {
        padding: 50px 0 20px;
    }

    .page-team-single {
        padding: 50px 0;
    }

    .team-member-details {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .team-member-image img {
        aspect-ratio: 1 / 0.9;
    }

    .team-member-content {
        padding: 30px;
    }

    .team-member-title {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .team-member-title h2 {
        font-size: 28px;
        margin-bottom: 0;
    }

    .team-member-body {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .team-member-body ul li {
        margin-bottom: 15px;
    }

    .member-social-list ul li a i {
        font-size: 22px;
    }

    .team-member-intro {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .team-member-intro .section-title {
        margin-bottom: 20px;
    }

    .team-member-specialty ul li {
        margin-bottom: 15px;
    }

    .team-member-features {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .team-member-features .section-title {
        margin-bottom: 20px;
    }

    .page-blog {
        padding: 90px 0 50px;
    }

    .post-item {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .post-item .post-featured-image {
        margin-bottom: 20px;
    }

    .post-pagination {
        margin-top: 10px;
    }

    .post-single-meta ol li i {
        font-size: 20px;
    }

    .page-single-post {
        padding: 100px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry blockquote {
        background: var(--secondary-color) url("../images/icon-blockquote.svg")
            no-repeat 30px 35px;
        background-size: 45px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-entry h2 {
        font-size: 36px;
    }

    .post-entry ul li {
        font-size: 16px;
    }

    .post-tag-links {
        padding: 0 0px;
    }

    .post-tags {
        margin-bottom: 10px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .post-tags .tag-links a {
        font-size: 16px;
        padding: 8px 15px;
    }

    .page-pricing {
        padding: 50px 0 20px;
    }

    .pricing-item {
        padding: 40px;
    }

    .pricing-item-image {
        margin-bottom: 30px;
    }

    .pricing-item-content {
        margin-bottom: 30px;
    }

    .pricing-item-content h2 {
        font-size: 50px;
    }

    .pricing-item-content h2 sup {
        font-size: 36px;
    }

    .page-testimonials {
        padding: 90px 0 20px;
    }

    .page-gallery {
        padding: 90px 0 20px;
    }

    .page-gallery.luxury-page-gallery,
    .page-video-gallery.luxury-page-gallery {
        padding: 0 0 48px;
    }

    .page-gallery-box .photo-gallery img {
        aspect-ratio: 1 / 0.8;
    }

    .page-video-gallery {
        padding: 90px 0 20px;
    }

    .video-gallery-image img {
        aspect-ratio: 1 / 0.8;
    }

    .page-contact-us {
        padding: 90px 0 25px;
    }

    .contact-info-form {
        background: none;
        padding: 30px 15px;
    }

    .contact-information {
        padding: 30px;
        margin-bottom: 30px;
        margin-right: 0;
    }

    .contact-information .section-title {
        margin-bottom: 50px;
    }

    .contact-info-list {
        margin-bottom: 50px;
    }

    .contact-info-item {
        margin-bottom: 20px;
    }

    .contact-info-item .icon-box img {
        max-width: 30px;
    }

    .contact-info-content {
        width: calc(100% - 45px);
    }

    .google-map {
        padding: 25px 0 50px;
    }

    .google-map-iframe {
        height: 400px;
    }

    .google-map-iframe iframe {
        height: 400px;
    }

    .page-faqs {
        padding: 90px 0 50px;
    }

    .faq-sidebar {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .faq-catagery-list {
        padding: 20px;
    }

    .faq-catagery-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .page-faqs .rental-condition-accordion {
        margin-bottom: 40px;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image {
        margin-bottom: 30px;
    }

    .error-page-content-heading {
        margin-bottom: 20px;
    }

    .error-page-content-heading h2 {
        font-size: 36px;
    }

    .work-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 20px;
        gap: 20px;
    }

    .video-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        aspect-ratio: 3 / 4;
        overflow: visible;
        border-radius: 15px;
        margin-bottom: 20px;
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .section-row {
        margin-bottom: 30px;
    }

    .section-title {
        text-align: center;
    }

    .section-title h1 {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title h3 {
        margin-bottom: 10px;
    }

    /* Classic header on mobile (floating pill stays fixed via .site-floating-header) */
    header.main-header:not(.site-floating-header) {
        position: absolute;
        width: 100%;
        z-index: 100;
    }

    /* Universal mobile spacing between header and content - adjust this value to change all pages at once */
    .page-gallery,
    .page-video-gallery,
    .page-contact-us,
    .page-fleets-single,
    .page-services,
    .page-service-single,
    .page-blog,
    .page-blog-details,
    .page-testimonials,
    .page-pricing,
    .page-faq,
    .about-us,
    .our-services,
    .why-choose-us,
    .our-brands,
    .our-fleet,
    .our-testiminial,
    .home-banner,
    .page-header {
        padding-top: 120px !important;
    }

    .page-gallery.luxury-page-gallery,
    .page-video-gallery.luxury-page-gallery {
        padding-top: 0 !important;
        padding-bottom: 56px !important;
    }

    .luxury-gallery-hero {
        padding-top: max(4px, calc(env(safe-area-inset-top, 0px) + clamp(48px, 13vw, 68px))) !important;
        padding-bottom: clamp(20px, 5vw, 36px) !important;
    }

    .luxury-gallery-container {
        padding-top: 12px !important;
    }

    body.page-home .home-videos-section {
        padding-top: 8px;
    }

    body.page-home .home-videos-section .section-title {
        margin-top: 0;
        margin-bottom: 12px;
    }

    /* Inventory page: smaller gap between header and filter on mobile */
    .page-fleets {
        padding-top: 85px !important;
    }

    .navbar {
        padding: 15px 0;
    }

    .hero {
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .hero-section.bg-section {
        padding: 0;
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: center;
        margin-bottom: 0;
    }

    .hero-section.bg-section.hero-video {
        height: auto;
        min-height: 100vh;
        margin-bottom: 0;
        padding-bottom: 0 !important;
    }

    .hero-bg-video {
        height: 100%;
        min-height: 100vh;
    }

    .hero-bg-video video {
        height: 100%;
        min-height: 100vh;
        width: 100%;
        object-fit: cover;
    }

    .hero-slider-layout .hero-slide {
        padding: 80px 0;
    }

    .hero-slider-layout .hero-pagination {
        bottom: 20px;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
    }

    .hero-content .section-title {
        text-align: center;
        width: 100%;
    }

    .hero-content .section-title h3,
    .hero-content .section-title h1,
    .hero-content .section-title h2 {
        text-align: center;
    }

    .hero-content .section-title h3 {
        display: block;
        text-align: center;
    }

    .hero-content .section-title p {
        max-width: 100%;
        margin: 0 auto;
        margin-top: 10px;
        text-align: center;
    }

    .hero-content-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-content-body .btn-default {
        margin: 0 auto;
    }

    .hero-content-body .btn-default.btn-highlighted {
        margin-left: 0px;
        margin-top: 15px;
    }

    .rent-details {
        display: none;
    }

    .rent-details-form {
        flex-wrap: wrap;
        gap: 10px;
    }

    .rent-details-item {
        flex: 0 0 100%;
        border-right: 0;
        border-bottom: 1px solid var(--divider-color);
        padding: 15px 0;
    }

    .rent-details-item:first-child {
        padding-top: 0;
    }

    .rent-details-item:nth-child(3n + 3) {
        border-bottom: 1px solid var(--divider-color);
    }

    .rent-details-item:nth-last-child(2) {
        border-bottom: none;
    }

    .rent-details-item:last-child {
        border: none;
        padding-bottom: 0;
    }

    .rent-details-search {
        flex: 0 0 100%;
        padding: 15px 0 0 0;
        text-align: center;
    }

    .about-image {
        background-position: bottom 25px right 35px;
        background-size: 50% auto;
        padding-bottom: 70px;
    }

    .about-img-1 {
        width: 250px;
    }

    .about-img-2 {
        width: 200px;
    }

    .about-trusted-booking .icon-box {
        margin-right: 10px;
        padding: 5px 0px 0px 5px;
    }

    .about-trusted-booking .icon-box img {
        max-width: 60px;
    }

    .trusted-booking-content {
        width: calc(100% - 70px);
    }

    .trusted-booking-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .service-item .icon-box img {
        max-width: 54px;
    }

    .service-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .swiper-slide {
        width: 95%;
        margin: 0px;
    }

    /* Inventory page: full width cards, proper height on mobile */
    #vehicles-container .col-12 {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    @media (max-width: 767px) {
        #vehicles-container .row {
            margin-left: 0;
            margin-right: 0;
        }
        #vehicles-container .col-12 {
            padding-left: 10px;
            padding-right: 10px;
            margin-bottom: 20px;
        }
        .fleets-collection-box .perfect-fleet-item {
            min-height: 320px;
        }
    }

    .perfect-fleet-item {
        padding: 12px;
        border-radius: 20px;
    }

    .perfect-fleet-item .image-box {
        margin-bottom: 12px;
        aspect-ratio: 16 / 10;
        border-radius: 12px;
    }

    .perfect-fleet-title {
        margin-bottom: 10px;
    }

    .perfect-fleet-title h3 {
        padding: 5px 10px;
        font-size: 11px;
    }

    .perfect-fleet-title h2 {
        font-size: 16px;
        min-height: auto;
        -webkit-line-clamp: 1;
    }

    .perfect-fleet-body {
        margin-bottom: 15px;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .perfect-fleet-body ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .perfect-fleet-body ul li {
        font-size: 12px;
        padding-left: 0;
        line-height: 1.3;
        text-align: center;
    }

    .perfect-fleet-body ul li img {
        width: 16px;
        height: 16px;
    }

    .perfect-fleet-footer h4 {
        font-size: 20px;
    }

    .perfect-fleet-btn .section-icon-btn {
        width: 32px;
        height: 32px;
    }

    .perfect-fleet-pricing h2 {
        font-size: 20px;
    }

    .car-details-btn {
        margin-top: 30px;
    }

    .perfect-fleet-btn .section-icon-btn {
        width: 34px;
        height: 34px;
    }

    .perfect-fleet-btn .section-icon-btn img {
        max-width: 10px;
    }

    .car-details-slider .car-button-next,
    .car-details-slider .car-button-prev {
        width: 40px;
        height: 40px;
    }

    .car-details-slider .car-button-next::before,
    .car-details-slider .car-button-prev::before {
        background-size: 12px auto;
    }

    .luxury-collection .container-fluid {
        padding: 0 15px;
    }

    .luxury-collection-box {
        display: block;
    }

    .luxury-collection-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .luxury-collection-item:last-child {
        margin-bottom: 0;
    }

    .luxury-collection-title h2 {
        font-size: 20px;
    }

    .how-work-accordion .accordion-item .icon-box img {
        max-width: 30px;
    }

    .how-work-accordion .accordion-item .accordion-button {
        font-size: 18px;
        padding: 5px 30px 5px 50px;
    }

    .how-work-accordion .accordion-header .accordion-button::after {
        font-size: 18px;
    }

    .how-work-accordion .accordion-item .accordion-body {
        padding: 5px 30px 0px 0px;
    }

    .how-work-img::before {
        width: 100%;
    }

    .trusted-client {
        right: 50px;
        margin: 0 auto;
        padding: 15px;
    }

    @keyframes trustedmoveobject {
        50% {
            right: 100px;
        }
    }

    .trusted-client-content h3 {
        font-size: 16px;
    }

    .trusted-client-content {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .video-play-button a {
        width: 64px;
        height: 64px;
    }

    .video-play-button a i {
        font-size: 24px;
    }

    .video-play-button {
        padding-bottom: 50px;
        margin-bottom: 30px;
    }

    .why-choose-item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .why-choose-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .why-choose-image {
        margin: 30px 0;
    }

    .why-choose-image img {
        aspect-ratio: 1 / 1.4;
    }

    .why-choose-image::before {
        background-size: 100% auto;
    }

    .our-faqs-image::before {
        background-size: 100% auto;
    }

    .faqs-img-2 figure,
    .faqs-img-1 figure {
        width: 100%;
        height: 100%;
    }

    .faqs-img-1 {
        margin-right: -10px;
    }

    .faqs-img-2 {
        margin-left: -10px;
    }

    .our-faqs-content .section-title {
        text-align: left;
    }

    .our-faqs-accordion .accordion-item .accordion-button {
        font-size: 18px;
        padding: 5px 30px 5px 0px;
    }

    .our-faqs-accordion .accordion-header .accordion-button::after {
        font-size: 18px;
    }

    .our-faqs-accordion .accordion-item .accordion-body {
        padding: 5px 30px 0px 0px;
    }

    .author-content h3 {
        font-size: 18px;
    }

    .testimonial-btn {
        margin-top: 30px;
    }

    .testimonial-slider .testimonial-button-next,
    .testimonial-slider .testimonial-button-prev {
        width: 40px;
        height: 40px;
    }

    .testimonial-slider .testimonial-button-next::before,
    .testimonial-slider .testimonial-button-prev::before {
        background-size: 12px auto;
    }

    .cta-box-content {
        margin-bottom: 30px;
    }

    .cta-box-content .section-title {
        text-align: left;
    }

    .highlighted-article-body {
        max-width: 100%;
        bottom: 20px;
        left: 20px;
    }

    .highlighted-article-body .highlighted-article-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .article-post {
        display: block;
        margin-bottom: 30px;
    }

    .highlighted-article-featured-img img {
        aspect-ratio: 1 / 0.9;
    }

    .article-post .article-featured-img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .article-post .article-featured-img img {
        aspect-ratio: 4 / 3;
        width: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .article-post .article-post-body {
        width: 100%;
        margin-left: 0;
    }

    .article-post-body .article-meta {
        margin-bottom: 5px;
    }

    .article-post-body .article-meta ul li a i {
        font-size: 14px;
    }

    .article-post-body .article-post-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .article-post-content .read-story-btn {
        padding-right: 30px;
    }

    .footer-links {
        margin-bottom: 40px;
    }

    .footer-copyright {
        margin-top: 40px;
    }

    .footer-copyright-text {
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-copyright .footer-social-links ul {
        text-align: center;
    }

    .page-header {
        padding: 80px 0;
    }

    .page-header-box h1 {
        font-size: 30px;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 18px;
    }

    .partners-logo {
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .partners-logo img {
        width: 100%;
        margin: 0;
    }

    .our-projects-nav .nav-tabs {
        justify-content: center;
    }

    .our-projects-nav ul li {
        margin-right: 10px;
        margin-bottom: 15px;
    }

    .our-projects-nav ul li:last-child {
        margin-bottom: 0;
    }

    .vision-mission-list ul li {
        font-size: 16px;
    }

    .vision-mission-list ul li:before {
        top: 4px;
    }

    .customer-counter-item {
        margin-bottom: 30px;
    }

    .satisfied-customer-counter h3 {
        font-size: 28px;
    }

    .video-image-box {
        padding-bottom: 40px;
    }

    .video-image-play-button {
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
    }

    .video-image-play-button a {
        width: 80px;
        height: 80px;
    }

    .video-image-play-button a i {
        font-size: 22px;
    }

    .team-social-icon ul li a i {
        font-size: 20px;
    }

    .service-catagery-list h3 {
        font-size: 18px;
    }

    .cta-contact-item .icon-box img {
        max-width: 55px;
    }

    .cta-contact-content h2 {
        font-size: 28px;
    }

    .service-entry h2 {
        font-size: 28px;
    }

    .service-entry h3 {
        font-size: 18px;
    }

    .service-entry ul {
        display: block;
    }

    .service-entry ul li {
        width: 100%;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .service-entry ul li:last-child {
        margin-bottom: 0;
    }

    .service-entry ul li:before {
        font-size: 18px;
        top: 4px;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .booking-form .mfp-close {
        width: 25px;
        height: 25px;
    }

    .fleets-sidebar-list-box {
        display: none;
        gap: 0px;
        transition: all 0.3s ease-in-out;
    }

    .fleets-sidebar-list-box.show {
        display: block;
        animation: slideDown 0.3s ease-in-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fleets-sidebar-list {
        width: 100%;
        border-bottom: 1px solid var(--divider-color);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .fleets-list-title {
        margin-bottom: 10px;
    }

    .fleets-list-title h3 {
        font-size: 18px;
    }

    #price-filter-list .form-check {
        padding: 10px 0;
        gap: 10px;
    }

    #price-filter-list .form-check-label {
        font-size: 14px;
        line-height: 1.5;
    }

    .fleets-sidebar-list ul li .form-check-input {
        width: 14px;
        height: 14px;
    }

    .fleets-single-sidebar-btn {
        max-width: 100%;
    }

    .fleets-single-sidebar {
        padding: 20px;
    }

    .fleets-single-sidebar-pricing h2 {
        font-size: 30px;
    }

    .fleets-benefits {
        display: block;
    }

    .fleets-benefits-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .fleets-benefits-item:last-child {
        margin-bottom: 0;
    }

    .fleets-benefits-content h3 {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .fleets-information-list ul li {
        font-size: 16px;
    }

    .fleets-amenities-list ul li {
        font-size: 16px;
        width: calc(50% - 10px);
    }

    .team-member-content {
        padding: 20px;
    }

    .team-member-title h2 {
        font-size: 24px;
    }

    .team-member-title p {
        font-size: 18px;
    }

    .team-member-body ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .member-social-list ul li a i {
        font-size: 20px;
    }

    .team-member-specialty ul li {
        position: relative;
        font-size: 16px;
        padding-left: 25px;
    }

    .team-member-specialty ul li::before {
        font-size: 18px;
        top: 4px;
    }

    .team-features-list ul {
        display: block;
    }

    .team-features-list ul li {
        width: 100%;
        font-size: 16px;
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .team-features-list ul li::before {
        font-size: 18px;
        top: 4px;
    }

    .team-features-list ul li:last-child {
        margin-bottom: 0;
    }

    .team-feedback-body h3 {
        font-size: 18px;
    }

    .team-member-slider .swiper-pagination {
        margin-top: 20px;
    }

    .post-item-content h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .post-single-meta ol li i {
        font-size: 18px;
    }

    .post-image figure,
    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry blockquote {
        background: var(--secondary-color) url(../images/icon-blockquote.svg)
            no-repeat 20px 20px;
        background-size: 35px;
        padding: 55px 20px 20px 20px;
    }

    .post-entry h2 {
        font-size: 28px;
    }

    .tag-links {
        font-size: 20px;
    }

    .pricing-item {
        padding: 30px;
    }

    .pricing-item-image {
        margin-bottom: 20px;
    }

    .pricing-item-image img {
        max-width: 220px;
    }

    .pricing-item-content {
        margin-bottom: 20px;
    }

    .pricing-item-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .pricing-item-content h2 {
        font-size: 40px;
    }

    .pricing-item-content h2 sup {
        font-size: 32px;
    }

    .contact-info-form {
        width: 100%;
        border: none;
        padding: 0;
        margin: 0;
    }

    .contact-information {
        padding: 20px;
    }

    .contact-information .section-title {
        margin-bottom: 40px;
    }

    .contact-info-list {
        margin-bottom: 40px;
    }

    .contact-info-item .icon-box img {
        max-width: 26px;
    }

    .page-faqs .rental-condition-accordion {
        margin-bottom: 30px;
    }

    .page-faqs .faqs-section-title {
        margin-bottom: 20px;
    }

    .error-page-content-heading h2 {
        font-size: 28px;
    }

    .work-section {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 15px;
        margin: 0;
        padding: 0 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-padding-inline: 15px;
    }

    .work-section::-webkit-scrollbar {
        display: none;
    }

    .video-card {
        flex: 0 0 85vw;
        width: 85vw;
        min-width: 85vw;
        aspect-ratio: 9 / 16;
        overflow: visible;
        border-radius: 15px;
        margin-bottom: 20px;
        scroll-snap-align: start;
    }

    .intro-video {
        padding: 30px 15px;
    }
}

/* Floating Category Badge on Vehicle Images */
.image-box {
    position: relative;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
    line-height: 1em;
    padding: 8px 16px;
    border-radius: 100px;
    z-index: 100;
    text-transform: capitalize;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.perfect-fleet-title h3 {
    display: none !important; /* Hide the old position */
}

/* ─── Trade inquiry page (/inquiry) & trade modal (car single) ─── */
.trade-inquiry-page .trade-inquiry-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: clamp(72px, 14vw, 120px) 0 clamp(32px, 7vw, 64px);
}

.trade-inquiry-page .trade-inquiry-hero__title {
    font-size: clamp(1.6rem, 5.5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
    word-wrap: break-word;
}

.trade-inquiry-page .trade-inquiry-hero__lead {
    font-size: clamp(15px, 3.5vw, 18px);
    color: rgba(255, 255, 255, 0.72);
    margin: 0 auto;
    max-width: 36rem;
    line-height: 1.55;
}

.trade-inquiry-page .trade-inquiry-section {
    background: #0a0a0a;
    padding: clamp(32px, 8vw, 80px) 0;
}

.trade-inquiry-page .trade-inquiry-card {
    padding: clamp(16px, 4vw, 40px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.trade-inquiry-page .trade-inquiry-title {
    font-size: clamp(1.25rem, 4vw, 2rem) !important;
    margin-bottom: clamp(24px, 5vw, 40px) !important;
}

.trade-inquiry-page .trade-inquiry-card .form-control[type="file"] {
    max-width: 100%;
    min-height: 44px;
}

.trade-inquiry-page .trade-inquiry-card select.form-control,
.trade-inquiry-page .trade-inquiry-card input.form-control {
    max-width: 100%;
}

/* Trade modal (car single): mobile menu above overlay */
.inquiry-form-modal .slicknav_btn,
.inquiry-form-modal .slicknav_menu {
    z-index: 2200;
}

.inquiry-form-modal .slicknav_nav {
    z-index: 2201;
}

@media only screen and (max-width: 575px) {
    .trade-inquiry-page .trade-inquiry-card .submit-btn {
        padding: 16px 20px !important;
        font-size: 15px !important;
    }
}

/* Car single — trade modal: mobile-friendly */
@media only screen and (max-width: 767px) {
    .inquiry-form-modal .vehicle-inquiry-section {
        padding: 16px 12px 24px !important;
        margin: 8px auto !important;
        max-height: none;
        overflow: visible;
    }

    .inquiry-form-modal__scroll {
        padding-bottom: 20px;
    }

    .inquiry-form-modal .inquiry-title {
        font-size: 18px !important;
        padding-right: 36px;
    }

    .inquiry-form-modal .row[style*="margin: 0 -8px"] {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .inquiry-form-modal .row [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .inquiry-form-modal .form-control[type="file"] {
        font-size: 13px;
        max-width: 100%;
    }
}

/* Simple legal / minimal pages: content below floating nav + spacer */
.page-legal-document__main {
    padding-top: 1rem;
}

/* ═══ Floating glass pill navbar (replaces classic full-width header) ═══ */
header.main-header.site-floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: transparent;
    pointer-events: none;
}

.site-floating-header__sticky {
    position: relative;
    padding: clamp(6px, 1.4vw, 14px) clamp(10px, 2.2vw, 24px) 0;
    pointer-events: none;
}

.site-floating-header__frame {
    max-width: 1120px;
    margin: 0 auto;
    pointer-events: auto;
}

.floating-nav-pill {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.2vw, 16px);
    min-height: 48px;
    padding: 5px 10px 5px 12px;
    border-radius: 999px;
    /* Same lighter glass treatment site-wide (matches former home-only look) */
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(207, 170, 97, 0.38);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.32), 0 24px 64px rgba(0, 0, 0, 0.22),
        0 2px 16px rgba(0, 0, 0, 0.18);
}

.floating-nav-pill__brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    text-decoration: none;
    color: #fff;
    padding-right: 2px;
}

.floating-nav-pill__brand .floating-nav-pill__logo,
.floating-nav-pill__brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    display: block;
}

.floating-nav-pill__links-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.floating-nav-pill__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.floating-nav-pill__links > li,
.floating-nav-pill__item {
    margin: 0;
    position: relative;
    list-style: none !important;
}

.floating-nav-pill__link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 12px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none !important;
    text-transform: capitalize;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.floating-nav-pill__links > li.submenu > a.floating-nav-pill__link::after,
.floating-nav-pill__item.submenu > a.floating-nav-pill__link::after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 11px;
    margin-left: 6px;
    opacity: 0.75;
}

.floating-nav-pill__link:hover,
.floating-nav-pill__link:focus {
    color: #cfaa61 !important;
    background: rgba(207, 170, 97, 0.1);
}

.floating-nav-pill__links ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px);
    min-width: 268px;
    padding: 14px 0 12px;
    margin: 0;
    list-style: none !important;
    border-radius: 18px;
    background: linear-gradient(165deg, rgba(22, 20, 18, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
    border: 1px solid rgba(207, 170, 97, 0.38);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 20px 56px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    z-index: 10200;
    pointer-events: none;
}

.floating-nav-pill__links ul::before {
    content: "Resources";
    display: block;
    padding: 0 20px 12px;
    margin-bottom: 4px;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(207, 170, 97, 0.8);
    border-bottom: 1px solid rgba(207, 170, 97, 0.15);
    pointer-events: none;
}

.floating-nav-pill__links li.submenu:hover > ul,
.floating-nav-pill__links li.submenu:focus-within > ul,
.floating-nav-pill__item.submenu:hover > ul,
.floating-nav-pill__item.submenu:focus-within > ul {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.floating-nav-pill__links ul .floating-nav-pill__link {
    padding: 12px 22px !important;
    border-radius: 0;
    font-size: 15px;
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: 0.04em;
}

.floating-nav-pill__links ul .floating-nav-pill__link:hover {
    background: rgba(207, 170, 97, 0.12);
}

.floating-nav-pill__toggle {
    display: none;
    flex-shrink: 0;
    align-items: center;
}

.floating-nav-pill__toggle .navbar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0;
    margin: 0;
}

.site-floating-header-spacer {
    height: 78px;
    min-height: 78px;
}

body.page-home .site-floating-header-spacer,
body.page-car-single .site-floating-header-spacer,
body.trade-inquiry-page .site-floating-header-spacer {
    display: none;
    height: 0;
    min-height: 0;
}

/* Trade modal: navbar sits inside overlay (not fixed to viewport) */
.inquiry-form-modal .site-floating-header.main-header {
    position: relative !important;
    top: auto;
    left: auto;
    right: auto;
    z-index: 10;
    pointer-events: auto;
}

.inquiry-form-modal .inquiry-modal-top-header {
    background: transparent !important;
    border-bottom: none !important;
}

.inquiry-form-modal .inquiry-modal-top-header .site-floating-header__sticky {
    padding: 12px 12px 0;
}

.inquiry-form-modal .floating-nav-pill {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(207, 170, 97, 0.38);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.32), 0 24px 64px rgba(0, 0, 0, 0.22),
        0 2px 16px rgba(0, 0, 0, 0.18);
}

@media only screen and (max-width: 991px) {
    /* Closed: hide SlickNav host; when open, body.mobile-nav-open wins (must beat this specificity) */
    .site-floating-header .responsive-menu {
        display: none !important;
    }

    body.mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .responsive-menu {
        display: flex !important;
    }

    .floating-nav-pill__links-wrap {
        display: none;
    }

    .floating-nav-pill__toggle {
        display: flex;
    }

    .floating-nav-pill {
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
        min-height: 48px;
        padding: 5px 12px 5px 10px;
        gap: 8px;
    }

    /* Plain hamburger: no boxed background on the floating pill */
    .site-floating-header .floating-nav-pill__toggle .slicknav_btn {
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        width: auto !important;
        height: auto !important;
        min-width: 40px;
        min-height: 40px;
        padding: 8px !important;
        margin: 0 !important;
    }

    .site-floating-header .floating-nav-pill__toggle .slicknav_icon .slicknav_icon-bar {
        background-color: #fff !important;
    }

    .mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) {
        z-index: 100000;
    }

    .mobile-nav-open .site-floating-header:not(.inquiry-modal-top-header) .site-floating-header__sticky {
        pointer-events: auto;
    }
}

/* Trade modal: separate body class so it never toggles the main page overlay */
@media only screen and (max-width: 991px) {
    body.mobile-nav-open-trade .responsive-menu-trade {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100dvh;
        z-index: 19990;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: max(64px, calc(env(safe-area-inset-top, 0px) + 44px)) 20px max(24px, env(safe-area-inset-bottom, 0px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_menu {
        position: relative !important;
        width: 100% !important;
        max-width: min(400px, 92vw);
        background: transparent !important;
        padding: 0;
    }

    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav {
        position: relative;
        max-height: min(70vh, 520px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: linear-gradient(165deg, rgba(16, 14, 12, 0.94) 0%, rgba(6, 6, 6, 0.92) 100%);
        border-radius: 22px;
        padding: 22px 0 16px;
        border: 1px solid rgba(207, 170, 97, 0.42);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 24px 80px rgba(0, 0, 0, 0.75),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
    }

    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav::before {
        content: "Finest";
        display: block;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: clamp(1.35rem, 4.2vw, 1.65rem);
        font-weight: 500;
        letter-spacing: 0.42em;
        text-transform: uppercase;
        text-align: center;
        color: rgba(207, 170, 97, 0.88);
        margin: 0 0 8px;
        padding: 0 24px 16px;
        border-bottom: 1px solid rgba(207, 170, 97, 0.2);
    }

    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav li {
        border-bottom: 1px solid rgba(207, 170, 97, 0.1);
    }

    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav li:last-child {
        border-bottom: none;
    }

    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav .slicknav_row,
    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav li a {
        padding: 18px 28px;
        font-size: 17px;
        font-weight: 500;
        font-family: "Cormorant Garamond", Georgia, serif;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.94) !important;
        transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
    }

    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav a:hover,
    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav a:focus,
    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav .slicknav_row:hover {
        background: rgba(207, 170, 97, 0.12) !important;
        color: #e8c97a !important;
        padding-left: 32px;
    }

    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_menu ul ul li a {
        padding: 14px 28px 14px 40px;
        font-size: 15px;
    }

    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_arrow:after {
        color: rgba(207, 170, 97, 0.75) !important;
    }

    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav ul {
        background: rgba(0, 0, 0, 0.2) !important;
        border-radius: 12px;
        margin: 6px 16px 10px !important;
        padding: 6px 0 !important;
        border: 1px solid rgba(207, 170, 97, 0.12);
    }

    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav ul .slicknav_row,
    body.mobile-nav-open-trade .responsive-menu-trade .slicknav_nav ul li a {
        padding: 12px 20px !important;
        font-size: 15px !important;
    }

    body.mobile-nav-closing-trade .responsive-menu-trade {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    body.mobile-nav-open-trade .inquiry-form-modal.active .site-floating-header.inquiry-modal-top-header {
        z-index: 20060 !important;
    }
}

/* ─── Car single: luxury layout + typography (gallery-aligned) ─── */
.page-car-single .page-fleets-single {
    background: radial-gradient(ellipse 100% 55% at 50% 0%, rgba(207, 170, 97, 0.07) 0%, transparent 52%),
        linear-gradient(180deg, #080808 0%, #0a0a0a 40%, #0a0a0a 100%);
}

.page-car-single .vehicle-header-luxury {
    padding: clamp(18px, 3.5vw, 36px) clamp(14px, 2.5vw, 28px) !important;
    margin-bottom: clamp(14px, 2.5vw, 24px) !important;
    border-bottom: 1px solid rgba(207, 170, 97, 0.18) !important;
    background: linear-gradient(180deg, rgba(207, 170, 97, 0.05) 0%, transparent 72%);
    border-radius: 0 0 20px 20px;
}

/* Fixed navbar clearance: tight gap to title/gallery (no double “air pocket”) */
body.page-car-single .page-fleets-single > .container.vehicle-detail-page-inner {
    padding-top: clamp(76px, 11vw, 104px);
}

.page-car-single .vehicle-header-luxury--title-only {
    border-bottom: none;
    margin-bottom: 0;
    padding: clamp(10px, 2vw, 18px) clamp(14px, 2.5vw, 28px) 0 !important;
}

.page-car-single .vehicle-header-luxury--title-only .vehicle-header-title-block {
    margin-bottom: clamp(6px, 1.5vw, 14px) !important;
}

@media only screen and (max-width: 991px) {
    body.page-car-single .page-fleets-single > .container.vehicle-detail-page-inner {
        padding-top: clamp(44px, 10vw, 72px);
    }

    .page-car-single .vehicle-detail-title-row {
        margin-bottom: 0 !important;
    }

    .page-car-single .vehicle-header-luxury--title-only {
        padding-top: 8px !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .page-car-single .vehicle-header-luxury--title-only .vehicle-header-title-block {
        margin-bottom: 6px !important;
    }

    .page-car-single .vehicle-detail-gallery-row {
        margin-top: 0 !important;
        padding-top: 8px;
    }

    .page-car-single .vehicle-image-gallery {
        margin-top: 0;
    }
}

.page-car-single .vehicle-detail-gallery-row {
    margin-top: 0;
}

.page-car-single .vehicle-header-luxury--meta-only {
    border-top: 1px solid rgba(207, 170, 97, 0.12);
    margin-top: clamp(14px, 2.2vw, 22px);
    padding-top: clamp(14px, 2.2vw, 22px);
}

.page-car-single .vehicle-engine-sound-btn {
    padding: 10px 22px !important;
    border-radius: 999px !important;
    width: auto !important;
    margin: 0 !important;
    background-color: #a89060 !important;
    border-color: #a89060 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.page-car-single .vehicle-header-actions-stack {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 12px !important;
    width: auto;
    max-width: none;
    margin-left: auto;
}

.page-car-single .vehicle-header-actions-stack .header-sound-btn-wrapper {
    margin-top: 0 !important;
    width: 100%;
}

@media (min-width: 768px) {
    .page-car-single .vehicle-header-actions-stack .header-sound-btn-wrapper {
        width: auto;
    }
}

.page-car-single .vehicle-price-trade-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 14px;
    width: 100%;
    flex: 0 0 100%;
}

.page-car-single .vehicle-header-meta-row__price-trade {
    margin-bottom: clamp(12px, 2vw, 18px);
}

.page-car-single .vehicle-header-meta-row__lower {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(14px, 2.5vw, 24px);
    width: 100%;
}

.page-car-single .vehicle-share-row {
    justify-content: flex-end;
}

.page-car-single .vehicle-header-title-block {
    width: 100%;
    max-width: 100%;
    margin-bottom: clamp(16px, 2.5vw, 26px);
}

.page-car-single .vehicle-header-heading,
.page-car-single .vehicle-header-title-block h1 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.65rem, 4.2vw, 2.85rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.page-car-single .vehicle-header-subtitle {
    font-family: "DM Sans", sans-serif !important;
    font-size: clamp(11px, 1.2vw, 13px) !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(207, 170, 97, 0.95) !important;
    margin-top: 10px !important;
    line-height: 1.4 !important;
}

.page-car-single .vehicle-header-meta-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.page-car-single .vehicle-header-meta-row__badges {
    flex: 1 1 260px;
    min-width: 0;
}

.page-car-single .vehicle-header-meta-row__actions {
    flex: 0 1 auto;
    align-items: flex-end !important;
}

.page-car-single .vehicle-price-main {
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(1.45rem, 3.2vw, 2.1rem) !important;
    font-weight: 500 !important;
    color: #fff !important;
    line-height: 1.1 !important;
    text-align: right;
    flex-shrink: 0;
}

.page-car-single .vehicle-header-trade-btn {
    border-radius: 999px !important;
    padding: 12px 26px !important;
    font-size: 14px !important;
    background: #cfaa61 !important;
    color: #000 !important;
    border: none !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
    box-shadow: 0 8px 28px rgba(207, 170, 97, 0.22);
    flex-shrink: 0;
}

.page-car-single .gallery-grid-container {
    gap: clamp(10px, 1.8vw, 18px);
}

.page-car-single .gallery-main-item,
.page-car-single .gallery-main-item .gallery-popup,
.page-car-single .gallery-main-item img,
.page-car-single .thumbnail-item,
.page-car-single .thumbnail-item img {
    border-radius: 18px;
}

.page-car-single .gallery-main-item {
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(207, 170, 97, 0.12);
}

.page-car-single .thumbnail-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media only screen and (max-width: 767px) {
    .page-car-single .vehicle-header-meta-row__actions {
        align-items: stretch !important;
        width: 100%;
        max-width: none;
        margin-left: 0;
    }

    .page-car-single .vehicle-header-actions-stack {
        align-items: stretch !important;
        max-width: none;
        margin-left: 0;
        width: 100%;
    }

    .page-car-single .vehicle-price-trade-row {
        flex-wrap: wrap;
    }

    .page-car-single .vehicle-price-main {
        text-align: right !important;
    }

    .page-car-single .vehicle-header-meta-row__lower {
        flex-direction: column;
        align-items: stretch;
    }

    .page-car-single .header-sound-btn-wrapper {
        justify-content: flex-start;
        width: 100%;
    }

    .page-car-single .vehicle-share-row {
        justify-content: flex-start;
    }

    .page-car-single .price-wrapper {
        flex-direction: row !important;
        flex-wrap: wrap;
        align-items: center !important;
        width: 100%;
    }
}

/* ─── Floating nav: harden against unstyled list / Bootstrap / cache issues ─── */
ul.floating-nav-pill__links#menu,
ul#menu.floating-nav-pill__links {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.floating-nav-pill__links#menu > li,
.floating-nav-pill__links .floating-nav-pill__item {
    list-style: none !important;
}

#menu.floating-nav-pill__links a.floating-nav-pill__link {
    color: rgba(255, 255, 255, 0.95) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.95);
}

@media only screen and (min-width: 992px) {
    .site-floating-header .responsive-menu {
        display: none !important;
    }

    .site-floating-header .responsive-menu .slicknav_menu,
    .site-floating-header .responsive-menu .slicknav_btn {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }

    .site-floating-header .floating-nav-pill__links-wrap {
        display: flex !important;
    }

    .inquiry-form-modal .responsive-menu-trade .slicknav_menu,
    .inquiry-form-modal .responsive-menu-trade .slicknav_btn {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }
}

/* Home hero: full viewport height; video fills section */
body.page-home .hero.hero-home {
    margin-bottom: 80px;
}

body.page-home .hero-home .hero-section.bg-section.hero-video {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    padding: clamp(96px, 14vh, 150px) 0 clamp(180px, 24vh, 260px);
}

body.page-home .hero-home .hero-bg-video video {
    min-height: 100%;
}
