/*
Theme Name: Stratos
Theme URI:
Author:
Author URI:
Description: Blank theme for Stratos Rentals.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stratos
*/

/* ------ Base: prevent scrollbar-induced layout shifts ------ */
html {
    scrollbar-gutter: stable;
}

/* ------ Design tokens -------------------------------------- */
:root {
    /* Fonts */
    --bs-font-sans-serif:      "Open Sans", sans-serif;
    --bs-body-font-family:     "Open Sans", sans-serif;

    /* ── Brand blues ──────────────────────────────────────── */
    --color-brand:             #0099cc;   /* primary: accents, hover states      */
    --color-brand-light:       #f0f8fc;   /* very pale tint: nav hover bg        */
    --color-brand-mid:         #4C8AB1;   /* mid: hero btn, pickup title         */
    --color-brand-mid-hover:   #3a6f94;   /* mid hover                           */
    --color-brand-alt:         #3690B6;   /* service card title                  */
    --color-brand-pale:        #eaf4fb;   /* pale bg: content wrap, results head */
    --color-brand-pale-border: #b8d9ee;   /* pale border                         */
    --color-brand-muted:       #cad7e6;   /* muted: price tag bg                 */

    /* ── CTA ─────────────────────────────────────────────── */
    --color-cta:               #f57c00;   /* orange: all Book Now / CTA buttons  */
    --color-cta-hover:         #e65100;   /* darker orange on hover              */

    /* ── Orange ───────────────────────────────────────────── */
    --color-orange-pale:       #ffe0b2;   /* pale orange: price tag bg           */
    --color-orange:            #f57c00;   /* orange accent                       */

    /* ── Text ─────────────────────────────────────────────── */
    --color-text:              #333;      /* primary text                        */
    --color-text-heading:      #1a1a1a;   /* strong headings                     */
    --color-text-body:         #444;      /* body copy                           */
    --color-text-secondary:    #555;      /* secondary / excerpt                 */
    --color-text-muted:        #777;      /* footer bar                          */
    --color-text-faint:        #aaa;      /* footer links, icons                 */
    --color-text-subtle:       #ccc;      /* top bar, footer desc                */
    --color-white:             #fff;

    /* ── Backgrounds ──────────────────────────────────────── */
    --color-bg-white:          #fff;
    --color-bg-light:          #f7f7f7;   /* mobile nav hover                    */
    --color-bg-subtle:         #ededed;   /* pickup section, vehicle specs       */
    --color-bg-topbar:         #4a4a4a;   /* top bar                             */
    --color-bg-footer:         #292c30;   /* footer                              */
    --color-bg-footer-bar:     #1e2124;   /* copyright bar                       */

    /* ── Borders ──────────────────────────────────────────── */
    --color-border:            #e0e0e0;   /* standard                            */
    --color-border-soft:       #ddd;      /* softer                              */
    --color-border-softer:     #dadada;   /* group cards                         */
    --color-border-hover:      #bdbdbd;   /* fleet slide hover                   */
    --color-border-divider:    #f0f0f0;   /* subtle dividers                     */

    /* ── Scrollbar ────────────────────────────────────────── */
    --color-scrollbar-track:   #f1f1f1;
    --color-scrollbar-thumb:   #888;
}

/* ------ Top bar -------------------------------------------- */
.str-top-bar {
    background: var(--color-bg-topbar);
    color: var(--color-text-subtle);
    font-size: 13px;
    padding: 6px 0;
}

.str-top-bar__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.str-top-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-subtle);
    text-decoration: none;
    transition: color 0.2s;
}

.str-top-bar__item:hover {
    color: var(--color-white);
}

/* ------ Main menu ------------------------------------------ */
.str-main-menu {
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    padding: 0 5px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.str-main-menu__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 10px 0;
}

.str-main-menu__col--left  { display: flex; align-items: center; justify-content: flex-start; }
.str-main-menu__col--center { display: flex; align-items: center; justify-content: center; }
.str-main-menu__col--right  { display: flex; align-items: center; justify-content: flex-end; }

.str-main-menu__logo img {
    display: block;
    width: 160px;
    height: auto;
}

.str-main-menu__book-btn {
    display: inline-block;
    padding: 9px 22px;
    background: var(--color-cta);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.str-main-menu__book-btn:hover {
    background: var(--color-cta-hover);
    color: var(--color-white);
}

/* ------ Desktop nav list ----------------------------------- */
.str-main-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.str-main-menu__list li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.str-main-menu__list li a:hover,
.str-main-menu__list li.current-menu-item > a {
    color: var(--color-brand);
    background: var(--color-brand-light);
}

/* ------ Hamburger button ----------------------------------- */
.str-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 12px;
}

.str-hamburger__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ------ Mobile nav drawer ---------------------------------- */
.str-mobile-nav {
    display: none;
    overflow: hidden;
    max-height: 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-white);
    transition: max-height 0.3s ease;
}

.str-mobile-nav--open {
    max-height: 600px;
}

