/* ===================================================
   Coxeur — main.css
   Header · Footer · Homepage Sections · Components
   =================================================== */

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.cxr-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: transparent;
    transition: background .35s, box-shadow .35s, padding .35s;
}

.cxr-header.scrolled {
    background: rgba(6, 9, 18, .97);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, .4);
}

.cxr-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 80px;
}

.cxr-header.scrolled .cxr-header__inner {
    height: 68px;
}

/* Logo */
.cxr-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cxr-logo img {
    max-height: 44px;
    width: auto;
}

.cxr-logo__text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: #fff;
}

.cxr-logo__text span {
    background: linear-gradient(90deg, #8cc63f, #a8d84f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav */
.cxr-nav {
    margin-left: auto;
}

.cxr-nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cxr-nav__list li {
    position: relative;
}

.cxr-nav__list a {
    display: block;
    padding: 8px 14px;
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--cxr-transition);
}

.cxr-nav__list a:hover,
.cxr-nav__list .current-menu-item>a,
.cxr-nav__list .current-page-ancestor>a {
    color: var(--cxr-lime);
    background: rgba(140, 198, 63, .1);
}

/* Dropdown */
.cxr-nav__list .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: rgba(12, 18, 48, .98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(140, 198, 63, .15);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: var(--cxr-transition);
    z-index: 100;
}

.cxr-nav__list li:hover>.sub-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.cxr-nav__list .sub-menu a {
    color: rgba(255, 255, 255, .75);
    border-radius: 8px;
    padding: 9px 14px;
}

/* Header Actions */
.cxr-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 16px;
}

/* Language Switcher */
.cxr-lang-switch {
    display: flex;
    gap: 4px;
}

.cxr-lang-switch a {
    padding: 4px 10px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .5);
    border-radius: 6px;
    transition: var(--cxr-transition);
}

.cxr-lang-switch a.active,
.cxr-lang-switch a:hover {
    color: var(--cxr-lime);
    background: rgba(140, 198, 63, .1);
}

/* Mobile Toggle */
.cxr-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.cxr-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--cxr-transition);
}

.cxr-header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.cxr-header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.cxr-header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
    .cxr-header__toggle {
        display: flex;
    }

    .cxr-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(6, 9, 18, .97);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-bottom: 1px solid rgba(140, 198, 63, .15);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: var(--cxr-transition);
    }

    .cxr-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .cxr-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .cxr-nav__list .sub-menu {
        position: static;
        opacity: 1;
        pointer-events: all;
        transform: none;
        background: rgba(255, 255, 255, .05);
        margin-top: 4px;
    }

    .cxr-header__cta {
        display: none;
    }
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.cxr-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cxr-grad-hero);
    overflow: hidden;
    padding-top: 80px;
}

.cxr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(140, 198, 63, .06) 0%, transparent 70%);
    pointer-events: none;
}

.cxr-hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cxr-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(140, 198, 63, .4);
    animation: floatParticle var(--d, 8s) var(--delay, 0s) ease-in-out infinite alternate;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: .4;
    }

    100% {
        transform: translate(var(--tx, 20px), var(--ty, -30px)) scale(1.2);
        opacity: .15;
    }
}

.cxr-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0 120px;
}

.cxr-hero__content {}

.cxr-hero__badge {
    margin-bottom: 20px;
}

.cxr-hero h1 {
    color: #fff;
    margin-bottom: 22px;
}

.cxr-hero h1 .highlight {
    color: var(--cxr-lime);
}

.cxr-hero__lead {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 36px;
    font-size: 1.1rem;
}

.cxr-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.cxr-hero__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cxr-hero__stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.cxr-hero__stat-item {
    text-align: center;
}

.cxr-hero__stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cxr-lime);
    display: block;
}

.cxr-hero__stat-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Phone mockup */
.cxr-hero__phone {
    position: relative;
    display: flex;
    justify-content: center;
    animation: heroFloat 5s ease-in-out infinite;
}

