/* =========================
   GLOBAL
========================= */

:root {

    --carrick-gold: #F4B323;
    --carrick-gold-hover: #DB9E1B;

    --carrick-dark: #0A0A0B;
    --carrick-charcoal: #141416;

    --carrick-border: #2C2C2E;

    --carrick-text: #FFFFFF;
    --carrick-text-muted: #A1A1AA;

}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Plus Jakarta Sans', sans-serif;

    background: var(--carrick-dark);
    color: var(--carrick-text);

    overflow-x: hidden;

}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0A0B;
}

::-webkit-scrollbar-thumb {
    background: #2C2C2E;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--carrick-gold);
}

/* =========================
   HEADER
========================= */

.main-header {
    background: rgba(10, 10, 11, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    z-index: 999;
}

.main-header.header-scrolled {

    background: rgba(255,255,255,.82);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    border-bottom: 1px solid rgba(255,255,255,.4);

    box-shadow: 0 8px 30px rgba(15,23,42,.08);
}

.main-header.header-scrolled .nav-link {
    color: #111214 !important;
}

.main-header.header-scrolled .nav-link:hover {
    color: var(--carrick-gold) !important;
}

.main-header.header-scrolled .nav-link.active {
    color: var(--carrick-gold) !important;
}


.main-header.header-scrolled .navbar {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.main-header.header-scrolled .logo-image-wrapper {
    height: 45px;
}

.main-header.header-scrolled .logo-text h2 {
    font-size: 18px;
    color: #111214;
}

.main-header.header-scrolled .logo-text span {
    font-size: 8px;
    letter-spacing: 4px;
    color: #666;
}



/* =========================
   LOGO
========================= */

.logo-image-wrapper {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 12px rgba(244, 179, 35, 0.15));
}

.navbar-brand:hover .logo-image {
    transform: scale(1.05);
}

/* Notification Ping */

.logo-ping {
    position: absolute;

    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    top: 2px;
    right: 2px;
    animation: ping 1.5s infinite;
}



@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }

}
/* =========================
   LOGO TYPOGRAPHY
========================= */

.logo-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo-text span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #a1a1aa;
    font-weight: 700;
    display: block;
    margin-top: 2px;
}


.navbar-brand:hover .logo-text h2 {
    color: var(--carrick-gold);
}

/* =========================
   NAVIGATION
========================= */

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: var(--carrick-text-muted) !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link.active {
    color: var(--carrick-text) !important;
}

.nav-link:hover{
    color: var(--carrick-gold) !important;
}



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

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

/* =========================
   BUTTONS
========================= */

.btn-carrick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--carrick-gold);
    color: #000 !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    box-shadow: 0 0 20px rgba(244, 179, 35, 0.18);
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Hover */
.btn-carrick:hover {
    background: #d0ab5b;
    box-shadow: 0 0 28px rgba(244, 179, 35, 0.35);
}


/* Mobile Full Width */
@media (max-width: 576px) {
    .btn-carrick {
        width: 100%;
    }
}



/* =========================
   MOBILE
========================= */

.navbar-toggler {
    color: #fff;
    font-size: 24px;
}

.main-header.header-scrolled .navbar-toggler {
    color: #111214;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #141416;
        margin-top: 20px;
        padding: 25px;
        border-radius: 16px;
        border: 1px solid #2C2C2E;
    }

    .navbar-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 18px;
    }

    .header-actions {
        width: 100%;
    }

    .btn-carrick {
        width: 100%;
    }

}

@media (max-width: 991px) {

    .navbar-collapse .nav-link {
        color: #fff !important;
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--carrick-gold) !important;
    }

}


/* =========================
   HERO SECTION
========================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* =========================
   BACKGROUND
========================= */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(10,10,11,1),
            rgba(10,10,11,0.7),
            rgba(10,10,11,0.25)
        );
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
    position: relative;
    z-index: 5;
    padding-top: 120px;
    padding-bottom: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(20,20,22,0.7);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F4B323;
    animation: ping 1.5s infinite;
}

.hero-badge span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 30px;
}

.text-gold {
    background: linear-gradient(
        90deg,
        #F4B323,
        #ffe08a
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 650px;
    color: #c2c2c7;
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* =========================
   HERO BUTTONS
========================= */
.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-lg-custom {
    padding: 16px 34px !important;
    border-radius: 14px !important;
}

/* Outline Button */
.btn-outline-carrick {
    background: rgba(20,20,22,0.75);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 600;
}

.btn-outline-carrick:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

/* =========================
   HERO BUTTON EFFECTS
========================= */
.btn-hover-lift {
    position: relative;
    overflow: hidden;
    gap: 12px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* Shine Effect */
.btn-hover-lift::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.22),
            transparent
        );
    transition: all 0.6s ease;
}

