/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #262626;
    background-color: #ffffff;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

/* Container */
.container {
    max-width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1000;
    padding: 16px 0;
    padding-left: 40px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 84px;
    height: 84px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 88px;
    border-bottom: 1px solid #ffffff;
}

.bmw-logo img {
    width: 120px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15.75px;
    padding: 29px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    border-radius: 0 0 8px 8px;
    padding: 20px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dropdown-section h4 {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.dropdown-section a:hover {
    color: #ffffff;
}

.dropdown-menu .dropdown-content:not(.dropdown-section) {
    grid-template-columns: 1fr;
    gap: 10px;
}

.dropdown-menu .dropdown-content:not(.dropdown-section) a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    width: 600px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    z-index: 1002;
    border-radius: 0 0 12px 12px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
}

/* Areas menu special positioning */
.areas-menu {
    left: -200px;
    width: 700px;
}

.areas-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mega-section h4 {
    color: #1C69D4;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(28, 105, 212, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-section a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 12px;
    margin-left: -12px;
}

.mega-section a:hover {
    color: #ffffff;
    border-left-color: #1C69D4;
    background: rgba(28, 105, 212, 0.1);
    padding-left: 16px;
}

.book-now-btn {
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 48px;
}

.dealer-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 11.625px;
    font-weight: 500;
}

.nav-icons {
    display: flex;
    gap: 48px;
}

.nav-icon {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    transition: opacity 0.3s ease;
}

.nav-icon:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 95vh;
    margin: 0 auto;
    overflow: hidden;
}

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

.hero-image img,
.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 160px 110px 80px;
    gap: 40px;
}

.hero-text {
    color: #ffffff;
    flex: 1;
}

/* Hero Form Styles */
.hero-form {
    flex: 0 0 360px;
    max-width: 360px;
}

.consultation-form {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.consultation-form:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.consultation-form:hover h3 {
    color: rgba(255, 255, 255, 0.9);
}

.consultation-form h3 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    flex: 1;
    margin-bottom: 12px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: rgba(28, 105, 212, 0.6);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(28, 105, 212, 0.1);
}

.consultation-form select option {
    background: #262626;
    color: #ffffff;
    font-weight: 300;
}

.form-submit {
    width: 100%;
    margin-top: 6px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 300;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-submit:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

/* Hide form on mobile/tablet */
@media (max-width: 1024px) {
    .hero-form {
        display: none;
    }
    
    .hero-content {
        justify-content: center;
    }
}

.hero-subtitle {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.2em;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-weight: 300;
    font-size: 280px;
    line-height: 0.85em;
    margin-bottom: 30px;
    letter-spacing: -4px;
}

.hero-description {
    font-weight: 300;
    font-size: 22px;
    line-height: 1.4em;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 400px;
}

.hero-text .btn {
    display: inline-block;
    width: auto;
    min-width: 200px;
    height: auto;
    padding: 16px 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 13px 88px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.625em;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #1C69D4;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #155bb3;
}

.btn-secondary {
    background-color: #1C69D4;
    color: #ffffff;
    padding: 0;
    width: 414px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    background-color: transparent;
    color: #c6c6c6;
    border: 1px solid #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background-color: #F2F2F2;
    color: #262626;
}

/* Main Content */
.main-content {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* Offers Section */
.offers-section {
    padding: 96px 84px;
    background-color: #f8f9fa;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.offers-header h2 {
    font-weight: 400;
    font-size: 42px;
    line-height: 1.2em;
    color: #262626;
    margin: 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1752px;
    margin: 0 auto;
}

.offer-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 600px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.offer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1) 100%);
}


.offer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    color: #ffffff;
    z-index: 3;
}

.offer-content h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3em;
    margin-bottom: 8px;
}

.offer-details {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.offer-content .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
}

.consumer-reports .offer-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.3em;
}

.consumer-reports .offer-image {
    position: relative;
}

.offer-disclaimer {
    font-weight: 300;
    font-size: 12px;
    line-height: 1.5em;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* How We Work Section */
.how-we-work-section {
    padding-bottom: 20px;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin: 50px;
}

.section-header h2 {
    font-weight: 400;
    font-size: 42px;
    line-height: 1.2em;
    color: #262626;
    margin-bottom: 16px;
}

.section-header p {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5em;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.work-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1C69D4, #155bb3);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(28, 105, 212, 0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1C69D4;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, #1C69D4, #155bb3);
    color: #ffffff;
    transform: scale(1.1);
}

.process-content h3 {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3em;
    color: #262626;
    margin-bottom: 16px;
}

.process-content p {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6em;
    color: #666666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 0 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #414141;
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.05);
}

