@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   PRIMO CAMPER - MODERN BLUE THEME
   Color Palette:
   - Primary: #2563eb (blue-600)
   - Primary Dark: #1d4ed8 (blue-700)
   - Primary Light: #3b82f6 (blue-500)
   - Secondary: #60a5fa (blue-400)
   - Secondary Light: #93c5fd (blue-300)
   - Accent Gold: #f59e0b (amber-500)
   - Dark: #1e293b (slate-800)
   - Dark Light: #334155 (slate-700)
   ============================================ */

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a, .top-bar span {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar i {
    margin-right: 6px;
    color: #60a5fa;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

html {
    -webkit-font-smoothing: subpixel-antialiased;
    height: 100%
}

body {
    color: #1e293b;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
    background-color: #f8fafc;
}

p, li {
    line-height: 1.35em
}

h1 {
    font-weight: 800;
    font-style: italic
}

h2, h3, h4, h5, strong {
    font-weight: 700
}

a {
    color: #2563eb;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out
}

a:hover, a:focus {
    color: #1d4ed8;
    text-decoration: underline
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover {
    text-decoration: none
}

/* Logo */
.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out
}

/* Navbar Toggler */
.navbar-toggler {
    border: 0;
    background: transparent !important
}

.navbar-toggler:focus {
    outline: 0;
    background: transparent !important
}

.navbar-toggler .icon-bar {
    background-color: #fff;
    transform: rotate(0) translate(0, 0);
    transition: ease all .2s
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px
}

.icon-bar:nth-child(2) {
    width: 16px;
    transition: ease all .2s
}

.navbar-toggler:hover>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s
}

.navbar-toggler:active>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
    transition: ease all .2s
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    transition: ease all .2s
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    transition: ease all .2s
}

/* Header & Navigation */
header .navbar {
    background: linear-gradient(to top, #1e293b, #334155);
    padding: 0 50px
}

header .navbar-brand {
    padding: 0;
    margin: 0;
    width: 0;
    overflow: hidden;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out
}

.logo-sticky-navbar {
    height: 40px;
    width: auto
}

.sticky.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5)
}

.sticky.is-sticky .navbar-brand {
    width: 105px;
    margin-right: 20px
}

header .navbar-nav>li.nav-item>a.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    padding: 15px 30px;
    letter-spacing: .02em;
    border-left: 1px solid #334155;
    border-right: 1px solid #334155;
    margin-right: -1px
}

header .navbar-nav>li.nav-item>a.nav-link:hover,
.navbar-nav>li.nav-item>a.nav-link:focus {
    color: #93c5fd;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.40)
}

header .navbar-nav>li.nav-item.active>a.nav-link {
    color: #93c5fd
}