.btn-hover-lift:hover::before {
    left: 120%;
}

/* Icon Animation */
.hero-btn-icon {
    transition:
        transform 0.35s ease;
}

.btn-hover-lift:hover .hero-btn-icon {
    transform:
        translateX(6px);
}

/* Secondary Button */
.btn-hover-dark {
    transition:
        all 0.35s ease;
}

.btn-hover-dark:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

/* =========================
   STATS
========================= */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 650px;
}

.hero-stat-item {
    min-width: 0;
}

.hero-stat-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.hero-stat-item span {
    color: #9d9da3;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.6;
}

/* =========================
   MOBILE STATS
========================= */
@media (max-width: 768px) {
    .hero-stats {
        gap: 16px;
        padding-top: 24px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-stat-item h3 {
        font-size: 24px;
    }

    .hero-stat-item span {
        font-size: 9px;
        letter-spacing: 1px;
    }
}



/* =========================
   HERO GLASS CARD
========================= */
.hero-glass-card {
    position: relative;
    padding: 38px;
    border-radius: 32px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    transform:
        translateY(70px);
    z-index: 10;
}

/* Floating Animation */
.floating-card {
    animation:
        floatingCard 5s ease-in-out infinite;
}

@keyframes floatingCard {
    0% {
        transform: translateY(70px);
    }
    50% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(70px);
    }
}

/* Glow */
.hero-card-glow {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(244,179,35,0.18);
    filter: blur(80px);
}

/* =========================
   CARD HEADER
========================= */
.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.hero-card-header h3 {
    font-family:
        'Space Grotesk',
        sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
}

.hero-card-header p {
    font-size: 14px;
    color:
        rgba(255,255,255,0.60);
    margin: 0;
    line-height: 1.7;
}

.hero-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background:
        var(--carrick-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* =========================
   FORM
========================= */
.hero-glass-card label {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color:
        rgba(255,255,255,0.60);
    z-index: 10;
}

/* Inputs */
.hero-input {
    min-height: 56px;
    border-radius: 16px;
    background:
        rgba(0,0,0,0.35) !important;
    border:
        1px solid rgba(255,255,255,0.10);
    color: #fff !important;
    padding:
        14px 18px;
    font-size: 14px;
    transition:
        all 0.3s ease;
}

/* Placeholder */
.hero-input::placeholder {
    color:
        rgba(255,255,255,0.45);
}

/* Focus */
.hero-input:focus {
    background:
        rgba(0,0,0,0.45) !important;
    border-color:
        var(--carrick-gold);
    box-shadow:
        0 0 0 0.18rem rgba(244,179,35,0.15);
}

/* Select Fix */
.hero-input option {
    background: #111214;
    color: #fff;
}

/* =========================
   SUBMIT BUTTON
========================= */
.hero-submit-btn {
    min-height: 58px;
    border-radius: 16px;
    background: var(--carrick-gold);
    color: #000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    transition:
        all 0.3s ease;
}

.hero-submit-btn:hover {
    background:#dca62d;
    transform:
        translateY(-2px);
    box-shadow: 0 15px 35px rgba(244,179,35,0.25);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .hero-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-lg-custom {
        width: 100%;
    }
}


/* =========================
   INTRO SERVICES
========================= */
.intro-services-section {
    position: relative;
    z-index: 20;
    /* margin-top: -90px; */
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fff;
}

/* =========================
   SERVICE CARD
========================= */
.intro-service-card {
    position: relative;
    height: 100%;
    padding: 25px 34px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.06);
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    box-shadow:
        0 30px 60px rgba(15,23,42,0.10);
    color: #000;
}

/* Hover */
.intro-service-card:hover {
    transform:
        translateY(-10px);
    box-shadow:
        0 30px 60px rgba(15,23,42,0.20);   
    border-color:
        rgba(244, 179, 35, .55);
}

/* Top Glow Line */
.intro-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(244,179,35,0.8),
            transparent
        );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.intro-service-card:hover::before {
    opacity: 1;
}



/* =========================
   ICONS
========================= */
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
    transition:
        all 0.35s ease;
}

/* Soft */
.service-icon.soft {
    background:
        rgba(244,179,35,0.12);
    color:
        var(--carrick-gold);
}