.cxr-hero__phone img {
    max-height: 580px;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .6));
}

.cxr-hero__phone::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(140, 198, 63, .2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}

@keyframes heroFloat {

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

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

/* Road scene at bottom */
.cxr-hero__road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: linear-gradient(to bottom, #0c1238, #080e28);
    overflow: hidden;
}

.cxr-hero__lane-divider {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, .1);
}

.cxr-hero__road-dash {
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    height: 3px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .18) 0, rgba(255, 255, 255, .18) 50px, transparent 50px, transparent 100px);
    animation: dashSlide 1.5s linear infinite;
}

@keyframes dashSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100px);
    }
}

.cxr-hero__vehicle {
    position: absolute;
    bottom: 4px;
    height: 80px;
    animation: driveHero 14s linear infinite;
}

@keyframes driveHero {
    0% {
        left: -160px;
    }

    100% {
        left: calc(100% + 20px);
    }
}

@media (max-width: 900px) {
    .cxr-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .cxr-hero__ctas,
    .cxr-hero__stores {
        justify-content: center;
    }

    .cxr-hero__stats {
        justify-content: center;
    }

    .cxr-hero__phone {
        max-width: 280px;
        margin: 0 auto;
    }

    .cxr-hero__phone img {
        max-height: 360px;
    }
}

/* ══════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════ */
.cxr-stats {
    padding: 48px 0;
    background: var(--cxr-navy2);
}

.cxr-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-x: 1px solid rgba(255, 255, 255, .08);
}

.cxr-stat-item {
    text-align: center;
    padding: 32px 24px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.cxr-stat-item:last-child {
    border-right: none;
}

.cxr-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--cxr-lime);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.cxr-stat-label {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .cxr-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cxr-stat-item:nth-child(2) {
        border-right: none;
    }

    .cxr-stat-item:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, .08);
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .cxr-stat-item:nth-child(4) {
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
}

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
.cxr-services {
    background: var(--cxr-off-white);
}

.cxr-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cxr-service-card {
    background: #fff;
    border-radius: var(--cxr-radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, .06);
    transition: var(--cxr-transition);
    position: relative;
    overflow: hidden;
}

.cxr-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cxr-grad-hero);
    opacity: 0;
    transition: opacity .4s;
}

.cxr-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cxr-shadow-lg);
}

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

.cxr-service-card:hover .cxr-service-icon {
    background: rgba(140, 198, 63, .15);
}

.cxr-service-card:hover .cxr-service-title,
.cxr-service-card:hover .cxr-service-desc {
    color: #fff;
    position: relative;
    z-index: 1;
}

.cxr-service-card:hover .cxr-service-icon {
    position: relative;
    z-index: 1;
}

.cxr-service-icon {
    width: 68px;
    height: 68px;
    background: rgba(140, 198, 63, .1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: var(--cxr-transition);
    position: relative;
    z-index: 1;
}

.cxr-service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cxr-service-desc {
    font-size: .9rem;
    opacity: .65;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cxr-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cxr-lime);
    font-size: .85rem;
    font-weight: 600;
    margin-top: 16px;
    position: relative;
    z-index: 1;
    transition: gap .2s;
}

.cxr-service-card:hover .cxr-service-link {
    color: var(--cxr-lime2);
    gap: 10px;
}

@media (max-width: 900px) {
    .cxr-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cxr-services__grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.cxr-how {
    background: #fff;
}

.cxr-how__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
}

.cxr-how__steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.66% + 32px);
    right: calc(16.66% + 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--cxr-lime), rgba(140, 198, 63, .2));
    pointer-events: none;
}

.cxr-step {
    text-align: center;
    padding: 0 16px;
}

.cxr-step__number {
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    background: var(--cxr-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--cxr-lime);
    position: relative;
    z-index: 1;
    border: 4px solid var(--cxr-lime);
    box-shadow: 0 0 0 8px rgba(140, 198, 63, .08);
}