header .navbar-nav>li.nav-item.bg-primary {
    background: linear-gradient(to top, #1d4ed8, #2563eb);
    border-radius: 6px
}

header .navbar-nav>li.nav-item.bg-primary:hover,
header .navbar-nav>li.nav-item.bg-primary:focus {
    background: linear-gradient(to top, #1e40af, #1d4ed8)
}

header .navbar-nav>li.nav-item.bg-primary>a.nav-link:hover,
.navbar-nav>li.nav-item.bg-primary>a.nav-link:focus {
    color: #fff
}

/* Spacers */
.spacer {
    height: 80px
}

.spacer-small {
    height: 40px
}

.divider {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 200px
}

/* Font Weights */
.fw-100 {
    font-weight: 100 !important
}

.fw-300 {
    font-weight: 300 !important
}

.fw-400 {
    font-weight: 400 !important
}

.fw-800 {
    font-weight: 800 !important
}

.text-uppercase {
    text-transform: uppercase
}

.text-shadow {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.40)
}

/* Font Sizes */
.small {
    font-size: .9em
}

.extra-small {
    font-size: .8em
}

.extra-extra-small {
    font-size: .7em
}

/* Colors */
.color-light {
    color: #fff
}

.color-default {
    color: #1e293b
}

.color-primary {
    color: #2563eb
}

.color-secondary {
    color: #60a5fa
}

a.color-light {
    color: #fff
}

a.color-light:hover, a.color-light:focus {
    color: #e2e8f0 !important
}

a.color-default {
    color: #1e293b
}

a.color-default:hover, a.color-default:focus {
    color: #0f172a !important
}

a.color-primary {
    color: #1d4ed8
}

a.color-primary:hover, a.color-primary:focus {
    color: #2563eb !important
}

a.color-secondary {
    color: #93c5fd
}

a.color-secondary:hover, a.color-secondary:focus {
    color: #60a5fa !important
}

h1 a.color-primary {
    color: #1d4ed8
}

h1 a.color-primary:hover, h1 a.color-primary:focus {
    color: #2563eb !important
}

h2 a.color-primary {
    color: #1d4ed8
}

h2 a.color-primary:hover, h2 a.color-primary:focus {
    color: #2563eb !important
}

h3 a.color-primary {
    color: #1d4ed8
}

h3 a.color-primary:hover, h3 a.color-primary:focus {
    color: #2563eb !important
}

/* Backgrounds */
.bg-light {
    background-color: #f1f5f9 !important
}

.bg-default {
    background-color: #1e293b !important
}

.bg-gradient-default {
    background: linear-gradient(to top, #1e293b, #334155)
}

.bg-primary {
    background-color: #2563eb !important
}

.bg-secondary {
    background-color: #3b82f6 !important
}

.bg-primary-transparent {
    background-color: rgba(37, 99, 235, 0.9)
}

/* Home Header Background */
.home-image-bg {
    background-image: url(../imgs/home-header-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

/* Buttons */
.btn {
    border: none !important;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 700;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out
}

.btn:focus, .btn.focus,
.btn:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active:focus,
.show>.btn.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(37, 99, 235, 0.3)
}

.btn-sm {
    padding: 6px 15px;
    font-size: .8em
}

.btn-default, .btn-default:active,
.btn-default:not(:disabled):not(.disabled):active,
.btn-default:not(:disabled):not(.disabled).active {
    background: linear-gradient(to top, #1e293b, #334155);
    color: #fff
}

.btn-default:hover, .btn-default:focus {
    background: linear-gradient(to top, #0f172a, #1e293b);
    color: #fff
}

.btn-primary, .btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    background: linear-gradient(to top, #1d4ed8, #2563eb);
    color: #fff
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(to top, #1e40af, #1d4ed8);
    color: #fff
}

.btn-secondary, .btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
    background-color: #60a5fa;
    color: #fff
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #3b82f6;
    color: #fff
}

/* Form Inputs */
input::placeholder {
    color: #94a3b8 !important
}

textarea:focus, input[type="text"]:focus, input[type="password"]:focus,
input[type="datetime"]:focus, input[type="datetime-local"]:focus,
input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus,
input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus,
input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus,
input[type="color"]:focus, .uneditable-input:focus {
    border-color: #2563eb;
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.075) inset, 0 0 8px rgba(37, 99, 235, 0.4);
    outline: 0 none
}

/* Breadcrumb */
.breadcrumb {
    background: 0;
    font-size: .8em;
    color: #fff;
    padding: 0
}

.breadcrumb-item.active {
    color: #94a3b8
}

/* Cards */
.card {
    border-radius: 5px;
    border: 1px solid #e2e8f0
}

.card:hover {
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
    -webkit-box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out
}

.card figure {
    overflow: hidden;
    position: relative;
    margin: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.card figure figcaption {
    text-align: center;
    font-size: 2.5em;
    position: absolute;
    top: 70%;
    left: 50%;
    margin-top: -30px;
    margin-left: -20px;
    color: #fff;
    opacity: 0;
    -moz-opacity: 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out
}

.card figure:hover figcaption {
    opacity: 1;
    -moz-opacity: 1;
    top: 50%;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg)
}

.card figure img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out
}

.card figure:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
    opacity: .5;
    -moz-opacity: .5
}

.card-body {
    padding-bottom: 0
}

.card-footer {
    border-top: 0;
    background: 0
}

/* Pagination */
.pagination {
    margin-top: 30px;
    display: block;
    text-align: center
}

.pagination .nav-links {
    padding: 0;
    margin: 0;
    display: inline-block
}

.pagination .nav-links a, .pagination .nav-links span.current {
    margin: 0;
    padding: 2px 6px;
    display: inline-block
}

/* Badges */
.badge {
    font-weight: 400;
    padding: 5px 15px;
    border-radius: 0
}

.badge-light {
    background-color: #fff !important
}

.badge-default {
    background-color: #f1f5f9 !important
}

.badge-primary {
    background-color: #2563eb !important
}

.badge-secondary {
    background-color: #3b82f6 !important
}

/* Opacity */
.o-50 {
    opacity: .5;
    -moz-opacity: .5;
    -webkit-opacity: .5
}

/* Thumbnails */
.attachment-shop_thumbnail.size-shop_thumbnail {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out
}

.attachment-shop_thumbnail.size-shop_thumbnail:hover {
    opacity: .7;
    -moz-opacity: .7;
    -webkit-opacity: .7
}

/* List Group */
.list-group-item {
    border: 0;
    border-radius: 0 !important;
    padding: 0;
    background: 0;
    margin: 0
}

.list-group-item a {
    color: #fff;
    display: block;
    padding: 5px 0 5px 5px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out
}

.list-group-item a .fa-chevron-circle-right {
    opacity: 0;
    -moz-opacity: 0;
    position: relative;
    left: -20px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out
}

.list-group-item a:hover, .list-group-item a:focus {
    text-decoration: none;
    padding: 5px 0 5px 10px
}

.list-group-item a:hover .fa-chevron-circle-right,
.list-group-item a:focus .fa-chevron-circle-right {
    opacity: 1;
    -moz-opacity: 1;
    position: relative;
    left: 5px;
    color: #60a5fa !important
}

/* Cookie Notice */
#cookie-notice .button.bootstrap {
    font-family: 'Prompt', sans-serif;
    text-transform: uppercase;
    background: #2563eb;
    border-radius: 0;
    border: 0;
    color: #fff;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    padding: 6px 12px;
    font-size: .9em;
    font-weight: 700
}

#cookie-notice .button.bootstrap:hover {
    background: #1d4ed8;
    color: #fff;
    text-decoration: none
}

