/* BMW Type Next Pro - Regular font family */
@font-face {
    font-family: 'BMWTypeNext';
    src: url('../fonts/Pro-WOFF2/BMWTypeNextPro-Light.woff2') format('woff2'),
         url('../fonts/Pro-WOFF/BMWTypeNextProTT-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BMWTypeNext';
    src: url('../fonts/Pro-WOFF2/BMWTypeNextPro-Medium.woff2') format('woff2'),
         url('../fonts/Pro-WOFF/BMWTypeNextProTT-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BMWTypeNext';
    src: url('../fonts/Pro-WOFF2/BMWTypeNextPro-Bold.woff2') format('woff2'),
         url('../fonts/Pro-WOFF/BMWTypeNextProTT-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Base styles and typography */
:root {
    --bmw-blue: #1c69d4;
    --bmw-dark-blue: #0653b6;
    --bmw-light-gray: #f6f6f6;
    --bmw-soft-gray: #e8e8e8;
    --bmw-gray: #8e8e8e;
    --bmw-dark-gray: #4d4d4d;
    --bmw-black: #262626;
    --bmw-white: #ffffff;
    --bmw-footer: #aaa38e;
    --bmw-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    --border-radius: 0;
}

html {
    box-sizing: border-box;
}

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

body {
    font-family: 'BMWTypeNext', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.75;
    color: var(--bmw-black);
    margin: 0;
    padding: 0;
    background-color: var(--bmw-white);
    overflow-x: hidden;
    transition: margin .3s ease;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'BMWTypeNext', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 0;
    color: var(--bmw-black);
}

h1 {
    font-size: 1.8125rem;
    margin-bottom: .5rem;
    line-height: 1.5;
}

h2 {
    font-size: 1.8125rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

h3 {
    font-size: 1.75rem;
}

p {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-top: 0;
    color: var(--bmw-dark-gray);
}

a {
    color: var(--bmw-blue);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--bmw-dark-blue);
    text-decoration: none;
}

.legal {
    font-size: .75rem;
    font-weight: 300;
    margin-top: 5px;
    text-align: left;
    color: var(--bmw-gray);
}

/* Simple Grid System */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.mt {
    margin-top: 30px;
}

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

.col {
    padding: 0 15px;
    width: 100%;
}

.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    color: var(--bmw-white);
    padding: 15px 0 0 0;
    transition: all .3s ease;
}

.header.scrolled {
    background-color: rgba(0, 0, 0, .7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.header.scrolled .header-container {
    border-bottom: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bmw-white);
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-container .logo-main {
    height: 30px;
    width: auto;
}

.logo-container .logo-sub {
    height: 40px;
    width: auto;
    margin-left: 20px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    /*justify-content: space-between;*/
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 100%;
    /*margin-left: 40px;*/
}

.desktop-nav .nav-menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: .875rem;
    font-weight: 500;
    height: 100%;
}

.desktop-nav .nav-item {
    margin-left: 25px;
    height: 40px;
    display: flex;
    align-items: center;
}

.desktop-nav .nav-menu-left {
    margin-right: 40px;
}

.nav-menu-left .nav-item:first-child {
    margin-left: 0;
}

.nav-menu-right .nav-item {
    margin-left: 0;
}

.nav-icon {
    height: 20px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: relative;
}

.mobile-nav .nav-menu-right {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mobile-nav .nav-menu-right .nav-item {
    margin: 0 10px 0 0 !important;
    padding: 0 !important;
}

.mobile-nav .nav-menu-right .nav-item:last-child {
    margin-right: 0 !important;
}

.mobile-nav .nav-menu-right .hamburger-icon {
    margin: 0 0 0 10px !important;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    cursor: pointer;
    z-index: 102;
    position: relative;
    float: right;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--bmw-white);
    border-radius: 1px;
    transition: all .3s ease;
}

.hamburger-icon.active span {
    background-color: var(--bmw-dark-gray);
}

.hamburger-icon.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.menu-items {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bmw-white);
    z-index: 101;
    transition: right .3s ease;
    padding: 80px 20px 0;
}

.menu-items.active {
    right: 0;
}

.mobile-nav .nav-menu {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 300;
}

.mobile-nav .menu-items .nav-item {
    border-bottom: 1px solid #e6e6e6;
    line-height: 1rem;
    margin: 0;
    padding: 15px 0;
}

.mobile-nav .menu-items .nav-item .nav-link {
    justify-content: left;
    padding: 0;
    color: var(--bmw-gray);
}

.mobile-nav .menu-items .nav-item .nav-link:hover,
.mobile-nav .menu-items .nav-item .nav-link.active {
    color: var(--bmw-blue);
    text-decoration: none;
}

.mobile-nav .menu-items .nav-item .nav-link:hover::after,
.mobile-nav .menu-items .nav-item .nav-link.active::after {
    width: 0;
}

.mobile-nav .nav-item {
    margin: 5px 0;
}

.nav-link {
    color: var(--bmw-white);
    text-decoration: none;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bmw-blue);
    transition: width .3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--bmw-white);
    text-decoration: none;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--bmw-white);
}