.cxr-step__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cxr-step__desc {
    font-size: .9rem;
    opacity: .65;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .cxr-how__steps {
        grid-template-columns: 1fr;
    }

    .cxr-how__steps::before {
        display: none;
    }
}

/* ══════════════════════════════════════════
   APP DOWNLOAD SECTION
══════════════════════════════════════════ */
.cxr-app-download {
    background: var(--cxr-grad-hero);
    overflow: hidden;
    position: relative;
}

.cxr-app-download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(140, 198, 63, .07), transparent);
}

.cxr-app-download__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cxr-app-download__content {
    color: #fff;
}

.cxr-app-download__content h2 {
    margin-bottom: 16px;
}

.cxr-app-download__content p {
    opacity: .7;
    margin-bottom: 36px;
}

.cxr-app-download__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cxr-app-download__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cxr-app-download__mockups {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: -20px;
    padding-top: 20px;
}

.cxr-app-download__mockups img {
    max-height: 500px;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .5));
    transform: perspective(800px) rotateY(-8deg);
}

@media (max-width: 900px) {
    .cxr-app-download__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cxr-app-download__buttons,
    .cxr-app-download__stores {
        justify-content: center;
    }

    .cxr-app-download__mockups {
        padding-top: 0;
    }

    .cxr-app-download__mockups img {
        max-height: 320px;
        transform: none;
    }
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.cxr-testimonials {
    background: var(--cxr-off-white);
}

.cxr-testimonials__carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cxr-testimonial {
    background: #fff;
    border-radius: var(--cxr-radius-lg);
    padding: 32px;
    box-shadow: var(--cxr-shadow-sm);
    position: relative;
}

.cxr-testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 5rem;
    color: rgba(140, 198, 63, .15);
    font-weight: 900;
    line-height: 1;
}

.cxr-testimonial__stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 16px;
}

.cxr-testimonial__text {
    font-size: .95rem;
    line-height: 1.7;
    opacity: .75;
    margin-bottom: 20px;
}

.cxr-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cxr-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cxr-navy2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cxr-testimonial__name {
    font-weight: 700;
    font-size: .95rem;
}

.cxr-testimonial__role {
    font-size: .78rem;
    opacity: .5;
}

@media (max-width: 900px) {
    .cxr-testimonials__carousel {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════
   BLOG SECTION
══════════════════════════════════════════ */
.cxr-blog-section {
    background: #fff;
}

.cxr-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cxr-blog-card {
    border-radius: var(--cxr-radius);
    overflow: hidden;
    box-shadow: var(--cxr-shadow-sm);
    transition: var(--cxr-transition);
}

.cxr-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--cxr-shadow-md);
}

.cxr-blog-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--cxr-navy2);
}

.cxr-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.cxr-blog-card:hover .cxr-blog-card__image img {
    transform: scale(1.05);
}

.cxr-blog-card__body {
    padding: 24px;
}

.cxr-blog-card__meta {
    display: flex;
    gap: 12px;
    font-size: .75rem;
    opacity: .5;
    margin-bottom: 10px;
}

.cxr-blog-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.cxr-blog-card__excerpt {
    font-size: .88rem;
    opacity: .65;
    line-height: 1.6;
}

.cxr-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cxr-lime);
    font-size: .85rem;
    font-weight: 600;
    margin-top: 14px;
}