/* Transitions */
.transition {
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out
}

.th {
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out
}

.th:hover {
    opacity: .8;
    -moz-opacity: .8
}

/* Vehicle Details */
.vehicle-details {
    background-color: #2563eb;
    border-radius: 5px;
    position: relative;
    top: -25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5)
}

.mobile-vehicle-details {
    background-color: #2563eb;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5)
}

.mobile-vehicle-details .lead {
    font-size: 1.2em
}

/* Single Vehicle States */
.single-vehicle.ex-rent:before,
.single-vehicle.sold-as-seen:before,
.single-vehicle.consignment:before,
.single-vehicle.sold:before {
    display: none
}

.camperusati-vehicle-gallery {
    position: relative
}

div.secondhand_vehicle.ex-rent:after,
div.secondhand_vehicle.sold-as-seen:after,
div.secondhand_vehicle.consignment:after,
div.secondhand_vehicle.sold:after {
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    display: inline-block;
    top: 10px;
    right: 10px;
    font-weight: bold;
    padding: 8px 15px;
    text-align: center;
    line-height: 15px;
    font-size: .8em;
    z-index: 1
}

.ex-rent .camperusati-vehicle-gallery:after,
.sold-as-seen .camperusati-vehicle-gallery:after,
.consignment .camperusati-vehicle-gallery:after,
.sold .camperusati-vehicle-gallery:after {
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    display: inline-block;
    top: 10px;
    left: 10px;
    font-weight: bold;
    padding: 8px 15px;
    text-align: center;
    line-height: 15px;
    font-size: .8em;
    z-index: 1
}

