/*	
	Theme Name: Motors - Child Theme
	Theme URI: http://motors.stylemixthemes.com/
	Author: StylemixThemes
	Author URI: http://stylemixthemes.com/
	Description: Motors Child theme
	Version: 4.0
	License: GNU General Public License v2 or later
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	Tags: blue, red, one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, fixed-layout, fluid-layout, responsive-layout, flexible-header, custom-background, custom-colors, custom-header, custom-menu, editor-style, sticky-post, theme-options
	Text Domain: motors-child
    Template: motors

    This theme, like WordPress, is licensed under the GPL.
    Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ==========================================================================
   NEO Van Rentals — Homepage visual polish (page 721 only)
   Source of truth: this file. Override only — no structure changes.
   ========================================================================== */

.page-id-721 {
	/* Homepage design tokens */
	--neo-accent: #c9a227;
	--neo-dark: #171717;
	--neo-dark-deep: #232628;
	--neo-header: #ffffff;
	--neo-surface: #ffffff;
	--neo-muted: #f7f7f7;
	--neo-text: #171717;
	--neo-text-soft: #6b7280;
	--neo-border: rgba(0, 0, 0, 0.08);
	--neo-radius-sm: 6px;
	--neo-radius-md: 10px;
	--neo-radius-lg: 12px;
	--neo-radius-pill: 999px;
	--neo-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
	--neo-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
	--neo-shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.14);
	--neo-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
	--neo-nav-size: 13px;
	--neo-hero-min: clamp(520px, 72vh, 760px);
	
	/* Typography overrides */
	--neo-font-heading: 'Montserrat', sans-serif;
	--neo-font-body: 'Open Sans', sans-serif;
}

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */

.page-id-721 #top-bar {
	background: #000000 !important;
	border-bottom: 1px solid rgba(201, 162, 39, 0.35);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
	padding: 9px 0;
}

.page-id-721 #top-bar .top-bar-info li,
.page-id-721 #top-bar .top-bar-info li a,
.page-id-721 #top-bar .header-top-bar-socs a,
.page-id-721 #top-bar .menu-login-register-button a {
	font-family: var(--neo-font-heading) !important;
	font-size: 11px !important;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72) !important;
	transition: color 0.2s var(--neo-ease);
}

/* Gold icons in the top bar (phone, hours, login, socials) */
.page-id-721 #top-bar .top-bar-info li i,
.page-id-721 #top-bar .menu-login-register-button a i,
.page-id-721 #top-bar .header-top-bar-socs a i {
	color: var(--neo-accent) !important;
	margin-right: 6px;
	font-size: 12px;
}

.page-id-721 #top-bar .top-bar-info li a:hover,
.page-id-721 #top-bar .header-top-bar-socs a:hover,
.page-id-721 #top-bar .menu-login-register-button a:hover {
	color: var(--neo-accent) !important;
	opacity: 1;
}

/* --------------------------------------------------------------------------
   Main navigation
   -------------------------------------------------------------------------- */