@media (max-width: 900px) {
    .cxr-blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cxr-blog__grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════
   CTA DRIVER BANNER
══════════════════════════════════════════ */
.cxr-cta-driver {
    background: var(--cxr-lime);
    padding: 72px 0;
    overflow: hidden;
    position: relative;
}

.cxr-cta-driver::before {
    content: '🚕';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    opacity: .1;
    pointer-events: none;
}

.cxr-cta-driver__inner {
    text-align: center;
}

.cxr-cta-driver h2 {
    color: var(--cxr-navy);
    margin-bottom: 12px;
}

.cxr-cta-driver p {
    color: rgba(6, 9, 18, .7);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.cxr-footer {
    color: rgba(255, 255, 255, .75);
    position: relative;
}

.cxr-footer__wave {
    margin-bottom: -2px;
    line-height: 0;
}

.cxr-footer__wave svg {
    display: block;
}

.cxr-footer__main {
    padding: 80px 0 60px;
}

.cxr-footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.cxr-footer__brand {}

.cxr-footer__tagline {
    font-size: .9rem;
    opacity: .55;
    line-height: 1.7;
    margin: 20px 0 24px;
}

.cxr-logo__text--white span {
    background: linear-gradient(90deg, #8cc63f, #a8d84f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cxr-footer__socials {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.cxr-social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    transition: var(--cxr-transition);
}

.cxr-social-icon:hover {
    background: var(--cxr-lime);
    color: #000;
    border-color: var(--cxr-lime);
    transform: translateY(-2px);
}

.cxr-footer__stores {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cxr-store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 10px 16px;
    color: #fff;
    transition: var(--cxr-transition);
}

.cxr-store-badge:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-1px);
}

.cxr-store-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.cxr-store-badge small {
    font-size: .65rem;
    opacity: .6;
}

.cxr-store-badge strong {
    font-size: .9rem;
}

.cxr-footer__col-title {
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cxr-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cxr-footer__col ul li a,
.cxr-footer__col ul li {
    font-size: .88rem;
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.cxr-footer__col ul li a:hover {
    color: var(--cxr-lime);
}

.cxr-footer__contact li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.cxr-footer__lang {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: .8rem;
    opacity: .5;
}

.cxr-footer__lang a {
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    color: rgba(255, 255, 255, .6);
}

.cxr-footer__lang a.active,
.cxr-footer__lang a:hover {
    border-color: var(--cxr-lime);
    color: var(--cxr-lime);
}

.cxr-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 20px 0;
}

.cxr-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .8rem;
}

.cxr-footer__bottom-inner p {
    opacity: .4;
}

.cxr-footer__legal-list {
    display: flex;
    gap: 16px;
}

.cxr-footer__legal-list a {
    opacity: .4;
    transition: opacity .2s;
}

.cxr-footer__legal-list a:hover {
    opacity: .8;
}

.cxr-footer__credit {
    opacity: .3;
}

.cxr-footer__credit a {
    color: var(--cxr-lime);
}

@media (max-width: 1024px) {
    .cxr-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .cxr-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .cxr-footer__grid {
        grid-template-columns: 1fr;
    }

    .cxr-footer__bottom-inner {
        justify-content: center;
        text-align: center;
    }
}

/* ══════════════════════════════════════════
   BLOG / SINGLE POST
══════════════════════════════════════════ */
.cxr-blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding-top: 40px;
}

.cxr-blog-layout--full {
    grid-template-columns: 1fr;
}

.cxr-post__thumbnail img {
    width: 100%;
    border-radius: var(--cxr-radius-lg);
    margin-bottom: 32px;
    max-height: 480px;
    object-fit: cover;
}

.cxr-post__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

.cxr-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .82rem;
    opacity: .5;
    margin-bottom: 32px;
}

.cxr-post__content {
    line-height: 1.8;
}

.cxr-post__content h2,
.cxr-post__content h3 {
    margin: 36px 0 16px;
    font-weight: 700;
}

.cxr-post__content p {
    margin-bottom: 20px;
}

.cxr-post__content a {
    color: var(--cxr-lime);
}

.cxr-post__content ul,
.cxr-post__content ol {
    margin: 16px 0 16px 24px;
}

.cxr-post__content li {
    margin-bottom: 8px;
}

.cxr-post__content blockquote {
    border-left: 4px solid var(--cxr-lime);
    padding-left: 20px;
    margin: 28px 0;
    opacity: .75;
    font-style: italic;
}

.cxr-post__content img {
    border-radius: 12px;
}

/* Sidebar */
.cxr-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cxr-widget {
    background: var(--cxr-off-white);
    border-radius: var(--cxr-radius);
    padding: 24px;
}

.cxr-widget__title {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--cxr-navy);
}