.service-item h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3em;
    color: #262626;
    margin-bottom: 24px;
}

.service-link {
    color: #262626;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1c69d4;
}

/* Lease Section */
.lease-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 500px;
    margin: 36px auto;
}

.lease-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lease-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lease-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}

.lease-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 164px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.lease-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 104px;
    color: #ffffff;
}

.lease-content h2 {
    font-weight: 300;
    font-size: 40px;
    line-height: 1.3777777777777778em;
    margin-bottom: 40px;
    width: 399.36px;
    height: 100px;
}

.lease-content p {
    font-weight: 300;
    font-size: 18.40625px;
    line-height: 1.6298811544991512em;
    margin-bottom: 36px;
    width: 807.45px;
    height: 55px;
}

.lease-content .btn {
    width: 263.98px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dual Section */
.dual-section {
    display: block;
    margin: 96px auto;
    width: 100%;
    max-width: 1920px;
}

.loyalty-section,
.exclusive-offers {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 639.75px;
}

.loyalty-image,
.exclusive-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loyalty-image img,
.exclusive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loyalty-overlay,
.exclusive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}

.loyalty-content,
.exclusive-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 104px;
    color: #ffffff;
}

.loyalty-content h2,
.exclusive-content h2 {
    font-weight: 300;
    font-size: 43.06640625px;
    line-height: 1.4396371882086167em;
    margin-bottom: 20px;
    height: 61px;
}

.loyalty-content p,
.exclusive-content p {
    font-weight: 300;
    font-size: 18.2578125px;
    line-height: 1.6431322207958923em;
    margin-bottom: 32px;
    height: 30px;
}

.loyalty-content .btn,
.exclusive-content .btn {
    width: 263.98px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* X5 Section */
.x5-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 639.75px;
    margin: 96px auto;
}

.x5-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.x5-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.x5-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}

.x5-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 164px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.75;
}

.x5-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 104px;
    color: #ffffff;
}

.x5-content h3 {
    font-weight: 300;
    font-size: 16px;
    line-height: 0.875em;
    letter-spacing: 60%;
    text-transform: uppercase;
    margin-bottom: 25px;
    width: 62.29px;
    height: 21px;
}

.x5-content h1 {
    font-weight: 300;
    font-size: 249.908203125px;
    line-height: 0.8963291208490618em;
    margin-bottom: 51px;
    width: 304.62px;
    height: 342px;
}

.x5-content p {
    font-weight: 300;
    font-size: 24.6px;
    line-height: 1.54em;
    margin-bottom: 60px;
    width: 159.06px;
    height: 34px;
}

.x5-buttons {
    display: flex;
    gap: 24px;
}