/* Gold */
.service-icon.gold {
    background:
        var(--carrick-gold);
    color: #000;
}

/* Hover Icon */
.intro-service-card:hover .service-icon {
    transform:
        scale(1.08)
        rotate(-4deg);
}

/* =========================
   TYPOGRAPHY
========================= */
.intro-service-card h3 {

    font-family:
        'Space Grotesk',
        sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.intro-service-card p {
    font-size: 15px;
    line-height: 1.9;
    color: rgb(71 85 105);
    margin: 0;
}

/* =========================
   FEATURED CARD
========================= */
.featured-card {
    background:
        linear-gradient(
            180deg,
            #151618 0%,
            #101113 100%
        );
    color: #fff;
    border:
        1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.28);
}

.featured-card p {
    /* color: rgba(255,255,255,0.65); */
    color: rgb(255 255 255 / 0.65)
}

.featured-card:hover{
    background: #202329;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .intro-services-section {
        margin-top: -40px;
    }
}

@media (max-width: 768px) {
    .intro-services-section {
        padding-bottom: 70px;
    }

    .intro-service-card {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .intro-service-card h3 {
        font-size: 22px;
    }

}





/* =========================
   CARS SECTION
========================= */

.cars-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;

    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* =========================
   CARS BACKGROUND EFFECTS
========================= */
/* Grid Overlay */
.cars-section .container {
    position: relative;
    z-index: 2;
}

.cars-section::marker {
    display: none;
}

/* =========================
   GEOMETRIC BACKGROUND
========================= */

/* Grid Pattern */
.cars-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(15,23,42,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15,23,42,0.08) 1px,
            transparent 1px
        );
    background-size:
        34px 34px;
    opacity: 0.5;
    pointer-events: none;

}

/* Floating Geometric Shapes */
.cars-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(244,179,35,0.25) 0,
            rgba(244,179,35,0.25) 2px,
            transparent 2px
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(15,23,42,0.15) 0,
            rgba(15,23,42,0.15) 2px,
            transparent 2px
        ),
        radial-gradient(
            circle at 60% 20%,
            rgba(244,179,35,0.18) 0,
            rgba(244,179,35,0.18) 1.5px,
            transparent 1.5px
        ),
        radial-gradient(
            circle at 30% 80%,
            rgba(15,23,42,0.12) 0,
            rgba(15,23,42,0.12) 2px,
            transparent 2px
        );
    background-size:
        220px 220px;
    animation:
        geometricMove 18s linear infinite;
    opacity: 1;
    pointer-events: none;

}

/* Extra Technical Lines */
.cars-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background:
        linear-gradient(
            transparent,
            rgba(244,179,35,0.18),
            transparent
        );
    pointer-events: none;
}

/* Content */
.cars-section .container {
    position: relative;
    z-index: 2;
}

/* =========================
   ANIMATION
========================= */
@keyframes geometricMove {
    0% {
        transform:
            translateY(0px)
            translateX(0px);
    }
    50% {
        transform:
            translateY(-18px)
            translateX(12px);
    }
    100% {
        transform:
            translateY(0px)
            translateX(0px);
    }
}

