<style>
/* Modern Design Update for Viktors Dealership */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #457b9d;
    --light-color: #f1faee;
    --dark-color: #1d3557;
    --gray-color: #8d99ae;
    --primary-hover: #2563eb;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 0.5rem;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Header Styling */
header {
    /* Transparent background with blur for modern effect */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    background: rgba(29, 53, 87, 0.82) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.3s, box-shadow 0.3s;
    position: sticky;
    top: 0;
    z-index: 1002;
}

header.affix,
header[data-spy="affix"] {
    background: rgba(29, 53, 87, 0.72) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18) !important;
    margin-top: 0 !important;
}


.company_info li a {
    color: var(--light-color) !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
}

.company_info li a:hover {
    color: var(--primary-color) !important;
}

.bottom-header {
    background-color: transparent !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.navbar-brand .logo {
    ,
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.navbar-brand .primary_text {
    color: white !important;
    font-weight: 700 !important;
}

.navbar-brand .secondary_text {
    color: var(--primary-color) !important;
    font-weight: 400 !important;
}

.navbar-default {
    background-color: transparent !important;
}

.navbar-default .navbar-nav>li>a {
    color: white !important;
    font-weight: 500 !important;
    transition: var(--transition) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li.active>a {
    color: var(--primary-color) !important;
    background-color: transparent !important;
}

.navbar-default .navbar-nav>li.active>a {
    position: relative !important;
}

.navbar-default .navbar-nav>li.active>a:after {
    content: '' !important;
    position: absolute !important;
    bottom: 15px !important;
    left: 15px !important;
    right: 15px !important;
    height: 2px !important;
    background-color: var(--primary-color) !important;
}

.dropdown-menu {
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    padding: 10px 0 !important;
}

.dropdown-menu>li>a {
    padding: 8px 20px !important;
    transition: var(--transition) !important;
}

.dropdown-menu>li>a:hover {
    background-color: rgba(230, 57, 70, 0.1) !important;
    color: var(--primary-color) !important;
}

/* Revolution Slider Enhancement */
.tp-caption.tp-resizeme.largewhitebg {
    background-color: rgba(29, 53, 87, 0.8) !important;
    color: white !important;
    padding: 15px 25px !important;
    border-radius: 8px !important;
    font-family: 'Montserrat', sans-serif !important;
}

.tp-caption.tp-resizeme.largewhitebg a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.tp-caption.tp-resizeme.largewhitebg a:hover {
    color: var(--primary-color) !important;
}

/* Vehicle Categories Section */
.car-block {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.car-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.car-block:hover .car-block-bottom {
    background-color: var(--primary-color) !important;
}

.car-block:hover .car-block-bottom h2 {
    color: white !important;
}

.car-block-bottom {
    padding: 15px;
    background-color: white;
}

.car-block-bottom h2 {
    font-size: 18px;
    margin: 0;
    color: var(--primary-color);
}

.img-flex {
    position: relative;
    overflow: hidden;
    height: 180px;
}

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

.car-block:hover .img-flex img {
    transform: scale(1.05);
}

.img-flex .align-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.car-block:hover .img-flex .align-center {
    opacity: 1;
}

.car-block:hover .img-flex:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 53, 87, 0.3);
    z-index: 1;
}

/* Welcome Section */
.consider {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-top: 30px;
}

.consider h3 {
    color: var(--primary-color) !important;
    margin-top: 0;
    position: relative;
    padding-bottom: 15px;
}

.consider h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color) !important;
}

.right-content ul {
    padding-left: 20px;
}

.right-content ul li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}

.right-content ul li:before {
    content: 'f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Parallax Section */
.parallax_scroll {
    position: relative;
}

.parallax_scroll .overlay {
    background-color: rgba(29, 53, 87, 0.85);
    padding: 60px 0;
}

form[name="vehicle_form_request"] h3 {
    color: var(--primary-color) !important;
}

.form_contact input.form-control,
.form_contact textarea.form-control {
    border: none;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.form_contact input.form-control:focus,
.form_contact textarea.form-control:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    outline: none;
}

#submit_btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

#submit_btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.testimonial_div h3 {
    color: var(--primary-color) !important;
}

/* Message Wrap Section */
.message-wrap {
    background-color: var(--primary-color) !important;
    padding: 40px 0 !important;
}

.message-wrap h2,
.message-wrap h5 {
    color: white !important;
    margin: 0 0 15px 0 !important;
}