.str-mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.str-mobile-nav__list li a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border-divider);
}

.str-mobile-nav__list li a:hover {
    background: var(--color-bg-light);
    color: var(--color-brand);
}

.str-mobile-nav__book-btn {
    display: block;
    margin: 12px 20px 16px;
    text-align: center;
}

/* ------ Responsive ----------------------------------------- */
@media (max-width: 899px) {
    .str-main-menu__col--desktop-only {
        display: none !important;
    }

    .str-main-menu__book-btn--desktop {
        display: none;
    }

    .str-hamburger {
        display: flex;
    }

    .str-mobile-nav {
        display: block;
    }

    .str-main-menu__inner {
        grid-template-columns: 1fr auto;
    }
}

/* Rentsyst filter sidebar — smaller text & checkboxes */
.rentsyst-wrap-filters .filter__title {
    font-size: 0.875rem;
}
.rentsyst-wrap-filters .filter__item {
    font-size: 0.825rem;
    margin-bottom: 8px !important;
}
.rentsyst-wrap-filters .filter__item .label::before {
    border-width: 1px !important;
}
.rentsyst-wrap-filters .label--car {
    font-size: 0.825rem;
}
.rentsyst-wrap-filters .filter__list {
    padding-left: 6px !important;
}

/* Rentsyst filter sidebar border – mobile/tablet (center layout) */
.rentsyst-wrap-filters.center {
    border: 1px solid var(--color-border) !important;
    border-radius: 8px !important;
}

@media (min-width: 1200px) {
    .rentsyst-wrap-filters.center {
        border: 1px solid var(--color-border) !important;
        border-radius: 8px !important;
    }

    /* Stretch the wrapper to the full flex-row height so sticky
       has scroll range (without this it collapses to content height). */
    .rentsyst-wrap-filters.right {
        align-self: stretch;
        border: none !important;
    }

    /* Border lives on the filter itself so it wraps only the content,
       not the full-height stretched wrapper. */
    #rentsyst-filter {
        border: 1px solid var(--color-border);
        border-radius: 8px;
        overflow: hidden;
    }

    /* Replace rentsyst's position:fixed with sticky so the filter
       stays inside its wrapper (border intact, no layout break).
       !important overrides the inline style rentsyst sets via JS. */
    #rentsyst-filter.rentsyst-enable-fix-position,
    #rentsyst-filter.rentsyst-fixed-filter {
        position: sticky !important;
        top: 110px !important;
    }
}

/* Same fix for the 980px–1199px range where the sidebar is still visible
   but the ≥1200px block above doesn't apply. */
@media (min-width: 980px) and (max-width: 1199px) {
    .rentsyst-wrap-filters.right {
        align-self: stretch;
        border: none !important;
    }

    #rentsyst-filter {
        border: 1px solid var(--color-border);
        border-radius: 8px;
        overflow: hidden;
    }

    #rentsyst-filter.rentsyst-enable-fix-position,
    #rentsyst-filter.rentsyst-fixed-filter {
        position: sticky !important;
        top: 110px !important;
    }
}

/* ------ Override plugin's display:block on catalog images so they centre */
.rentsyst-catalog-item img {
    margin-left: auto;
    margin-right: auto;
}

/* Details column always centred (all breakpoints) */
.rentsyst-catalog-item .container-xl > .row > .col:last-child {
    text-align: center;
}

/* ------ Add border to container-xl */
.container-xl {
    border: 1px solid var(--color-border-soft);
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
    margin-bottom: 20px;
}

/* ------ Global content width constraint (1140px, mirrors menu/rentsyst) */
.page-content {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    width: 100%;
    overflow: visible;
    padding-left: 5px;
    padding-right: 5px;
}

.results__head h3 {
    font-size: 16px;
    padding-top: 6px;
}

.stratos-bg-wrap {
    overflow: hidden; /* prevent row negative-margin bleed */
    width: 100%;
}

.stratos-bg {
    background-image: url('/wp-content/uploads/2025/06/home_carrental_slider.jpg');
    height: 600px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 640px) {
    .stratos-bg {
        height: auto;
    }

    .stratos-bg .row,
    .stratos-bg [class*="col"] {
        height: auto !important;
    }
}

.featured-image {
    max-width: 100%;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.btn-stratos,
.btn.btn-stratos {
    background-color: var(--color-brand);
    color: var(--color-white);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.btn.btn-stratos:hover,
.btn.btn-stratos:focus {
    background-color: var(--color-brand-mid);
    color: var(--color-white);
}
.button-links a {
    text-decoration: none;
}
.button-links {
    white-space: nowrap;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
#rentsyst_page {
    max-width: 1140px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5px;
    padding-right: 5px;
}

/* Force Rentsyst inner wrappers to fill full width */
#rentsyst_page > div,
#rentsyst_page .calculate__content,
#rentsyst_page .results {
    width: 100%;
    min-width: 0;
}

/* Booking page — constrain the widget root to site-wide 1140px */
#rentsyst_frame {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.display-header {
    font-family: "Open Sans", sans-serif;
    font-size: 2.6em;
    font-weight: 600;
    text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.63);
    color: var(--color-white);
}