.page-id-721 .header-rental.header-main {
	/* Frosted translucent white — kept high-opacity so it stays readable
	   and never goes see-through, but picks up the glass language of the form. */
	background: rgba(255, 255, 255, 0.82) !important;
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	backdrop-filter: blur(18px) saturate(140%);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 12px 32px rgba(0, 0, 0, 0.06) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.page-id-721 .header-rental .header-inner-content {
	padding-top: 16px;
	padding-bottom: 16px;
}

/* Desktop menu list (real class on this site is .listing-menu).
   Scoped to desktop so we never override the theme's mobile display:none
   (which would force the inline menu to show on top of the hamburger). */
@media (min-width: 1025px) {
	.page-id-721 .listing-service-right .listing-menu {
		display: flex;
		align-items: center;
		gap: 4px;
	}
}

/* Neutralize any inherited divider/border between menu items */
.page-id-721 .listing-service-right .listing-menu > li {
	border: none !important;
	float: none; /* drop the theme's float so flex spacing is clean */
}

.page-id-721 .listing-service-right .listing-menu > li > a {
	font-family: var(--neo-font-heading);
	font-size: var(--neo-nav-size);
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	padding: 10px 18px;
	color: var(--neo-text) !important;
	background: transparent !important;
	border-radius: 0;
	position: relative;
	transition: color 0.25s var(--neo-ease);
}

/* Elegant gold underline that slides in from the centre */
.page-id-721 .listing-service-right .listing-menu > li > a::after {
	display: block;
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 2px;
	height: 2px;
	background: var(--neo-accent);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s var(--neo-ease);
}

.page-id-721 .listing-service-right .listing-menu > li > a:hover {
	color: var(--neo-accent) !important;
	background: transparent !important;
	opacity: 1;
}

.page-id-721 .listing-service-right .listing-menu > li > a:hover::after,
.page-id-721 .listing-service-right .listing-menu > li.current-menu-item > a::after,
.page-id-721 .listing-service-right .listing-menu > li.current_page_item > a::after {
	transform: scaleX(1);
}

.page-id-721 .listing-service-right .listing-menu > li.current-menu-item > a,
.page-id-721 .listing-service-right .listing-menu > li.current_page_item > a {
	color: var(--neo-accent) !important;
	background: transparent !important;
	box-shadow: none;
	opacity: 1;
}

/* Kill the theme's grey hover/current highlight box on the list items
   (the gold underline is our only indicator) — CTA is excluded below. */
.page-id-721 .listing-service-right .listing-menu > li:not(.menu-item-724),
.page-id-721 .listing-service-right .listing-menu > li:not(.menu-item-724):hover,
.page-id-721 .listing-service-right .listing-menu > li:not(.menu-item-724).current-menu-item,
.page-id-721 .listing-service-right .listing-menu > li:not(.menu-item-724).current_page_item,
.page-id-721 .listing-service-right .listing-menu > li:not(.menu-item-724) > a:hover,
.page-id-721 .listing-service-right .listing-menu > li:not(.menu-item-724) > a:focus {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

/* --------------------------------------------------------------------------
   "Contacts" promoted to a gold CTA button (desktop menu only)
   -------------------------------------------------------------------------- */

.page-id-721 .listing-service-right .listing-menu > li.menu-item-724 {
	margin-left: 10px;
}

/* Clear the theme's grey highlight on the CTA list item (keep the gold pill on the link) */
.page-id-721 .listing-service-right .listing-menu > li.menu-item-724,
.page-id-721 .listing-service-right .listing-menu > li.menu-item-724:hover,
.page-id-721 .listing-service-right .listing-menu > li.menu-item-724.current-menu-item,
.page-id-721 .listing-service-right .listing-menu > li.menu-item-724.current_page_item {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

.page-id-721 .listing-service-right .listing-menu > li.menu-item-724 > a {
	color: #1a1a1a !important;
	background: var(--neo-accent) !important;
	border-radius: var(--neo-radius-pill);
	box-shadow: 0 6px 16px rgba(201, 162, 39, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
	transition: color 0.25s var(--neo-ease), background-color 0.25s var(--neo-ease),
		transform 0.25s var(--neo-ease), box-shadow 0.25s var(--neo-ease);
}

/* No underline on the CTA */
.page-id-721 .listing-service-right .listing-menu > li.menu-item-724 > a::after {
	display: none;
}

.page-id-721 .listing-service-right .listing-menu > li.menu-item-724 > a:hover {
	color: #1a1a1a !important;
	background: #d8b13a !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(201, 162, 39, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* --------------------------------------------------------------------------
   Mobile slide-in menu (.listing-menu-mobile) — matches dark + gold language
   -------------------------------------------------------------------------- */

.page-id-721 .listing-menu-mobile > li > a {
	font-family: var(--neo-font-heading) !important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.2s var(--neo-ease), padding-left 0.2s var(--neo-ease);
}

.page-id-721 .listing-menu-mobile > li > a:hover,
.page-id-721 .listing-menu-mobile > li.current-menu-item > a,
.page-id-721 .listing-menu-mobile > li.current_page_item > a {
	color: var(--neo-accent) !important;
	padding-left: 6px;
}

/* --------------------------------------------------------------------------
   Logo
   -------------------------------------------------------------------------- */

.page-id-721 .listing-logo-main .bloglogo img {
	max-height: 52px;
	width: auto !important;
	transition: opacity 0.2s var(--neo-ease);
}

.page-id-721 .listing-logo-main .bloglogo:hover img {
	opacity: 0.75;
}

.page-id-721 .listing-service-right .listing-menu {
	margin-top: 0;
}

.page-id-721 .stm-menu-trigger span {
	background-color: var(--neo-text) !important;
}

.page-id-721 .listing-right-actions .stm-phone-number a {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--neo-text) !important;
	transition: color 0.2s var(--neo-ease);
}

.page-id-721 .listing-right-actions .stm-phone-number a:hover {
	color: var(--neo-accent) !important;
}

/* Top-bar login link carries the same gold-on-hover accent */
.page-id-721 #top-bar .menu-login-register-button a:hover {
	color: var(--neo-accent) !important;
}

/* --------------------------------------------------------------------------
   Hero shell
   -------------------------------------------------------------------------- */

.page-id-721 .elementor-element-9a0df26 {
	position: relative;
	min-height: var(--neo-hero-min) !important;
	padding-top: clamp(56px, 8vw, 88px) !important;
	padding-bottom: clamp(56px, 8vw, 88px) !important;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.page-id-721 .elementor-element-9a0df26 > .elementor-background-overlay {
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.42) 0%,
		rgba(0, 0, 0, 0.18) 42%,
		rgba(0, 0, 0, 0.14) 62%,
		rgba(0, 0, 0, 0.34) 100%
	) !important;
	opacity: 1 !important;
}

.page-id-721 .elementor-element-9a0df26 > .elementor-container {
	width: 100%;
}

/* --------------------------------------------------------------------------
   Hero overlay depth (cinematic, restrained)
   -------------------------------------------------------------------------- */

.page-id-721 .elementor-element-9a0df26::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(
		ellipse at 65% 45%,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.18) 100%
	);
	z-index: 0;
}

