/*fonts-css-start---*/

@font-face {
    font-family: 'Outfit-Regular';
    src: url('./fonts/Outfit-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit-Bold';
    src: url('./fonts/Outfit-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit-Medium';
    src: url('./fonts/Outfit-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit-SemiBold';
    src: url('./fonts/Outfit-SemiBold.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit-Light';
    src: url('./fonts/Outfit-Light.ttf');
    font-weight: normal;
    font-style: normal;
}

/*end-font-css----*/

/* Design Tokens */
:root {
    --dark-navy:    #111c30;
    --navy-blue:    #1b3f94;
    --main-blue:    #0c2652;
    --light-blue:   #56b7e2;
    --gray-text:    #737f95;
    --border-color: #EFF4FB;
}

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

body {
    font-family: 'Outfit-Regular';
    color: var(--dark-navy);
    margin: 0;
    padding: 0;
    position: relative;
}

/* Global Element Selectors */
h1 {
    font-family: 'Outfit-Medium';
    font-style: normal;
    font-size: 40px;
    line-height: 50px;
    color: var(--navy-blue);
    margin: 0;
}

h2 {
    font-size: 30px;
    line-height: 38px;
    font-family: 'Outfit-SemiBold';
    font-style: normal;
    color: var(--dark-navy);
    margin: 0;
}

h3 {
    font-size: 24px;
    line-height: 30px;
    font-style: normal;
    font-weight: normal;
    margin: 0;
}

h4 {
    font-family: 'Outfit-Medium';
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    color: var(--main-blue);
    margin: 0;
}

h5 {
    font-family: 'Outfit-Regular';
    font-size: 18px;
    line-height: 24px;
    color: var(--gray-text);
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-text);
    font-style: normal;
    margin: 0;
}

span {
    font-size: 12px;
    line-height: 18px;
    color: var(--dark-navy);
    font-style: normal;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

li {
    list-style: none;
}

b {
    font-family: 'Outfit-SemiBold';
    font-weight: normal;
}

/* Global Form Styling */
.form-control:focus {
    box-shadow: none;
    border-color: var(--navy-blue);
}

/* Global Utility Classes */
.padd_80 {
    padding: 80px 0;
}

.bg-blue {
    background: var(--main-blue);
}

.align-text {
    align-items: start;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.relative {
    position: relative;
}

.text-bottom {
    position: absolute;
    width: 100%;
    bottom: 40px;
    align-items: center;
}

.text-bottom h2,
.text-bottom p {
    color: #fff;
}

.text-bottom .text-align-right {
    text-align: right;
}

.navbar-nav .nav-link {
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    text-decoration: none;
}

.fixed-body {
    overflow: hidden;
}

.fixed-body::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.47);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.overlay-blue {
    position: relative;
}

.overlay-blue::before {
    content: "";
    background: linear-gradient(180deg, rgba(27, 63, 148, 0) 0%, rgba(27, 63, 148, 0.49) 41.94%, var(--navy-blue) 88.5%);
    opacity: 0.4;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay-gray {
    position: relative;
}

.overlay-gray::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.43);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.py-150 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.pt-250 {
    padding-top: 250px;
}

.mt-100 {
    margin-top: 100px;
}

/* Common Buttons */
.btn-light-blue {
    background-color: var(--light-blue);
    color: var(--main-blue);
    border-radius: 10px;
    padding: 15px 20px;
    font-family: 'Outfit-Medium';
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    display: inline-block;
    text-decoration: none;
}

.btn-light-blue:hover {
    border: 1px solid var(--light-blue);
    background-color: #fff;
    color: var(--navy-blue);
}

.btn-dark-navy {
    background-color: var(--dark-navy);
    color: #fff;
    border-radius: 10px;
    padding: 15px 30px;
    font-family: 'Outfit-Medium';
    font-size: 14px;
    transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
    border: 1px solid transparent;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn-dark-navy:hover {
    background-color: var(--main-blue);
    color: #fff;
}

.btn-main-blue {
    background-color: var(--main-blue);
    color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    font-family: 'Outfit-Medium';
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    display: inline-block;
    text-decoration: none;
}

.btn-main-blue:hover {
    border: 1px solid var(--main-blue);
    background-color: #fff;
    color: var(--main-blue);
}

.btn-outline-blue {
    background-color: transparent;
    color: var(--light-blue);
    border: 2px solid var(--light-blue);
    padding: 8px 20px;
    border-radius: 10px;
    font-family: 'Outfit-Medium';
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-blue:hover {
    background-color: var(--main-blue);
    color: #fff;
    border: 2px solid var(--main-blue);
}

/* Common Layout */
.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.bg-grey {
    background: var(--border-color);
}

.bg-main-blue {
    background-color: var(--main-blue);
}

/* HEADER */

.inchcape-header {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

/* Utility Bar */
.top-head {
    background: var(--main-blue);
    overflow: hidden;
}

.blue-background {
    position: relative;
}

.tophead-bgcolor {
    background-color: #56b7e2;
    height: 58px;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tophead-bgcolor::before {
    content: "";
    background-image: url("images/top-curve.svg");
    width: 91px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: -90px;
    z-index: 1;
}

.tophead-bgcolor::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100%;
    background: #56b7e2;
    z-index: 0;
}

.tophead-link {
    color: #0c2652;
    font-size: 15px;
    font-family: 'Outfit-Medium';
    text-decoration: none;
    padding: 5px 18px;
    border-right: 1px solid rgba(12,38,82,0.3);
    white-space: nowrap;
    display: block;
    line-height: 1;
}

.tophead-link:hover {
    opacity: 0.75;
}

.tophead-phone {
    color: #0c2652;
    font-size: 15px;
    font-family: 'Outfit-SemiBold';
    padding: 5px 18px;
    white-space: nowrap;
}

/* Main Nav */
.main-nav {
    background: var(--main-blue);
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.logo-img {
    width: 200px;
    display: block;
}

.logo-text-fallback {
    display: none;
    color: #fff;
    font-size: 22px;
    font-family: 'Outfit-SemiBold';
    letter-spacing: 2px;
}

.main-nav .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
}

.main-nav .navbar-brand .logo-img {
    margin-top: -50px;
}

@media (max-width: 1199.98px) {
    .main-nav .navbar-brand .logo-img {
        margin-top: 0;
        width: 140px;
    }
    .main-nav {
        padding: 16px 0;
    }
}

/* Site-wide Search Bar */
.search-field,
.site-search-bar {
    background: #fff;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-in-out,
                opacity 0.4s ease-in-out;
    position: relative;
    z-index: 100;
}
.search-field.open,
.site-search-bar.open {
    max-height: 80px;
    opacity: 1;
}

.search-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid #EFF4FB;
}

.search-bar-inner img {
    flex-shrink: 0;
    opacity: 0.5;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: 'Outfit-Regular';
    color: var(--dark-navy);
    background: transparent;
}

.search-input::placeholder {
    color: var(--gray-text);
}

.search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    flex-shrink: 0;
}

.search-divider {
    color: #d0d5de;
    font-size: 22px;
    line-height: 1;
    font-weight: 200;
}

.nav-link-custom {
    color: #fff !important;
    font-size: 15px;
    font-family: 'Outfit-Medium';
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 30px;
}

.nav-link-custom:hover,
.nav-link-custom:focus {
    color: var(--light-blue) !important;
    opacity: 1;
}

.btn-nav-search {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.btn-nav-search:hover {
    opacity: 0.8;
}

.mobile-search-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.mobile-search-icon:hover {
    opacity: 0.8;
}

/* Hamburger toggler */
.nav-toggler {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    line-height: 1;
}

.nav-toggler:focus {
    outline: none;
}

/* Mobile slide-in panel */
@media (max-width: 1199.98px) {
    #mainNavMenu {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0c2652;
        z-index: 1055;
        transition: right 0.32s ease-in-out;
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 90px;
    }
    #mainNavMenu.show {
        right: 0;
    }
    #mainNavMenu.collapsing {
        height: 100vh !important;
        transition: right 0.32s ease-in-out;
    }
}

/* Backdrop */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1050;
    cursor: pointer;
}

.mobile-nav-backdrop.active {
    display: block;
}

/* Panel header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 20px 26px;
    margin-top: 18px;
    border-bottom: 1px solid #EFF4FB;
}

.mobile-menu-header span {
    color: #fff;
    font-size: 17px;
    font-family: 'Outfit-SemiBold';
}

.mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    line-height: 1;
}

.mobile-close-btn img {
    display: block;
}

/* Mobile nav list */
.mobile-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
    font-family: 'Outfit-Medium';
    text-decoration: none;
    border-bottom: 1px solid #EFF4FB;
}

.mobile-nav-link:hover {
    color: #56b7e2;
}

.mobile-brands-chevron {
    transition: all 0.3s ease-in-out;
    font-size: 12px;
}
.mobile-brands-open .mobile-brands-chevron { transform: rotate(180deg); }

.mobile-brands-submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.65s ease-in-out,
                opacity 0.5s ease-in-out;
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(0,0,0,0.18);
}

.mobile-brands-submenu.open {
    max-height: 600px;
    opacity: 1;
}

.mobile-brand-link {
    display: flex;
    align-items: center;
    padding: 12px 20px 12px 30px;
    color: #737f95;
    font-size: 15px;
    font-family: 'Outfit-Regular';
    text-decoration: none;
    border-bottom: 1px solid #EFF4FB;
}

.mobile-brand-link--toggle {
    justify-content: space-between;
}

.mobile-brand-link:hover {
    color: #fff;
}

.mobile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EFF4FB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 14px;
}

.mobile-circle img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.mobile-nav-item-util > .mobile-nav-link {
    border-top: 3px solid rgba(255,255,255,0.1);
}

/* Contact bar pinned to panel bottom */
.mobile-contact-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #18bde6;
    padding: 16px 20px;
}

.mobile-contact-bar h4 {
    color: #0c2652;
    font-size: 15px;
    font-family: 'Outfit-SemiBold';
    margin: 0 0 3px;
}

.mobile-contact-bar span {
    color: #0c2652;
    font-size: 13px;
}

/* Brands dropdown (desktop) */
.nav-link-custom.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle-chevron {
    font-size: 11px;
    color: #fff;
    margin-left: 6px;
    opacity: 0.9;
}

.fleet-dropdown .dropdown-toggle-chevron { font-size: 11px; margin-left: 4px; }

/* Fleet submenu hover */
.fleet-has-submenu { position: relative; }
.fleet-submenu-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fleet-sub-arrow {
    font-size: 11px;
    color: #aaa;
    margin-left: 12px;
    transition: transform 0.2s;
}
.fleet-submenu {
    display: block !important;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border: none;
    border-top: 6px solid var(--main-blue);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    padding: 10px 0;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.fleet-has-submenu:hover .fleet-submenu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
}
.fleet-submenu .brand-item,
.fleet-submenu .dropdown-item {
    padding: 12px 20px;
    font-size: 15px;
    color: var(--dark-navy);
    transition: background 0.2s, color 0.2s;
    display: block;
    text-decoration: none;
}
.fleet-submenu .brand-item:hover,
.fleet-submenu .dropdown-item:hover {
    background: #f0f4fb;
    color: var(--main-blue);
}

.brands-dropdown {
    background: #fff;
    border: none;
    border-top: 6px solid var(--main-blue);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    padding: 10px 0;
    min-width: 300px;
    margin-top: 8px !important;
    display: block !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.dropdown:hover .brands-dropdown,
.brands-dropdown.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.brands-dropdown::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease-in-out;
}

.brand-item:hover {
    background: var(--border-color);
    border-radius: 8px;
}

.brand-logo-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f4f4f4;
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.brand-logo-circle img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand-item-name {
    font-size: 16px;
    font-family: 'Outfit-Medium';
    color: var(--dark-navy);
}

.brand-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 4px 20px;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--main-blue);
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
        rgba(12,38,82,0.10) 0%,
        rgba(12,38,82,0.20) 35%,
        rgba(12,38,82,0.72) 68%,
        rgba(12,38,82,0.90) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 40px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
}