.carousel-item {
    transition: transform .6s ease-in-out;
    height: 100%; /* Fixed height */
}

.carousel-item img {
    object-fit: cover; /* Ensures images cover the area without distortion */
    height: 100%;
    width: 100%;
}

/* Prevent FOUC (Flash of Unstyled Content) */
.carousel.slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.carousel.slide.carousel-initialized {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 980px) {
    .rentsyst-wrap-filters {
        display: block;
        width: 100%;
        border: 1px solid var(--color-border-soft);
        border-radius: 8px;
        margin-bottom: 20px;
    }
}

/* ------ Filter drawer (≤980px) ----------------------------- */
.str-filter-toggle {
    display: none;
}

.str-filter-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
}

.str-filter-backdrop.is-open {
    display: block;
}


@media (max-width: 980px) {
    /* Hide the filter from normal flow — it becomes a drawer */
    .rentsyst-wrap-filters {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 320px !important;
        max-width: 90vw;
        height: 100dvh;
        overflow-y: hidden;
        z-index: 9999;
        background: var(--color-bg-white);
        border: none !important;
        border-radius: 0 !important;
        padding: 20px !important;
        margin: 0 !important;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
        transition: right 0.3s ease;
    }

    .rentsyst-wrap-filters.drawer-open {
        right: 0;
    }

    /* Let the Rentsyst inner filter handle its own scrolling */
    .rentsyst-wrap-filters .rentsyst-wrap-filter-options {
        max-height: calc(100dvh - 120px) !important;
    }

    /* Results heading row — title left, toggle right */
    .results__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    /* Toggle button inside .results__head */
    .str-filter-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 18px;
        background: var(--color-brand);
        color: var(--color-white);
        border: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
        flex-shrink: 0;
    }

    .str-filter-toggle:hover {
        background: var(--color-brand-mid);
    }
}

/* ------ Fleet cards: horizontal layout at tablet widths -----
   640px–980px: sidebar has collapsed to full width, so cards
   fill the whole viewport. Switch to thumbnail-left / details-right.
   ------------------------------------------------------------ */
@media (min-width: 640px) and (max-width: 980px) {

    /* Override Bootstrap row-cols-md-1 / row-cols-lg-1 stacking —
       target only the outer image/details split row, not nested spec rows */
    .rentsyst-catalog-item .container-xl > .row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        text-align: left;
    }

    /* Image column: 40% width, children centred horizontally */
    .rentsyst-catalog-item .container-xl > .row > .col:first-child {
        flex: 0 0 40%;
        max-width: 40%;
        width: 40%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Prevent any wrapper div from stretching to full width */
    .rentsyst-catalog-item .container-xl > .row > .col:first-child > * {
        max-width: 100%;
        width: auto;
    }

    .rentsyst-catalog-item .container-xl > .row > .col:first-child img {
        max-width: 100%;
        height: auto;
    }

    /* Details column: 60% width, centred */
    .rentsyst-catalog-item .container-xl > .row > .col:last-child {
        flex: 0 0 60%;
        max-width: 60%;
        text-align: center;
        padding: 12px 16px;
    }

    /* Spec rows inside the details column: full width, normal stacking */
    .rentsyst-catalog-item .container-xl > .row > .col:last-child .row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rentsyst-catalog-item .container-xl > .row > .col:last-child .row > .col {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    /* Buttons: allow wrapping at narrow end */
    .rentsyst-catalog-item .button-links {
        white-space: normal;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Slightly tighter heading so it fits the narrower details panel */
    .rentsyst-catalog-item h2 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
}

/* ------ Search bar (home page date picker) ------------------ */
.str-search-bar {
    background: #f5f7fa;
    padding: 0;
}
.str-search-bar__inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}
/* Remove V1 widget's own padding when inside the search bar */
.str-search-bar #rentsyst_frame {
    padding: 0;
    max-width: none;
    margin: 0;
}
.str-search-bar #rentsyst_frame > div {
    padding-top: 0 !important;
}
.str-search-bar__form {
    display: flex;
    align-items: flex-end;
    gap: 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 16px 20px;
    flex-wrap: wrap;
}
.str-search-bar__field {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 16px;
}
.str-search-bar__field:first-child {
    padding-left: 0;
}
.str-search-bar__divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
    align-self: center;
    flex-shrink: 0;
}
.str-search-bar__label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.str-search-bar__label svg {
    color: #1a6fc4;
    flex-shrink: 0;
}
.str-search-bar__input {
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #1a1a1a;
    background: transparent;
    width: 100%;
    padding: 0;
    cursor: pointer;
}
.str-search-bar__input::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
}
.str-search-bar__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 10px 28px;
    background: #1a6fc4;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.str-search-bar__btn:hover {
    background: #155da0;
}