.page-id-721 .elementor-element-9a0df26 .elementor-widget-wrap {
	position: relative;
	z-index: 1;
}

/* --------------------------------------------------------------------------
   Search form (stable premium booking panel)

   Markup reality (cannot change without editing the plugin template):
     form
       └ .pickup-return
           ├ .row  → location   (1 visible .col-md-12 + 1 hidden)
           └ .row  → dates       (2 .col-md-12, each = date 60% + time 40%)
       └ .form-btn-wrap → submit

   A true single-line Turo bar is fragile on this nested grid, so we use a
   clean 2-row panel: location on top, the two dates side by side, button below.
   -------------------------------------------------------------------------- */

/* ---- Reset the previous broken horizontal-force rules ---- */
.page-id-721 .elementor-element-e0f5964 form {
	display: block;
	width: 100%;
}

.page-id-721 .elementor-element-e0f5964 .pickup-return,
.page-id-721 .elementor-element-e0f5964 .pickup-return > .row {
	display: block;
	margin: 0;
	min-width: 0;
}

/* ---- Container width + card ---- */
.page-id-721 .elementor-element-e0f5964 {
	width: 100% !important;
	max-width: 820px;
	margin: 0 auto;
}

.page-id-721 .elementor-element-e0f5964 .stm_rent_car_form_wrapper.style_1 .stm_rent_car_form {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 38%),
		rgba(18, 19, 21, 0.52) !important;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	box-shadow:
		0 30px 70px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
	padding: 36px 40px 32px;
	-webkit-backdrop-filter: blur(22px) saturate(120%);
	backdrop-filter: blur(22px) saturate(120%);
}

/* Hide the plugin's default blurry drop shadow under the card */
.page-id-721 .elementor-element-e0f5964 .stm_rent_car_form_wrapper.style_1 .stm_rent_car_form:after {
	display: none;
}