.bc-home {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

.bc-home:hover {
    opacity: 0.8;
}

.bc-sep {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
}

.bc-page {
    color: #fff;
    font-size: 14px;
    font-family: 'Outfit-Medium';
}

.hero-title {
    font-size: 30px;
    font-family: 'Outfit-Medium';
    color: #fff;
    margin: 0 0 10px;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin: 0;
    max-width: 540px;
    line-height: 1.55;
}

.hero-icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.hero-icon-bi {
    font-size: 42px;
    color: rgba(255,255,255,0.85);
    display: none;
}

/* FORM AREA */
.section-hr {
    border: none;
    border-top: 2px solid #d4dce8;
    margin: 50px 0;
}

.s-label h2 {
    font-size: 20px;
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    margin: 0 0 6px;
    line-height: 1.3;
    white-space: nowrap;
}

.s-label .desc {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

.s-label .note {
    font-size: 13px;
    font-family: 'Outfit-Regular';
    color: var(--gray-text);
    margin: 2px 0 0;
}

.f-label {
    display: block;
    font-size: 14px;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.f-input {
    display: block;
    width: 100%;
    height: 50px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    font-family: 'Outfit-Regular';
    color: var(--dark-navy);
    background: #fff;
    outline: none;
    transition: all 0.3s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}

.f-input:focus {
    border-color: var(--main-blue);
}

.f-input::placeholder {
    color: var(--gray-text);
}

.f-input.has-icon {
    padding-right: 44px;
}

textarea.f-input {
    height: 154px;
    padding: 14px 16px;
    resize: none;
}

.f-input.is-invalid,
.f-select.is-invalid {
    border-color: #dc3545 !important;
}

.f-input.is-invalid:focus,
.f-select.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.f-error-msg {
    display: none;
    font-size: 12px;
    color: #dc3545;
    margin-top: 5px;
}

.f-error-msg.visible {
    display: block;
}

.f-icon-wrap {
    position: relative;
}

.cal-trigger {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
}

.cal-trigger img {
    width: 20px;
    height: 20px;
    pointer-events: none;
    display: block;
}

.cal-trigger .bi {
    font-size: 17px;
    color: var(--gray-text);
}

/* Flatpickr custom theme */
.flatpickr-calendar {
    font-family: 'Outfit-Regular' !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18) !important;
    border: none !important;
    width: 310px !important;
    padding: 0 0 10px !important;
    overflow: hidden;
}
.flatpickr-months {
    background: var(--main-blue) !important;
    border-radius: 16px 16px 0 0 !important;
    padding: 6px 4px !important;
    align-items: center !important;
}
.flatpickr-month {
    color: #fff !important;
    fill: #fff !important;
    height: 38px !important;
}

.flatpickr-current-month {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding-top: 6px !important;
}

.flatpickr-current-month input.cur-year {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    color: #fff !important;
    background: transparent !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.flatpickr-current-month .numInputWrapper {
    display: inline-block;
}

.flatpickr-current-month .numInputWrapper:hover {
    background: rgba(255,255,255,0.1) !important;
    border-radius: 4px;
}

.numInputWrapper span {
    display: none !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #fff !important;
    fill: #fff !important;
    padding: 8px 12px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #fff !important;
    width: 13px !important;
    height: 13px !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: rgba(255,255,255,0.7) !important;
}

.flatpickr-weekdays {
    background: #f5f8fd !important;
    padding: 4px 12px !important;
}

.flatpickr-weekday {
    color: var(--main-blue) !important;
    font-weight: 600 !important;
    font-size: 12px !important;
}

.flatpickr-days {
    padding: 4px 0 !important;
    width: 100% !important;
    min-width: unset !important;
}

.dayContainer {
    padding: 0 12px !important;
    min-width: unset !important;
    max-width: unset !important;
    width: 100% !important;
}

.flatpickr-day {
    border-radius: 50% !important;
    font-size: 13px !important;
    color: var(--dark-navy) !important;
    max-width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--main-blue) !important;
    border-color: var(--main-blue) !important;
    color: #fff !important;
}

.flatpickr-day:hover {
    background: var(--border-color) !important;
}

.flatpickr-day.today {
    border: 2px solid var(--main-blue) !important;
    color: var(--main-blue) !important;
    font-weight: 600 !important;
}

.flatpickr-day.today:hover {
    background: var(--border-color) !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #c0c8d8 !important;
}

.addr-label {
    display: block;
    font-size: 14px;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

/* Upload row */
.upload-row {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 7px;
    background: #fff;
    align-items: center;
}

.upload-filename {
    flex: 1;
    height: 36px;
    border: none;
    padding: 0 12px;
    font-size: 14px;
    font-family: 'Outfit-Regular';
    color: var(--gray-text);
    background: transparent;
    outline: none;
    cursor: default;
}
.btn-choose {
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 26px;
    font-size: 14px;
    font-family: 'Outfit-Medium';
    cursor: pointer;
    white-space: nowrap;
    height: 36px;
    flex-shrink: 0;
}

.btn-choose:hover {
    opacity: 0.85;
}

/* Captcha */
.captcha-box {
    background: var(--border-color);
    border-radius: 10px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-family: 'Outfit-SemiBold';
    color: var(--main-blue);
    letter-spacing: 8px;
    user-select: none;
    margin-bottom: 12px;
}

.btn-refresh {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--main-blue);
    font-size: 18px;
    cursor: pointer;
    height: 50px;
}

.btn-refresh:hover {
    border-color: var(--main-blue);
}

/* Submit */
.btn-submit {
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 34px;
    font-size: 16px;
    font-family: 'Outfit-Medium';
    cursor: pointer;
    margin-top: 20px;
}

.btn-submit:hover {
    opacity: 0.88;
}

/* FOOTER */
.site-footer-wrap,
.site-footer {
    background: #0c2652;
    padding: 60px 0 30px;
    color: #fff;
}

.site-footer-wrap p,
.site-footer-wrap span,
.site-footer p,
.site-footer span {
    color: #fff;
}

.fc-call {
    font-size: 20px;
    font-family: 'Outfit-SemiBold';
    color: #fff;
    margin: 0 0 5px;
}

.fc-prompt {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 20px;
}

.fc-info {
    font-size: 16px;
    line-height: 1.65;
    color: #fff;
    margin: 0 0 4px;
}

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

.footer-col ul li a {
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    display: table;
    margin-bottom: 20px;
}

.footer-col ul li a:hover {
    color: #bac5d9;
}

.footer-hr {
    border: none;
    border-top: 2px solid rgba(157,167,188,0.2);
    margin: 0 0 30px;
}

.follow-label {
    font-size: 14px;
    color: #fff;
    margin: 0 0 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 7px;
}

.social-link .bi {
    font-size: 15px;
    color: #fff;
}

.social-link-img {
    display: inline-flex;
    text-decoration: none;
    line-height: 0;
}

.social-link-img:hover {
    opacity: 0.8;
}

.copy-text {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.footer-copy-row {
    display: flex;
    align-items: center;
    position: relative;
}

.btn-up {
    background: #fff;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 14px;
}

.btn-up .bi {
    font-size: 16px;
    color: var(--main-blue);
}

.btn-up:hover {
    opacity: 0.85;
}

.btn-up-img {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
    flex-shrink: 0;
    margin-left: 14px;
}

.btn-up-img:hover {
    opacity: 0.85;
}

/* HERO - SIMPLE (no image) */
.hero-section.hero-simple {
    height: auto;
    background: var(--main-blue);
    overflow: visible;
}
.hero-section.hero-simple .hero-content {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px 0 52px;
}
.hero-title-main {
    font-size: 48px;
    font-family: 'Outfit-Medium';
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.15;
}
.hero-sub-main {
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 767.98px) {
    .hero-title-main {
        font-size: 32px;
    }
    .hero-sub-main {
        font-size: 15px;
    }
}

/* 404 PAGE */
.err-page {
    background: #fff;
}

.err-breadcrumb-wrap {
    padding: 18px 0;
    border-bottom: 1px solid #e8edf5;
}

.bc-home-dark {
    color: var(--gray-text);
}

.bc-home-dark:hover {
    color: var(--main-blue);
}

.bc-sep-dark {
    color: var(--gray-text);
    font-size: 11px;
}

.bc-page-dark {
    color: var(--gray-text);
    font-size: 14px;
}

.err-body {
    padding: 48px 0 80px;
    text-align: center;
}

.err-inner {
    max-width: 680px;
    margin: 0 auto;
}

.err-label {
    font-size: 13px;
    font-family: 'Outfit-Bold';
    letter-spacing: 0.14em;
    color: var(--main-blue);
    margin-bottom: 8px;
}

.err-graphic-wrap {
    margin-bottom: 40px;
}
.err-graphic {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.err-title {
    font-size: 36px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 14px;
}
.err-sub {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 36px;
    line-height: 1.65;
}
.err-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-err-home {
    display: inline-block;
    background: var(--main-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    padding: 13px 36px;
    font-size: 15px;
    font-family: 'Outfit-SemiBold';
    transition: all 0.3s ease-in-out;
}
.btn-err-home:hover {
    background: #0a1e42;
    color: #fff;
}

.btn-err-help {
    display: inline-block;
    background: transparent;
    color: var(--main-blue);
    text-decoration: none;
    border: 1.5px solid var(--main-blue);
    border-radius: 8px;
    padding: 13px 36px;
    font-size: 15px;
    font-family: 'Outfit-SemiBold';
    transition: all 0.3s ease-in-out;
}

.btn-err-help:hover {
    background: var(--main-blue);
    color: #fff;
}

@media (max-width: 575px) {
    .err-title {
        font-size: 26px;
    }
    .err-graphic {
        max-width: 320px;
    }
    .btn-err-home,
    .btn-err-help {
        width: 100%;
        text-align: center;
    }
}

/* STEP INDICATOR */
.step-indicator-wrap {
    background: transparent;
    padding: 0 0 30px;
    position: relative;
    z-index: 5;
    margin-top: -26px;
}
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #56b7e2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-family: 'Outfit-SemiBold';
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.step-circle.active {
    box-shadow: 0 0 0 4px #ffffff;
}

.step-circle.completed {
    background: #56b7e2;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: rgba(12,38,82,0.15);
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.step-connector.completed {
    background: #56b7e2;
}

@media (max-width: 575.98px) {
    .step-circle {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .step-connector {
        width: 36px;
    }
}

/* FORM AREA (light bg) */
.form-area-bg {
    background: var(--border-color);
}

.step-form-title {
    font-size: 24px;
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    text-align: center;
    margin: 40px 0 28px;
}
.step-sub-text {
    font-size: 16px;
    color: var(--gray-text);
    text-align: center;
    margin: -16px 0 28px;
}

/* f-label override for new form (16px per Figma) */
.form-area-bg .f-label {
    font-size: 16px;
    font-family: 'Outfit-Medium';
    margin-bottom: 8px;
}

/* Select field */
.f-select {
    display: block;
    width: 100%;
    height: 50px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0 44px 0 16px;
    font-size: 16px;
    font-family: 'Outfit-Regular';
    color: var(--dark-navy);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1L5.5 6L10 1' stroke='%23111c30' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.f-select:focus {
    border-color: var(--main-blue);
}

/* Textarea inside form area */
.f-textarea {
    height: 130px;
    padding: 14px 16px;
    resize: none;
}

/* Form inner max-width (matches Figma ~930px centered) */
.form-inner-wrap {
    max-width: 930px;
    margin: 0 auto;
}

/* Transmission radio row */
.transmission-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 10px 0 4px;
}
.transmission-label {
    font-size: 16px;
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    flex-shrink: 0;
}
.transmission-options {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.radio-option {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Outfit-Medium';
    color: var(--dark-navy);
    user-select: none;
    position: relative;
}
.radio-option input[type="radio"] {
    display: none;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #c8d3e6;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.radio-option input[type="radio"]:checked + .radio-circle {
    border-color: #56b7e2;
}

.radio-option input[type="radio"]:checked + .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #56b7e2;
}

/* Success screen */
.success-screen {
    padding: 60px 0 80px;
}
.success-card {
    background: #fff;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.success-check-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #56b7e2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.success-check-circle .bi {
    font-size: 26px;
    color: #fff;
    font-family: 'Outfit-Bold';
}
.success-msg {
    font-size: 22px;
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    line-height: 1.45;
    margin: 0;
}
.btn-back-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-size: 16px;
    font-family: 'Outfit-Medium';
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-back-home:hover {
    opacity: 0.88;
    color: #fff;
}

/* Prev button - navy text when active, gray when on first step */
.btn-step-prev {
    color: var(--main-blue);
}

.btn-step-prev.first-step {
    color: var(--gray-text);
    cursor: default;
    pointer-events: none;
}

/* Step navigation */
.step-nav-divider {
    border: none;
    border-top: 1px solid #dce4f0;
    margin: 40px 0 28px;
}

.step-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.btn-step-prev {
    background: #fff;
    color: var(--gray-text);
    border: none;
    border-radius: 10px;
    padding: 15px 40px;
    font-size: 16px;
    font-family: 'Outfit-SemiBold';
    cursor: pointer;
    min-width: 151px;
    transition: all 0.3s ease-in-out;
}

.btn-step-prev:hover {
    background: #e8edf6;
}

.btn-step-next {
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 40px;
    font-size: 16px;
    font-family: 'Outfit-SemiBold';
    cursor: pointer;
    min-width: 151px;
    transition: all 0.3s ease-in-out;
}

.btn-step-next:hover {
    opacity: 0.88;
}

/* Footer - mobile */
@media (max-width: 991.98px) {
    .site-footer-wrap {
        padding: 36px 0 20px;
    }
    .site-footer-wrap .col-md-12.col-lg-5,
    .site-footer .col-md-12.col-lg-5 {
        text-align: center;
    }
    .fc-call {
        font-size: 22px;
    }
    .fc-prompt {
        margin-bottom: 16px;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col ul li a {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
    }
    .footer-bottom {
        width: 100%;
    }
    .footer-copy-row {
        justify-content: center;
    }
    .btn-up {
        position: static;
        margin-left: 5px;
    }
    .btn-up-img {
        margin-left: 5px;
    }
}

/* WARRANTY PAGE */

/* Hero */
.hero-section.hero-warranty {
    height: 640px;
}
.wty-hero-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Blue Feature Banner */
.wty-banner {
    background: #56b7e2;
    padding: 26px 0;
}
.wty-features-row {
    display: flex;
    align-items: center;
    justify-content: center;
}
.wty-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 48px;
    flex: 1;
    justify-content: center;
}
.wty-feat-sep {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
}
.wf-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}
.wf-text {
    font-size: 16px;
    font-family: 'Outfit-SemiBold';
    color: #fff;
    line-height: 1.35;
}
.wf-bi-icon {
    font-size: 32px;
    color: #fff;
    flex-shrink: 0;
    line-height: 1;
}

/* Extensive Cover section */
.wty-section-title {
    font-size: 36px;
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.3;
}
.wty-cover-section {
    background: var(--border-color);
    padding: 70px 0;
}
.wty-cover-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(12,38,82,0.08);
}
.wty-cat-list {
    border-right: 1px solid #e8eef7;
    height: 100%;
    padding: 16px 0;
}
.wty-cat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.wty-cat-item:hover {
    color: #56b7e2;
}

.wty-cat-item.active {
    color: #56b7e2;
}

.wty-cat-arrow {
    font-size: 11px;
    color: #56b7e2;
}

.wty-parts-wrap {
    padding: 24px 28px;
}

.wty-parts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-family: 'Outfit-SemiBold';
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 4px;
}

.wty-parts-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-color);
}

.wty-parts-row.last {
    border-bottom: none;
}

.wpr-name {
    font-size: 15px;
    font-family: 'Outfit-Medium';
    color: var(--dark-navy);
}

.wpr-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.wty-warning-box {
    background: #fff5f5;
    border: 1.5px solid #fcd0d0;
    border-radius: 12px;
    padding: 18px 20px;
    margin-top: 18px;
}
.wty-warning-full {
    margin: 0 24px 24px;
    border-radius: 12px;
    border: 1.5px solid #fcd0d0;
    background: #fff5f5;
    padding: 18px 22px;
}
.wty-warning-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.wty-warning-icon { font-size: 20px; color: #e04646; }
.wty-warning-title { font-size: 15px; font-family: 'Outfit-Bold'; color: #e04646; }
.wty-warning-text { font-size: 13px; color: var(--gray-text); line-height: 1.65; margin-bottom: 8px; }

.wty-covered-title {
    font-size: 22px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 20px;
}
.wty-covered-card {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e4edf8;
    padding: 20px 18px;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}
.wcc-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.wcc-text { font-size: 13px; color: var(--gray-text); line-height: 1.65; margin: 0; }
.wty-disclaimer { font-size: 13px; color: var(--gray-text); margin-top: 18px; }
.wty-disclaimer a { color: var(--dark-navy); font-family: 'Outfit-SemiBold'; text-decoration: underline; }

/* Check Warranty section */
.wty-check-section {
    background: var(--main-blue);
    padding: 70px 0;
    text-align: center;
}
.wty-check-title {
    font-size: 36px;
    font-family: 'Outfit-SemiBold';
    color: #fff;
    margin-bottom: 10px;
}
.wty-check-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 38px;
}
.wty-check-card {
    background: #fff;
    border-radius: 20px;
    padding: 38px 40px;
    text-align: left;
}
.wty-f-label {
    color: var(--dark-navy);
}

.btn-find-warranty {
    display: block;
    width: 100%;
    height: 50px;
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Outfit-SemiBold';
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.btn-find-warranty:hover {
    opacity: 0.88;
}

#warrantyDetailsResult {
    animation: wty-reveal 0.35s ease forwards;
}

@keyframes wty-reveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wty-check-hr {
    border: none;
    border-top: 1px solid #e2ecf6;
    margin: 30px 0;
}

/* Warranty detail panels (inside check card) */
.wty-detail-panel {
    background: var(--border-color);
    border-radius: 14px;
    padding: 26px 24px;
    height: 100%;
}
.wty-detail-heading {
    font-size: 16px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 12px;
}
.wty-detail-p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.65;
    margin-bottom: 0;
}
.wty-di-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin: 14px 0;
}
.wty-di {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: 'Outfit-Medium';
    color: var(--dark-navy);
}
.wdi-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* Pricing section */
.wty-pricing-section {
    background: var(--border-color);
    padding: 70px 0;
    text-align: center;
}
.wty-pricing-title {
    font-size: 36px;
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    margin-bottom: 10px;
}
.wty-pricing-sub {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 40px;
}
.wty-pricing-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e2ecf6;
    box-shadow: 0 2px 16px rgba(12,38,82,0.06);
    overflow: hidden;
    height: 100%;
}
.wty-pricing-card-title {
    font-size: 20px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    background: transparent;
    margin: 0;
    padding: 26px 20px 10px;
    text-align: center;
}
.wty-pricing-img-wrap {
    padding: 16px 28px 24px;
    text-align: center;
    background: #fff;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wty-pricing-img-wrap img {
    height: 170px;
    width: auto;
    object-fit: contain;
}