@media (max-width: 680px) {
    .str-search-bar__form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .str-search-bar__divider {
        display: none;
    }
    .str-search-bar__field {
        padding: 0;
    }
    .str-search-bar__btn {
        margin-left: 0;
        justify-content: center;
    }
}

/* ------ Search API form (home page) ------------------------- */
.str-search-api {
    background: var(--color-bg-light);
    padding: 32px 0;
}
.str-search-api__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 5px;
}
.str-search-api__form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 20px 12px;
}
.str-search-api__fields {
    display: flex;
    align-items: flex-end;
    gap: 0;
    flex: 1;
    min-width: 0;
}
.str-search-api__field {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 18px;
    border-right: 1px solid var(--color-border-divider);
}
.str-search-api__field:first-child {
    padding-left: 0;
}
.str-search-api__field:last-of-type {
    border-right: none;
}
.str-search-api__field--submit {
    flex: 0 0 auto;
    border-right: none;
    padding: 0;
    padding-left: 16px;
}
.str-search-api__field label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}
.str-search-api__field input,
.str-search-api__field select {
    border: none;
    outline: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-heading);
    background: transparent;
    width: 100%;
    padding: 4px 0;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}
.str-search-api__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 20px;
    cursor: pointer;
}
.str-search-api__field input::-webkit-calendar-picker-indicator {
    opacity: 0.4;
    cursor: pointer;
}
.str-search-api__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--color-cta);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    font-family: inherit;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.str-search-api__btn:hover {
    background: var(--color-cta-hover);
    transform: translateY(-1px);
}
.str-search-api__btn:active {
    transform: translateY(0);
}

/* ── Select2 overrides inside the search form ─────────────────────────────── */

/* Hide the native select (Select2 replaces it) */
.str-search-api__field .select2-container {
    width: 100% !important;
}
.str-search-api__field .select2-selection--single {
    height: auto !important;
    border: 1px solid var(--color-border) !important;
    background: transparent;
    outline: none;
    padding: 0;
    box-shadow: none;
}
.str-search-api__field .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: 1.4;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-heading);
    font-family: inherit;
}
.str-search-api__field .select2-selection--single .select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%);
    right: 0 !important;
    height: auto !important;
}
.str-search-api__field .select2-selection--single .select2-selection__arrow b {
    border-color: var(--color-text-muted) transparent transparent;
    border-width: 5px 4px 0;
}
.str-search-api__field .select2-container--open .select2-selection__arrow b {
    border-color: transparent transparent var(--color-text-muted);
    border-width: 0 4px 5px;
}
/* Placeholder colour when no address confirmed yet */
.str-sel2-placeholder {
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Dropdown panel */
.str-sel2-dropdown.select2-dropdown {
    border: 1px solid var(--color-border-divider);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    overflow: hidden;
    font-family: inherit;
    font-size: 0.85rem;
}
.str-sel2-dropdown .select2-results__option {
    padding: 8px 14px;
    color: var(--color-text-heading);
    font-size: 0.85rem;
    font-weight: 500;
}
.str-sel2-dropdown .select2-results__option--highlighted {
    background: #fef3e6;
    color: var(--color-cta);
}
.str-sel2-dropdown .select2-results__option[aria-selected="true"] {
    background: #fff4e8;
    color: var(--color-cta);
    font-weight: 600;
}
/* "Choose on map…" option row — separator + neutral bg so button stands out */
.str-sel2-dropdown .select2-results__option:has(.str-sel2-map-opt) {
    border-top: 1px solid var(--color-border-divider);
    padding: 8px 14px;
    background: #fafafa !important;
}
.str-sel2-dropdown .select2-results__option--highlighted:has(.str-sel2-map-opt) {
    background: #f5f5f5 !important;
}
/* The button-like chip inside the option — full width */
.str-sel2-map-opt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 6px 10px;
    background: #fff4e8;
    color: var(--color-cta);
    border: 1px solid #f5c58a;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    box-sizing: border-box;
}

/* ── Custom date-time picker ─────────────────────────────────────────────── */
.str-dtp { width: 100%; }

.str-dtp__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--color-text-heading);
    text-align: left;
    font-weight: 500;
}
.str-dtp__trigger svg { flex-shrink: 0; color: var(--color-text-muted); }
.str-dtp__display { flex: 1; }

/* Panel */
.str-dtp__panel {
    background: #fff;
    border: 1px solid var(--color-border-divider);
    border-radius: 14px;
    box-shadow: 0 10px 36px rgba(0,0,0,0.13);
    overflow: hidden;
}

/* Calendar */
.str-dtp__cal { padding: 14px 14px 10px; width: 234px; }