.page-id-721 .elementor-element-e0f5964 .stm_rent_form_fields {
	margin-bottom: 22px !important;
	position: relative;
}

/* ---- Field labels (real, readable headers — never truncated) ---- */
.page-id-721 .elementor-element-e0f5964 .stm_form_title {
	font-family: var(--neo-font-heading);
	font-size: 11px !important;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72) !important;
	margin-bottom: 10px !important;
	white-space: normal;
	overflow: visible;
	text-overflow: clip;
}

/* ---- Inputs / selects ---- */
.page-id-721 .elementor-element-e0f5964 .stm_pickup_location select,
.page-id-721 .elementor-element-e0f5964 .stm_date_time_input input,
.page-id-721 .elementor-element-e0f5964 .stm_time_input input {
	font-family: var(--neo-font-body);
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.6) !important;
	border-radius: 10px !important;
	background: #ffffff !important;
	color: var(--neo-text) !important;
	min-height: 52px;
	padding: 0 16px !important;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
	transition: border-color 0.2s var(--neo-ease), box-shadow 0.2s var(--neo-ease);
}

/* Leave room for the calendar icon on the date input only */
.page-id-721 .elementor-element-e0f5964 .stm_date_input input {
	padding-right: 34px !important;
}

.page-id-721 .elementor-element-e0f5964 .stm_pickup_location select:focus,
.page-id-721 .elementor-element-e0f5964 .stm_date_time_input input:focus,
.page-id-721 .elementor-element-e0f5964 .stm_time_input input:focus {
	border-color: var(--neo-accent) !important;
	box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
	outline: none;
}

/* Location field with leading pin icon */
.page-id-721 .elementor-element-e0f5964 .stm_pickup_location {
	position: relative;
}

.page-id-721 .elementor-element-e0f5964 .stm_pickup_location select {
	padding-left: 40px !important;
}

.page-id-721 .elementor-element-e0f5964 .stm_pickup_location i {
	position: absolute !important;
	right: auto !important;
	left: 16px !important;
	top: 50% !important;
	bottom: auto !important;
	margin: 0 !important;
	transform: translateY(-50%) !important;
	line-height: 1 !important;
	color: var(--neo-accent) !important;
	font-size: 16px !important;
	z-index: 2;
	pointer-events: none;
}

/* Custom chevron for the location dropdown — clean and consistent */
.page-id-721 .elementor-element-e0f5964 .stm_pickup_location select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 16px center !important;
	padding-right: 40px !important;
}

/* Date field with trailing calendar icon */
.page-id-721 .elementor-element-e0f5964 .stm_date_input {
	position: relative;
}

.page-id-721 .elementor-element-e0f5964 .stm_date_input i {
	position: absolute !important;
	left: auto !important;
	right: 14px !important;
	top: 50% !important;
	bottom: auto !important;
	margin: 0 !important;
	transform: translateY(-50%) !important;
	line-height: 1 !important;
	font-size: 16px !important;
	color: var(--neo-accent) !important;
	pointer-events: none;
}

/* Date (wide) + time (narrow) pair inside each date field */
.page-id-721 .elementor-element-e0f5964 .stm_rent_form_fields .elementor-container {
	display: flex;
	gap: 12px;
	align-items: stretch;
}

.page-id-721 .elementor-element-e0f5964 .stm_date_time_input {
	width: auto !important;
	flex: 1; /* time field */
	min-width: 0;
}

.page-id-721 .elementor-element-e0f5964 .stm_date_time_input:first-child {
	flex: 1.35; /* date field — wider, but time still fits "10:00 AM" */
}

/* ---- Search button (integrated, full-width, premium) ---- */
.page-id-721 .elementor-element-e0f5964 .form-btn-wrap {
	margin-top: 10px;
}