/* =========================
   HEADER
========================= */
.cars-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 992px) {
    .cars-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.cars-heading {
    max-width: 42rem;
}

/* Small Label */
.cars-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gold-line {
    width: 40px;
    height: 2px;
    background: var(--carrick-gold);
}

.cars-subtitle {
    color: var(--carrick-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 12px;
}

/* Heading */
.cars-heading h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #000;
}

.cars-heading p {
    margin-top: 1.25rem;
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.75;
}

/* =========================
   FILTERS
========================= */
.vehicle-filters {
    display: flex;
    background: #f8fafc;
    padding: 0.25rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.vehicle-tab {
    border: none;
    background: transparent;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    transition: all 0.3s ease;
}

.active-tab {
    background: #000;
    color: #fff;
}

/* =========================
   VEHICLE CARD
========================= */
.vehicle-card {
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 1);
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(15,23,42,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
    border-color: rgba(244, 179, 35, .55);
}

/* =========================
   IMAGE
========================= */
.vehicle-image {
    position: relative;
    height: 16rem;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

}

.vehicle-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: 0.5s ease;
}

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

/* =========================
   BADGES
========================= */
.vehicle-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vehicle-badge.sale {
    background: #059669;
    background: var(--carrick-gold);
    color: #fff;
}

.vehicle-badge.rent {
    background: #dc2626;
    color: #000;
}

.vehicle-badge.reserved {
    background: #059669;
    color: #fff;
}


.vehicle-badge.sold{
    background:#dc3545;
    color: #fff;}


.vehicle-card.sold img{
    filter:grayscale(.6);
    opacity:.85;
}

.vehicle-card.reserved img{
    filter:grayscale(.35);
    opacity:.9;
}

.disabled-btn{
    background:#6c757d;
    border-color:#6c757d;
    cursor:not-allowed;
}

/* =========================
   PRICE
========================= */
.vehicle-price {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* =========================
   CONTENT
========================= */
.vehicle-content {
    padding: 1.75rem;
}

.vehicle-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 0.5rem;
    height: 30px;
}

.vehicle-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #000;
}

/* =========================
   SPECS
========================= */
.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    font-size: 12px;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.vehicle-specs i {
    color: var(--carrick-gold);
    margin-right: 4px;
}

/* =========================
   BUTTON
========================= */
.vehicle-btn {
    margin-top: 1.5rem;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    border-radius: 0.75rem;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vehicle-btn:hover {
    background: var(--carrick-gold);
    color: #000;
}

/* =========================
   CARS FOOTER CTA
========================= */
.cars-footer-cta {
    margin-top: 4rem;
}

/* CTA Button */
.cars-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #000;
    color: #fff;
    min-height: 62px;
    padding: 0 42px;
    border-radius: 1rem;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        all 0.35s ease;
    box-shadow:
        0 10px 25px rgba(15,23,42,0.10);
}

/* Hover */
.cars-cta-btn:hover {
    background: var(--carrick-gold);
    color: #000;
    transform:
        translateY(-3px);
    box-shadow:
        0 18px 40px rgba(244,179,35,0.25);
}

/* Icon */
.cars-cta-btn i {
    transition:
        transform 0.35s ease;
}

.cars-cta-btn:hover i {
    transform:
        translateX(6px);
}

/* =========================
   FILTER ANIMATION
========================= */
.vehicle-card {
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.hide-card {
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
    display: none;
}

/* Disabled */
.disabled-btn {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .cars-heading h2 {

        font-size: 2.4rem;

    }

    .vehicle-filters {

        width: 100%;

        justify-content: center;

    }

}




/* =========================
   SERVICES SECTION
========================= */
.services-section {
    position: relative;
    background: #0A0A0B;
    padding: 100px 0;
    overflow: hidden;
}

/* =========================
   HEADER
========================= */
.services-header {
    max-width: 760px;
    margin-bottom: 50px;
}

.services-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--carrick-gold);
    animation: pulse 1.8s infinite;
}

.services-mini-title span:last-child {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--carrick-gold);
}

.services-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.services-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #8b949e;
}

/* =========================
   TABS
========================= */
.services-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 60px;
}

.service-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #17181B;
    color: #9ca3af;
    min-height: 40px;
    padding: 0 26px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-tab:hover {
    color: #fff;
    border-color: rgba(244,179,35,0.35);
}

.service-tab.active-tab {
    background: var(--carrick-gold);
    border-color: var(--carrick-gold);
    color: #000;
}

/* =========================
   SERVICE CARD
========================= */
.service-card {
    background: #17181B;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    /* transform: translateY(-4px); */
    border-color: rgba(244,179,35,0.4);
}