.str-dtp__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.str-dtp__prev, .str-dtp__next {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--color-text-muted);
    padding: 2px 7px;
    border-radius: 6px;
    line-height: 1;
}
.str-dtp__prev:hover, .str-dtp__next:hover {
    background: #f5f5f5;
    color: var(--color-text-heading);
}
.str-dtp__month-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-heading);
}
.str-dtp__head, .str-dtp__cal-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.str-dtp__head span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: center;
    padding: 3px 0 6px;
}
.str-dtp__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    color: var(--color-text-heading);
}
.str-dtp__day:not(.--dis):not([data-d=""]):hover { background: #fef3e6; color: var(--color-cta); }
.str-dtp__day.--sel { background: var(--color-cta); color: #fff; font-weight: 700; }
.str-dtp__day.--today:not(.--sel) { color: var(--color-cta); font-weight: 700; }
.str-dtp__day.--dis { color: #d0d0d0; cursor: default; pointer-events: none; }

/* Time columns */
.str-dtp__time {
    display: flex;
    border-left: 1px solid var(--color-border-divider);
}
.str-dtp__hour-list,
.str-dtp__min-list {
    list-style: none;
    margin: 0;
    padding: 90px 0;    /* lets first/last item scroll to center */
    width: 52px;
    overflow-y: scroll;
    height: 200px;
    scroll-behavior: smooth;
    scrollbar-width: none;    /* Firefox */
    -ms-overflow-style: none; /* IE */
}
.str-dtp__hour-list::-webkit-scrollbar,
.str-dtp__min-list::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.str-dtp__hour-list { border-right: 1px solid var(--color-border-divider); }

.str-dtp__t-item {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
}
.str-dtp__t-item:hover { color: var(--color-cta); background: #fef3e6; }
.str-dtp__t-item.--sel { color: var(--color-cta); font-weight: 700; font-size: 0.95rem; }
.str-dtp__hour-list .str-dtp__t-item.--dis { display: none; }
.str-dtp__min-list  .str-dtp__t-item.--dis { opacity: 0.3; cursor: default; pointer-events: none; }

/* ── Vehicle info / requirements panel ──────────────────────────────────── */
.vehicle-info-panel {
    margin-top: 24px;
}
.vehicle-info-panel__inner {
    padding: 18px 22px;
    background: #f0f6ff;
    border-left: 4px solid #1a6fc4;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.vehicle-info-panel__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a6fc4;
    margin-bottom: 10px;
}
.vehicle-info-panel__title svg { flex-shrink: 0; }
.vehicle-info-panel__content p:last-child { margin-bottom: 0; }

/* ── Map picker modal ──────────────────────────────────────────────────────── */
.str-map-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.str-map-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
}
.str-map-modal__box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    max-width: none;
    max-height: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.str-map-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--color-border-divider);
    flex-shrink: 0;
}
.str-map-modal__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-heading);
    letter-spacing: 0.01em;
}
.str-map-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.str-map-modal__close:hover {
    background: #f5f5f5;
    color: var(--color-text-heading);
}
.str-map-modal__search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--color-border-divider);
    flex-shrink: 0;
    color: var(--color-text-muted);
}
.str-map-modal__search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--color-text-heading);
}
.str-map-modal__search input::placeholder {
    color: var(--color-text-muted);
}
.str-map-modal__hint {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    padding: 6px 16px 4px;
    flex-shrink: 0;
}
.str-map-modal__map {
    flex: 1;
    min-height: 340px;
}
.str-map-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    border-top: 1px solid var(--color-border-divider);
    flex-shrink: 0;
}
.str-map-modal__selected {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.str-map-modal__confirm {
    padding: 9px 22px;
    background: var(--color-cta);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s, opacity 0.15s;
}
.str-map-modal__confirm:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.str-map-modal__confirm:not(:disabled):hover {
    background: var(--color-cta-hover);
}

/* Google Places dropdown inside modal */
.pac-container {
    z-index: 100001;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border: 1px solid var(--color-border-divider);
    font-family: inherit;
}
.pac-item {
    font-size: 0.8rem;
    padding: 6px 12px;
    cursor: pointer;
}
.pac-item:hover,
.pac-item-selected {
    background: #fef3e6;
}
.pac-item-query {
    font-size: 0.85rem;
    color: var(--color-text-heading);
}

@media (max-width: 500px) {
    .str-map-modal__map { min-height: 240px; }
    .str-map-modal__footer { flex-direction: column; align-items: stretch; }
    .str-map-modal__selected { white-space: normal; }
}

@media (max-width: 1100px) {
    /* Form wraps: fields take full width, button drops below */
    .str-search-api__form {
        flex-wrap: wrap;
    }
    .str-search-api__fields {
        flex: 1 1 100%;
        flex-wrap: wrap;
        gap: 12px;
    }
    /* 2 fields per row */
    .str-search-api__field {
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
        border-right: none;
        padding: 0;
        border-bottom: 1px solid var(--color-border-divider);
        padding-bottom: 10px;
    }
    /* Last row of fields (last 2): no bottom divider */
    .str-search-api__fields .str-search-api__field:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }
    .str-search-api__btn {
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* 1 field per row */
    .str-search-api__field {
        flex: 1 1 100%;
    }
    /* Second-to-last field is no longer in the last row — restore its divider */
    .str-search-api__fields .str-search-api__field:nth-last-child(2) {
        border-bottom: 1px solid var(--color-border-divider);
        padding-bottom: 10px;
    }
}

/* ------ Booking summary panel (booking page) ---------------- */
.str-booking-summary {
    padding: 16px 20px;
    max-width: 1140px;
    margin: 20px auto;
}
.str-booking-summary__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    background: #fff;
    border: 2px solid var(--color-cta);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 4px 18px rgba(245, 124, 0, 0.08);
}
.str-booking-summary__item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.str-booking-summary__icon {
    color: var(--color-cta);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.str-booking-summary__label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-text-muted);
    line-height: 1;
    margin-bottom: 2px;
}
.str-booking-summary__value {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-heading);
    line-height: 1;
    white-space: nowrap;
}
.str-booking-summary__divider {
    color: var(--color-border-divider);
    font-size: 1rem;
    flex-shrink: 0;
}
.str-booking-summary__edit {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-cta);
    text-decoration: none;
    padding: 6px 12px;
    border: 1.5px solid var(--color-cta);
    border-radius: 8px;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}