.wty-pricing-rows {
    padding: 20px 24px 16px;
}

.wty-pr-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #dce8f5;
    font-size: 15px;
}

.wty-pr-row.last {
    border-bottom: none;
}

.wpr-year {
    font-family: 'Outfit-Regular';
    color: var(--dark-navy);
}

.wpr-price {
    font-family: 'Outfit-Bold';
    color: var(--main-blue);
}

/* Extend Warranty section */
.wty-extend-section {
    padding: 60px 0;
    background: var(--border-color);
}
.wty-extend-inner {
    background: linear-gradient(to right, #56b7e2 0%, #0c2652 100%);
    border-radius: 24px;
    padding: 58px 50px;
    overflow: hidden;
    position: relative;
}
.wty-extend-title {
    font-size: 36px;
    font-family: 'Outfit-SemiBold';
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}
.wty-extend-text {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin-bottom: 12px;
}
.wty-extend-phone {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}
.wty-extend-phone strong {
    color: #fff;
}

.btn-extend-warranty {
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 34px;
    font-size: 16px;
    font-family: 'Outfit-SemiBold';
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-extend-warranty:hover {
    opacity: 0.85;
}
.wty-extend-car {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
    position: relative;
    z-index: 1;
}

/* FAQ section */
.wty-faq-section {
    padding: 70px 0;
    background: #fff;
}
.wty-faq-title {
    font-size: 36px;
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    margin-bottom: 40px;
    text-align: center;
}
.wty-faq-list {
    max-width: 860px;
    margin: 0 auto;
}
.wty-faq-item {
    background: #fff;
    border: 1.5px solid #e2ecf6;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.wty-faq-item.open {
    box-shadow: 0 4px 20px rgba(12,38,82,0.10);
    border-color: #cddcef;
}

.wty-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.wfq-text {
    font-size: 16px;
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    flex: 1;
    padding-right: 16px;
    line-height: 1.4;
}

.wfq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wfq-toggle .bi {
    font-size: 14px;
    color: var(--main-blue);
}

.wty-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wty-faq-a p {
    padding: 4px 24px 22px;
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
}

.wty-faq-viewall {
    text-align: center;
    margin-top: 30px;
}

.wty-faq-viewall a {
    font-size: 15px;
    font-family: 'Outfit-SemiBold';
    color: var(--main-blue);
    text-decoration: none;
}

.wty-faq-viewall a:hover {
    text-decoration: underline;
}

/* Warranty responsive */
@media (max-width: 991.98px) {
    .wty-feature {
        padding: 0 28px;
    }
}
@media (max-width: 767.98px) {
    .hero-section.hero-warranty {
        height: 440px;
    }
    .wty-section-title {
        font-size: 26px;
    }
    .wty-check-title {
        font-size: 26px;
    }
    .wty-pricing-title {
        font-size: 26px;
    }
    .wty-extend-title {
        font-size: 26px;
    }
    .wty-faq-title {
        font-size: 26px;
    }
    .wty-extend-inner {
        padding: 40px 24px;
    }
    .wty-check-card {
        padding: 22px 18px;
    }
    .wty-di-grid {
        grid-template-columns: 1fr;
    }
    .wty-features-row {
        flex-direction: column;
    }
    .wty-feature {
        padding: 14px 20px;
        width: 100%;
        justify-content: flex-start;
    }
    .wty-feat-sep {
        width: 100%;
        height: 1px;
    }
    .wty-cat-list {
        border-right: none;
        border-bottom: 1px solid #e8eef7;
    }
    .wty-parts-wrap {
        padding: 16px 18px;
    }
}

/* AFTER SALES PAGE */

.hero-section.hero-aftersales {
    height: 640px;
}

/* PDI Process */
.as-pdi-section {
    padding: 70px 0;
    background: var(--border-color);
}
.as-pdi-title {
    font-size: 32px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 28px;
}
.as-pdi-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.as-pdi-tab {
    padding: 10px 32px 12px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: 'Outfit-Bold';
    color: var(--gray-text);
    cursor: pointer;
    letter-spacing: 0.04em;
    position: relative;
    transition: color 0.2s;
}
.as-pdi-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #56b7e2;
    transform: scaleX(0);
    transition: transform 0.2s;
}
.as-pdi-tab.active {
    color: var(--dark-navy);
}
.as-pdi-tab.active::after {
    transform: scaleX(1);
}
.as-pdi-tab:hover { color: var(--dark-navy); }
.as-pdi-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}
.as-pdi-item {
    border: 1.5px solid #e2ecf6;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}
.as-pdi-item.open {
    border-color: #56b7e2;
}
.as-pdi-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 20px 20px 24px;
    cursor: pointer;
    user-select: none;
}
.as-pdi-qtxt {
    flex: 1;
    font-size: 16px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    line-height: 1.4;
}
.as-pdi-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #56b7e2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.as-pdi-toggle .bi {
    font-size: 14px;
    color: #fff;
}
.as-pdi-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.as-pdi-a p {
    padding: 2px 24px 22px;
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
}

/* PDI Checklist */
.as-checklist-section {
    background: var(--main-blue);
    padding: 70px 0 60px;
}
.as-checklist-head {
    margin-bottom: 50px;
}
.as-checklist-title {
    font-size: 36px;
    font-family: 'Outfit-Bold';
    color: #fff;
    margin-bottom: 10px;
}
.as-checklist-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.as-cl-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.as-cl-item {
    position: relative;
    padding: 44px 0 60px;
}
.as-cl-svg-bg {
    position: absolute;
    width: 385px;
    height: auto;
    left: -6px;
    top: 38px;
    z-index: 0;
    pointer-events: none;
}
.as-cl-item-rev .as-cl-svg-bg {
    left: auto;
    right: -6px;
}
.as-cl-row {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.as-cl-img-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 50%;
}
.as-cl-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.as-cl-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #56b7e2;
    color: #fff;
    font-size: 18px;
    font-family: 'Outfit-Bold';
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.as-cl-badge-r {
    left: auto;
    right: -4px;
}
.as-cl-text {
    flex: 1;
}
.as-cl-name {
    font-size: 20px;
    font-family: 'Outfit-Bold';
    color: #56b7e2;
    margin-bottom: 12px;
}
.as-cl-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin: 0;
}

/* 27-Point Inspection */
.as-inspect-section {
    background: var(--border-color);
    padding: 70px 0 60px;
}
.as-inspect-title {
    font-size: 24px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 36px;
}
.as-inspect-stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}
.as-inspect-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #56b7e2;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.as-inspect-arrow:hover {
    opacity: 0.85;
}
.as-inspect-car-wrap {
    position: relative;
    flex: 0 1 500px;
    max-width: 500px;
}
.as-inspect-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    z-index: 0;
    pointer-events: none;
}
.as-inspect-car {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: contain;
    display: block;
}
.as-hotspot {
    position: absolute;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--main-blue);
    color: #fff;
    font-size: 11px;
    font-family: 'Outfit-Bold';
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255,255,255,0.35);
    pointer-events: none;
}