.x5-buttons .btn {
    width: 264px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Financial Section */
.financial-section {
    padding: 96px 84px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.financial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.financial-image {
    width: 100%;
    overflow: hidden;
}

.financial-image img,
.financial-image video {
    width: 100%;
    height: 380px;
    max-height: 600px;
    object-fit: cover;
}

.financial-text {
    padding-left: 20px;
}

.financial-text h2 {
    font-weight: 400;
    font-size: 42px;
    line-height: 1.2em;
    color: #262626;
    margin-bottom: 24px;
}

.financial-text p {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6em;
    color: #666666;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Footer */
.footer {
    background-color: #f6f6f6;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.footer-divider {
    height: 1px;
    background-color: #e6e6e6;
    width: 100%;
}

.series-section {
    padding: 42px 0 0;
}

.series-section h3 {
    font-weight: 300;
    font-size: 11.625px;
    line-height: 1.3763440860215055em;
    color: #414141;
    margin-bottom: 16px;
    padding: 0 96px;
    width: 80.84px;
    height: 16px;
}

.series-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
    padding: 0 208px;
    overflow-x: auto;
    width: 1639.36px;
    height: 62px;
}

.series-item {
    color: #262626;
    text-decoration: none;
    font-weight: 500;
    font-size: 15.875px;
    line-height: 1.6377952755905512em;
    padding: 12px;
    white-space: nowrap;
    height: 26px;
}

.series-item:hover {
    opacity: 0.7;
}

.footer-links {
    padding: 80px 84px 16px;
    background-color: #f6f6f6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 414px 414px 414px 414px;
    gap: 64px;
}

.footer-column h4 {
    font-weight: 300;
    font-size: 11.625px;
    line-height: 1.3763440860215055em;
    color: #4d4d4d;
    margin-bottom: 32px;
    height: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #262626;
    text-decoration: none;
    font-weight: 500;
    font-size: 15.5px;
    line-height: 1.68em;
}

.footer-column a:hover {
    opacity: 0.7;
}

.social-media {
    display: flex;
    gap: 44px;
    margin-top: 40px;
    padding-left: 12px;
}

.social-icon {
    display: block;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid #e6e6e6;
    padding: 16px 84px;
    background-color: #f6f6f6;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin-bottom: 16px;
    width: 100%;
    max-width: 1728px;
}

.footer-bottom-links a {
    color: #262626;
    text-decoration: none;
    font-weight: 500;
    font-size: 15.625px;
    line-height: 1.664em;
    height: 26px;
}

.footer-bottom-links a:hover {
    opacity: 0.7;
}

.copyright {
    font-weight: 300;
    font-size: 18.40625px;
    line-height: 1.6298811544991512em;
    color: #262626;
    width: 1134.33px;
    height: 30px;
}


/* Responsive Design */
@media (max-width: 1920px) {
    .hero,
    .main-content,
    .lease-section,
    .dual-section,
    .x5-section,
    .financial-section,
    .footer {
        width: 100%;
        max-width: 1920px;
    }
    
    .container {
        padding: 0 48px;
    }
    
    .nav-container {
        padding: 0 48px;
    }
    
    .hero-content {
        padding: 160px 48px 80px;
    }
    
    .lease-content,
    .x5-content,
    .loyalty-content,
    .exclusive-content {
        padding-left: 48px;
    }
    
    .series-grid {
        padding: 0 144px;
    }
}

@media (max-width: 1440px) {
    .hero-content {
        padding: 160px 110px 80px;
    }
    
    .hero-title {
        font-size: 120px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .offers-section {
        padding: 80px 60px;
    }
    
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .offer-card {
        height: 550px;
    }
    
    .offer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
    
    .series-grid {
        padding: 0 96px;
    }
    
    .financial-section {
        padding: 30px 60px 60px 60px;
    }
    
    .financial-content {
        gap: 60px;
        max-width: 1400px;
    }
    
    .financial-text h2 {
        font-size: 36px;
    }
    
    .financial-text p {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 180px;
    }
    
    .x5-content h1 {
        font-size: 180px;
    }
    
    .offers-section {
        padding: 60px 30px;
    }
    
    .offers-header {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .offers-header h2 {
        font-size: 36px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .offer-card {
        height: 450px;
        width: 100%;
    }
    
    .offer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .offer-content {
        padding: 24px 20px;
    }
    
    .offer-content h3 {
        font-size: 22px;
        line-height: 1.2em;
    }
    
    .how-we-work-section {
        padding-bottom: 20px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .work-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        max-width: 800px;
    }
    
    .mega-menu {
        width: 500px;
        max-width: 85vw;
    }
    
    .areas-menu {
        left: -150px;
        width: 600px;
        max-width: 85vw;
    }
    
    .mega-menu-content {
        gap: 24px;
    }
    
    .areas-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 800px;
    }
    
    .service-item {
        padding: 0 10px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 24px;
    }
    
    .service-item h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .dual-section {
        grid-template-columns: 1fr;
    }
    
    .financial-section {
        padding: 60px 30px;
    }
    
    .financial-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 800px;
    }
    
    .financial-text {
        padding-left: 0;
        text-align: center;
    }
    
    .financial-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .financial-text p {
        font-size: 16px;
        max-width: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .series-section {
        padding: 30px 0;
    }
    
    .series-grid {
        padding: 0 60px;
        gap: 10px 20px;
    }
    
    .footer-links {
        padding: 40px 30px;
    }
    
    .footer-bottom {
        padding: 16px 30px;
    }
    
    .footer-bottom-links {
        width: auto;
        height: auto;
        gap: 12px 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-container {
        padding: 0 24px;
    }
    
    .nav-left {
        gap: 24px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-item.dropdown .dropdown-menu,
    .mega-dropdown .mega-menu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 16px;
        min-width: auto;
    }
    
    .mega-menu-content,
    .areas-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .areas-menu {
        left: 0;
        width: 100%;
        max-width: 90vw;
    }
    
    .mega-menu {
        width: 100%;
        max-width: 90vw;
        left: 0;
        padding: 20px;
    }
    
    .nav-right {
        gap: 16px;
    }
    
    .book-now-btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 720px;
    }
    
    .hero-content {
        padding: 0 24px 80px;
        align-items: flex-end;
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 6px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 120px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 20px;
        margin-bottom: 32px;
        max-width: none;
    }
    
    .lease-content,
    .x5-content,
    .loyalty-content,
    .exclusive-content {
        padding: 0 24px;
    }
    
    .x5-content h1 {
        font-size: 120px;
    }
    
    .how-we-work-section {
        padding-bottom: 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .work-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 100%;
    }
    
    .process-card {
        padding: 32px 24px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .process-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .process-content p {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        max-width: 500px;
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
        font-size: 20px;
    }
    
    .service-item h3 {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 1.2em;
    }
    
    .service-link {
        font-size: 14px;
    }
    
    .offers-section {
        padding: 40px 20px;
    }
    
    .offers-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        margin-bottom: 32px;
    }
    
    .offers-header h2 {
        font-size: 32px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .offer-card {
        height: 420px;
        max-width: 100%;
        margin: 0;
        border-radius: 12px;
    }
    
    .offer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .offer-content {
        padding: 24px 20px;
    }
    
    .offer-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.2em;
    }
    
    .offer-details {
        font-size: 14px;
        line-height: 1.4em;
        margin-bottom: 20px;
    }
    
    .financial-section {
        padding: 50px 20px;
    }
    
    .financial-content {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
    }
    
    .financial-text {
        padding-left: 0;
        text-align: center;
    }
    
    .financial-text h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .financial-text p {
        font-size: 15px;
        line-height: 1.5em;
    }
    
    .lease-section,
    .loyalty-section,
    .exclusive-offers,
    .x5-section {
        height: 480px;
    }
    
    .offer-card {
        height: 600px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .series-section {
        padding: 24px 0;
    }
    
    .series-section h3 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .series-grid {
        padding: 0 24px;
        gap: 8px 16px;
        justify-content: center;
    }
    
    .series-item {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .footer-links {
        padding: 30px 24px;
    }
    
    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-column ul li a {
        font-size: 14px;
        padding: 4px 0;
    }
    
    .footer-bottom {
        padding: 16px 24px;
    }
    
    .footer-bottom-links {
        gap: 8px 16px;
        width: auto;
        height: auto;
        font-size: 13px;
    }
    
    .copyright {
        font-size: 12px;
        line-height: 1.4em;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 600px;
    }
    
    .hero-content {
        padding: 0 16px 60px;
        justify-content: center;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }
    
    .hero-title {
        font-size: 50px;
        line-height: 0.9em;
        margin-bottom: 16px;
        letter-spacing: 0px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 28px;
    }
    
    .hero-text .btn {
        padding: 14px 32px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .x5-content h1 {
        font-size: 80px;
    }
    
    .financial-section {
        padding: 0px 0px 50px 0px;
    }
    
    .financial-content {
        gap: 24px;
        max-width: 100%;
    }
    
    .financial-text h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .financial-text p {
        font-size: 14px;
        line-height: 1.4em;
    }
    
    .offers-section {
        padding: 32px 16px;
    }
    
    .offers-header h2 {
        font-size: 28px;
    }
    
    .offer-card {
        height: 380px;
        max-width: 100%;
        margin: 0;
    }
    
    .offer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .offer-content {
        padding: 20px 16px;
    }
    
    .offer-content h3 {
        font-size: 18px;
        margin-bottom: 6px;
        line-height: 1.2em;
    }
    
    .offer-details {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.3em;
    }
    
    .offer-content .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .btn {
        padding: 12px 48px;
        font-size: 14px;
    }
    
    .btn-secondary {
        padding: 12px 48px;
    }
    
    .btn-outline {
        padding: 12px 48px;
    }
    
    .x5-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .series-section {
        padding: 20px 0;
    }
    
    .series-section h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .series-grid {
        padding: 0 16px;
        gap: 6px 12px;
    }
    
    .series-item {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-links {
        padding: 24px 16px;
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
        padding: 3px 0;
    }
    
    .footer-bottom {
        padding: 12px 16px;
    }
    
    .footer-bottom-links {
        gap: 6px 12px;
        font-size: 12px;
        justify-content: center;
        text-align: center;
    }
    
    .copyright {
        font-size: 11px;
        line-height: 1.3em;
        margin-top: 10px;
        text-align: center;
    }
    
}

/* BMW Family Charging Section */
.bmw-family-charging-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.charging-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.charging-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.charging-slide.active {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .charging-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .charging-image {
        height: 300px;
    }
}