div.secondhand_vehicle.ex-rent:after,
.ex-rent .camperusati-vehicle-gallery:after {
    content: "Ex noleggio";
    background: #f59e0b
}

div.secondhand_vehicle.sold-as-seen:after,
.sold-as-seen .camperusati-vehicle-gallery:after {
    content: "Visto e piaciuto";
    background: #3b82f6
}

div.secondhand_vehicle.consignment:after,
.consignment .camperusati-vehicle-gallery:after {
    content: "In conto vendita";
    background: #1e293b
}

div.secondhand_vehicle.sold:after,
.sold .camperusati-vehicle-gallery:after {
    content: "Venduto";
    background: #dc2626
}

/* Vehicle Compact Metadata */
.vehicle-compact-metadata {
    list-style-type: square;
    font-size: .9em;
    margin: 0;
    padding: 0;
    list-style-position: inside
}

.camperusati .btn-secondary:hover,
.camperusati .btn-secondary:focus,
.camperusati .btn-secondary:active {
    color: #fff !important
}

/* Category Links */
.category-link {
    color: #1e293b
}

.category-link:hover, .category-link:focus {
    color: #2563eb
}

.category-icon {
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.95)))
}

.attachment-shop_single.size-shop_single {
    margin-bottom: 15px
}

.camperusati div.vehicle div.images {
    width: 100%
}

div.images .flex-control-thumbs li img {
    opacity: .8 !important;
    margin: 0
}

div.images .flex-control-thumbs li img:hover {
    opacity: 1 !important
}

.manufacturer-icon {
    max-height: 120px
}

/* Social Share Icons */
.socialshare-icon {
    font-size: 1.5em
}

.socialshare-icon li {
    margin-right: 5px
}

/* Info & Error Messages */
.camperusati-info {
    border-top-color: #2563eb
}

.camperusati-info::before {
    color: #2563eb
}

.camperusati-error::before,
.camperusati-info::before,
.camperusati-message::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    content: '\f071'
}

/* Tabs */
.camperusati-tabs .nav-tabs {
    border-bottom: #e2e8f0 1px solid;
    border-left: #e2e8f0 1px solid !important;
    margin-bottom: -1px !important
}

.camperusati-tabs .nav-tabs .nav-item .nav-link {
    background: #f1f5f9;
    color: #1e293b;
    border: #e2e8f0 1px solid;
    border-left: 0;
    font-weight: 400
}

.camperusati-tabs .nav-tabs .nav-item .nav-link.active,
.camperusati-tabs .nav-tabs .nav-item .nav-link.active:active,
.camperusati-tabs .nav-tabs .nav-item .nav-link.active:focus {
    background: #fff;
    color: #2563eb;
    border-bottom-color: #fff !important
}

.camperusati-tabs .nav-tabs .nav-item .nav-link:hover,
.camperusati-tabs .nav-tabs .nav-item .nav-link:focus {
    background: 0;
    color: #2563eb
}

/* Vehicle Categories Navbar */
nav.navbar.secondhand-vehicle-categories-navbar {
    background: 0;
    box-shadow: none
}

nav.navbar.secondhand-vehicle-categories-navbar li.cat-item {
    padding: 10px 30px 10px 0;
    text-align: left;
    position: relative
}

nav.navbar.secondhand-vehicle-categories-navbar li a {
    text-align: center
}

nav.navbar.secondhand-vehicle-categories-navbar ul.dropdown-menu {
    padding: 0;
    border-radius: 0
}

nav.navbar.secondhand-vehicle-categories-navbar ul.dropdown-menu li.cat-item {
    padding: 0;
    text-align: left
}

nav.navbar.secondhand-vehicle-categories-navbar ul.dropdown-menu li a.category-link {
    text-align: left;
    padding: 5px 10px;
    display: block
}

nav.navbar.secondhand-vehicle-categories-navbar div.dropdown-menu {
    padding: 0;
    border-radius: 0
}

nav.navbar.secondhand-vehicle-categories-navbar a.dropdown-item {
    text-align: left;
    padding: 5px 10px
}