/* Page header banner */
.cxr-page-hero {
    background: var(--cxr-grad-hero);
    padding: 120px 0 56px;
    text-align: center;
    color: #fff;
}

.cxr-page-hero h1 {
    margin-bottom: 12px;
}

.cxr-page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: .85rem;
    opacity: .5;
}

.cxr-page-hero .breadcrumb a:hover {
    opacity: 1;
    color: var(--cxr-lime);
}

/* Content page */
.cxr-page-content {
    padding: 64px 0;
}

.cxr-page-content--narrow {
    max-width: 860px;
    margin: 0 auto;
}

/* 404 */
.cxr-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--cxr-grad-hero);
    color: #fff;
}

.cxr-404__code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--cxr-lime);
    line-height: 1;
}

/* ══════════════════════════════════════════
   DRIVER FORM
══════════════════════════════════════════ */
.cxr-driver-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.cxr-driver-step {
    background: rgba(140, 198, 63, .06);
    border: 1px solid rgba(140, 198, 63, .15);
    border-radius: var(--cxr-radius);
    padding: 24px 20px;
    text-align: center;
}

.cxr-driver-step__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cxr-driver-step__title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--cxr-navy);
}

.cxr-driver-form-wrap {
    background: #fff;
    border-radius: var(--cxr-radius-lg);
    padding: 48px;
    box-shadow: var(--cxr-shadow-md);
}