.action_button {
    background-color: white !important;
    color: var(--primary-color) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 12px 25px !important;
    border: 2px solid white !important;
    transition: var(--transition) !important;
}

.action_button:hover {
    background-color: transparent !important;
    color: white !important;
}

/* Google Maps */
.gmap iframe {
    filter: grayscale(100%);
    transition: var(--transition);
}

.gmap iframe:hover {
    filter: grayscale(0%);
}

.side-widget .side-content h3, .side-widget .side-content a, .side-widget .side-content strong {
    color: var(--primary-color) !important;
}

.side-content .car-info table a.calculate, div.financing_calculator a.calculate  {
    color: white !important;
    background-color: var(--primary-color) !important;
}

.side-content .car-info table a.calculate:hover, div.financing_calculator a.calculate:hover {
    color: var(--primary-color) !important;
    background-color: white !important;
}

.inventory-listing {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    margin: 40px auto;
    max-width: 1200px;
}

.inventory {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(69, 123, 157, 0.10), 0 1.5px 8px rgba(230, 57, 70, 0.07);
    overflow: hidden;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s cubic-bezier(.4, 2, .6, 1), transform 0.22s cubic-bezier(.4, 2, .6, 1);
    position: relative;
    text-decoration: none;
    color: inherit;
    border: none;
}



.inventory .title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e63946;
    background: rgba(255, 255, 255, 0.96);
    padding: 20px 28px 10px 28px;
    border-bottom: 1.5px solid #f1faee;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.inventory .preview {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(69, 123, 157, 0.10);
    transition: transform 0.5s cubic-bezier(.4, 2, .6, 1), filter 0.4s;
    background: #e9ecef;
}

.inventory:hover .preview {
    transform: scale(1.04) rotate(-1deg);
    filter: brightness(1.08) saturate(1.13) drop-shadow(0 4px 16px #e6394633);
}

.inventory .details {
    padding: 18px 28px 10px 28px;
    font-size: 1.05rem;
    color: #1d3557;
    background: transparent;
    flex: 1 1 auto;
}

.inventory .details table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: transparent;
}

.inventory .details tr {
    border-bottom: 1px solid #f1faee;
}

.inventory .details td {
    padding: 7px 0;
    font-size: 1rem;
}

.inventory .details .label {
    color: #457b9d;
    font-weight: 600;
    width: 120px;
    letter-spacing: 0.2px;
}

.inventory .details .value {
    color: #222;
    font-weight: 400;
}

.inventory .price {
    background: none;
    padding: 0 28px 0 28px;
    font-size: 1.13rem;
    color: #1d3557;
    font-weight: 600;
    border: none;
    text-align: left;
    margin-bottom: 0;
}

.inventory .price .figure {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--primary-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    text-shadow: 0 2px 12px #e6394633;
    border-radius: 8px;
    margin-left: 0;
}

.inventory .price-label {
    font-size: 1.05rem;
    color: #8d99ae;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-right: 8px;
}

.inventory .view-details {
    text-shadow: 0 0 black !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 700;
    font-size: 1.13rem;
    border-radius: 30px;
    padding: 14px 36px;
    cursor: pointer;
    transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.18s;
    border: none;
    text-align: center;
    letter-spacing: 0.7px;
    box-shadow: 0 2px 12px #e6394633;
    position: relative;
    z-index: 2;
    gap: 10px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.inventory .view-details i {
    font-size: 1.3em;
    transition: transform 0.3s cubic-bezier(.4, 2, .6, 1), color 0.2s;
}

.inventory .view-details:hover,
.inventory .view-details:focus {
    background-color: white !important;
    color: var(--primary-color) !important;
    box-shadow: 0 6px 24px #e6394633;
    transform: translateY(-2px) scale(1.04);
}

.inventory .view-details:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px #e6394633;
}

@media (max-width: 600px) {

    .inventory .title,
    .inventory .details,
    .inventory .price {
        padding: 0 !important;
        margin-left: 48px !important;
    }
}

@media only screen and (max-width: 479px) {
    @media (max-width: 480px) {

        div.inventory .view-details,
        div.inventory .view-video {
            width: 50% !important;
            margin: auto auto 30px !important;
            float: none;
        }
    }
}

@media only screen and (max-width: 479px) {
    .inventory .title {
        left: -40px !important;
    }

    div.inventory .preview {
        left: 0px !important;
    }

    div.inventory .options-primary {
        margin-bottom: 40px !important;
    }

    div.inventory .figure {
        font-size: 30px !important;

    }
}
</style>