/* Root Variables */
:root {
    --soft-grey: #fafafa;
    --midnight-black: #000000;
    --white: #ffffff;
    --gold: #c9a961;
    --gold-light: #d4b76f;
    --gold-dark: #a68b4a;
    --slate-gray: #3a3a3a;
    --light-slate-grey: #f0f0f0;
    --graphite-gray: #505050;
    --charcoal: #0f0f0f;
    --cream: #fdfcf9;
    --platinum: #e5e4e2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    color: var(--midnight-black);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

.body {
    background-color: var(--white);
    color: var(--midnight-black);
}

.page-wrapper {
    overflow-x: hidden;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.content-wrapper-2 {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.content-wrapper-2.slim {
    max-width: 940px;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.92);
    padding: 35px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 0 rgba(201, 169, 97, 0.15);
    border-bottom: 1px solid rgba(201, 169, 97, 0.12);
    backdrop-filter: blur(20px);
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    text-decoration: none;
    transition: transform 0.2s;
}

.brand:hover {
    transform: scale(0.95);
}

.brand-name {
    color: var(--gold);
    font-size: 24px;
    font-weight: 200;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.nav-list-item {
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.w--current {
    color: var(--white);
}

.cta-button-wrapper {
    margin-left: 10px;
}

.cta-button {
    background-color: transparent;
    color: var(--gold);
    padding: 20px 50px;
    border-radius: 0;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:hover {
    color: var(--midnight-black);
    border-color: var(--gold);
    transform: none;
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.4);
}

/* Mobile Menu */
.menu-button {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 30px;
    height: 2px;
    background-color: var(--midnight-black);
    border-radius: 0;
    transition: all 0.3s ease;
}

/* Header Section */
.header-section {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), 
                url('images/concierge-hero.jpg') center center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.header-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

.header-section-wrapper {
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding-top: 140px;
}

.header-content-wrapper {
    width: 100%;
}

.header-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 950px;
}

.header-text {
    color: var(--white);
    font-size: 90px;
    font-weight: 100;
    line-height: 0.95;
    margin: 0;
    letter-spacing: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    position: relative;
}

.brand-span {
    color: var(--vibrant-tangerine);
}

.primary-text {
    color: var(--platinum);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 5px;
}

.primary-text.grey-color {
    color: var(--graphite-gray);
    font-weight: 500;
}

.primary-text.black-color {
    color: var(--midnight-black);
}

.header-button-wrapper {
    margin-top: 20px;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section.bg-white {
    background-color: var(--soft-grey);
}

.section.white {
    background-color: var(--soft-grey);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 60px 45px;
    border-radius: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
    background-color: var(--midnight-black);
}

.service-card:hover .service-title,
.service-card:hover .service-description {
    color: var(--white);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 28px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 18px 0;
    color: var(--midnight-black);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.service-description {
    font-size: 15px;
    line-height: 1.9;
    color: var(--graphite-gray);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.section-heading-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-heading {
    font-size: 52px;
    font-weight: 100;
    margin: 0;
    letter-spacing: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: var(--midnight-black);
}

/* Filter Buttons */
.filter-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    color: var(--slate-gray);
    padding: 16px 40px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--midnight-black);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.filter-btn.active {
    background-color: var(--gold);
    color: var(--midnight-black);
}

/* Car Cards */
.cars-collection-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cars-collection-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.car-card {
    background-color: var(--white);
    border-radius: 0;
    padding: 0;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.car-card.hidden {
    display: none;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.car-image-wrapper {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 0;
}

.listing-car-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.92) contrast(1.08) saturate(0.95);
}

/* Image Carousel Styles */
.car-image-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    user-select: none;
}

.car-images-container {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
    cursor: grab;
}

.car-images-container:active {
    cursor: grabbing;
}

.car-carousel-image {
    min-width: 100%;
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.92) contrast(1.08) saturate(0.95);
}

.car-card:hover .car-carousel-image {
    filter: brightness(1) contrast(1.1) saturate(1.05);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 2px;
    pointer-events: auto;
    user-select: none;
    opacity: 0.8;
}

.car-image-carousel:hover .carousel-nav {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
}

.carousel-nav:hover {
    background: rgba(201, 169, 97, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    pointer-events: auto;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
    pointer-events: auto;
    user-select: none;
}

.carousel-dot.active {
    background: var(--gold);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

.car-card:hover .listing-car-image {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1) saturate(1.05);
}

.car-listing-year {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.85);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(201, 169, 97, 0.5);
    backdrop-filter: blur(15px);
}

.car-details-wrapper {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.car-listing-name {
    font-size: 20px;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.listing-price-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.car-listing-price {
    font-size: 38px;
    font-weight: 200;
    color: var(--gold);
    letter-spacing: 1px;
}

.currency-price-term {
    font-size: 12px;
    color: var(--graphite-gray);
    font-weight: 500;
    letter-spacing: 2px;
}

.car-listing-details-wrapper {
    display: flex;
    justify-content: space-around;
    background-color: transparent;
    padding: 22px 0;
    border-radius: 0;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    flex-wrap: wrap;
    gap: 12px;
}

.car-listing-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.listing-detail {
    font-size: 10px;
    color: var(--graphite-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.details-btn {
    background-color: var(--midnight-black);
    color: var(--gold);
    text-decoration: none;
    padding: 20px 32px;
    border-radius: 0;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-size: 10px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border: 1px solid var(--midnight-black);
    position: relative;
    overflow: hidden;
}

.details-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--gold);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.details-btn:hover::before {
    width: 300%;
    height: 300%;
}

.details-btn:hover {
    color: var(--midnight-black);
    border-color: var(--gold);
}

.details-button {
    position: relative;
    z-index: 1;
}

.details-button {
    display: block;
}

/* Stats Grid */
.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    text-align: center;
    padding: 40px 0;
}

.grid-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 50px 35px;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 169, 97, 0.2);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.grid-item-wrapper:hover {
    background-color: var(--midnight-black);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.grid-item-wrapper:hover .metric-number {
    color: var(--gold);
}

.grid-item-wrapper:hover .metric-plus-sign,
.grid-item-wrapper:hover .title-small {
    color: var(--white);
}

.metric-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-number {
    color: var(--gold);
    font-size: 72px;
    font-weight: 100;
    line-height: 1;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-plus-sign {
    color: var(--midnight-black);
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.title-small {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    color: var(--slate-gray);
    text-transform: uppercase;
    letter-spacing: 3.5px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FAQ / Accordion */
.header-center-box {
    text-align: center;
    margin-bottom: 50px;
}

.header-center-box._75 {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 0;
    padding: 40px 45px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.accordion-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
    background-color: var(--cream);
}

.accordion-item-trigger {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 20px;
}

.accordion-heading {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    flex: 1;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.accordion-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--graphite-gray);
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
}

.accordion-item-trigger:hover .accordion-icon {
    color: var(--midnight-black);
}

.accordion-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin-top 0.3s ease-out;
}

.accordion-item-content p {
    margin: 0;
    color: var(--graphite-gray);
    line-height: 1.9;
    letter-spacing: 0.3px;
}

.accordion-item.active .accordion-item-content {
    max-height: 500px;
    margin-top: 15px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--midnight-black);
}

/* Contact Section */
.split-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.split-content-wrapper.contact-content-wrapper {
    grid-template-columns: 1fr 2fr;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.small-heading {
    font-size: 22px;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.contact-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--midnight-black);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 15px 0;
    letter-spacing: 0.3px;
}

.contact-link:hover {
    color: var(--midnight-black);
    transform: none;
}

.contact-link-icon {
    font-size: 24px;
    background-color: var(--cream);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--light-slate-grey);
}

.contact-link:hover .contact-link-icon {
    background-color: var(--gold);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.contact-method-wrapper {
    background-color: var(--midnight-black);
    padding: 60px;
    border-radius: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gold);
}

.contact-method-wrapper .car-info-heading,
.contact-method-wrapper .field-label {
    color: var(--gold);
}

.contact-method-wrapper .form-field {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 169, 97, 0.3);
    color: var(--white);
}

.contact-method-wrapper .form-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-method-wrapper .form-field:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.contact-method-wrapper.contact-form-wrapper {
    position: relative;
}

.car-info-heading {
    font-size: 30px;
    font-weight: 300;
    margin: 0 0 35px 0;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-fields.contact-form-fields {
    grid-template-columns: 1fr 1fr;
}

.label-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--slate-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-field {
    background-color: var(--cream);
    border: 1px solid var(--light-slate-grey);
    border-radius: 0;
    padding: 18px 24px;
    font-size: 15px;
    color: var(--midnight-black);
    transition: all 0.3s ease;
    width: 100%;
}

.form-field:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-field.text-area {
    min-height: 120px;
    resize: vertical;
}

.contact-form-bottom-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.contact-form-bottom-wrapper .cta-button {
    padding: 18px 40px;
    font-size: 16px;
    width: auto;
}

.form-success-message,
.form-error-message {
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.form-success-message {
    background-color: var(--charcoal);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.form-error-message {
    background-color: var(--cream);
    color: var(--midnight-black);
    border: 1px solid var(--slate-gray);
}

/* Footer */
.footer-section-wrapper {
    background-color: var(--midnight-black);
    color: var(--white);
    padding: 120px 0 60px;
    border-top: 2px solid var(--gold);
    position: relative;
}

.footer-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-top-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.footer-logo-social {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 2;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.social-media-links {
    display: flex;
    gap: 15px;
}

.social-media {
    background-color: transparent;
    width: 46px;
    height: 46px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(201, 169, 97, 0.7);
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.social-media:hover {
    transform: translateY(-2px);
    background-color: var(--gold);
    color: var(--midnight-black);
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.25), transparent);
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.heading {
    color: var(--gold);
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
    line-height: 2.2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.footer-nav-link:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-nav-link.small {
    font-size: 14px;
}

.copyright-info-wrapper {
    text-align: center;
    padding-top: 40px;
}

.text-block {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Additional Modern Touches */
.header-button-wrapper {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.header-button-wrapper .cta-button:first-child:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
    transform: none;
    box-shadow: none;
}

.header-button-wrapper .cta-button:last-child:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: none;
}

/* Removed fade in animations for cleaner look */

.section-heading-wrapper p {
    margin: 0;
    line-height: 1.6;
}

.section-heading-wrapper {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
}

.car-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.listing-detail {
    font-weight: 600;
}

/* Premium Enhancements - REMOVED DUPLICATE */

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
    filter: grayscale(0%);
    opacity: 1;
}

/* Smooth Transitions */
* {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

a, button {
    transition: all 0.3s ease;
}

/* Premium Accents */
.section-heading::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

.small-heading {
    position: relative;
    padding-bottom: 15px;
}

.small-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: var(--charcoal);
        padding: 100px 40px 40px;
        transition: right 0.4s ease;
        overflow-y: auto;
        border-left: 1px solid var(--gold);
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .menu-button {
        display: flex;
    }

    .header-text {
        font-size: 56px;
        letter-spacing: 6px;
    }

    .section-heading {
        font-size: 44px;
        letter-spacing: 5px;
    }

    .cars-collection-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .split-content-wrapper,
    .split-content-wrapper.contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-fields {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .filter-buttons-wrapper {
        gap: 10px;
    }

    .filter-btn {
        padding: 14px 30px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .header-text {
        font-size: 46px;
        letter-spacing: 4px;
    }

    .section {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .cars-collection-list {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .grid-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-method-wrapper {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 479px) {
    .filter-buttons-wrapper {
        gap: 8px;
    }

    .filter-btn {
        padding: 12px 20px;
        font-size: 9px;
        letter-spacing: 2px;
        flex: 1;
        min-width: 80px;
    }

    .content-wrapper,
    .content-wrapper-2 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-text {
        font-size: 38px;
        letter-spacing: 3px;
    }

    .brand-name {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .primary-text {
        font-size: 16px;
    }

    .section-heading {
        font-size: 34px;
        letter-spacing: 3px;
    }

    .header-button-wrapper {
        flex-direction: column;
    }

    .header-button-wrapper .cta-button {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }

    .grid-wrapper {
        grid-template-columns: 1fr;
    }

    .section-heading-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .form-fields.contact-form-fields {
        grid-template-columns: 1fr;
    }

    .metric-number,
    .metric-plus-sign {
        font-size: 36px;
    }

    .header-center-box._75 {
        max-width: 100%;
    }
}