@media (max-width: 768px) {
    .cxr-driver-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .cxr-driver-form-wrap {
        padding: 28px 20px;
    }

    .cxr-blog-layout {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.cxr-contact__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
}

.cxr-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cxr-contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cxr-contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(140, 198, 63, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cxr-contact-info h5 {
    font-weight: 700;
    margin-bottom: 4px;
}

.cxr-contact-info p {
    font-size: .9rem;
    opacity: .65;
}

@media (max-width: 900px) {
    .cxr-contact__grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════
   MISC / WP OVERRIDES
══════════════════════════════════════════ */
.wp-block-image img {
    border-radius: 12px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.is-homepage .cxr-header {
    background: transparent;
}

/* ══════════════════════════════════════════
   TOPBAR — removed per user request
   Header resets to top:0
══════════════════════════════════════════ */
.cxr-topbar {
    display: none !important;
}

.cxr-header {
    top: 0 !important;
}

body.admin-bar .cxr-header {
    top: 32px !important;
}

.cxr-header.scrolled {
    top: 0 !important;
}

body.admin-bar .cxr-header.scrolled {
    top: 32px !important;
}

.cxr-nav {
    top: 80px !important;
}

body.admin-bar .cxr-nav {
    top: 112px !important;
}

.cxr-hero {
    padding-top: calc(80px + 60px) !important;
}

body.admin-bar .cxr-hero {
    padding-top: calc(112px + 60px) !important;
}

.cxr-page-hero {
    padding-top: calc(80px + 70px) !important;
}

body.admin-bar .cxr-page-hero {
    padding-top: calc(112px + 70px) !important;
}

@media (max-width: 900px) {

    .cxr-header,
    body.admin-bar .cxr-header {
        top: 0 !important;
    }

    body.admin-bar .cxr-header {
        top: 46px !important;
    }

    .cxr-hero,
    body.admin-bar .cxr-hero {
        padding-top: calc(80px + 40px) !important;
    }

    .cxr-page-hero,
    body.admin-bar .cxr-page-hero {
        padding-top: calc(80px + 28px) !important;
    }

    .cxr-nav,
    body.admin-bar .cxr-nav {
        top: 80px !important;
    }
}

.cxr-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background: #000;
    color: rgba(255, 255, 255, .7);
    font-size: .75rem;
    border-bottom: 1px solid rgba(140, 198, 63, .12);
    height: 36px;
}

body.admin-bar .cxr-topbar {
    top: 32px;
}

.cxr-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    gap: 12px;
}

.cxr-topbar__left,
.cxr-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cxr-topbar__left a,
.cxr-topbar__right a {
    color: rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
    font-size: .73rem;
}

.cxr-topbar__left a:hover,
.cxr-topbar__right a:hover {
    color: var(--cxr-lime);
}

.cxr-topbar__whatsapp {
    color: #25d366 !important;
}

.cxr-topbar__lang {
    display: flex;
    gap: 4px;
}

.cxr-topbar__lang a {
    color: rgba(255, 255, 255, .45);
    font-weight: 700;
    letter-spacing: .5px;
}

.cxr-topbar__lang a:hover {
    color: var(--cxr-lime) !important;
}

.cxr-topbar__social-icon {
    opacity: .5;
    transition: opacity .2s;
    font-size: .7rem;
}

.cxr-topbar__social-icon:hover {
    opacity: 1;
}

/* ── HEADER — sits below topbar ─────────────────────────────── */
/* Default (no admin bar): topbar=0..36, header=36..116 */
.cxr-header {
    top: 36px !important;
}

/* With WP admin bar: adminbar=0..32, topbar=32..68, header=68..148 */
body.admin-bar .cxr-header {
    top: 68px !important;
}

/* When scrolled: hide topbar visually, header goes to very top */
.cxr-header.scrolled {
    top: 0 !important;
}

body.admin-bar .cxr-header.scrolled {
    top: 32px !important;
}

/* Mobile nav dropdown: open below header (not topbar) */
.cxr-nav {
    top: calc(36px + 80px) !important;
}

body.admin-bar .cxr-nav {
    top: calc(68px + 80px) !important;
}

/* ── HERO — enough padding to clear topbar + header ─────────── */
.cxr-hero {
    padding-top: calc(36px + 80px + 48px) !important;
    /* topbar+header+extra */
}

body.admin-bar .cxr-hero {
    padding-top: calc(68px + 80px + 48px) !important;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.cxr-page-hero {
    padding-top: calc(36px + 80px + 56px) !important;
}

body.admin-bar .cxr-page-hero {
    padding-top: calc(68px + 80px + 56px) !important;
}

/* ── Mobile: hide topbar, reset header to top:0 ──────────────── */
@media (max-width: 768px) {
    .cxr-topbar {
        display: none;
    }

    .cxr-header,
    body.admin-bar .cxr-header {
        top: 0 !important;
    }

    body.admin-bar .cxr-header {
        top: 46px !important;
    }

    .cxr-hero,
    body.admin-bar .cxr-hero {
        padding-top: calc(80px + 40px) !important;
    }

    .cxr-page-hero,
    body.admin-bar .cxr-page-hero {
        padding-top: calc(80px + 40px) !important;
    }

    .cxr-nav,
    body.admin-bar .cxr-nav {
        top: 80px !important;
    }
}


/* ══════════════════════════════════════════
   TAXIX-INSPIRED: DIAGONAL BUTTON (CTA)
══════════════════════════════════════════ */
.cxr-btn-diagonal {
    display: inline-flex;
    align-items: center;
    position: relative;
    background: var(--cxr-lime);
    color: #000 !important;
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .5px;
    padding: 10px 22px 10px 16px;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    text-decoration: none !important;
    transition: background .2s, transform .2s;
    white-space: nowrap;
}

.cxr-btn-diagonal:hover {
    background: #a8d84f;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   TAXIX-INSPIRED: CAUTION STRIPE DIVIDER
══════════════════════════════════════════ */
.cxr-caution-stripe {
    height: 12px;
    overflow: hidden;
}

.cxr-caution-stripe__inner {
    height: 100%;
    background: repeating-linear-gradient(-45deg,
            #8cc63f 0px,
            #8cc63f 12px,
            #000 12px,
            #000 24px);
}

/* ══════════════════════════════════════════
   TAXIX SECTION TITLE STYLE: // TITLE
══════════════════════════════════════════ */
.cxr-section-header h2::before,
.cxr-h2.taxix-title::before {
    content: '// ';
    color: var(--cxr-lime);
    font-weight: 900;
}

/* ══════════════════════════════════════════
   FOOTER v2 TAXIX-INSPIRED
══════════════════════════════════════════ */
.cxr-footer {
    color: rgba(255, 255, 255, .7);
}

.cxr-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 72px 0 48px;
}

.cxr-footer__brand {}

.cxr-footer__tagline {
    font-size: .88rem;
    opacity: .6;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 280px;
}

.cxr-footer__socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cxr-social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    transition: background .2s, color .2s, border-color .2s;
}

.cxr-social-icon:hover {
    background: var(--cxr-lime);
    color: #000;
    border-color: var(--cxr-lime);
}

.cxr-footer__col {}

.cxr-footer__col-title {
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cxr-lime);
    margin-bottom: 20px;
}

.cxr-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cxr-footer__col ul a {
    color: rgba(255, 255, 255, .55);
    font-size: .88rem;
    transition: color .2s, padding-left .2s;
}

.cxr-footer__col ul a:hover {
    color: var(--cxr-lime);
    padding-left: 4px;
}

.cxr-footer__stores {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cxr-store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 10px 16px;
    color: #fff;
    transition: background .2s, border-color .2s;
}

.cxr-store-badge:hover {
    background: rgba(140, 198, 63, .1);
    border-color: var(--cxr-lime);
}

.cxr-store-badge div small {
    display: block;
    font-size: .65rem;
    opacity: .5;
}

.cxr-store-badge div strong {
    font-size: .88rem;
    font-weight: 700;
}

.cxr-footer__contact-mini {
    font-size: .85rem;
}

.cxr-footer__contact-mini p {
    margin-bottom: 8px;
    opacity: .6;
}

.cxr-footer__contact-mini a {
    color: rgba(255, 255, 255, .6);
}

.cxr-footer__contact-mini a:hover {
    color: var(--cxr-lime);
}

.cxr-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 20px 0;
}

.cxr-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: .8rem;
    opacity: .5;
}