.as-inspect-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
}

.as-itab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 8px 8px;
    border-radius: 50px;
    border: 1.5px solid #d0dff0;
    background: #fff;
    font-size: 14px;
    color: var(--dark-navy);
    font-family: 'Outfit-SemiBold';
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.as-itab-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--main-blue);
    color: #fff;
    font-size: 11px;
    font-family: 'Outfit-Bold';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.as-itab.active,
.as-itab:hover {
    border-color: var(--main-blue);
    background: var(--main-blue);
    color: #fff;
}
.as-itab.active .as-itab-num,
.as-itab:hover .as-itab-num {
    background: rgba(255,255,255,0.25);
}

/* Genuine Parts Guarantee */
.as-parts-section {
    background: #fff;
    padding: 70px 0;
}
.as-parts-inner {
    background: linear-gradient(to right, #56b7e2 0%, #0c2652 100%);
    border-radius: 24px;
    padding: 58px 50px;
}
.as-parts-title {
    font-size: 36px;
    font-family: 'Outfit-Bold';
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.25;
}
.as-parts-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin-bottom: 28px;
}
.as-parts-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 36px;
    margin-bottom: 0;
}
.as-parts-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-family: 'Outfit-Medium';
    color: #fff;
}
.as-tick-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.btn-as-parts {
    display: inline-block;
    background: #fff;
    color: var(--main-blue);
    border: none;
    border-radius: 10px;
    padding: 14px 34px;
    font-size: 16px;
    font-family: 'Outfit-SemiBold';
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-as-parts:hover {
    opacity: 0.9;
    color: var(--main-blue);
}
.as-parts-badge {
    max-width: 220px;
    width: 100%;
    object-fit: contain;
}

/* Quick Links */
.as-ql-section {
    background: var(--border-color);
    padding: 50px 0 70px;
}
.as-ql-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1.5px solid #e2ecf6;
    border-radius: 16px;
    padding: 24px 28px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.as-ql-card:hover {
    box-shadow: 0 6px 24px rgba(12,38,82,0.10);
    border-color: #b8ceea;
}

.as-ql-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.as-ql-name {
    font-size: 18px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 0;
    flex: 1;
}

.as-ql-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--main-blue);
    font-size: 16px;
    flex-shrink: 0;
    margin-left: auto;
    transition: all 0.3s ease-in-out;
}

.as-ql-card:hover .as-ql-arrow {
    background: var(--main-blue);
    color: #fff;
}

/* After Sales responsive */
@media (max-width: 767.98px) {
    .hero-section.hero-aftersales {
        height: 440px;
    }
    .as-pdi-title {
        font-size: 24px;
    }
    .as-checklist-title {
        font-size: 26px;
    }
    .as-inspect-title {
        font-size: 20px;
    }
    .as-parts-title {
        font-size: 26px;
    }
    .as-parts-inner {
        padding: 36px 24px;
    }
    .as-parts-list {
        grid-template-columns: 1fr;
    }
    .as-ql-card {
        padding: 20px 20px;
        gap: 14px;
    }
    .as-cl-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .as-cl-item-rev .as-cl-row {
        flex-direction: column;
    }
    .as-cl-item-rev .as-cl-img-wrap {
        order: -1;
    }
    .as-cl-item-rev .as-cl-text {
        order: 1;
    }
    .as-cl-img-wrap {
        width: 150px;
        height: 150px;
        outline: 2px dashed rgba(86,183,226,0.6);
        outline-offset: 8px;
    }
    .as-cl-svg-bg {
        display: none;
    }
    .as-inspect-stage {
        gap: 8px;
    }
    .as-inspect-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .as-inspect-car-wrap {
        flex: 0 1 260px;
        max-width: 260px;
    }
}

/* ABOUT US PAGE */

/* Hero */
.hero-section.hero-aboutus {
    height: 580px;
}

/* Company Intro */
.au-intro-section {
    background: #fff;
    padding: 60px 0;
}
.au-intro-text {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}
.au-intro-p {
    font-size: 15px;
    color: var(--dark-navy);
    line-height: 1.85;
    margin-bottom: 18px;
}

/* Brand Showcase */
.au-brands-section { overflow: hidden; }
.au-brand-panel {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.au-brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.au-brand-panel:hover .au-brand-img {
    transform: scale(1.08);
}
.au-brand-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    pointer-events: none;
}
.au-brand-logo-wrap {
    position: absolute;
    bottom: 26px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    pointer-events: none;
}
.au-brand-logo {
    max-height: 56px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    filter: none;
}

/* Core Values */
.au-values-section {
    background: #fff;
    padding: 70px 0;
}
.au-values-title {
    font-size: 30px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 14px;
}
.au-values-sub {
    font-size: 20px;
    color: #737f95;
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
    line-height: 1.75;
}
.au-values-sub strong {
    color: var(--dark-navy);
    font-family: 'Outfit-SemiBold';
}
.au-values-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}
.au-value-card {
    background: #fff;
    border: 2px solid #d0dae8;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    width: 290px;
    height: 207px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.au-value-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin: 0 auto 18px;
    display: block;
}
.au-value-name {
    font-size: 24px;
    font-family: 'Outfit-Medium';
    color: var(--dark-navy);
    margin: 0;
}

/* Finance Division */
.au-finance-section {
    overflow: hidden;
}
.au-finance-img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
}
.au-finance-content {
    background: var(--main-blue);
    padding: 70px 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 460px;
    flex: 1;
}
.au-finance-inner {
    max-width: 460px;
    width: 100%;
}
.au-finance-title {
    font-size: 26px;
    font-family: 'Outfit-Bold';
    color: #fff;
    margin-bottom: 18px;
}
.au-finance-text {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 30px;
}
.au-finance-text strong {
    color: #fff;
    font-family: 'Outfit-SemiBold';
}

.btn-au-finance {
    display: inline-block;
    background: #56b7e2;
    color: #fff;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-family: 'Outfit-SemiBold';
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.3s ease-in-out;
}

.btn-au-finance:hover {
    opacity: 0.88;
    color: #fff;
}

/* After Sales Division */
.au-as-section {
    overflow: hidden;
}

.au-as-content {
    background: #56b7e2;
    padding: 70px 150px 70px 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-height: 460px;
    flex: 1;
}

.au-as-inner {
    max-width: 460px;
    width: 100%;
}

.au-as-title {
    font-size: 26px;
    font-family: 'Outfit-Bold';
    color: #fff;
    margin-bottom: 18px;
}

.au-as-text {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin: 0;
}

.au-as-text strong {
    color: #fff;
    font-family: 'Outfit-SemiBold';
}

.au-as-img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
}

/* Customer Reviews */
.au-reviews-section {
    background: var(--main-blue);
    padding: 70px 0;
}
.au-reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}
.au-reviews-title {
    font-size: 28px;
    font-family: 'Outfit-Medium';
    color: #fff;
    margin: 0;
}
.au-reviews-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.au-reviews-nav-svg {
    height: 40px;
    width: auto;
    display: block;
}
.au-reviews-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1;
}
#auRevPrev, #carsPrev, #testPrev, #lifePrev { left: 0; }
#auRevNext, #carsNext, #testNext, #lifeNext { right: 0; }

/* Carousel */
.au-reviews-carousel {
    overflow: hidden;
    margin-bottom: 0;
}
.au-reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}
.au-review-slide {
    flex: 0 0 auto;
    min-width: 0;
}
.au-review-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 26px;
    width: 100%;
    min-height: 479px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.au-review-quote {
    width: 28px;
    height: auto;
    margin-bottom: 16px;
    opacity: 0.85;
    display: block;
}
.au-review-text {
    font-size: 20px;
    color: var(--dark-navy);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}
.au-review-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}
.au-review-divider {
    display: block;
    width: 72px;
    height: 1px;
    margin: 16px auto;
}
.au-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #d0dae8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 12px;
}
.au-review-avatar .bi {
    color: #737f95;
    font-size: 20px;
}
.au-review-name {
    font-size: 13px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin: 0 0 6px;
}
.au-review-role {
    font-size: 12px;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.4;
}
.au-review-time {
    font-size: 11px;
    color: var(--gray-text);
    margin: 3px 0 0;
}
.au-reviews-cta {
    text-align: center;
    margin-top: 36px;
}
.btn-au-reviews {
    display: inline-block;
    background: #56b7e2;
    color: var(--main-blue);
    border-radius: 8px;
    padding: 13px 36px;
    font-size: 14px;
    font-family: 'Outfit-SemiBold';
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-au-reviews:hover {
    opacity: 0.88;
    color: var(--main-blue);
}

/* Team Members */
.au-team-section {
    background: #fff;
    padding: 70px 0;
}
.au-team-title {
    font-size: 30px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 12px;
}
.au-team-sub {
    font-size: 14px;
    color: var(--gray-text);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.75;
}
.au-team-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.au-team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.au-team-card:hover .au-team-photo {
    transform: scale(1.08);
}
.au-team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(12,38,82,0.95) 0%, rgba(12,38,82,0.55) 65%, transparent 100%);
    padding: 24px 16px 16px;
}
.au-team-name {
    font-size: 15px;
    font-family: 'Outfit-Bold';
    color: #fff;
    margin: 0 0 3px;
}
.au-team-role {
    font-size: 12px;
    color: rgba(255,255,255,0.78);
    margin: 0;
}

/* About Us Responsive */
@media (max-width: 991.98px) {
    .au-finance-content,
    .au-as-content {
        padding: 50px 32px;
    }
    .au-finance-inner,
    .au-as-inner {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 767.98px) {
    .hero-section.hero-aboutus {
        height: 420px;
    }
    .au-brand-logo {
        max-height: 36px;
        max-width: 110px;
    }
    .au-finance-content,
    .au-as-content {
        padding: 40px 28px;
        min-height: auto;
    }
    .au-finance-img,
    .au-as-img { min-height: 280px; }
    .au-values-title,
    .au-team-title { font-size: 24px; }
    .au-reviews-title {
        font-size: 22px;
    }
    .au-team-photo {
        aspect-ratio: 1/1;
    }
    .au-intro-p {
        font-size: 14px;
    }
}

/* SCHEDULE SERVICE PAGE */
.ss-page {
    background: var(--border-color);
}

/* Hero - image */
.ss-hero {
    position: relative;
    min-height: 460px;
    background: url('Images/service schedule banner_image.png') center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 110px;
}

.ss-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 28, 60, 0.68);
    z-index: 0;
}

.ss-hero .container {
    position: relative;
    z-index: 1;
}
.ss-hero-breadcrumb-wrap {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 2;
}
.ss-hero-center {
    position: relative;
    z-index: 1;
}

/* Filter bar */
.ss-filter-outer {
    position: relative;
    z-index: 10;
    margin-top: -55px;
}
.ss-filter-bar {
    background: linear-gradient(to right, #56b7e2 0%, #0c2652 60%);
    border-radius: 16px;
    box-shadow: 0 0 0 3px #ffffff;
    padding: 22px 28px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}
.ss-filter-group {
    flex: 1;
    min-width: 160px;
}
.ss-filter-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    font-family: 'Outfit-Medium';
}
.ss-filter-select {
    display: block;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 36px 10px 14px;
    font-size: 14px;
    color: var(--gray-text);
    appearance: none;
    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='%230c2652' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}
.ss-filter-select:focus { outline: none; }
.btn-ss-submit {
    background: #fff;
    color: var(--main-blue);
    border: none;
    border-radius: 8px;
    padding: 10px 32px;
    font-size: 15px;
    font-family: 'Outfit-Bold';
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}

.btn-ss-submit:hover {
    background: #e8f4fb;
}

/* Content background */
.ss-content-bg {
    background: var(--border-color);
    min-height: 380px;
}

/* State 1 placeholder bg */
#ssState1 {
    background: var(--border-color);
    padding: 80px 0 60px;
}

/* State 2 - light blue zone (heading + car + pricing) */
.ss-section-light {
    background: var(--border-color);
    padding: 60px 0 48px;
}

/* State 2 - white zone (chart + CTA) */
.ss-section-white {
    background: #fff;
    padding: 60px 0 80px;
}

/* State 1 - placeholder */
.ss-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}
.ss-placeholder-icon {
    width: 80px;
    height: auto;
    margin-bottom: 16px;
    opacity: 0.45;
}
.ss-placeholder-text {
    font-size: 18px;
    color: var(--gray-text);
    margin: 0;
}

