:root {
    --primary: #ffffff;
    --bg-dark: #000000;
    --bg-card: #111111;
    --accent: #f0f0f0;
    --text-muted: rgb(217 217 217 / 75%);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 80px;
}

.text-muted {
    color: var(--text-muted) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}


.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* --- Navigation --- */
.navbar {
    height: var(--nav-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 70px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-logo img {
    height: 35px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.8;
}

.nav-links a.active {
    opacity: 1;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    margin: 5px auto 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    font-size: 1.2rem;
}

.social-icons i:hover {
    transform: translateY(-2px);
}

.btn-book {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-book:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section (Parallax) --- */


.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: var(--accent);
}

/* --- Image Scrolling Section --- */
.scrolling-images {
    padding: 100px 0;
    background: #050505;
    overflow: hidden;
}

.scroll-track {
    display: flex;
    gap: 40px;
    width: calc(400px * 10);
    /* Adjust based on image count */
    animation: scroll 30s linear infinite;
}

.scroll-item {
    width: 400px;
    height: 250px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.scroll-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-440px * 5));
    }

    /* Scroll half the track if duplicated */
}

/* --- Ride Section --- */


.section-title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

/* --- Category Filter --- */
.category-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 65px;
    position: relative;
    backdrop-filter: blur(10px);
}