.cxr-footer__legal-list {
    display: flex;
    gap: 16px;
    list-style: none;
}

.cxr-footer__legal-list a {
    color: inherit;
}

.cxr-footer__legal-list a:hover {
    color: var(--cxr-lime);
    opacity: 1;
}

.cxr-footer__credit a {
    color: var(--cxr-lime);
    opacity: 1;
}

@media (max-width: 1024px) {
    .cxr-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .cxr-topbar__left {
        display: none;
    }
}

@media (max-width: 600px) {
    .cxr-footer__grid {
        grid-template-columns: 1fr;
    }

    .cxr-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .cxr-topbar {
        display: none;
    }

    .cxr-header {
        top: 0;
    }
}

/* ══════════════════════════════════════════
   PAGE HERO (all inner pages)
══════════════════════════════════════════ */
.cxr-page-hero {
    background: var(--cxr-grad-hero);
    text-align: center;
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
}

.cxr-page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cxr-lime), transparent);
}

.cxr-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238cc63f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cxr-page-hero .cxr-eyebrow {
    position: relative;
    z-index: 1;
}

.cxr-page-hero .cxr-h1 {
    position: relative;
    z-index: 1;
}

.cxr-page-hero .cxr-lead {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .5);
}

.breadcrumb a:hover {
    color: var(--cxr-lime);
}

/* ══════════════════════════════════════════
   STORE BUTTON
══════════════════════════════════════════ */
.cxr-btn--store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    padding: 12px 20px;
    color: #fff;
    transition: background .2s, border-color .2s, transform .2s;
}

.cxr-btn--store:hover {
    background: rgba(140, 198, 63, .15);
    border-color: var(--cxr-lime);
    transform: translateY(-2px);
}

.cxr-btn--store .store-icon {
    width: 22px;
    height: 22px;
    opacity: .8;
}

.cxr-btn--store .store-text small {
    display: block;
    font-size: .65rem;
    opacity: .6;
}

.cxr-btn--store .store-text strong {
    display: block;
    font-size: .95rem;
}