/* State 2 — service details */
.ss-service-heading {
    font-size: 28px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 8px;
}
.ss-service-sub {
    font-size: 14px;
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 0;
}
.ss-car-img-wrap {
    text-align: center;
    margin: 32px 0;
}
.ss-car-img {
    max-width: 520px;
    width: 100%;
    height: auto;
}
.ss-pricing-title {
    font-size: 24px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 28px;
}

/* Pricing cards */
.ss-pricing-col { padding-top: 22px; }
.ss-pricing-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #d0dae8;
    padding: 36px 24px 28px;
    height: 100%;
    position: relative;
}
.ss-plan-badge-wrap {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}
.ss-plan-badge {
    background: #56b7e2;
    color: #fff;
    font-size: 13px;
    font-family: 'Outfit-SemiBold';
    padding: 8px 28px;
    border-radius: 50px;
    display: block;
    white-space: nowrap;
}
.ss-plan-body { padding: 0; }
.ss-plan-start {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 6px;
    text-align: center;
}
.ss-plan-price {
    font-size: 30px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 4px;
    text-align: center;
}
.ss-plan-interval {
    font-size: 13px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 8px;
    text-align: center;
}
.ss-plan-parts {
    font-size: 13px;
    color: #56b7e2;
    font-family: 'Outfit-Medium';
    margin-bottom: 16px;
    text-align: center;
}
.ss-plan-divider {
    border: none;
    border-top: 1.5px solid #a8ddf0;
    margin: 0 0 16px;
}
.ss-plan-includes-title {
    font-size: 13px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 4px;
}
.ss-plan-includes-text {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Service detail chart */
.ss-chart-section {
    padding-top: 0;
}
.ss-chart-title {
    font-size: 24px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 20px;
}
.ss-chart-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2ecf6;
    padding: 20px 24px 20px;
    overflow: hidden;
}
.ss-chart-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
}
.ss-chart-legend {
    font-size: 16px;
    color: var(--dark-navy);
    font-family: 'Outfit-SemiBold';
}
.ss-chart-scroll-btns {
    display: flex;
    align-items: center;
    gap: 4px;
}
.ss-chart-scroll-btns .ss-chart-legend {
    font-size: 14px;
    color: var(--dark-navy);
    font-family: 'Outfit-Regular';
    margin-right: 4px;
}
.ss-scroll-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: all 0.3s ease-in-out;
}

.ss-scroll-btn img {
    width: 12px;
    height: 12px;
    display: block;
}

.ss-scroll-btn:hover {
    opacity: 1;
}
.ss-table-outer {
    overflow: auto;
    border-radius: 6px;
    max-height: 380px;
    scrollbar-width: thin;
    scrollbar-color: var(--main-blue) #e8edf5;
}
/* Custom scrollbars */
.ss-table-outer::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

.ss-table-outer::-webkit-scrollbar-track {
    background: #e8edf5;
    border-radius: 4px;
}

.ss-table-outer::-webkit-scrollbar-thumb {
    background: var(--main-blue);
    border-radius: 4px;
}

.ss-table-outer::-webkit-scrollbar-corner {
    background: #e8edf5;
}

.ss-detail-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 13px;
}

.ss-detail-table thead tr {
    background: var(--main-blue);
    color: #fff;
}

.ss-detail-table thead th {
    padding: 12px 16px;
    text-align: center;
    font-family: 'Outfit-SemiBold';
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--main-blue);
}

.ss-detail-table thead th:first-child {
    text-align: left;
    min-width: 220px;
}

.ss-detail-table tbody tr:nth-child(even) {
    background: #dce9f5;
}

.ss-detail-table tbody tr:nth-child(odd) {
    background: #fff;
}

.ss-detail-table td {
    padding: 10px 16px;
    text-align: center;
    color: var(--gray-text);
    white-space: nowrap;
    border-bottom: 1px solid #eef2f8;
}

.ss-detail-table td:first-child {
    text-align: left;
    color: var(--dark-navy);
    font-size: 13px;
}

.ss-factory-row td {
    background: #7dcef0 !important;
    font-family: 'Outfit-SemiBold';
    color: var(--main-blue);
}

/* CTA banner */
.ss-cta-banner {
    background: linear-gradient(to right, #56b7e2 0%, #0c2652 65%);
    border-radius: 16px;
    padding: 52px 40px;
    text-align: center;
    margin-top: 48px;
    margin-bottom: 8px;
}

.ss-cta-title {
    font-size: 26px;
    font-family: 'Outfit-Bold';
    color: #fff;
    margin-bottom: 10px;
}

.ss-cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.ss-cta-sub strong {
    color: #fff;
}

.btn-ss-cta {
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 36px;
    font-size: 15px;
    font-family: 'Outfit-SemiBold';
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
}

.btn-ss-cta:hover {
    background: #0a1e42;
    color: #fff;
}

/* Hero - form / State 3 */
.ss-form-hero {
    background: var(--main-blue);
    padding: 32px 0 40px;
}
.ss-form-title {
    font-size: 36px;
    font-family: 'Outfit-Bold';
    color: #fff;
    margin-bottom: 10px;
}
.ss-form-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Form content area */
.ss-form-content {
    background: var(--border-color);
    padding: 48px 0 64px;
}
.ss-form-content .f-label { font-size: 14px; font-family: 'Outfit-Medium'; }

/* Calendar icon inside input */
.ss-cal-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: all;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Checkboxes */
.ss-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-navy);
    cursor: pointer;
    margin-bottom: 8px;
    user-select: none;
}
.ss-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--main-blue);
    flex-shrink: 0;
    cursor: pointer;
}

/* Section headings inside form */
.ss-section-title {
    font-size: 18px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ss-section-note {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 14px;
}
.ss-important-note {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 10px;
    line-height: 1.6;
}
.ss-info-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #56b7e2;
    font-size: 16px;
    line-height: 1;
}

/* Schedule button */
.btn-ss-schedule {
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    font-size: 15px;
    font-family: 'Outfit-SemiBold';
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-ss-schedule:hover {
    background: #0a1e42;
}

/* FLEET CONTAINER PAGE */
.fc-page {
    background: var(--border-color);
}

/* Hero */
.fc-hero {
    background: var(--main-blue);
    padding: 28px 0 52px;
}

.fc-breadcrumb {
    margin-bottom: 28px;
}

.fc-hero .bc-home,
.fc-hero .bc-sep,
.fc-hero .bc-page {
    color: rgba(255,255,255,0.75);
}

.fc-hero .bc-home:hover {
    color: #fff;
}

.fc-hero-text {
    padding-top: 12px;
}
.fc-hero-title {
    font-size: 40px;
    font-family: 'Outfit-Bold';
    color: #fff;
    margin-bottom: 12px;
}
.fc-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Tab bar */
.fc-tabs-wrap {
    background: transparent;
    padding: 8px 0 0;
}
.fc-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.fc-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 992px) {
    .fc-tabs { justify-content: center; }
}
.fc-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 18px 28px;
    font-size: 13px;
    font-family: 'Outfit-SemiBold';
    color: var(--gray-text);
    letter-spacing: 0.04em;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.fc-tab:hover {
    color: var(--dark-navy);
}

.fc-tab.active {
    color: var(--dark-navy);
    border-bottom-color: #56b7e2;
}

/* Grid area */
.fc-grid-wrap {
    padding: 40px 0 64px;
}

/* Cards */
.fc-card {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #d0dae8;
    padding: 24px;
    transition: all 0.3s ease-in-out;
}

.fc-card.is-expanded {
    border-color: var(--main-blue);
}

.fc-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.fc-card-info {
    flex: 1;
    min-width: 0;
}
.fc-card-img-wrap {
    flex-shrink: 0;
    width: 190px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.fc-car-img {
    width: 190px;
    height: 120px;
    object-fit: contain;
    object-position: center;
}

.fc-vehicle-name {
    font-size: 18px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 4px;
}
.fc-price {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 10px;
}
.fc-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 6px;
}
.fc-rating {
    font-size: 14px;
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    margin-left: 4px;
}
.fc-reviews {
    display: inline-block;
    font-size: 13px;
    color: #56b7e2;
    text-decoration: underline;
}
.fc-reviews:hover {
    color: var(--main-blue);
}

/* Card actions */
.fc-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.btn-fc-details {
    display: inline-block;
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 14px;
    font-family: 'Outfit-SemiBold';
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-fc-details:hover {
    background: #0a1e42;
    color: #fff;
}

.btn-fc-specs {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-family: 'Outfit-Medium';
    color: var(--gray-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease-in-out;
}

.btn-fc-specs:hover {
    color: var(--dark-navy);
}

/* Specs panel */
.fc-specs-panel {
    overflow: hidden;
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                margin-top 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                padding-top 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease-in-out;
}

.fc-card.is-expanded .fc-specs-panel {
    margin-top: 20px;
    padding-top: 4px;
    border-top-color: #e2ecf6;
    /* max-height set by JS to exact content height */
}

.fc-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #f0f4fa;
}

.fc-spec-last {
    border-bottom: none;
}

.fc-spec-label {
    font-size: 14px;
    color: var(--gray-text);
}

.fc-spec-value {
    font-size: 14px;
    font-family: 'Outfit-Medium';
    color: var(--dark-navy);
    text-align: right;
}

/* Responsive */
@media (max-width: 767px) {
    .fc-hero-title {
        font-size: 28px;
    }
    .fc-tab {
        padding: 14px 18px;
        font-size: 12px;
    }
    .fc-card-img-wrap {
        width: 130px;
        height: 88px;
    }
    .fc-car-img {
        width: 130px;
        height: 88px;
    }
    .fc-vehicle-name {
        font-size: 16px;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .ss-hero {
        min-height: 340px;
        padding: 60px 0 90px;
    }
    .ss-filter-bar {
        gap: 12px;
    }
    .ss-cta-banner {
        padding: 36px 24px;
    }
    .ss-cta-title {
        font-size: 22px;
    }
    .ss-form-title {
        font-size: 28px;
    }
}
@media (max-width: 767.98px) {
    .ss-filter-bar {
        flex-direction: column;
    }
    .ss-filter-group {
        min-width: 100%;
    }
    .btn-ss-submit {
        width: 100%;
    }
    .ss-filter-outer {
        margin-top: -20px;
    }
    .ss-content-bg {
        padding-top: 40px;
    }
    .ss-service-heading {
        font-size: 22px;
    }
    .ss-form-title {
        font-size: 24px;
    }
}

/* FINANCE PAGE */

/* Hero */
.hero-finance {
    min-height: 480px;
}

/* Shared section helpers */
.fin-sec-head {
    margin-bottom: 48px;
}

.fin-sec-head-light {
    margin-bottom: 48px;
}

.fin-section-title {
    font-size: 32px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 14px;
}

.fin-section-sub {
    font-size: 15px;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.fin-calc-title {
    font-size: 32px;
    font-family: 'Outfit-Bold';
    color: #fff;
    margin-bottom: 14px;
}

.fin-calc-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Finance Options */
.fin-options-section {
    background: var(--border-color);
    padding: 80px 0;
}
.fin-option-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1.5px solid #e2ecf6;
    transition: all 0.3s ease-in-out;
}

.fin-option-card:hover {
    box-shadow: 0 12px 40px rgba(12,38,82,0.12);
    transform: translateY(-4px);
}

.fin-option-card-featured {
    border-color: #56b7e2;
    box-shadow: 0 8px 32px rgba(86,183,226,0.18);
}

.fin-option-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #56b7e2;
    color: #fff;
    font-size: 11px;
    font-family: 'Outfit-Bold';
    letter-spacing: 0.06em;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
}

.fin-option-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.fin-option-icon-wrap-featured {
    background: rgba(86,183,226,0.15);
}
.fin-option-icon {
    font-size: 26px;
    color: var(--main-blue);
}
.fin-option-title {
    font-size: 18px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 12px;
}
.fin-option-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}
.fin-option-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.fin-option-list li {
    font-size: 13px;
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f0f4fb;
}
.fin-option-list li:last-child {
    border-bottom: none;
}
.fin-option-list .bi-check-circle-fill {
    color: #56b7e2;
    font-size: 14px;
    flex-shrink: 0;
}
.btn-fin-option {
    display: block;
    text-align: center;
    background: var(--main-blue);
    color: #fff;
    border-radius: 8px;
    padding: 13px 20px;
    font-size: 14px;
    font-family: 'Outfit-SemiBold';
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    margin-top: auto;
}
.btn-fin-option:hover {
    background: #163870;
    color: #fff;
}
.btn-fin-option-featured {
    background: #56b7e2;
}
.btn-fin-option-featured:hover {
    background: #3da3cf;
}