.filter-indicator {
    position: absolute;
    height: calc(100% - 12px);
    background: var(--primary);
    border-radius: 40px;
    z-index: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.filter-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.filter-btn:hover {
    color: white;
}

.filter-btn.active {
    color: black;
}

.car-item {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.car-item.hide {
    display: none;
}


.car-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    padding: 25px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.car-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 24px;
}

.card-img-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.car-card:hover .card-img-wrapper img {
    transform: scale(1.08) rotate(-1deg);
}

.card-tags {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.tag {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-info {
    padding: 10px 5px;
}

.card-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

.card-price span {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

.card-specs-mini {
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.mini-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.mini-spec i {
    font-size: 1rem;
    color: var(--primary);
}

.card-footer-btn {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.car-card:hover .card-footer-btn {
    opacity: 1;
    transform: translateX(0);
}

.card-footer-btn i {
    font-size: 1.2rem;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.testimonial-bg-quote {
    position: absolute;
    top: 0;
    right: 5%;
    font-size: 25rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    font-weight: 700;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-content i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.client-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.client-details p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Features Bento Grid --- */
.features-section {
    background: var(--bg-color);
    padding-bottom: 100px;
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
    margin-top: 50px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.bento-item.bento-main {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), url('../assets/images/mustang_focus_lifestyle.jpg');
    background-size: cover;
    background-position: center;
    justify-content: space-between;
}

.bento-main-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.bento-item.bento-card {
    grid-column: span 1;
}

.bento-item.bento-img {
    grid-column: span 1;
    padding: 0;
}

.bento-item.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 1s ease;
}

.bento-item.bento-img:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.bento-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.bento-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Testimonials Bento --- */
.testimonials-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonials-bento .bento-item.testimonial-card {
    min-height: auto;
    justify-content: space-between;
}

.testimonials-bento .bento-item.bento-large {
    grid-column: span 2;
    background: rgba(255, 255, 255, 0.05);
}

.testimonials-bento .bento-item.bento-medium {
    grid-column: span 1;
}







/* --- Inner Pages Styles --- */
/* --- Main Hero Redesign --- */
.main-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    animation: heroZoom 20s infinite alternate linear;
}

.hero-bg-img video{
    width: 100%;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.7) 70%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

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

.main-hero .hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
}

.main-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.hero-badge i {
    font-size: 1rem;
    color: var(--primary);
}

.text-outline {
    -webkit-text-stroke: 1.5px white;
    color: transparent;
    transition: all 0.5s ease;
}

.main-hero:hover .text-outline {
    color: white;
    -webkit-text-stroke: 1.5px transparent;
}

.fleet-stats-new {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

.f-stat-item {
    display: flex;
    flex-direction: column;
}

.f-stat-item .stat-num {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.f-stat-item .stat-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.scroll-indicator-down {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.scroll-indicator-down span {
    writing-mode: vertical-rl;
    font-size: 0.7rem;
    letter-spacing: 4px;
    opacity: 0.6;
    font-weight: 500;
}

.scroll-indicator-down .line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
    transform-origin: top;
}

/* --- Fleet Controls --- */
.fleet-controls {
    position: relative;
    z-index: 10;
}

.search-box-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 2px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.search-box-premium:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.search-box-premium i {
    color: var(--primary);
    font-size: 1.2rem;
}

.search-box-premium input {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 0;
    width: 100%;
    font-weight: 500;
}

.search-box-premium input:focus {
    outline: none;
}

.search-box-premium input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.category-filter {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    opacity: 0.6;
}

.filter-btn.active,
.filter-btn:hover {
    background: white;
    color: black;
    opacity: 1;
}

.btn-outline-custom {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: white;
    color: black;
    border-color: white;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        opacity: 0;
        transform-origin: bottom;
    }
}



/* --- Inner Pages Hero Redesign --- */
.inner-hero {
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
    background-color: #000;
}

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

.inner-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: brightness(0.4);
    transition: transform 10s linear;
}

.inner-hero:hover .hero-bg-img {
    transform: scale(1.15);
}

.inner-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

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

.inner-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.inner-hero .hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.inner-hero .breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.inner-hero .breadcrumb-custom a {
    color: var(--primary);
    opacity: 0.6;
}

.inner-hero .breadcrumb-custom a:hover {
    opacity: 1;
}

.inner-hero .breadcrumb-custom span.separator {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.inner-hero .hero-badge {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
}





/* --- About Page Redesign --- */
.story-image-reveal {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.story-image-reveal img {
    width: 100%;
    transition: transform 1s ease;
}

.story-image-reveal:hover img {
    transform: scale(1.05);
}

.stat-group-elegant {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.stat-item-elegant {
    display: flex;
    flex-direction: column;
}

.stat-item-elegant .number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, #666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item-elegant .label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.philosophies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 40px;
    transition: var(--transition);
}

.philosophy-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.philosophy-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.philosophy-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* --- Showroom Section --- */
.showroom-section {
    padding: 151px 0;
    overflow: hidden;
    background-color: #050505;
}

.showroom-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.showroom-image-box {
    position: relative;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
}

.showroom-bg {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -10%;
    left: 0;
}

.showroom-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.showroom-badge i {
    color: var(--primary);
}

.showroom-content-box {
    padding-right: 50px;
}


.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}


.stat-card {
    background: #111111;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* --- Contact Section --- */

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
}

.info-item i {
    font-size: 2rem;
    color: var(--text-muted);
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-muted);
}

.contact-form {
    background: #111111;
    padding: 50px;
    border-radius: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* --- Car Detail Page --- */
.ride-detail-section {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.02), transparent 40%);
}

.main-image-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-image-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
    transition: transform 0.5s ease;
}

.main-image-wrapper:hover img {
    transform: scale(1.05) translateY(-10px);
}

.gallery-thumbs {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.thumb {
    width: 120px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
}

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

.thumb.active,
.thumb:hover {
    opacity: 1;
    border-color: var(--accent-color);
}

.badge-premium {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-color);
    color: black;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 100px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-tag .currency {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 500;
}

.price-tag .amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.price-tag .period {
    font-size: 0.9rem;
    opacity: 0.4;
    letter-spacing: 1px;
}

.specs-grid-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.spec-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.spec-item span {
    font-size: 1.2rem;
    font-weight: 600;
}

.spec-item label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-top: 5px;
}

.feature-checklist {
    list-style: none;
    padding: 0;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-checklist i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

.experience-image img {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* --- Footer --- */
.footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 100px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a:hover {
    color: white;
}

/* --- Mobile Navigation --- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0.6s;
}

.mobile-nav.active {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-nav-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-bottom: 0;
}

.mobile-nav-header {
    padding: 30px 0;
}

.mobile-nav-links li {
    margin: 15px 0;
}

.mobile-nav-links a {
    font-size: 20px;
    font-weight: 700;
    color: white;
    display: block;
    transition: 0.4s;
    letter-spacing: 1px;
}

.mobile-nav-links a:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

.mobile-nav-footer {
    position: absolute;
    bottom: 50px;
    text-align: center;
}

.mobile-nav-social {
    display: flex;
    gap: 20px;
    font-size: 1.1rem;
    margin-bottom: 0;
    justify-content: center;
}

.mobile-nav-actions {
    margin-top: 0 !important;
}

.mobile-nav-social a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    cursor: pointer;
    font-size: 1.8rem;
    display: none;
}



.mobile-nav-actions .btn-primary {
    padding: 10px 27px !important;
    font-size: 13px !important;
    width: auto !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}



/* --- Fleet CTA --- */
.fleet-cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 80px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.fleet-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}



/* --- About Page Enhancements --- */
/* --- Contact Page Styles --- */
.contact-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-top: 70px;
    position: relative;
    z-index: 10;
}

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

.contact-card-v2 {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 30px;
    transition: var(--transition);
}

.contact-card-v2:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-card-v2 i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-card-v2 h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-card-v2 p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.premium-form-box {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.form-floating-custom {
    position: relative;
    margin-bottom: 30px;
}

.form-floating-custom input,
.form-floating-custom textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0 10px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-floating-custom label {
    position: absolute;
    top: 20px;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    font-weight: 600;
}

.form-floating-custom input:focus,
.form-floating-custom textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.form-floating-custom input:focus+label,
.form-floating-custom input:not(:placeholder-shown)+label,
.form-floating-custom textarea:focus+label,
.form-floating-custom textarea:not(:placeholder-shown)+label {
    top: -5px;
    font-size: 0.65rem;
    color: var(--primary);
}

/* --- Map Placeholder --- */
.map-container-premium {
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    margin-top: 100px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container-premium iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.9) brightness(0.85) contrast(1.2);
}

.map-overlay-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    max-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}



.story-image-reveal:hover img {
    transform: scale(1);
}

.philosophies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 30px;
    transition: var(--transition);
}

.philosophy-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.philosophy-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.philosophy-card p {
    color: var(--text-muted);
}

/* --- Showroom Section Redesign --- */
.showroom-section {
    overflow: hidden;
}

.showroom-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.showroom-image-box {
    position: relative;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.showroom-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showroom-image-box:hover .showroom-bg {
    transform: scale(1.1);
}

.showroom-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 16px 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.showroom-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

.showroom-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.showroom-features {
    display: grid;
    gap: 30px;
}

.s-feat-item {
    display: flex;
    gap: 20px;
}

.s-feat-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.s-feat-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.s-feat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}







/* --- Experience Section --- */
.experience-section {
    padding: 90px 0;
    background: #000;
}

.exp-wrapper {
    display: flex;
    align-items: center;
    gap: 100px;
}

.exp-image-stack {
    position: relative;
    flex: 1;
}

.exp-img-main {
    width: 80%;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    z-index: 1;
    position: relative;
}

.exp-img-sub {
    width: 60%;
    position: absolute;
    bottom: -50px;
    right: 0;
    border-radius: 30px;
    border: 10px solid #000;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.exp-content {
    flex: 1;
}

.exp-list {
    margin-top: 40px;
}

.exp-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.exp-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.exp-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.exp-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Premium Footer --- */
.footer-premium {
    background: #050505;
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .f-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-brand .f-logo img {
    height: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--primary);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary);
}