.page-id-721 .elementor-element-e0f5964 .form-btn-wrap button[type="submit"] {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 54px;
	border: none !important;
	border-radius: 14px !important;
	background: var(--neo-accent) !important;
	color: #1a1a1a !important;
	font-family: var(--neo-font-heading);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	box-shadow: 0 12px 28px rgba(201, 162, 39, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
	transition: background-color 0.2s var(--neo-ease), transform 0.2s var(--neo-ease), box-shadow 0.2s var(--neo-ease);
}

.page-id-721 .elementor-element-e0f5964 .form-btn-wrap button[type="submit"] i {
	color: #1a1a1a !important;
	transition: transform 0.2s var(--neo-ease);
}

.page-id-721 .elementor-element-e0f5964 .form-btn-wrap button[type="submit"]:hover {
	background: #d8b13a !important;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(201, 162, 39, 0.4);
}

.page-id-721 .elementor-element-e0f5964 .form-btn-wrap button[type="submit"]:hover i {
	transform: translateX(4px);
}

/* ---- Date groups stack full-width so the US date never clips ----
   (Pick Up Date on its own line, Drop off Date below — each gets the full
   card width, so "06/10/2026" + "10:00 AM" always show completely.) ---- */
.page-id-721 .elementor-element-e0f5964 .pickup-return > .row:last-child .col-md-12 {
	padding: 0;
}

.page-id-721 .elementor-element-e0f5964 .pickup-return > .row:last-child .stm_rent_form_fields {
	margin-top: 0 !important;
	margin-bottom: 18px !important;
}

/* Date wide, time comfortable — now with the full card width to work with */
.page-id-721 .elementor-element-e0f5964 .stm_date_time_input:first-child {
	flex: 2.4; /* date */
}

.page-id-721 .elementor-element-e0f5964 .stm_date_time_input:last-child {
	flex: 1; /* time */
}

/* --------------------------------------------------------------------------
   Vehicle carousel
   -------------------------------------------------------------------------- */

.page-id-721 #rc-carousel .swiper-slide .stm_image {
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	padding-bottom: 18px;
	background: #ffffff;
	transition: transform 0.35s var(--neo-ease), box-shadow 0.35s var(--neo-ease);
}

.page-id-721 #rc-carousel .swiper-slide .stm_image:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.14);
}

/* Image gets a subtle studio backdrop and a restrained hover zoom */
.page-id-721 #rc-carousel .stm_image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px 16px 0 0;
	background: linear-gradient(180deg, #fafafa 0%, #f1f1f1 100%);
	transition: transform 0.45s var(--neo-ease);
}

.page-id-721 #rc-carousel .swiper-slide .stm_image:hover img {
	transform: scale(1.04);
}

.page-id-721 #rc-carousel .car-name h4 {
	font-family: var(--neo-font-heading);
	font-size: 16px;
	font-weight: 600;
	color: var(--neo-text);
	letter-spacing: 0.01em;
	margin: 16px 0 12px;
	text-align: center;
}

.page-id-721 .rc-btn-dark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 22px !important;
	border-radius: 10px !important;
	background: var(--neo-dark) !important;
	color: #fff !important;
	font-family: var(--neo-font-heading);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	transition: background-color 0.2s var(--neo-ease), transform 0.2s var(--neo-ease), box-shadow 0.2s var(--neo-ease);
}

.page-id-721 .rc-btn-dark:hover,
.page-id-721 .rc-btn-dark:focus {
	background: #000 !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.page-id-721 #rc-carousel .stm-swiper-controls .stm-swiper-next,
.page-id-721 #rc-carousel .stm-swiper-controls .stm-swiper-prev {
	width: 40px;
	height: 40px;
	border: 1px solid #dde3e6;
	border-radius: 50%;
	background: var(--neo-surface);
	color: var(--neo-dark);
	transition: border-color 0.2s var(--neo-ease), color 0.2s var(--neo-ease), background-color 0.2s var(--neo-ease);
}

.page-id-721 #rc-carousel .stm-swiper-controls .stm-swiper-next:hover,
.page-id-721 #rc-carousel .stm-swiper-controls .stm-swiper-prev:hover {
	border-color: var(--neo-accent);
	color: var(--neo-dark);
	background: #fffdf5;
}