/* ══════════════════════════════════════════
   HOMEPAGE v2 — Taxix-inspired sections
══════════════════════════════════════════ */

/* Stats v2 — parallelogram style */
.cxr-stats-v2 {
    background: var(--cxr-navy2);
    padding: 0;
}

.cxr-stats-v2__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.cxr-stat-v2 {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    transition: background .3s;
}

.cxr-stat-v2:last-child {
    border-right: none;
}

.cxr-stat-v2:hover {
    background: rgba(140, 198, 63, .08);
}

.cxr-stat-v2__icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.cxr-stat-v2__number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--cxr-lime);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.cxr-stat-v2__label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Steps with badge */
.cxr-step {
    position: relative;
    padding-top: 16px;
}

.cxr-step__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--cxr-lime);
    color: #000;
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* App v2 diagonal section */
.cxr-app-v2 {
    background: var(--cxr-grad-hero);
    position: relative;
    overflow: hidden;
    padding: var(--cxr-section-py) 0;
}

.cxr-app-v2::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(140, 198, 63, .12) 0%, transparent 70%);
    pointer-events: none;
}

.cxr-app-v2__overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: rgba(140, 198, 63, .04);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.cxr-app-v2__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cxr-app-v2__phone {
    display: flex;
    justify-content: center;
    animation: heroFloat 5s ease-in-out infinite;
}

.cxr-app-v2__phone img {
    max-height: 520px;
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, .5));
}

/* Store button — hero style */
.cxr-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    padding: 11px 18px;
    color: #fff;
    font-size: .88rem;
    transition: background .2s, border-color .2s, transform .2s;
    text-decoration: none;
}

.cxr-store-btn:hover {
    background: rgba(140, 198, 63, .15);
    border-color: var(--cxr-lime);
    transform: translateY(-2px);
}

.cxr-store-btn span:first-child {
    font-size: 1.3rem;
}

.cxr-store-btn span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cxr-store-btn span:last-child small {
    font-size: .62rem;
    opacity: .6;
}

.cxr-store-btn span:last-child strong {
    font-size: .9rem;
}

.cxr-store-btn--sm {
    padding: 8px 14px;
    font-size: .82rem;
    opacity: .8;
}

.cxr-store-btn--sm:hover {
    opacity: 1;
}

/* Blog cards */
.cxr-blog-card {
    background: #fff;
    border-radius: var(--cxr-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    transition: transform .3s, box-shadow .3s;
}

.cxr-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--cxr-shadow-lg);
}

.cxr-blog-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.cxr-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.cxr-blog-card:hover .cxr-blog-card__thumb img {
    transform: scale(1.06);
}

.cxr-blog-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 9, 18, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.cxr-blog-card:hover .cxr-blog-card__overlay {
    opacity: 1;
}

.cxr-blog-card__read {
    background: var(--cxr-lime);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
}

.cxr-blog-card__body {
    padding: 20px 22px;
}

.cxr-blog-card__date {
    font-size: .72rem;
    color: var(--cxr-lime);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cxr-blog-card__title {
    margin: 8px 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
}

.cxr-blog-card__title a {
    color: inherit;
}

.cxr-blog-card__title a:hover {
    color: var(--cxr-lime);
}

.cxr-blog-card__excerpt {
    font-size: .85rem;
    opacity: .6;
    line-height: 1.6;
}

/* Contact page grid */
.cxr-contact__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
}

.cxr-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cxr-contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.cxr-contact-info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cxr-contact-info-item h5 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cxr-lime);
    margin-bottom: 2px;
}

.cxr-contact-info-item p {
    font-size: .9rem;
}

.cxr-driver-form-wrap {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 36px;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .cxr-stats-v2__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cxr-stat-v2:nth-child(2) {
        border-right: none;
    }

    .cxr-stat-v2:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .cxr-app-v2__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cxr-contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .cxr-stats-v2__grid {
        grid-template-columns: 1fr 1fr;
    }
}