.f-newsletter .f-input-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.f-newsletter input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    flex: 1;
}

.f-newsletter button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.f-newsletter button:hover {
    transform: rotate(-45deg);
}

.footer-bottom-v2 {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-socials {
    display: flex;
    gap: 20px;
}

.f-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.f-socials a:hover {
    background: white;
    color: black;
    border-color: white;
}









/* --- Car Details Page V2 --- */
.details-page {
    background-color: #000;
}

.details-hero-v2 {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.breadcrumb-custom .active-crumb {
    color: var(--primary);
    font-weight: 600;
}

.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-badge-v2 i {
    color: var(--primary);
}

.details-title-v2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.car-tagline-v2 {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.price-box-v2 {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 50px;
}

.price-box-v2 .currency {
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.6;
}

.price-box-v2 .amount {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-box-v2 .period {
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

.h-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.h-stat-item .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.h-stat-item .label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.h-stat-item .value {
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-image-v2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-glow-v2 {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.main-img-v2 {
    width: 110%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 50px 80px rgba(0, 0, 0, 0.8));
    transform-origin: center;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.spec-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.marker::after {
    content: attr(data-label);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #fff;
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.marker:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-15px);
}

.marker.m1 {
    top: 30%;
    right: 20%;
}

.marker.m2 {
    bottom: 35%;
    left: 15%;
}

/* Content Section */
.details-content-v2 {
    background-color: #000;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    opacity: 0.5;
}

.gallery-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.g-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.g-item:hover img {
    transform: scale(1.1);
}

.g-large {
    grid-row: span 2;
}

.specs-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spec-card-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.spec-card-v2:hover {
    background: rgba(255, 255, 255, 0.04);
}

.spec-card-v2 i {
    font-size: 1.5rem;
    color: var(--primary);
}

.spec-card-v2 h4 {
    font-size: 0.85rem;
    margin-bottom: 4px;
    opacity: 0.6;
}

.spec-card-v2 p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Sidebar V2 */
.booking-sidebar-v2 {
    position: sticky;
    top: 120px;
}

.sidebar-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 32px;
}

.card-header-v2 h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card-header-v2 p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-group-v2 {
    margin-bottom: 25px;
}

.form-group-v2 label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
}

.input-with-icon input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 15px 15px 55px;
    border-radius: 15px;
    color: #fff;
    transition: var(--transition);
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.booking-summary-v2 {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 20px;
    margin-top: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 15px;
}

.summary-total span:first-child {
    font-weight: 600;
}

.summary-total span:last-child {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.trust-item i {
    color: rgba(255, 255, 255, 0.4);
}

.concierge-box-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 24px;
}

.c-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.c-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.c-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.c-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Responsive */






.pb-150 {
    padding-bottom: 150px;
}