/* Finance Calculator */
.fin-calc-section {
    background: var(--main-blue);
    padding: 80px 0;
}
.fin-calc-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 48px 44px;
    color: #fff;
}
.fin-calc-group {
    margin-bottom: 32px;
}
.fin-calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.fin-calc-label {
    font-size: 14px;
    font-family: 'Outfit-SemiBold';
    color: rgba(255,255,255,0.85);
}
.fin-calc-val-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 6px 12px;
}
.fin-calc-val-wrap-term {
    gap: 6px;
}
.fin-calc-prefix,
.fin-calc-suffix {
    font-size: 13px;
    font-family: 'Outfit-SemiBold';
    color: rgba(255,255,255,0.6);
}
.fin-calc-val-input {
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: 'Outfit-Bold';
    color: #fff;
    width: 90px;
    text-align: right;
    -moz-appearance: textfield;
}
.fin-calc-val-input::-webkit-inner-spin-button,
.fin-calc-val-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* Range slider */
.fin-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.2);
    outline: none;
    cursor: pointer;
}
.fin-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #56b7e2;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.fin-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.fin-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #56b7e2;
    border: 3px solid #fff;
    cursor: pointer;
}
.fin-range-minmax {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #fff !important;
    margin-top: 8px;
}
.fin-range-minmax span {
    color: #fff !important;
}
.fin-calc-rate-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(86,183,226,0.12);
    border: 1px solid rgba(86,183,226,0.3);
    border-radius: 10px;
    padding: 12px 16px;
}
.fin-calc-rate-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}
.fin-calc-rate-val {
    font-size: 16px;
    font-family: 'Outfit-Bold';
    color: #56b7e2;
}
.fin-calc-rate-note {
    font-size: 12px;
    color: #fff !important;
    margin-left: auto;
}

/* Calculator result panel */
.fin-calc-result {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
}
.fin-result-label {
    font-size: 13px;
    font-family: 'Outfit-SemiBold';
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.fin-result-amount {
    font-size: 52px;
    font-family: 'Outfit-Bold';
    color: var(--main-blue);
    margin-bottom: 24px;
    line-height: 1;
}
#calcMonthly {
    font-size: 60px;
    line-height: 1;
    display: block;
}
.fin-result-breakdown {
    background: var(--border-color);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: left;
}
.fin-rb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #dde8f5;
    font-size: 13px;
}
.fin-rb-row:last-child {
    border-bottom: none;
}
.fin-rb-key {
    color: var(--gray-text);
}
.fin-rb-val {
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
}
.fin-rb-total .fin-rb-key {
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
}
.fin-rb-total .fin-rb-val {
    color: var(--main-blue);
    font-size: 15px;
    font-family: 'Outfit-Bold';
}
.btn-fin-calc-apply {
    display: block;
    width: 100%;
    background: var(--main-blue);
    color: #fff;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 15px;
    font-family: 'Outfit-SemiBold';
    text-decoration: none;
    text-align: center;
    margin-bottom: 14px;
    transition: all 0.3s ease-in-out;
}
.btn-fin-calc-apply:hover {
    background: #163870;
    color: #fff;
}
.fin-result-disclaimer {
    font-size: 11px;
    color: var(--gray-text);
    line-height: 1.5;
    margin: 0;
}
.fin-result-disclaimer a {
    color: #56b7e2;
}

/* Why Choose Us */
.fin-why-section {
    background: #fff;
    padding: 80px 0;
}
.fin-why-card {
    background: var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    height: 100%;
    text-align: center;
    border: 1.5px solid #e2ecf6;
    transition: all 0.3s ease-in-out;
}
.fin-why-card:hover {
    box-shadow: 0 8px 28px rgba(12,38,82,0.10);
    transform: translateY(-3px);
}
.fin-why-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--main-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.fin-why-icon {
    font-size: 26px;
    color: #fff;
}
.fin-why-title {
    font-size: 16px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 10px;
}
.fin-why-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
}

/* How It Works */
.fin-how-section {
    background: var(--border-color);
    padding: 80px 0;
}
.fin-steps-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.fin-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 12px;
}
.fin-step-num {
    font-size: 13px;
    font-family: 'Outfit-Bold';
    color: #56b7e2;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.fin-step-connector {
    position: absolute;
    top: 54px;
    left: calc(50% + 32px);
    right: calc(-50% + 32px);
    height: 2px;
    background: linear-gradient(to right, var(--main-blue), #56b7e2);
    opacity: 0.35;
    z-index: 0;
}
.fin-step:last-child .fin-step-connector {
    display: none !important;
}
.fin-step-body {
    width: 100%;
}
.fin-step-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--main-blue);
    border: 2px solid var(--main-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.fin-step:hover .fin-step-icon-wrap {
    background: #56b7e2;
    border-color: #56b7e2;
    transform: scale(1.08);
}
.fin-step-icon {
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.fin-step:hover .fin-step-icon {
    color: #fff;
}
.fin-step-title {
    font-size: 15px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 8px;
}
.fin-step-text {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.65;
    margin: 0;
}

/* Application Form */
.fin-apply-section {
    background: #fff;
    padding: 80px 0;
}
.fin-apply-inner {
    background: var(--border-color);
    border-radius: 20px;
    padding: 56px 52px;
}
.fin-apply-title {
    font-size: 28px;
    font-family: 'Outfit-Bold';
    color: var(--dark-navy);
    margin-bottom: 14px;
}
.fin-apply-sub {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 32px;
}
.fin-apply-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.fin-apply-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.fin-apply-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #d0e4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--main-blue);
    flex-shrink: 0;
}
.fin-info-label {
    font-size: 12px;
    color: var(--gray-text);
    margin: 0 0 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.fin-info-val {
    font-size: 14px;
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    margin: 0;
}
.fin-apply-form {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
}
.fin-textarea {
    resize: vertical;
    min-height: 100px;
}
.fin-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
    cursor: pointer;
}
.fin-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--main-blue);
    cursor: pointer;
}
.fin-checkbox-label a {
    color: #56b7e2;
}
.btn-fin-submit {
    display: block;
    width: 100%;
    background: var(--main-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 15px;
    font-family: 'Outfit-SemiBold';
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.btn-fin-submit:hover {
    background: #163870;
}

/* Finance FAQ bg override */
.fin-faq-section {
    background: var(--border-color);
}

/* Finance Responsive */
@media (max-width: 991.98px) {
    .fin-steps-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }
    .fin-step-connector {
        display: none !important;
    }
    .fin-calc-card {
        padding: 32px 24px;
    }
    .fin-apply-inner {
        padding: 40px 28px;
    }
}
@media (max-width: 767.98px) {
    .fin-options-section,
    .fin-calc-section,
    .fin-why-section,
    .fin-how-section,
    .fin-apply-section {
        padding: 56px 0;
    }
    .fin-steps-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .fin-result-amount {
        font-size: 40px;
    }
    .fin-section-title,
    .fin-calc-title {
        font-size: 24px;
    }
    .fin-apply-form {
        padding: 24px 20px;
    }
    .fin-apply-inner {
        padding: 32px 20px;
    }
    .fin-calc-rate-note {
        display: none;
    }
}

/* INDEX */

/* Hero Carousel */
.hero-section {
    overflow: hidden;
}

.hero-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.hero-slide {
    flex: 0 0 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slide-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slide-content {
    position: relative;
    z-index: 1;
    height: 100%;
}

.hero-slide h2 {
    font-family: 'Outfit-SemiBold';
    font-size: 50px;
    line-height: 64px;
    color: #fff;
    margin-top: 30%;
}

/* Hero slider nav arrows */
.hero.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
    pointer-events: none;
    margin: 0;
}
.hero.owl-theme .owl-nav .owl-prev,
.hero.owl-theme .owl-nav .owl-next {
    pointer-events: all;
    width: 40px;
    height: 40px;
    background: #fff !important;
    background-image: none !important;
    border-radius: 50% !important;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.35);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
    margin: 0;
    line-height: 1;
}
.hero.owl-theme .owl-nav .owl-prev:hover,
.hero.owl-theme .owl-nav .owl-next:hover {
    background: var(--dark-navy) !important;
}
.hero.owl-theme .owl-nav .owl-prev span,
.hero.owl-theme .owl-nav .owl-next span {
    display: none;
}
.hero.owl-theme .owl-nav .owl-prev i,
.hero.owl-theme .owl-nav .owl-next i {
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}
.hero.owl-theme .owl-nav .owl-prev:hover i,
.hero.owl-theme .owl-nav .owl-next:hover i {
    color: #fff;
}

.hero-slide .btn-light-blue {
    margin-top: 16px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 0;
}

.hero-dot.active {
    background: var(--light-blue);
    width: 28px;
}

/* Brand Logos */
.brand-logos {
    position: relative;
    background: #fff;
}

.brands-carve {
    display: table;
    position: absolute;
    top: -133px;
    left: 0;
    background-color: #fff;
    padding: 35px 40px 35px 13%;
    z-index: 1;
}