.str-booking-summary__edit:hover {
    background: var(--color-cta);
    color: #fff;
}
@media (max-width: 640px) {
    .str-booking-summary { padding: 12px 16px; }
    .str-booking-summary__divider--hide-mobile { display: none; }
    .str-booking-summary__inner { gap: 12px; }
    .str-booking-summary__value { white-space: normal; }
}

/* ------ Fleet Swiper ---------------------------------------- */
.fleet-swiper-container {
    margin-top: 20px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5px;
    padding-right: 5px;
}

.fleet-swiper {
    overflow: visible;
    padding-right: 2px;
    box-sizing: content-box;
}

.fleet-swiper .swiper-slide {
    width: 150px;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: border-color 0.3s ease;
    background: var(--color-bg-white);
}

.fleet-swiper .swiper-slide .item-link {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fleet-swiper .swiper-slide .item-title {
    flex: 1;
}

.fleet-swiper .swiper-slide:hover {
    border-color: var(--color-border-hover);
}

.fleet-swiper .swiper-slide:last-child {
    margin-right: 0 !important;
}

.fleet-swiper .swiper-button-prev,
.fleet-swiper .swiper-button-next {
    color: var(--color-text);
}

.fleet-swiper .swiper-button-prev:after,
.fleet-swiper .swiper-button-next:after {
    font-size: 18px;
    font-weight: 700;
}

.item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.item-image {
    height: 100px;
    overflow: hidden;
    padding: 5px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.horizontal-scroll-item:hover .item-image img {
    transform: scale(1.05);
}

.item-title {
    padding: 15px;
    background-color: var(--color-bg-white);
    text-align: center;
    text-decoration: none;
}

.item-title h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
}

/* Custom scrollbar styling for the items container */
.horizontal-scroll-items::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroll-items::-webkit-scrollbar-track {
    background: var(--color-scrollbar-track);
    border-radius: 10px;
}

.horizontal-scroll-items::-webkit-scrollbar-thumb {
    background: var(--color-scrollbar-thumb);
    border-radius: 10px;
}

.horizontal-scroll-items::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-secondary);
}

/* Hide scrollbar */
.horizontal-scroll-items::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll-items {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Center items when screen is larger than 800px */
@media (min-width: 1999px) {
    .horizontal-scroll-items {
        justify-content: center;
    }
}

/* Scroll arrow styles */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border-soft);
    color: var(--color-text);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    pointer-events: auto;
}

@media (max-width: 600px) {
    .scroll-arrow {
        display: none;
    }
}

.scroll-arrow:hover {
    background-color: var(--color-bg-white);
}

.scroll-arrow:focus {
    outline: none;
}

.scroll-arrow.arrow-active {
    background-color: var(--color-border-divider);
    transform: translateY(-50%) scale(0.95);
}

.scroll-left {
    left: 0px;
}

.scroll-right {
    right: 0px;
}

.horizontal-scroll-items.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.horizontal-scroll-items {
    cursor: grab;
    cursor: -webkit-grab;
}

.included-groups {
    display: none;
}

.rentsyst-catalog-item {
    padding: 0;
}

.vehicle-specs {
    background-color: #f0f6ff;
    border-radius: 10px;
    overflow: hidden;
}

.single-vehicle-specs-price {
    background-color: var(--color-bg-subtle);
    padding: 20px 0;
    border-radius: 8px;
}

.single-vehicle-specs-price .col-12 {
    padding: 10px;
}