.page-id-721 #rc-carousel .swiper-pagination-bullet {
	opacity: 0.45;
	transition: opacity 0.2s var(--neo-ease), transform 0.2s var(--neo-ease);
}

.page-id-721 #rc-carousel .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--neo-accent) !important;
	transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   Meet the Fleet grid
   -------------------------------------------------------------------------- */

.page-id-721 .elementor-element-31971c7 {
	padding-top: 12px;
	padding-bottom: 24px;
}

.page-id-721 .elementor-element-31971c7 .stm_rental_archive_top h3 {
	font-family: var(--neo-font-heading);
	font-size: clamp(24px, 3vw, 28px);
	font-weight: 600;
	color: var(--neo-dark);
	letter-spacing: -0.02em;
}

.page-id-721 .elementor-element-31971c7 .stm_pickup_location select,
.page-id-721 .elementor-element-31971c7 .stm_date_input input {
	font-family: var(--neo-font-body);
	border: 1px solid #e5e7eb !important;
	border-radius: var(--neo-radius-sm) !important;
	min-height: 44px;
	background: var(--neo-surface) !important;
}

.page-id-721 .elementor-element-31971c7 .stm_product_grid_single.home_car_block .inner,
.page-id-721 .elementor-element-31971c7 .stm_products_grid_class .stm_product_grid_single .inner {
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	background: var(--neo-surface);
	overflow: hidden;
	padding-bottom: 18px;
	transition: transform 0.35s var(--neo-ease), box-shadow 0.35s var(--neo-ease);
}

.page-id-721 .elementor-element-31971c7 .stm_product_grid_single.home_car_block .inner:hover,
.page-id-721 .elementor-element-31971c7 .stm_products_grid_class .stm_product_grid_single .inner:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.14);
}

/* Image: subtle studio backdrop + restrained hover zoom */
.page-id-721 .elementor-element-31971c7 .stm_image {
	overflow: hidden;
	background: linear-gradient(180deg, #fafafa 0%, #f1f1f1 100%);
}

.page-id-721 .elementor-element-31971c7 .wp-post-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px 16px 0 0;
	transition: transform 0.45s var(--neo-ease);
}

.page-id-721 .elementor-element-31971c7 .inner:hover .wp-post-image {
	transform: scale(1.04);
}

/* ---- Fleet spec row (Seats / Bags / Doors / A/C / Engine) ---- */
.page-id-721 .elementor-element-31971c7 .features_icon {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
	align-items: flex-start;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.page-id-721 .elementor-element-31971c7 .feature_icon {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 48px;
	padding-left: 0 !important; /* override inline padding-left on the Engine cell */
}

.page-id-721 .elementor-element-31971c7 .feature_icon p {
	margin: 0;
	font-family: var(--neo-font-heading);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--neo-text-soft);
}

.page-id-721 .elementor-element-31971c7 .feature_icon .single_info {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--neo-font-body);
}

.page-id-721 .elementor-element-31971c7 .feature_icon .single_info i {
	font-size: 15px;
	line-height: 1;
	color: var(--neo-accent); /* selective gold on the icon glyph only */
}

.page-id-721 .elementor-element-31971c7 .feature_icon .single_info span {
	font-size: 13px;
	font-weight: 600;
	color: var(--neo-text);
	letter-spacing: 0.01em;
}

/* ---- Action area: primary (dark) + secondary (ghost) CTA system ---- */
.page-id-721 .elementor-element-31971c7 .home_rent_price {
	margin-top: 16px !important;
	padding-top: 14px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.page-id-721 .elementor-element-31971c7 .home_rent_price .pay {
	width: 100%;
}

.page-id-721 .elementor-element-31971c7 .rc-reserve-vehicle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	padding: 11px 16px !important;
	border-radius: 10px !important;
	font-family: var(--neo-font-heading);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	box-shadow: none;
	transition: background-color 0.2s var(--neo-ease), color 0.2s var(--neo-ease),
		border-color 0.2s var(--neo-ease), transform 0.2s var(--neo-ease), box-shadow 0.2s var(--neo-ease);
}