.brands-carve::after {
    content: "";
    background-image: url('images/banner-carve.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 170px;
    height: 110px;
    position: absolute;
    right: -168px;
    top: 0;
}

.brands-carve h2 {
    color: #fff;
    font-family: 'Outfit-Regular';
    white-space: nowrap;
}

.img-box {
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.img-box:hover {
    box-shadow: 0 4px 34px rgba(27, 63, 148, 0.1);
}

.row-gap-3 {
    row-gap: 30px;
}

@media (max-width: 767px) {
    .brands-carve {
        display: none;
    }
}

/* Search Filter */
.bg-dark-navy-container {
    background-color: var(--dark-navy);
    position: relative;
    margin-top: 150px;
}

.filter-wrapper {
    background-color: var(--light-blue);
    border-radius: 12px;
    padding: 50px 40px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    outline: 10px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.filter-wrapper h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 28px;
    font-family: 'Outfit-Regular';
}

.filter-wrapper .form-control {
    border: none;
    height: 45px;
    font-size: 13px;
    color: #777;
    border-radius: 6px;
    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='currentColor' 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: 16px;
    padding-right: 30px;
    appearance: none;
    -webkit-appearance: none;
}

/* Why Choose Pre-Owned */
.why-choose-section {
    padding: 250px 0 80px;
    color: #fff;
}

.why-choose-section h3 {
    color: #fff;
    font-family: 'Outfit-SemiBold';
    font-size: 22px;
    margin-bottom: 50px;
}

.icon-circle {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-box h5 {
    color: #fff;
    font-family: 'Outfit-Medium';
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Featured Cars */
.featured-cars-section {
    padding: 100px 0;
    background: #fff;
}
.featured-cars-section h3 { margin-bottom: 30px; }

.cars-section-header {
    position: relative;
    margin-bottom: 40px;
}

.cars-section-header h3 {
    font-family: 'Outfit-SemiBold';
    font-size: 28px;
    color: var(--dark-navy);
}

.cars-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1.5px solid #dde3ee;
    border-radius: 10px;
    color: #6b7a99;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
    font-size: 13px;
    padding: 0;
}

.nav-btn i {
    color: #6b7a99 !important;
    font-size: 13px;
}

.nav-btn:hover {
    background: #f4f6fa;
    border-color: #bcc5d8;
}

.nav-btn:hover i {
    color: var(--dark-navy) !important;
}

.lifestyle-nav {
    display: flex;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.cars-nav .nav-btn:first-child,
.testimonial-nav .nav-btn:first-child,
.lifestyle-nav .nav-btn:first-child {
    border-radius: 10px;
    border-right: 1.5px solid #dde3ee;
}

.cars-nav .nav-btn:last-child,
.testimonial-nav .nav-btn:last-child,
.lifestyle-nav .nav-btn:last-child {
    border-radius: 10px;
}

.featured-cars-carousel .owl-nav { display: none !important; }

.featured-cars-carousel-wrapper {
    overflow: hidden;
}

.featured-cars-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.car-card {
    flex: 0 0 calc(25% - 15px);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.car-card:hover {
    border-color: transparent;
    box-shadow: 0 6px 24px rgba(27, 63, 148, 0.12);
}

.car-img-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.car-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.car-card:hover .car-img-wrap img {
    transform: scale(1.05);
}

.heart-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    color: #F02E48;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 0;
}

.heart-icon:hover {
    background: #F02E48;
    color: #fff;
}

.car-details {
    padding: 16px;
}

.car-title {
    font-family: 'Outfit-Regular';
    font-size: 18px;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.carspecs-img {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain;
    margin-right: 5px;
    flex-shrink: 0;
}

.car-specs span {
    display: flex;
    align-items: center;
}

.car-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.car-price {
    font-family: 'Outfit-SemiBold';
    font-size: 20px;
    color: var(--navy-blue);
    line-height: 1;
}

/* Distributor + Testimonials */
.distributor-section {
    background-color: var(--light-blue);
    padding: 100px 0;
}

.distributor-left {
    padding-left: 250px;
}

.distributor-right {
    padding-right: 0;
}

.distributor-title {
    font-family: 'Outfit-Bold';
    font-size: 48px;
    line-height: 64px;
    color: var(--main-blue);
    margin-bottom: 20px;
}

.distributor-text {
    font-size: 24px;
    color: var(--main-blue);
    line-height: 1.5;
    margin-bottom: 30px;
}

.testimonials-wrap {
    position: relative;
    width: 100%;
    padding-left: 40px;
}

.testimonials-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.testimonials-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 50px 40px;
    width: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 4px 34px rgba(27, 63, 148, 0.1);
}

.quote-icon {
    font-size: 48px;
    color: var(--dark-navy);
    margin-bottom: 14px;
    text-align: center;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: var(--dark-navy);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.client-info {
    margin-top: 0;
    text-align: center;
}

.client-avatar {
    width: 68px !important;
    height: 68px !important;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    display: block;
}

.client-info h6 {
    font-family: 'Outfit-SemiBold';
    font-size: 16px;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.client-info p {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 0;
}

.client-divider {
    width: 100px;
    border-top: 1px solid #A1B0CE;
    margin: 12px auto;
}

.client-name {
    font-family: 'Outfit-SemiBold';
    font-size: 16px;
    color: var(--main-blue);
    margin-bottom: 4px;
}

.client-role {
    font-size: 12px;
    color: var(--gray-text);
    margin: 0;
}

.testimonial-nav {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    padding-left: 0;
    width: fit-content;
}

/* Dealers & Brands */
.dealers-brands-section {
    background: #fff;
    text-align: center;
    padding: 100px 0;
}

.dealers-brands-section .dealers-intro {
    color: var(--gray-text);
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 50px;
}

.badge-img {
    max-width: 200px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.badge-col:hover .badge-img {
    transform: scale(1.05);
}

.badge-col h5 {
    font-family: 'Outfit-SemiBold';
    font-size: 18px;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.badge-col p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* Browse by Lifestyle */
.lifestyle-section {
    background-color: var(--dark-navy);
    padding: 100px 0;
}

.lifestyle-section h3 {
    color: #fff;
    font-family: 'Outfit-SemiBold';
    font-size: 28px;
    margin-bottom: 40px;
}

.lifestyle-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.lifestyle-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.lifestyle-card {
    flex: 0 0 calc(25% - 15px);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 380px;
    cursor: pointer;
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.lifestyle-card:hover img {
    transform: scale(1.06);
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    text-align: center;
}

.lifestyle-overlay h4 {
    color: #fff;
    font-family: 'Outfit-SemiBold';
    font-size: 20px;
    margin: 0;
}

/* Car Showcase Grid */
.mt-40 { margin-top: 40px; }

.showcase-grid-section {
    padding: 100px 0 40px;
    background: #fff;
}

.grid-img-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 10px;
}

.grid-img-wrap img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease-in-out;
}

.grid-img-wrap:hover img {
    transform: scale(1.05);
}

.grid-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #fff;
}

.grid-img-overlay h6 {
    font-family: 'Outfit-SemiBold';
    font-size: 14px;
    margin-bottom: 6px;
    color: #fff;
}

.grid-img-overlay p {
    font-family: 'Outfit-Bold';
    font-size: 20px;
    color: #fff;
    margin: 0;
}

.commercial-market h3 {
    font-family: 'Outfit-Bold';
    font-size: 28px;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.commercial-market p {
    color: var(--gray-text);
    margin-bottom: 30px;
}

/* Process Steps */
.process-section {
    background: #fff;
    padding: 40px 0 140px;
}

.process-section h3 {
    color: var(--dark-navy);
    font-family: 'Outfit-SemiBold';
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
}

.process-box {
    border: 2px solid #66CC99;
    border-radius: 10px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
    z-index: 2;
    height: 100%;
}

.process-icon {
    margin-right: 15px;
    flex-shrink: 0;
}

.process-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.process-text h6 {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-navy);
    margin: 0 0 5px;
}

.process-text p {
    font-size: 12px;
    color: var(--gray-text);
    margin: 0;
}

.process-arrow {
    position: absolute;
    right: -30px;
    top: -10px;
    transform: translateY(-50%);
    z-index: 1;
}

.bottom-arrow {
    position: absolute;
    right: -30px;
    bottom: -45px;
    transform: translateY(-50%);
    z-index: 1;
}

/* Heading Samples */
.heading-samples-section {
    background: #E8EBF0;
    padding: 0 0 60px;
    text-align: center;
}

.sample-card {
    position: relative;
    background: transparent;
    padding: 70px 28px 0;
    text-align: center;
}

.sample-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--main-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid #fff;
    overflow: hidden;
    z-index: 2;
    transition: background 0.3s ease-in-out;
}

.sample-circle img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.sample-card:hover .sample-circle {
    background: var(--navy-blue);
}

.sample-card h4 {
    font-family: 'Outfit-SemiBold';
    font-size: 20px;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.sample-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* btn-navy-blue */
.btn-navy-blue {
    background-color: var(--navy-blue);
    color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    font-family: 'Outfit-Medium';
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    display: inline-block;
    text-decoration: none;
}

.btn-navy-blue:hover {
    border: 1px solid var(--navy-blue);
    background-color: #fff;
    color: var(--navy-blue);
}

/* Index Responsive */
@media (max-width: 1800px) {
    .distributor-left { padding-left: 180px; }
}
@media (max-width: 1700px) {
    .distributor-left { padding-left: 130px; }
}
@media (max-width: 1600px) {
    .distributor-left { padding-left: 90px; }
}
@media (max-width: 1440px) {
    .distributor-left { padding-left: 40px; }
}
@media (max-width: 1399px) {
    .distributor-left { padding-left: 50px; }
    .distributor-title { font-size: 38px; line-height: 50px; }
}

@media (max-width: 991px) {
    .hero-section-content h2 { font-size: 30px; line-height: 40px; }
    .hero-section { height: 480px; }
    .distributor-section { padding: 60px 0; }
    .distributor-title { font-size: 30px; line-height: 40px; }
    .distributor-left {
        padding-left: 30px;
        padding-right: 30px;
        text-align: center;
        margin-bottom: 30px;
    }
    .distributor-right { }
    .testimonials-wrap { padding-left: 20px; }
    .testimonial-nav { padding-left: 20px; }
    .car-card { flex: 0 0 calc(50% - 10px); }
    .lifestyle-card { flex: 0 0 calc(50% - 10px); height: 300px; }
    .showcase-grid-section { padding: 60px 0; }
    .commercial-market { padding-top: 30px; text-align: center; }
    .dealers-brands-section { padding: 60px 0; }
    .process-section { padding: 60px 0; }
    .heading-samples-section { padding: 70px 0 40px; }
    .heading-samples-section .col-md-4 + .col-md-4 { margin-top: 100px; }
    .why-choose-section { padding: 80px 0 60px; }
}

@media (max-width: 767px) {
    .hero-section { height: 380px; }
    .hero-slide { height: 380px; }
    .hero-slide-content {
        display: flex;
        align-items: flex-end;
        padding-bottom: 28px;
    }
    .hero-slide-content .row {
        width: 100%;
        text-align: center;
    }
    .hero-slide-content .row > div {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .hero-slide h2 {
        font-size: 22px;
        line-height: 30px;
        margin-top: 0;
    }
    .distributor-title { font-size: 22px; line-height: 30px; text-align: center; }
    .distributor-text { font-size: 16px; }
    .distributor-left { padding-left: 20px; padding-right: 20px; }
    .testimonial-card { padding: 30px 25px; min-height: unset; }
    .testimonial-text { font-size: 15px; }
    .filter-wrapper {
        padding: 28px 20px;
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        width: calc(100% - 32px);
        max-width: 100%;
        border-radius: 18px;
        outline: 10px solid rgba(255, 255, 255, 0.12);
        margin: 0 16px;
    }
    .bg-dark-navy-container { margin-top: 0; padding: 40px 0; }
    .filter-wrapper h3 { font-size: 16px; }
    .why-choose-section { padding: 50px 0; }
    .why-choose-section h3 { text-align: center; }
    .feature-box { text-align: center; }
    .icon-circle { margin: 0 auto 16px; }
    .car-card { flex: 0 0 100%; }
    .featured-cars-section { padding: 60px 0; }
    .lifestyle-section { padding: 60px 0; }
    .lifestyle-card { flex: 0 0 80%; height: 220px; }
    .showcase-grid-section { padding: 40px 0; }
    .grid-img-wrap img { height: 160px; }
    .commercial-market h3 { font-size: 22px; }
    .process-section { padding: 40px 0; }
    .process-section h3 { text-align: center; }
    .process-arrow, .bottom-arrow { display: none; }
    .process-box { flex-direction: column; align-items: center; text-align: center; }
    .process-icon { margin: 0 auto 12px; }
    .heading-samples-section { padding: 70px 0 40px; }
    .heading-samples-section .col-md-4 + .col-md-4 { margin-top: 100px; }
    .dealers-brands-section { padding: 40px 0; }
    .badge-img { max-width: 140px; }
}

/* CONTACT */
.map-section iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-wrapper h3 {
    font-family: 'Outfit-SemiBold';
    font-size: 28px;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--gray-text);
    margin-bottom: 30px;
}

.contact-form-wrapper .form-control {
    height: 50px;
    border-radius: 6px;
    border: 1px solid #DFE3E8;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--gray-text);
}

.contact-form-wrapper textarea.form-control {
    height: auto;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 0.15rem rgba(27, 63, 148, 0.1);
}

.contact-info-card {
    border: 2px solid var(--light-blue);
    border-radius: 15px;
    padding: 30px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.info-item {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-item strong {
    color: var(--gray-text);
    display: inline-block;
    width: 110px;
    font-family: 'Outfit-Regular';
}

.emergency-box {
    background: var(--main-blue);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emergency-box:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.emergency-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    opacity: 0.9;
}

.emergency-box h5 {
    font-size: 15px;
    color: #fff;
    font-family: 'Outfit-Medium';
    margin: 0;
}

.emergency-box h3 {
    font-size: 26px;
    font-family: 'Outfit-Bold';
    color: var(--light-blue);
    margin: 0;
}

.emergency-box p {
    font-size: 13px;
    color: #fff;
    margin: 0;
}

@media (max-width: 991px) {
    .contact-info-card {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .contact-info-card {
        padding: 20px;
    }

    .map-section iframe {
        height: 300px;
    }
}

/* FREIGHTLINER */

/* Two-tone header */
.freightliner-header {
    background-color: var(--main-blue);
    position: relative;
    z-index: 100;
}

.freightliner-nav {
    height: 74px;
    padding: 0;
    align-items: stretch;
}

.freightliner-header-container {
    display: flex;
    align-items: stretch;
    height: 74px;
    padding: 0 12px;
}

.freightliner-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-right: 20px;
    flex-shrink: 0;
}

/* White right section — expands to fill remaining container space */
.freightliner-nav-right {
    background-color: #fff;
    position: relative;
    flex: 1;
    padding-left: 100px;
    align-items: stretch;
    overflow: visible;
}

/* shape.png curve at the left edge of white section */
.freightliner-nav-right::before {
    content: "";
    background-image: url('Images/shape.png');
    width: 91px;
    height: 74px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1;
}

/* Extend white bg to the right viewport edge beyond the container */
.freightliner-nav-right::after {
    content: "";
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100%;
    pointer-events: none;
}

.freightliner-desktop-nav {
    height: 74px;
    padding-right: 0;
}

.freightliner-logo {
    width: 138px;
    margin-left: 20px;
    flex-shrink: 0;
}

.freightliner-nav-link {
    font-family: 'Outfit-Regular';
    font-size: 15px;
    color: var(--dark-navy);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.freightliner-nav-link:hover,
.freightliner-nav-link.active {
    color: var(--light-blue);
    text-decoration: none;
}

.freightliner-nav-link.dropdown-toggle::after {
    display: none;
}

.freightliner-search-btn {
    background: none;
    border: none;
    color: var(--dark-navy);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.freightliner-search-btn:hover {
    color: var(--light-blue);
}

/* Mobile: collapse to full dark menu */
@media (max-width: 1199px) {
    .freightliner-nav-right {
        background-color: var(--dark-navy);
        padding-left: 0;
    }
    .freightliner-nav-right::before {
        display: none;
    }
    .freightliner-nav-right.show {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        overflow-y: auto;
        z-index: 9999;
        display: flex !important;
        flex-direction: column;
        padding: 0;
    }
}

.freightliner-hero {
    height: 850px;
    background-image: url('Images/freightliner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.freightliner-hero h1 {
    font-family: 'Outfit-Bold';
    font-size: 48px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}

.freightliner-hero p {
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
}

.feature-strip {
    background-color: var(--light-blue);
    padding: 40px 0;
}

.feature-item {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item .feature-icon {
    margin-bottom: 15px;
}

.feature-item .feature-icon img {
    width: 80px;
}

.feature-item h5 {
    color: #fff;
    font-family: 'Outfit-Medium';
    font-size: 16px;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
}

.split-section .split-image {
    background-image: url('Images/contact.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    min-height: 500px;
}

.split-section .split-form {
    background-color: var(--dark-navy);
    padding: 60px 60px 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-form h3 {
    color: #fff;
    font-family: 'Outfit-SemiBold';
    font-size: 24px;
    margin-bottom: 10px;
}

.split-form > p {
    color: #fff;
    margin-bottom: 28px;
}

.split-form .form-control {
    border-radius: 6px;
    border: 1px solid #fff;
    background: #fff;
    color: var(--gray-text);
    padding: 10px 15px;
    height: 45px;
    font-size: 14px;
}

.split-form textarea.form-control {
    height: auto;
}

.split-form .form-control::placeholder {
    color: #999;
}

.split-form .form-control:focus {
    border-color: var(--light-blue);
    box-shadow: none;
}

.product-tabs-section {
    padding: 80px 0;
}

.product-tabs-section h3 {
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    font-size: 22px;
    margin-bottom: 28px;
}

.custom-nav-tabs {
    border-bottom: none;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
}

.custom-nav-tabs .nav-link {
    color: var(--gray-text);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Outfit-Medium';
    background: transparent;
    border-radius: 0;
    white-space: nowrap;
}

.custom-nav-tabs .nav-link.active,
.custom-nav-tabs .nav-link:hover {
    color: var(--dark-navy);
    border-bottom-color: var(--light-blue);
    background: transparent;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 4px;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 3px);
}

.carousel-slide img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease, color 0.3s ease;
}

.carousel-btn:hover {
    background: var(--dark-navy);
    color: #fff;
}

.carousel-btn.carousel-prev { left: 15px; }
.carousel-btn.carousel-next { right: 15px; }

.models-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.models-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background-color: var(--main-blue);
    z-index: 0;
}

.models-section .container {
    position: relative;
    z-index: 1;
}

.freightliner-txt {
    color: #fff;
    font-family: 'Outfit-SemiBold';
    font-size: 28px;
    margin-bottom: 10px;
}

.models-subtitle {
    color: #fff;
    margin-bottom: 40px;
}

.model-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.model-card img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover img {
    transform: scale(1.05);
}

.model-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.model-info h4 {
    font-size: 18px;
    font-family: 'Outfit-Medium';
    color: #fff;
    margin-bottom: 4px;
}

.model-info p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.dealers-section {
    background-color: #E8EBF0;
    padding: 80px 0;
    margin-top: 80px;
}

.dealers-section h3 {
    font-family: 'Outfit-SemiBold';
    color: var(--dark-navy);
    font-size: 26px;
    margin-bottom: 8px;
}

.dealers-section > .container > p {
    color: var(--gray-text);
    margin-bottom: 40px;
}

.dealercard {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
}

.dealercard h5 {
    font-family: 'Outfit-SemiBold';
    color: var(--main-blue);
    font-size: 16px;
    margin-bottom: 8px;
}

.dealercard p {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 4px;
}

/* ---- Full Range of Trucks Section ---- */
.flt-range-section {
    padding: 72px 0;
    background: #eaecf0;
}
.flt-range-title {
    font-family: 'Outfit-SemiBold';
    font-size: 30px;
    color: var(--dark-navy);
    margin-bottom: 28px;
}
.flt-range-tabs {
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.flt-range-tabs::-webkit-scrollbar {
    display: none;
}
.flt-range-tabs .nav-item {
    flex: 1;
}
.flt-range-tabs .nav-link {
    width: 100%;
    text-align: center;
    border-bottom: none !important;
    position: relative;
    padding-bottom: 13px;
}
.flt-range-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}
.flt-range-tabs .nav-link.active::after,
.flt-range-tabs .nav-link:hover::after {
    background: var(--light-blue);
}
@media (max-width: 767px) {
    .flt-range-tabs {
        justify-content: flex-start;
    }
    .flt-range-tabs .nav-link {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Vehicle Card */
.flt-vehicle-card {
    background: #fff;
    border: 1px solid #dde1e7;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Card header: name+desc left, image right */
.flt-vc-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 24px 20px;
}
.flt-vc-header-text {
    flex: 1;
    min-width: 0;
}
.flt-vc-name {
    font-family: 'Outfit-SemiBold';
    font-size: 20px;
    color: var(--dark-navy);
    margin-bottom: 10px;
}
.flt-vc-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Rounded rectangle image */
.flt-vc-img-wrap {
    width: 180px;
    height: 138px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f2f5;
}
.flt-vc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specs */
.flt-vc-specs-wrap {
    padding: 0 24px;
    border-top: 1px solid #e8ecf0;
}
.flt-vc-specs-row {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #e8ecf0;
}
.flt-vc-specs-row--last {
    border-bottom: none;
}
.flt-vc-spec {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.flt-vc-spec:not(:last-child) {
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px solid #e8ecf0;
}
.flt-vc-spec-val {
    font-family: 'Outfit-SemiBold';
    font-size: 13px;
    color: var(--dark-navy);
}
.flt-vc-spec-label {
    font-size: 11px;
    color: var(--gray-text);
}

/* Buttons — equal width, side by side */
.flt-vc-btns {
    display: flex;
    gap: 12px;
    padding: 16px 24px 24px;
    margin-top: auto;
}
.flt-btn-primary,
.flt-btn-outline {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Outfit-SemiBold';
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.flt-btn-primary {
    background: var(--dark-navy);
    color: #fff;
    border: 2px solid var(--dark-navy);
}
.flt-btn-primary:hover {
    background: var(--light-blue);
    border-color: var(--light-blue);
    color: #fff;
}
.flt-btn-outline {
    background: #fff;
    color: var(--dark-navy);
    border: 2px solid #d0d5dd;
}
.flt-btn-outline:hover {
    background: var(--dark-navy);
    border-color: var(--dark-navy);
    color: #fff;
}

/* View all link */
.flt-view-all-link {
    font-family: 'Outfit-Medium';
    font-size: 14px;
    color: var(--dark-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.flt-view-all-link:hover {
    color: var(--light-blue);
}

/* Mobile adjustments */
@media (max-width: 575px) {
    .flt-vc-img-wrap { width: 110px; height: 76px; }
    .flt-vc-header { padding: 18px 16px 16px; gap: 12px; }
    .flt-vc-specs-wrap { padding: 0 16px; }
    .flt-vc-btns { padding: 14px 16px 18px; }
    .flt-vc-name { font-size: 18px; }
}

@media (max-width: 991px) {
    .freightliner-hero { height: 400px; }
    .freightliner-hero h1 { font-size: 32px; }
    .split-section .split-form { padding: 40px 20px; }
    .split-section .split-image { min-height: 350px; }
    .carousel-slide { flex: 0 0 calc(50% - 2px); }
}

@media (max-width: 575px) {
    .freightliner-hero h1 { font-size: 26px; }
    .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 20px; }
    .feature-item:last-child { border-bottom: none; }
    .carousel-slide { flex: 0 0 100%; }
    .carousel-btn.carousel-prev { left: 10px; }
    .carousel-btn.carousel-next { right: 10px; }
    .flt-vc-img { width: 120px; }
    .flt-vc-info { padding: 18px 12px 18px 16px; }
    .flt-vc-name { font-size: 16px; }
    .flt-vc-btns { flex-direction: column; }
    .flt-vc-btn { text-align: center; }
}



/* ========================================
   OWL CAROUSEL NAV OVERRIDES
   ======================================== */
.featured-cars-carousel .owl-nav { display: flex !important; position: absolute; top: -58px; right: 0; margin: 0 !important; gap: 8px; background: transparent !important; border: none !important; border-radius: 0 !important; overflow: visible !important; }
.lifestyle-carousel .owl-nav      { display: flex !important; position: absolute; top: -58px; right: 0; margin: 0 !important; gap: 8px; background: transparent !important; border: none !important; border-radius: 0 !important; overflow: visible !important; }
.testimonials-carousel { }
.testimonials-carousel .owl-stage  { display: flex !important; align-items: stretch; }
.testimonials-carousel .owl-item   { display: flex; align-items: stretch; }
.testimonials-carousel .owl-item .item { display: flex; width: 100%; }
.testimonials-carousel .owl-item .testimonial-card { height: 100%; }
/* testimonials carousel — nav handled by custom #testPrev / #testNext buttons */
.owl-theme .owl-nav button,
.owl-theme .owl-nav [class*='owl-'],
.owl-carousel.owl-theme .owl-nav .owl-prev,
.owl-carousel.owl-theme .owl-nav .owl-next {
    width: 40px !important;
    height: 40px !important;
    background: #fff !important;
    background-color: #fff !important;
    border: 1.5px solid #dde3ee !important;
    border-radius: 10px !important;
    color: #6b7a99 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    transition: background 0.25s, border-color 0.25s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.owl-theme .owl-nav button:hover,
.owl-theme .owl-nav [class*='owl-']:hover,
.owl-carousel.owl-theme .owl-nav .owl-prev:hover,
.owl-carousel.owl-theme .owl-nav .owl-next:hover {
    background: #f4f6fa !important;
    background-color: #f4f6fa !important;
    border-color: #bcc5d8 !important;
    color: var(--dark-navy) !important;
}
.owl-theme .owl-nav .disabled,
.owl-theme .owl-nav .disabled:hover {
    opacity: 1 !important;
    background: #fff !important;
    background-color: #fff !important;
    border-color: #dde3ee !important;
    color: #b0b8cc !important;
    cursor: default !important;
}
@media (max-width: 767px) {
    .testimonials-carousel .owl-nav { display: none !important; }
}

/* ========================================
   FOOTER (OLD STRUCTURE)
   ======================================== */
footer { background-color: #0C2652; }

.top-footer { padding: 60px 0 40px; }
.top-footer h4 { color: #fff; font-family: 'Outfit-SemiBold'; font-size: 22px; margin-bottom: 10px; }
.top-footer > .container > .row > div > p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 6px; }
.top-footer .add p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 5px; }
.top-footer ul { padding: 0; margin: 0; }
.top-footer ul li { list-style: none; margin-bottom: 10px; }
.top-footer ul li a { color: rgba(255,255,255,0.7); font-size: 16px; text-decoration: none; transition: color 0.3s; }
.top-footer ul li a:hover { color: var(--light-blue); }

.bottom-footer { background-color: #0C2652; padding: 18px 0; }
.bottom-footer .links a { color: rgba(255,255,255,0.7); font-size: 15px; margin-right: 15px; text-decoration: none; transition: color 0.3s; }
.bottom-footer .links a:hover { color: var(--light-blue); }
.bottom-footer .social-icon { display: flex; align-items: center; gap: 12px; margin-top: 0; margin-left: 10px; }
.bottom-footer .social-icon i { color: rgba(255,255,255,0.8); font-size: 14px; cursor: pointer; transition: color 0.3s; width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.bottom-footer .social-icon i:hover { color: var(--light-blue); }
.copy-right { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.copy-right span { color: rgba(255,255,255,0.6); font-size: 15px; }
.bottomtotop { width: 35px; height: 35px; background: var(--light-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; }
.bottomtotop i { color: var(--main-blue); font-size: 14px; }
.bottomtotop:hover { background: #fff; }

@media (max-width: 767px) {
    .top-footer { padding: 40px 0 20px; text-align: center; }
    .top-footer .col-lg-5,
    .top-footer .col-lg-7 { text-align: center; }
    .top-footer .col-sm-4 { width: 100%; text-align: center; margin-bottom: 8px; }
    .top-footer .col-lg-7 .row { margin-top: 24px; }
    .copy-right { justify-content: center; margin-top: 12px; flex-direction: column; align-items: center; gap: 8px; }
    .bottom-footer .d-block { text-align: center; }
    .bottom-footer .links { margin-bottom: 8px; }
    .bottom-footer .social-icon { justify-content: center; margin-top: 0; }
    .bottom-footer .social-icon i {
        width: 38px;
        height: 38px;
        border: 1.5px solid rgba(255,255,255,0.6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }
    .copy-right span { text-align: center; }
}

@media (max-width: 991px) {
    .hero.owl-theme .owl-nav { display: none !important; }
}