.single-vehicle-specs-price .rentsyst-booking {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.rentsyst-price-per-day {
    background-color: var(--color-cta);
    color: var(--color-white);
    border: 1px solid var(--color-cta-hover);
    border-radius: 8px;
    padding: 10px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-container {
    background-color: var(--color-orange-pale);
    border: 1px solid var(--color-cta-hover);
    border-radius: 8px;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rentsyst-price-per-day p {
    margin-bottom: 0;
}

.rentsyst-price-per-day::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.specifications > div {
    padding: 6px 10px;
    border-radius: 4px;
}

.specifications > div:nth-child(odd) {
    background-color: #f0f6ff;
}

.specifications > div:nth-child(even) {
    background-color: #ffffff;
}

.has-cyan-bluish-gray-color {
    color: var(--color-brand);
    font-weight: 600;
}

.str-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--color-text-muted);
    gap: 12px;
}

.str-no-results svg {
    opacity: 0.35;
    color: var(--color-brand);
}

.str-no-results p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.str-no-results a {
    color: var(--color-brand);
    text-decoration: underline;
}

.results__head {
    padding: 10px 16px;
    background: var(--color-brand-pale);
    border: 1px solid var(--color-brand-pale-border);
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.rentsyst-form-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 10px;
    width: 100%;
    box-sizing: border-box;
}

.str-filter-btn {
    width: 100%;
    display: block;
    padding: 9px 12px;
    box-sizing: border-box;
    margin: 0;
    margin-top: 5px !important;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.rentsyst-filter-submit {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
}

.str-filter-btn--reset {
    background: var(--color-cta);
    color: var(--color-white);
    transition: background 0.2s;
}

.str-filter-btn--reset:hover {
    background: var(--color-cta-hover);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .fleet-thumb {
        max-height: 350px;
        height: 350px;
    }
}

/* ------ Site footer ---------------------------------------- */
.str-footer {
    background: var(--color-bg-footer);
    color: var(--color-text-subtle);
    font-size: 14px;
}

.str-footer__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 20px 32px;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 40px;
}

.str-footer__logo-link img {
    display: block;
    max-width: 200px;
    height: auto;
    margin-bottom: 16px;
}

.str-footer__desc {
    line-height: 1.6;
    color: var(--color-white);
    margin: 0;
}

.str-footer__heading {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 16px;
}

.str-footer__licence {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--color-text-faint);
    line-height: 1.7;
}

.str-footer__licence-img {
    width: 48px;
    height: auto;
    flex-shrink: 0;
    margin-top: 2px;
}

.str-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.str-footer__links li + li {
    margin-top: 8px;
}

.str-footer__links a {
    color: var(--color-text-faint);
    text-decoration: none;
    transition: color 0.2s;
}

.str-footer__links a:hover {
    color: var(--color-white);
}

.str-footer__contact {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.str-footer__contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-faint);
    text-decoration: none;
    transition: color 0.2s;
}

.str-footer__contact a:hover {
    color: var(--color-white);
}

.str-footer__contact svg {
    width: 16px;
    height: 16px;
    fill: var(--color-text-faint);
    flex-shrink: 0;
}

.str-footer__contact a:hover svg {
    fill: var(--color-white);
}

.str-footer__social {
    margin-bottom: 20px;
}

.str-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s;
}

.str-footer__social-link:hover {
    background: var(--color-brand);
}

.str-footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--color-white);
}

.str-footer__payments {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 8px;
    justify-content: start;
}

.str-footer__payments img {
    height: 32px;
    width: auto;
    border-radius: 4px;
    background: var(--color-bg-white);
    padding: 2px 4px;
}

/* Copyright bar */
.str-footer__bar {
    background: var(--color-bg-footer-bar);
    text-align: center;
    padding: 14px 20px;
    color: var(--color-text-muted);
    font-size: 13px;
}

.str-footer__bar p {
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .str-footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .str-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 16px 24px;
    }
}

/* ------ Hero Slider --------------------------------------- */
.str-hero-slider {
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.str-hero-swiper {
    width: 100%;
    height: 620px;
}

.str-page-banner-swiper {
    width: 100%;
    min-height: 480px;
}

@media (max-width: 768px) {
    .str-page-banner-swiper {
        min-height: 320px;
    }
    .str-page-banner .str-hero-slide__text,
    .str-page-banner .str-hero-slide__body,
    .str-page-banner .str-hero-slide__body * {
        color: #333 !important;
    }
}

.str-hero-slide {
    height: 100%;
}

/* Constrained inner: two columns — image left, text right */
.str-hero-slide__inner {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1140px;
    margin: 0 auto;
    gap: 40px;
}

.str-hero-slide__image {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.str-hero-slide__image img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
}
.str-hero-slide__image--vehicle img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.str-hero-slide__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    color: var(--color-white);
}

.str-hero-slide__title {
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.str-page-banner__logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 8px;
}

.str-hero-slide__body {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.str-hero-slide__body p {
    margin: 0;
}

.str-hero-slide__body ul,
.str-hero-slide__body ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.str-hero-slide__btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--color-cta);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.str-hero-slide__btn:hover {
    background: var(--color-cta-hover);
    color: var(--color-white);
}

.str-hero-swiper .swiper-button-prev,
.str-hero-swiper .swiper-button-next {
    color: var(--color-white);
}