.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(244,179,35,0.12);
    color: var(--carrick-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon{
    background-color: rgb(244 179 35 / 1);
    color: rgb(0 0 0 / 1);
    
}


.service-badge {
    font-size: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.service-card p {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* Link */
.service-link {
    border: none;
    background: transparent;
    color: var(--carrick-gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.service-card:hover .service-link {
     transform:
        translateX(5px);

}

/* =========================
   FOOTER CTA
========================= */
.services-footer {
    margin-top: 80px;
}

.services-footer-box {
    background: #17181B;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.services-footer-box h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.services-footer-box p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

.services-footer-btn {
    background: var(--carrick-gold);
    color: #000;
    padding: 16px 26px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================
   FILTER ANIMATION
========================= */
.services-grid {
    position: relative;
}

/* Default */
.service-item {
    transition:
        opacity 0.1s ease,
        transform 0.7s ease;
}


/* Hidden State */
.service-hidden {
    opacity: 0;
    transform:
        scale(0.5);
    pointer-events: none;
    position: absolute;
}


/* Visible State */
.service-item:not(.service-hidden) {
    opacity: 1;
    transform:
        /* translateY(0) */
        scale(1);
    /* position: absolute; */
}



/* =========================
   DMV SECTION
========================= */
.dmv-section {
    position: relative;
    background: #ffffff;
    padding: 110px 0;
    overflow: hidden;
}

/* Background Grid */
.dmv-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(15,23,42,0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15,23,42,0.04) 1px,
            transparent 1px
        );
    background-size: 30px 30px;
    opacity: 0.7;
    pointer-events: none;
}

/* Card */
.dmv-info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 36px;
    box-shadow:
        0 20px 60px rgba(15,23,42,0.08);
    position: relative;
    z-index: 2;
    
    width: 100%;
    height: 100%;
}

.dmv-info-card {
    display: flex;
    flex-direction: column;

    /* justify-content: space-between; */
}

.dmv-left-card{
    padding-top: 50px;
}

.dmv-status-box {
    margin-top: auto;
}


.dmv-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.dmv-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background:
        rgba(244,179,35,.12);
    color:
        var(--carrick-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.dmv-card-header h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #000;
    font-size: 22px;
    margin-bottom: 4px;
}

.dmv-card-header p {
    margin: 0;
    color: #64748b;
}

/* Perks */
.dmv-perks {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.dmv-perk {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
}

.dmv-perk i {
    color: #10b981;
    margin-top: 4px;
}

.dmv-perk strong {
    display: block;
    color: #000;
    margin-bottom: 4px;
}

.dmv-perk span {
    color: #64748b;
    font-size: 14px;
}

/* Status */
.dmv-status-box {
    margin-top: 32px;
    padding: 20px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dmv-status-box h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    color: #000;
    margin: 0;
}

.dmv-status-box span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #64748b;
}

.dmv-status-box i {
    color: var(--carrick-gold);
    font-size: 34px;
}

/* Content */
.dmv-content {
    position: relative;
    z-index: 2;
}

.dmv-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #000;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 10px 0;
}

.dmv-content p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
}

/* Feature Cards */
.dmv-feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    transition: all .3s ease;
}

.dmv-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244,179,35,.5);
}

.dmv-feature-card i {
    color: var(--carrick-gold);
    font-size: 22px;
    margin-bottom: 16px;
}

.dmv-feature-card h5 {
    color: #000;
    font-weight: 700;
    margin-bottom: 8px;
}

.dmv-feature-card p {
    font-size: 14px;
    margin: 0;
}

/* Button */
.dmv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 32px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all .3s ease;
}

.dmv-btn:hover {
    background: var(--carrick-gold);
    color: #000;
}


/* =========================
   DMV LABEL
========================= */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.section-label span:last-child {
    color: var(--carrick-gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}
/* 
.gold-line {
    width: 24px;
    height: 2px;
    background: var(--carrick-gold);
    flex-shrink: 0;
} */



/* =========================
   WHY CHOOSE SECTION
========================= */
.why-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--carrick-dark);
    color: #fff;
}

/* Background */
.why-bg {
    position: absolute;
    inset: 0;
}

.why-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10,10,11,0.85),
        rgba(10,10,11,0.75),
        rgba(10,10,11,0.60)
    );
}

/* Content */
.why-content {
    position: relative;
    z-index: 2;
}

.why-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 18px 0 24px;
}

.why-content p {
    color: rgba(255,255,255,.70);
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
}

/* Button */
.why-btn {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background: var(--carrick-gold);
    color: #000;
    border-radius: 18px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all .3s ease;
}

.why-btn:hover {
    transform: translateY(-3px);
    color: #000;
}

/* Cards */
.why-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244,179,35,0.35);
}

.why-card i {
    font-size: 28px;
    color: var(--carrick-gold);
    margin-bottom: 18px;
}

.why-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255,255,255,.60);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Mobile */
@media (max-width: 991px) {
    .why-content h2 {
        font-size: 42px;
    }
}




/* =========================
   TESTIMONIALS
========================= */
.testimonials-section {
    background: #f8fafc;
    padding: 120px 0;
}

.testimonials-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #000;
    margin-top: 12px;
}

.testimonials-description {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Card */
.testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 32px;
    height: 100%;
    transition: all .3s ease;
    box-shadow:
        0 10px 30px rgba(15,23,42,0.04);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244,179,35,.35);
}

/* Stars */
.testimonial-stars {
    color: var(--carrick-gold);
    margin-bottom: 24px;
}

.testimonial-stars i {
    margin-right: 2px;
}