nav.navbar.secondhand-vehicle-categories-navbar .current-cat,
nav.navbar.secondhand-vehicle-categories-navbar .current-cat-parent {
    background-color: transparent
}

/* Pagination */
.camperusati-pagination {
    margin: 30px 0;
    text-align: center
}

.camperusati-pagination ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-block
}

.camperusati-pagination ul li {
    margin: 0;
    padding: 0;
    display: inline-block
}

.camperusati-pagination ul li a,
.camperusati-pagination ul li span.current {
    margin: 0;
    padding: 2px 6px;
    display: inline-block
}

/* Responsive Styles */
@media(max-width:1200px) {
    header .navbar-nav>li.nav-item>a.nav-link {
        font-size: 16px;
        padding: 15px 20px
    }
}

@media(max-width:992px) {
    header .navbar {
        padding: 10px 20px
    }
    header .navbar-nav>li.nav-item>a.nav-link {
        border-left: none !important;
        border-right: none !important;
        border-top: 1px solid #334155;
        text-align: center
    }
    header .navbar-nav>li.nav-item.bg-primary>a.nav-link {
        border-top: none !important
    }
    header .dropdown .dropdown-menu {
        border: none !important
    }
    header .dropdown-menu:before {
        border: none !important
    }
}

@media(max-width:768px) {
    h1 {
        font-size: 32px
    }
    h2 {
        font-size: 28px
    }
    h3 {
        font-size: 24px
    }
    .spacer {
        height: 50px
    }
    .spacer-small {
        height: 25px
    }
}

/* Footer Styles */
footer, .footer, footer.bg-default, section.bg-default {
    background: linear-gradient(to top, #0f172a, #1e293b) !important
}

footer a, .footer a {
    color: #93c5fd
}

footer a:hover, .footer a:focus {
    color: #60a5fa
}

/* OWL Carousel Navigation */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: #2563eb !important;
    color: #fff !important
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #1d4ed8 !important
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: #2563eb !important
}

.owl-carousel .owl-dots .owl-dot span {
    background: #93c5fd !important
}

/* ===== MODERN DESIGN ENHANCEMENTS ===== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../imgs/home-header-bg.jpg) center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Modern Cards */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card figure {
    border-radius: 0;
    margin: 0;
    overflow: hidden;
}

.card figure img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover figure img {
    transform: scale(1.08);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background: transparent;
    border-top: 1px solid #f1f5f9;
    padding: 1rem 1.5rem;
}

/* Modern Buttons */
.btn {
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.5);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* Quote Request Button */
.btn-quote {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 14px;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-quote:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.5);
}

/* Modern Form Styles */
.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-group label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

/* Quote Form Section */
.quote-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quote-form-section h2 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 8px;
}

.quote-form-section .subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-header p {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Footer */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.footer-widget h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
}

.footer-contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-info i {
    color: #60a5fa;
    width: 20px;
}

/* Price Display */
.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
}

.price-tag .currency {
    font-size: 1rem;
    font-weight: 600;
}

/* Vehicle Meta Tags */
.vehicle-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #64748b;
}

/* Search Box Modern */
.search-box-modern {
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 8px;
}

.search-box-modern input {
    border: none;
    padding: 16px 20px;
    font-size: 1rem;
    flex: 1;
    border-radius: 12px;
    background: #f8fafc;
}

.search-box-modern input:focus {
    outline: none;
    background: #f1f5f9;
}

.search-box-modern .btn {
    padding: 16px 32px;
    white-space: nowrap;
}

/* Hide Cookie Notice */
.cookie-notice,
.cookie-notice-container,
#cookie-notice,
#cookies-eu-banner,
.cookies-eu-banner,
[class*="cookie-notice"],
[id*="cookie-notice"] {
    display: none !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility Classes */
.shadow-soft {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-medium {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.rounded-xl {
    border-radius: 16px;
}

.rounded-2xl {
    border-radius: 24px;
}

/* Main Title Modern */
.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