/* Primary — strong dark */
.page-id-721 .elementor-element-31971c7 .rc-reserve-vehicle.rc-reserve-dark {
	background: var(--neo-dark) !important;
	color: #fff !important;
	border: 1px solid var(--neo-dark) !important;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-id-721 .elementor-element-31971c7 .rc-reserve-vehicle.rc-reserve-dark:hover {
	background: #000 !important;
	border-color: #000 !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

/* Secondary — designed ghost ("Pay later"), gold only on hover */
.page-id-721 .elementor-element-31971c7 .rc-reserve-vehicle.quote-light {
	background: transparent !important;
	color: var(--neo-dark) !important;
	border: 1px solid rgba(0, 0, 0, 0.18) !important;
}

.page-id-721 .elementor-element-31971c7 .rc-reserve-vehicle.quote-light:hover {
	background: rgba(201, 162, 39, 0.06) !important;
	border-color: var(--neo-accent) !important;
	color: var(--neo-dark) !important;
	transform: translateY(-1px);
}

/* ---- "More Information" — deliberate, subtle ---- */
.page-id-721 .elementor-element-31971c7 .more-info-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 !important;
	font-family: var(--neo-font-heading) !important;
	font-size: 10px !important;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--neo-text-soft) !important;
	text-decoration: none !important;
	transition: color 0.2s var(--neo-ease);
}

.page-id-721 .elementor-element-31971c7 .more-info-btn::after {
	content: "\2192";
	font-size: 12px;
	transition: transform 0.2s var(--neo-ease);
}

.page-id-721 .elementor-element-31971c7 .more-info-btn:hover {
	color: var(--neo-accent) !important;
}

.page-id-721 .elementor-element-31971c7 .more-info-btn:hover::after {
	transform: translateX(3px);
}

/* ---- Skeleton / loading state — matches the real card finish ---- */
.page-id-721 .elementor-element-31971c7 .skeleton-card {
	background: var(--neo-surface);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	padding: 18px;
}