/* Text */
.testimonial-text {
    color: #64748b;
    font-size: 15px;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 32px;
}

/* User */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #111827;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-user h6 {
    margin: 0;
    font-weight: 700;
    color: #000;
}

.testimonial-user span {
    color: #64748b;
    font-size: 13px;
}




/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    position: relative;
    background: var(--carrick-dark);
    color: #fff;
    padding: 96px 0;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(244,179,35,0.08),
            transparent 70%
        );
    top: 50%;
    left: 50%;
    transform:
        translate(-50%, -50%);
}

/* LEFT */
.contact-info {
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.contact-description {
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Contact Items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--carrick-charcoal);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--carrick-gold);
}

.contact-item span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
}

.contact-item a,
.contact-item p {
    color: #fff;
    font-weight: 700;
    margin: 0;
    text-decoration: none;
}

/* Hours */
.hours-card {
    background: var(--carrick-charcoal);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 28px;
}

.hours-card h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 12px;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span {
    color: rgba(255,255,255,.60);
}

.hours-row strong {
    color: #fff;
}

.hours-row .gold {
    color: var(--carrick-gold);
}

/* FORM */
.contact-form-card {
    background: var(--carrick-charcoal);
    background-color: rgb(25 27 31 / var(1));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 32px;
    padding: 50px;
    position: relative;
    z-index: 2;
}

.contact-form-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.contact-form-card p {
    color: rgba(255,255,255,.50);
    margin-bottom: 36px;
}

/* Inputs */
.contact-form-card label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
}

.contact-input {
    background: var(--carrick-dark) !important;
    border: 1px solid rgba(255,255,255,.08);
    color: #fff !important;
    border-radius: 14px;
    min-height: 54px;
}

.contact-input:focus {
    border-color: var(--carrick-gold);
    box-shadow: none;
    background: var(--carrick-dark);
}

.contact-input::placeholder {
    color: rgba(255,255,255,.35);
}

/* Button */
.contact-btn {
    width: 100%;
    border: none;
    min-height: 60px;
    border-radius: 14px;
    background: var(--carrick-gold);
    color: #000;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all .3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
}




/* =========================
   FOOTER
========================= */
.footer-section {
    background: #050505;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    row-gap: 40px;
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 60px;
    height: auto;
}

.footer-brand-text h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.footer-brand-text span {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.50);
}

.footer-description {
    color: rgba(255,255,255,.55);
    line-height: 1.6;
    max-width: 90%;
    font-size: 14px;
}

/* Titles */
.footer-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Links */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: all .3s ease;
}

.footer-links a:hover {
    color: var(--carrick-gold);
}

/* Contact */
.footer-contact {
    color: rgba(255,255,255,.55);
    line-height: 1.8;
}

/* Bottom */
.footer-bottom {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Social */
.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    color: rgba(255,255,255,.55);
    font-size: 18px;
    transition: all .3s ease;
}

.footer-social a:hover {
    color: var(--carrick-gold);
    transform: translateY(-2px);
}

/* Copyright */
.footer-copyright {
    margin: 0;
    color: rgba(255,255,255,.45);
    font-size: 13px;
}

/* Legal */
.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: 13px;
    transition: all .3s ease;
}

.footer-legal a:hover {
    color: var(--carrick-gold);
}

/* Mobile */
@media (max-width: 992px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


.footer-credit {
    color: rgba(255,255,255,.45);
    font-size: 13px;
}

.footer-credit a {
    color: var(--carrick-gold);
    text-decoration: none;
    font-weight: 700;
    transition: all .3s ease;
}

.footer-credit a:hover {
    opacity: .85;
}

@media (max-width: 991px) {

    .main-header.header-scrolled .navbar-collapse .nav-link {
        color: #fff !important;
    }

    .main-header.header-scrolled .navbar-collapse .nav-link:hover,
    .main-header.header-scrolled .navbar-collapse .nav-link.active {
        color: var(--carrick-gold) !important;
    }

}


.vehicle-card.sold .vehicle-image img{

    filter: grayscale(100%);

    opacity:.9;

}

.vehicle-sold-ribbon{
    position:absolute;
    top: 35%;
    left:-35%;
    width:170%;
    text-align:center;
    padding:18px 0;
    background:rgba(220,53,69,.88);
    color:#fff;
    font-size:3rem;
    font-weight:800;
    letter-spacing:8px;
    text-transform:uppercase;
    transform:rotate(-22deg);
    z-index:20;
    pointer-events:none;
    user-select:none;
}