.str-hero-swiper .swiper-pagination-bullet {
    background: var(--color-white);
    opacity: 0.6;
}

.str-hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 767px) {
    .str-hero-swiper {
        height: auto;
        min-height: 480px;
    }

    .str-hero-slide__inner {
        flex-direction: column;
        justify-content: flex-end;
        padding: 24px 20px;
        gap: 16px;
    }

    .str-hero-slide__image {
        flex: 0 0 auto;
        height: 220px;
        width: 100%;
    }

    .str-hero-slide__text {
        align-items: center;
        text-align: center;
    }
}

/* ------ Pick Up & Drop Off --------------------------------- */
.str-pickup {
    background: var(--color-bg-subtle);
}

.str-pickup__box {
    max-width: 1140px;
    margin: 0 auto;
    min-height: 340px;
    height: 500px;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}

.str-pickup__text {
    padding: 48px 40px;
    text-align: center;
}

.str-pickup__inner {
    max-width: 480px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 32px;
}

.str-pickup__title {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 20px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: var(--color-brand-mid);
}

.str-pickup__body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-body);
}

.str-pickup__image {
    min-height: 300px;
}

@media (max-width: 768px) {
    .str-pickup__box {
        height: auto;
        background-image: none !important;
    }

    .str-pickup__inner {
        background: none;
        border: none;
        border-radius: 0;
        padding: 0;
    }

    .str-pickup__image {
        display: none;
    }

    .str-pickup__text {
        padding: 32px 20px;
    }
}

/* ------ Services ------------------------------------------ */
.str-services {
    padding: 60px 0;
}

.str-services__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.str-services__heading {
    text-align: center;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    margin: 0 0 40px;
    color: var(--color-text-heading);
}

.str-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 32px;
}

.str-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.str-service-card__image {
    flex-shrink: 0;
}

.str-service-card__image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.str-service-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.str-service-card__title {
    font-family: "Open Sans", sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-brand-alt);
    margin: 0 0 6px;
}

.str-service-card__excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-text-secondary);
    margin: 0;
}

@media (max-width: 991px) {
    .str-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .str-services__grid {
        grid-template-columns: 1fr;
    }
}

/* ------ Reviews ------------------------------------------- */
.str-reviews {
    padding: 60px 0;
    background: var(--color-bg-light);
}

.str-reviews__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.str-reviews__heading {
    text-align: center;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    margin: 0;
    color: var(--color-text-heading);
}

.str-reviews__cta {
    text-align: center;
}


/* ------ Group carousel ------------------------------------ */
.str-group-carousel {
    padding: 40px 0;
}

.str-group-carousel__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 5px;
    overflow: hidden;
}

.str-group-swiper {
    overflow: visible;
}

.str-group-swiper .swiper-wrapper {
    align-items: stretch;
}

.str-group-swiper .swiper-slide {
    height: auto;
}

.str-group-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border-softer);
    border-radius: 3px;
    padding: 10px;
    box-sizing: border-box;
    height: 100%;
}

.str-group-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.str-group-card__link:hover {
    text-decoration: none;
    color: inherit;
}

.str-group-card__image {
    height: 250px;
    flex-shrink: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.str-group-card__body {
    min-height: 130px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    align-self: flex-start;
    width: 100%;
}

.str-group-card__title {
    font-family: "Open Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    color: var(--color-text);
}

.str-group-card__excerpt {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.str-group-card__features {
    list-style: none;
    margin-top: auto;
    padding: 0;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-text);
}

.str-group-card__features li {
    padding: 5px 8px;
    border-bottom: 1px solid var(--color-border-divider);
}

.str-group-card__features li:nth-child(odd) {
    background-color: var(--color-bg-light);
}

.str-group-card__features li:nth-child(even) {
    background-color: var(--color-bg-white);
}

.str-group-card__features li:last-child {
    border-bottom: none;
}

.str-group-swiper .swiper-button-prev,
.str-group-swiper .swiper-button-next {
    color: var(--color-text);
}

.str-group-swiper .swiper-button-prev:after,
.str-group-swiper .swiper-button-next:after {
    font-size: 18px;
    font-weight: 700;
}

/* ── Page content wrapper ────────────────────────────── */
.str-content-wrap > *:last-child {
    margin-bottom: 0;
}

.str-content-wrap {
    max-width: 1140px;
    margin: 50px auto 0;
    padding: 30px 40px;
    text-align: center;
    background-color: var(--color-brand-pale);
    border: 1px solid var(--color-brand-pale-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.str-page-banner .str-hero-slide__inner {
    padding-top: 60px;
    padding-bottom: 60px;
}

.str-content-wrap > ul,
.str-content-wrap > ol {
    text-align: left;
    display: inline-block;
    padding-left: 1.5em;
}

.str-content-wrap ul ul,
.str-content-wrap ul ol,
.str-content-wrap ol ul,
.str-content-wrap ol ol {
    display: list-item;
    padding-left: 1.5em;
}