.page-id-721 .elementor-element-31971c7 .skeleton {
	background: linear-gradient(90deg, #ececec 25%, #f5f5f5 37%, #ececec 63%);
	background-size: 400% 100%;
	border-radius: 8px;
}

.page-id-721 .elementor-element-31971c7 .skeleton-car {
	border-radius: 12px;
}

.page-id-721 .elementor-element-31971c7 .skeleton-button {
	border-radius: 10px;
	height: 46px;
}

/* --------------------------------------------------------------------------
   Map / location split section
   -------------------------------------------------------------------------- */

.page-id-721 .elementor-element-fcbc33e {
	border-radius: var(--neo-radius-md);
	overflow: hidden;
}

.page-id-721 .elementor-element-fcbc33e .elementor-heading-title {
	font-size: clamp(22px, 2.5vw, 28px) !important;
	line-height: 1.25 !important;
	letter-spacing: -0.02em;
}

.page-id-721 .elementor-element-2005bdd .elementor-button {
	border-radius: var(--neo-radius-pill) !important;
	padding: 14px 28px !important;
	font-family: var(--neo-font-heading);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: none;
	transition: background-color 0.2s var(--neo-ease), opacity 0.2s var(--neo-ease);
}

.page-id-721 .elementor-element-2005bdd .elementor-button:hover {
	background-color: #000 !important;
	opacity: 0.92;
	transform: none;
	box-shadow: none;
}

.page-id-721 .elementor-element-7bfcaaa iframe,
.page-id-721 .elementor-element-8eba448 iframe {
	border: 0;
	border-radius: var(--neo-radius-md);
	box-shadow: var(--neo-shadow-md);
	min-height: 360px;
}

/* --------------------------------------------------------------------------
   Value props row
   -------------------------------------------------------------------------- */

.page-id-721 .elementor-element-e279b9b {
	padding-top: 48px !important;
	padding-bottom: 48px !important;
}

.page-id-721 .elementor-element-e279b9b .icon-box {
	padding: 20px 16px;
	border-radius: var(--neo-radius-md);
	transition: transform 0.3s var(--neo-ease), box-shadow 0.3s var(--neo-ease);
}

.page-id-721 .elementor-element-e279b9b .icon-box:hover {
	transform: translateY(-3px);
	box-shadow: var(--neo-shadow-sm);
}

.page-id-721 .elementor-element-e279b9b .icon_element {
	border-radius: var(--neo-radius-sm) !important;
	transition: transform 0.25s var(--neo-ease);
}

.page-id-721 .elementor-element-e279b9b .icon-box:hover .icon_element {
	transform: scale(1.05);
}

.page-id-721 .elementor-element-e279b9b .icon-text .title.heading-font {
	font-family: var(--neo-font-heading) !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	color: var(--neo-dark) !important;
	letter-spacing: 0.02em;
}

.page-id-721 .elementor-element-e279b9b .icon-text .content p {
	font-family: var(--neo-font-body);
	color: var(--neo-text-soft);
	line-height: 1.65;
	font-size: 14px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.page-id-721 #footer-main {
	padding-top: 56px;
	padding-bottom: 16px;
}

.page-id-721 .footer_widgets_wrapper {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-id-721 .footer_widgets_wrapper .widget-title h6 {
	font-family: var(--neo-font-heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.page-id-721 .footer_widgets_wrapper .textwidget,
.page-id-721 .footer_widgets_wrapper .textwidget p {
	font-family: var(--neo-font-body);
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
}

.page-id-721 .footer_widgets_wrapper a {
	transition: color 0.2s var(--neo-ease);
}

.page-id-721 .footer_widgets_wrapper a:hover {
	color: var(--neo-accent) !important;
}

/* --------------------------------------------------------------------------
   Section rhythm (homepage Elementor sections)
   -------------------------------------------------------------------------- */

.page-id-721 .elementor-721 > .elementor-section:not(.elementor-element-9a0df26) {
	padding-top: clamp(32px, 5vw, 64px);
	padding-bottom: clamp(32px, 5vw, 64px);
}

/* --------------------------------------------------------------------------
   Hero / nav — responsive tweaks
   -------------------------------------------------------------------------- */

/* Narrower desktops: tighten the inline nav so 6 links + CTA never crowd */
@media (min-width: 1025px) and (max-width: 1200px) {
	.page-id-721 .listing-service-right .listing-menu > li > a {
		padding: 9px 12px;
		letter-spacing: 0.06em;
	}

	.page-id-721 .listing-service-right .listing-menu > li > a::after {
		left: 12px;
		right: 12px;
	}

	.page-id-721 .listing-service-right .listing-menu > li.menu-item-724 {
		margin-left: 6px;
	}
}

@media (max-width: 1024px) {
	.page-id-721 {
		--neo-hero-min: clamp(460px, 62vh, 640px);
	}

	.page-id-721 .elementor-element-e0f5964 .stm_rent_car_form_wrapper.style_1 .stm_rent_car_form {
		padding: 22px 18px 20px;
	}

	.page-id-721 .listing-logo-main .bloglogo img {
		max-height: 36px;
	}
}

@media (max-width: 767px) {
	.page-id-721 {
		--neo-hero-min: auto;
	}

	.page-id-721 .header-rental .header-inner-content {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.page-id-721 .elementor-element-9a0df26 {
		padding-top: 28px !important;
		padding-bottom: 36px !important;
		min-height: auto !important;
	}

	.page-id-721 .elementor-element-e0f5964 .stm_rent_car_form_wrapper.style_1 .stm_rent_car_form {
		margin-top: 8px;
		box-shadow: var(--neo-shadow-md);
	}

	.page-id-721 .elementor-element-e279b9b {
		padding-top: 32px !important;
		padding-bottom: 32px !important;
	}

	.page-id-721 .elementor-element-31971c7 .stm_rental_archive_top h3 {
		margin-bottom: 12px;
	}

	.page-id-721 #footer-main {
		padding-top: 40px;
	}
}