.hero picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

/* Main Heading */
.main-heading {
    text-align: center;
    padding: 60px 0;
    background-color: var(--bmw-white);
}

.main-heading h1 {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-heading p {
    font-size: 1.0625rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    text-transform: uppercase;
}

/* Features Section */
.features {
    padding: 0 0 60px 0;
    background-color: var(--bmw-white);
}

.feature-item {
    text-align: center;
    padding: 0 15px;
    background-color: var(--bmw-white);
    border-radius: var(--border-radius);
    height: 100%;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    margin: 0 auto;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.0625rem;
    line-height: 1.5;
}

/* Weekend Rental Section */
.weekend-rental {
    position: relative;
    background-image: url('../images/Privatkunden/02_Teaser_Wochenendmiete/DI23_000192339_large_teaser_2560x853.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.weekend-rental::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* disabled tint overlay, opacity 0 */
}

.weekend-rental-content {
    position: relative;
    z-index: 1;
    text-align: right;
    padding: 40px;
    margin-left: auto;
    width: 50%;
}

.weekend-rental-content h2 {
    color: var(--bmw-white);
    margin-bottom: 20px;
    line-height: 1.5em;
}

.price {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    position: relative;
    padding: 14px 45px;
    background-color: var(--bmw-blue);
    border: none;
    border-radius: var(--border-radius);
    transition: background-color .3s;
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: var(--bmw-white);
}

.btn:after {
    content: "";
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    pointer-events: none;
    width: 10px;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    background-size: 10px 20px;
    background-image: url(../images/arrow-right.svg);
    right: 15px;
}

.btn:hover {
    background-color: var(--bmw-dark-blue);
    text-decoration: none;
    color: var(--bmw-white);
}

.btn.light {
    background-color: transparent;
    box-shadow: inset 0 0 0 0 currentColor;
    border: 1px solid var(--bmw-white);
    color: var(--bmw-white);
    padding: 4px 12px;
    transition: box-shadow .3s;
}

.btn.light:after {
    opacity: 0;
}

.btn.light:hover {
    background-color: transparent;
    box-shadow: inset 0 0 0 2px currentColor;
}

/* Info Section */
.info-section {
    padding: 0 0 30px 0;
    margin-top: 50px;
    text-align: center;
    background-color: var(--bmw-white);
}

.info-section h2 {
    max-width: 900px;
    margin: 0 auto;
}

/* Rental Options */
.rental-options {
    padding: 0 0 30px 0;
    background-color: var(--bmw-white);
}

/* Equal height rental option cards */
.rental-options .row {
    align-items: stretch;
}

.rental-options .col {
    display: flex;
}

.rental-option {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.rental-option .img-wrapper {
    display: block;
    overflow: hidden;
}

.rental-option .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.rental-option:hover img {
    transform: scale(1.05);
}

.rental-option-overlay {
    padding: 20px 20px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.rental-option-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    line-height: 1.875;
    color: var(--bmw-black);
}

.rental-option-subtitle {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--bmw-dark-gray);
    line-height: 1.75;
}

.discover-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
}

/* Weekend Rate Models */
.weekend-models {
    padding: 0 0 60px 0;
    margin-top: 40px;
    background-color: var(--bmw-white);
}

.weekend-model-header {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 800px;
}

.model-card {
    position: relative;
    height: auto;
    overflow: hidden;
    border: .0625rem solid var(--bmw-light-gray);
    box-shadow: none;
    background-color: var(--bmw-white);
}

.model-card picture {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}

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

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

.model-content {
    position: relative;
    padding: 20px;
    height: auto;
    color: var(--bmw-black);
}

.model-content-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 300;
    font-family: 'BMWTypeNext', 'Helvetica Neue', Arial, sans-serif;
    color: var(--bmw-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.model-content-subtitle {
    margin: 5px 0 0;
    font-size: .9rem;
    font-weight: 300;
    font-family: 'BMWTypeNext', 'Helvetica Neue', Arial, sans-serif;
    color: var(--bmw-dark-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.model-btn {
    padding: 12px 30px;
    width: 100%;
    margin-top: 15px;
    z-index: 2;
}

/* Locations Section */
.locations {
    margin-top: 20px;
    background-color: var(--bmw-white);
}

.locations-header {
    text-align: center;
    margin-bottom: 40px;
}

.locations-map {
    width: 100%;
    text-align: center;
    box-shadow: var(--bmw-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

#map-lightbox-trigger::after,
#map-lightbox-trigger-b2b::after {
    content: '+';
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--bmw-blue);
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    transition: background-color .3s ease;
    cursor: pointer;
}

#map-lightbox-trigger:hover::after,
#map-lightbox-trigger-b2b:hover::after {
    background-color: var(--bmw-dark-blue);
}

.locations-service {
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: var(--bmw-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.locations-service img {
    max-width: 100%;
}

.locations-service-content {
    position: absolute;
    z-index: 1;
    padding: 15px;
    bottom: 0;
    right: 0;
}

/* Info Solutions Section */
.info-solutions {
    padding: 0 0 30px 0;
    background-color: var(--bmw-white);
}

.info-solutions h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Equal height solution cards */
.rental-options .row {
    align-items: stretch;
}

.rental-options .col {
    display: flex;
}

.solution-card {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card .img-wrapper {
    display: block;
    overflow: hidden;
}

.solution-card picture {
    width: 100%;
    height: 100%;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card a img {
    transition: transform .5s ease;
}

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

.solution-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.solution-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    line-height: 1.875;
    color: var(--bmw-black);
}

.solution-content p {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--bmw-dark-gray);
    line-height: 1.75;
}

.solution-info {
    margin-top: 30px;
    text-align: center;
}

.solution-info h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.solution-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-info li {
    margin: 0;
    font-size: 1.25rem;
    color: var(--bmw-dark-gray);
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: var(--bmw-white);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--bmw-dark-gray);
}

.contact-card {
    background-color: var(--bmw-light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
}

.contact-content {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.contact-image {
    width: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.contact-info {
    padding: 20px;
    background-color: var(--bmw-light-gray);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 5px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 1rem;
}

.contact-info a {
    color: var(--bmw-blue);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-footer {
    text-align: center;
    margin-top: 20px;
    position: relative;
    display: block;
}

.contact-btn {
    width: auto;
    margin: 20px auto 0;
}

/* FAQ Section */
.faq {
    padding: 60px 0 80px;
    background-color: var(--bmw-white);
}

.faq h2 {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
}

.accordion {
    margin-bottom: 0;
    border: none;
    border-top: 1px solid var(--bmw-soft-gray);
    overflow: hidden;
}

.accordion-header {
    background-color: transparent;
    padding: 20px;
    cursor: pointer;
    position: relative;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 300;
    font-family: 'BMWTypeNext', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    color: var(--bmw-black);
    line-height: 1.5;
}

.accordion-header:hover {
    background-color: var(--bmw-light-gray);
}

.accordion-header:after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
    color: var(--bmw-dark-gray);
    transition: transform .3s ease;
}

.accordion-header.active {
    background-color: var(--bmw-light-gray);
}

.accordion-header.active:after {
    content: "–";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out, padding .3s ease-out, background-color .3s ease;
    padding: 0 20px;
    background-color: transparent;
}

.accordion-content.active {
    max-height: 500px;
    padding: 0 20px 20px 20px;
    background-color: var(--bmw-light-gray);
}

.accordion-content p {
    margin-bottom: 0;
    color: var(--bmw-dark-gray);
    max-width: 95%;
    padding: 10px 20px 0 0;
}

.accordion-content p:first-of-type {
    padding-top: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background-color: var(--bmw-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
    transform: scale(.95);
    transition: transform .3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--bmw-white);
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .2);
    transition: background-color .3s, transform .2s;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, .3);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: var(--bmw-footer);
    padding: 10px 0;
    text-align: left;
}

.footer-links {
    display: flex;
    justify-content: flex-start;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    margin-right: 30px;
    font-size: .85rem;
}

.footer-link a {
    color: var(--bmw-white);
    transition: color .2s;
}

.footer-link a:hover {
    color: var(--bmw-black);
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .weekend-rental-content {
        width: 70%;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .col-md-12 { width: 100%; }
    .col-md-6 { width: 50%; }
    .col-md-4 { width: 33.33%; }
    .col-md-3 { width: 25%; }

    .col-md-12:not(:first-child) {
        margin-top: 30px;
    }

    /* Switch navigation to mobile */
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero {
        margin-top: 0;
    }

    .weekend-model-info ul {
        align-items: flex-start;
    }

    .discover-btn {
        max-width: 100%;
    }

    /* Info Solutions responsive */
    .info-solutions h2 {
        font-size: 1.8rem;
    }

    .solution-info h3 {
        font-size: 1.6rem;
    }

    .solution-info li {
        font-size: 1.0625rem;
        text-align: left;
        padding-left: 20px;
    }

    /* Contact section responsive */
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-intro {
        font-size: 1.0625rem;
    }
}

@media (max-width: 576px) {
    .col-sm-12 {
        width: 100%;
        margin-bottom: 20px;
    }
    .col-sm-6 {
        width: 50%;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .logo-container .logo-main {
        height: 30px;
    }

    .logo-container .logo-sub {
        height: 30px;
        margin-left: 15px;
    }

    .hero {
        min-height: 100vh;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-item {
        margin: 5px 10px;
    }

    .nav-link {
        min-width: 28px;
    }

    .feature-item {
        padding: 15px 15px;
    }

    .feature-item:first-of-type {
        padding-top: 0;
    }

    .weekend-rental-content {
        padding: 10px;
    }

    .main-heading {
        padding: 40px 0 20px;
    }

    .price {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 36px;
    }

    .d-none-mobile {
        display: none;
    }

    /* Make the map take full width on mobile */
    .locations-map {
        margin-bottom: 0;
    }

    /* Adjust model cards for mobile */
    .model-card {
        height: auto;
        margin-bottom: 40px;
    }

    .model-card .text-center {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .weekend-model-info li {
        text-align: left;
        padding-left: 15px;
    }

    /* Info Solutions mobile */
    .info-solutions h2 {
        font-size: 1.6rem;
        padding: 0 15px;
    }

    .solution-content h3 {
        font-size: 1.25rem;
    }

    .solution-info h3 {
        font-size: 1.4rem;
        padding: 0 15px;
    }

    .solution-info li {
        font-size: 1rem;
        text-align: left;
        padding: 0 30px;
    }

    /* Contact section mobile */
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .contact-intro {
        font-size: 1rem;
        padding: 0 15px;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info p {
        font-size: .9rem;
    }

    .contact-btn {
        font-size: 1.0625rem;
        padding: 12px 25px;
        width: 100%;
    }
}
