.hero-description p {
    text-transform: none;
    font-size: 1rem !important;
    font-family: var(--font-primary);
}

.hero-description {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3636364D;
    z-index: 1;
}


.heading-title {
    font-size: calc(1rem + 8px);
    font-family: var(--font-primary);
}

.hero-subtitle img {
    width: 66px;
    height: 66px;
    object-fit: cover;
}

.jrz-hero {
    padding-top: 10em;
    padding-bottom: 10em;
    position: relative;
    width: 100%;
    height: max-content;
    min-height: max-content;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    display: flex;
}

.hero_container {
    width: 100%;
    max-width: 750px;
    margin-left: 60px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
}


.container-lg {
    z-index: 2;
}


.hero-subtitle {
    font-weight: var(--font-bold);
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 66px;
}


.hero_container h2 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.jrz-logo {
    width: 200px;
    height: 50px;
    object-fit: contain;
}


.cta-container {
    display: flex;
    gap: 1rem;
    margin-top: 50px;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
}



.cta-container a {
    text-decoration: none;
    display: block;
    width: 100%;
}

.cta-btn {
    padding: 7px 24px;
    font-size: 14px;
    font-weight: var(--font-medium);
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

.cta-btn .cta-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 16px;
    flex-shrink: 0;
}

.cta-btn .cta-text {
    text-align: left;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.cta-btn:hover {
    background-color: var(--color-white) !important;
    color: var(--color-black);
}

.cta-arrow {
    margin-left: 40px;
}

.hero-car {
    position: absolute;
    right: 0;
    bottom: -163px;
}

.hero-car img {
    width: 900px;
    object-fit: cover;
}

.heading {
    color: var(--color-primary);
}

/* Product Cards Section */
.section-product-cards {
    padding: 60px 0;
    background-color: var(--color-black-bg);
}

.section-product-cards h2 {
    color: var(--color-primary);
}

.product-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card-item {
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}



.product-card-image {
    background-color: #eeeeee;
    height: 280px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.product-card-content {
    padding: 30px 30px 20px;
    flex-grow: 1;
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: var(--font-bold, 700);
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.2;
}

.product-card-app {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    background: #fdfdfd;
    padding: 10px;
    border-left: 3px solid var(--color-primary);
}

.product-card-app strong {
    font-weight: var(--font-bold, 700);
    color: #333;
}

.product-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0;
}

.product-card-specs {
    margin-top: 15px;
}

.product-card-footer {
    padding: 0 30px 30px;
    margin-top: auto;
}

.btn-product-enquire {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background-color: #1a1a1a;
    color: var(--color-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: var(--font-bold, 700);
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-product-enquire:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

/* Related News Section */
.section-related-news {
    padding: 60px 0;
    background-color: var(--color-black-bg);
}

.news-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .news-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.news-card:hover {
    border-color: var(--color-primary);
}

.news-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-title {
    font-size: 1.2rem;
    font-weight: var(--font-bold, 700);
    color: #1a1a1a;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-card-link {
    color: var(--color-primary);
    font-weight: var(--font-semibold, 600);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.news-card-link .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.news-card-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}


.section-faq {
    padding: 60px 0;
    background-color: var(--color-black-bg);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;

}

.faq-question:hover {
    background-color: #f1f1f1;
}

.faq-item.active .faq-question {
    background-color: #d32f2f;
    color: #fff;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
}

.faq-answer {
    display: none;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    background-color: #fff;
}

.faq-answer p {
    margin: 0;
}

/* JRZ Tiles Section */
.section-jrz-tiles {
    padding: 60px 0;
    background-color: var(--color-black-bg);
}

.jrz-tiles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .jrz-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .jrz-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.jrz-tile {
    background-color: var(--color-white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.jrz-tile:hover {
    border-color: var(--color-primary);
}

.jrz-tile-highlight {
    background-color: #1a1a1a;
    color: var(--color-white);
    border-color: #1a1a1a;
}

.jrz-tile-highlight .jrz-tile-title {
    color: var(--color-white);
}

.jrz-tile-highlight .jrz-tile-desc {
    color: #cccccc;
}

.jrz-tile-highlight:hover {
    background-color: #2a2a2a;
    border-color: #d32f2f;
}

.jrz-tile-content {
    flex-grow: 1;
    padding: 30px 20px 0px;
}

.jrz-tile-title {
    font-size: 2rem;
    font-weight: var(--font-bold, 700);
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.3;
}

.jrz-tile-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-black);
    margin-bottom: 20px;
}

.jrz-tile-footer {
    margin-top: auto;
}

.jrz-tile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-semibold, 600);
    color: #d32f2f;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.jrz-tile-cta .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}


.jrz-tile-cta:hover .arrow {
    transform: translateX(4px);
}

/* JRZ CTAs Section */
.section-jrz-ctas {
    padding: 60px 0;
    background-color: var(--color-black-bg, #1a1a1a);
}

.jrz-ctas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .jrz-ctas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.jrz-cta-block {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.jrz-cta-dark {
    background-color: var(--color-black-bg, #1a1a1a);
    color: #ffffff;
    border: 1px solid #333;
}

.jrz-cta-dark .jrz-cta-title,
.jrz-cta-dark .jrz-cta-desc {
    color: #ffffff;
}

.jrz-cta-content {
    flex-grow: 1;
    margin-bottom: 30px;
}

.jrz-cta-title {
    font-size: 1.5rem;
    font-weight: var(--font-bold, 700);
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #1a1a1a;
}

.jrz-cta-dark .jrz-cta-title {
    color: var(--color-primary, #d32f2f);
}

.jrz-cta-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #555;
}

.jrz-cta-dark .jrz-cta-desc {
    color: #ccc;
}

.jrz-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jrz-cta-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background-color: var(--color-black-bg, #1a1a1a);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: var(--font-bold, 700);
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
}

.jrz-cta-btn:hover {
    background-color: var(--color-primary, #d32f2f);
    color: #ffffff;
}

.jrz-cta-btn-primary {
    background-color: var(--color-primary, #d32f2f);
}

.jrz-cta-btn-primary:hover {
    background-color: #b71c1c;
}

.jrz-cta-link {
    display: inline-block;
    color: var(--color-primary, #d32f2f);
    font-weight: var(--font-semibold, 600);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.jrz-cta-dark .jrz-cta-link {
    color: #ffffff;
}

.jrz-cta-link::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    line-height: 1;
}

.jrz-cta-link:hover {
    color: #b71c1c;
    text-decoration: underline;
}

.jrz-cta-dark .jrz-cta-link:hover {
    color: var(--color-primary, #d32f2f);
}


.hero-importer-text {
    color: white;
    font-weight: 500;
    margin: 0;
}

.hero-products-text {
    color: white;
    font-weight: 500;
    font-size: 47px;
    margin: 0;
}


@media(min-width:1200px) {
    .jrz-hero {
        align-items: center;
    }
}

@media (max-width: 1200px) {
    .hero_container {
        width: 60%;
        margin-left: 40px;
    }

    .hero-car {
        bottom: -131px;
    }

    .hero-car img {
        width: 630px;
    }

    .hero-subtitle {
        font-size: 66px !important;
    }
}

@media (max-width: 992px) {
    .hero_container {
        width: 100%;
        margin-left: 30px;
    }

    .hero-car {
        bottom: -100px;
    }

    .hero-car img {
        width: 500px;
    }

    .hero-subtitle {
        font-size: 50px !important;
    }

    .hero-importer-text {
        font-size: 27px !important;
    }

    .hero-products-text {
        font-size: 33px !important;
    }
}

@media (max-width: 768px) {
    .jrz-hero {
        padding-top: 10em;
        padding-bottom: 10em;
        height: auto;
    }

    .hero_container {
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 40px;
    }

    .hero-subtitle img {
        width: 40px;
        height: 40px;
    }

    .hero-products-text {
        font-size: 32px;
    }

    .hero-importer-text {
        font-size: 24px;
    }

    .jrz-logo {
        width: 150px;
        height: 45px;
    }

    .hero-car {
        bottom: -78px;
        right: 0px;
    }

    .hero-car img {
        width: 400px;
    }
}

@media (max-width: 576px) {


    h2.hero-subtitle {
        font-size: 42px !important;
        justify-content: center;
    }

    .cta-btn {
        padding: 4px 16px;
    }

    .cta-text {
        font-size: 12px;
    }

    .cta-arrow {
        display: none;
    }

    .cta-btn {
        justify-content: center;
    }

    .heading-title {
        font-size: calc(1rem + 4px);
        text-align: center;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .hero-products-text {
        font-size: 29px !important;
        text-align: center;
    }

    .hero-importer-text {
        font-size: 39px !important;
        text-align: center;
    }

    .jrz-logo {
        width: 217px;
        height: 57px;
        object-fit: contain;
    }

    .hero-car {
        bottom: -136px;
        right: -440px;
    }

    .hero-car img {
        width: 800px;
    }

    .hero-description {
        margin-top: 50px;
        margin-bottom: 15px;
    }

    .cta-container {
        max-width: 100%;
    }
}

@media(max-width: 545px) {
    .hero-content {
        padding-top: 4em;
        padding-bottom: 4em;
    }

    h2.hero-subtitle {
        font-size: 41px !important;
    }

    .hero-description p {
        text-align: center;
    }

    .hero-products-text {
        font-size: 29px !important;
    }

    .hero-importer-text {
        font-size: 41px !important;
        text-align: center;
    }
}



.jrz-tile-footer {
    position: relative;
}



.jrz-tile-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    height: 55px;
    padding-right: 25px;
    background: #BDC0C1;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    border-radius: 0px 0px 20px 20px;
    background-image: url(https://parr-uk.co.uk/wp-content/uploads/2026/06/button-bg.png);
    background-repeat: no-repeat;
    background-position: right;
    font-family: var(--font-primary);
}

/* Diagonal white stripes */

@media(min-width: 545px) {
    .jrz-tile-cta::after {
        content: '';
        position: absolute;
        left: 45%;
        top: 50%;
        width: 6px;
        height: 70px;
        background: #fff;
        transform: translateY(-50%) rotate(-30deg);
    }
}

.jrz-tile-cta::after {
    left: calc(27% + 48px);
}

.jrz-tile-cta .arrow {
    font-size: 18px;
}


.slider-content-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-left: -20px;
    margin-right: -20px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 16px;
    height: 16px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 2px solid var(--color-black);
    outline: none;
    background: var(--color-white);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slick-dots li.slick-active button {
    background: var(--color-primary);
}

.jrz-slider-dots ul {
    margin-left: 0px;
}

.slider:after {
    content: "";
    position: absolute;
    bottom: 35px;
    left: 6px;
    width: 100%;
    height: 50%;
    background: url(/wp-content/uploads/2026/06/red-rectangle.png);
    background-size: cover;
    z-index: 0;
    pointer-events: none;
    border-radius: 15px;
}

#slider-content .container-lg {
    max-width: 1146px;
}


.slick-dots li button:before {
    display: none !important;
}

.slider {
    width: 44%;
    position: relative;
    padding: 0 0 14px 14px;
    margin-top: 0;
    margin-bottom: -83px;
    z-index: 10;
    box-sizing: border-box;
}

.content {
    width: calc(100% - 44% - 40px);
}


section.section-jrz-tiles:nth-of-type(3) {
    background-color: #cecece;
}

section.section-jrz-tiles:nth-of-type(3) .container-lg {
    background-color: #242629;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 15px;
}

section.section-jrz-tiles:nth-of-type(3) .container-lg .heading {
    color: var(--color-white);
}

.hightlight {
    color: var(--color-primary);
}

#slider-content {
    background: var(--color-black-bg);
    padding-top: 80px;
    padding-bottom: 20px;
}

/* ---------- SLIDER ---------- */

.image-slider {
    position: relative;
    z-index: 1;
    border: 4px solid #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.image-slider .slide-item {
    line-height: 0;
}

.image-slider .slide-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* dots container */
.slider-dots {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.slider-dots ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slider-dots li {
    margin: 0;
}

.slider-dots li button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.55;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: opacity .2s ease, background .2s ease;
}

.slider-dots li.slick-active button {
    background: var(--red);
    opacity: 1;
}


.slick-dots {
    position: absolute;
    bottom: 50px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    z-index: 1;
}


@media(max-width: 992px) {
    .slider {
        margin-bottom: -70px;
    }
}

@media(max-width: 545px) {
    .slider-content-container {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }

    .slider {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0 0 14px 14px;
    }

    .content {
        width: 100% !important;
    }
}

/* ---------- CONTENT ---------- */
.content {
    color: var(--white);
}

.content h3 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
}

.content h3 span {
    color: var(--color-primary);
}

.content p {
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 16px;
}

.content p:last-child {
    margin-bottom: 0;
}

.content p strong {
    color: var(--white);
    font-weight: 700;
}

@media(max-width: 576px) {
    .jrz-tile-cta {
        background-size: 80% 100% !important;
        padding-right: 12px !important;
        font-size: 11px !important;
    }
    .jrz-tile-cta::after {
        content: '' !important;
        position: absolute !important;
        left: 23% !important;
        top: 50% !important;
        width: 6px !important;
        height: 70px !important;
        background: #fff !important;
        transform: translateY(-50%) rotate(-30deg) !important;
        z-index: 1 !important;
    }
}