:root {
    --cca-black: #050608;
    --cca-charcoal: #111318;
    --cca-ink: #16191f;
    --cca-muted: #626976;
    --cca-soft: #f6f4ef;
    --cca-line: #ded8ca;
    --cca-gold: #ccad4e;
    --cca-gold-dark: #a5791c;
    --cca-green: #2f8c5a;
}

.cca-layout {
    min-height: 100vh;
    background: #fff;
    color: var(--cca-ink);
    font-family: "RFDewi", "Roboto", sans-serif;
}

.cca-layout *,
.cca-layout *:before,
.cca-layout *:after {
    box-sizing: border-box;
}

.cca-container {
    width: min(100% - 48px, 1240px);
    margin: 0 auto;
}

.cca-site-header {
    position: relative !important;
    z-index: 50 !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: var(--cca-black) !important;
    box-shadow: none !important;
    color: #fff !important;
    text-transform: none !important;
}

.cca-layout--landing .cca-site-header {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(2, 3, 5, .94), rgba(2, 3, 5, .7)) !important;
}

.cca-site-header:before {
    display: none !important;
}

.cca-site-header + .offset-body {
    padding-top: 0 !important;
}

.cca-site-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
    width: min(100% - 56px, 1320px);
    min-height: 92px;
    margin: 0 auto;
}

.cca-brand,
.cca-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    text-decoration: none;
}

.cca-brand:hover,
.cca-footer-brand:hover {
    color: #fff;
    text-decoration: none;
}

.cca-brand__crest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 66px;
    overflow: hidden;
    background: #fff;
}

.cca-brand__crest img,
.cca-footer-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cca-brand__text,
.cca-footer-brand span {
    display: grid;
    gap: 4px;
    line-height: 1;
    text-transform: uppercase;
}

.cca-brand__text span,
.cca-footer-brand strong {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.cca-brand__text small,
.cca-footer-brand small {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cca-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.cca-brand__text small:before,
.cca-brand__text small:after,
.cca-footer-brand small:before,
.cca-footer-brand small:after {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--cca-gold);
}

.cca-primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.cca-primary-nav a,
.cca-auth-nav__link {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-decoration: none;
}

.cca-primary-nav a {
    position: relative;
    padding: 8px 0;
}

.cca-primary-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--cca-gold);
    transition: transform .18s ease;
}

.cca-primary-nav a:hover:after,
.cca-primary-nav a:focus:after {
    transform: scaleX(1);
}

.cca-primary-nav a:hover,
.cca-auth-nav__link:hover {
    color: #fff;
    text-decoration: none;
}

.cca-auth-nav {
    display: flex;
    justify-content: flex-end;
}

.cca-auth-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.cca-auth-nav__link i {
    color: #fff;
    font-size: 22px;
}

.cca-auth-nav .dropdown-menu {
    min-width: 180px;
    margin-top: 18px;
    padding: 8px;
    border: 1px solid rgba(204, 173, 78, .32);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}

.cca-auth-nav .dropdown-item {
    border-radius: 6px;
    color: var(--cca-ink);
    font-weight: 500;
}

.cca-auth-nav .dropdown-item:hover {
    background: rgba(204, 173, 78, .12);
}

.cca-nav-toggle,
.cca-nav-toggle-label {
    display: none;
}

.cca-page-shell {
    min-height: 100vh;
}

.cca-landing {
    background: #fff;
}

.cca-hero {
    position: relative;
    box-sizing: border-box !important;
    height: 720px;
    min-height: 720px;
    padding: 150px 0 250px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(1, 2, 4, .94) 0%, rgba(1, 2, 4, .76) 38%, rgba(1, 2, 4, .12) 100%),
        url("../img/homePageCarImage.jpg") center / cover no-repeat;
}

.cca-hero__backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .45));
    pointer-events: none;
}

.cca-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1240px;
}

.cca-eyebrow {
    margin: 0 0 14px;
    color: var(--cca-gold);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.cca-hero h1 {
    max-width: 580px;
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 7vw, 76px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: 0;
}

.cca-hero__copy {
    max-width: 500px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 1.65;
}

.cca-hero__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 30px;
}

.cca-hero__checks span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 500;
}

.cca-hero__checks i,
.cca-difference li i {
    color: var(--cca-gold);
}

.cca-quote-section {
    position: relative;
    z-index: 3;
    margin-top: -230px;
    padding-bottom: 56px;
    background: linear-gradient(to bottom, transparent 0 230px, #fff 230px 100%);
}

.cca-landing .cca-quote-section:target:before {
    display: none !important;
    content: none !important;
}

.cca-quote-section .cca-container {
    width: min(100% - 48px, 1120px);
}

.cca-home-quote {
    padding: 28px 34px 32px;
    border: 1px solid rgba(17, 19, 24, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 50px rgba(8, 10, 14, .2);
}

.cca-home-quote__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.cca-home-quote__heading h2 {
    margin: 0;
    color: var(--cca-ink);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
}

.cca-home-quote__heading p {
    margin: 0;
    color: var(--cca-muted);
    font-size: 14px;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign {
    min-height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign:before,
.cca-landing .cca-home-quote #vue-body.cca-booking-redesign:after {
    display: none !important;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .cca-booking-container,
.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .cca-booking-shell {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .cca-booking-heading,
.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .cca-return-wrap {
    display: none !important;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .cca-booking-card {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .nav-tabs {
    width: 270px !important;
    margin-bottom: 20px !important;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .nav-tabs .nav-item .nav-link {
    min-height: 48px !important;
    font-size: 13px !important;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .cca-vehicle-filters {
    gap: 24px !important;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .cca-section-heading {
    margin: 26px 0 16px !important;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .form-control,
.cca-landing .cca-home-quote #vue-body.cca-booking-redesign select.form-control {
    height: 52px !important;
    border-color: #d8d6d1 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .cca-form-actions {
    margin-top: 28px !important;
}

.cca-landing .cca-home-quote #vue-body.cca-booking-redesign .cca-form-actions .btn-main {
    min-height: 54px !important;
}

.cca-section {
    padding: 64px 0;
}

.cca-section-heading-block {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.cca-section-heading-block h2,
.cca-difference__content h2,
.cca-corporate-band__content h2,
.cca-ready-band h2 {
    margin: 0;
    color: var(--cca-ink);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.cca-section-heading-block p {
    margin: 12px 0 0;
    color: var(--cca-muted);
    font-size: 16px;
    line-height: 1.55;
}

.cca-service-grid,
.cca-fleet-grid,
.cca-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.cca-service-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--cca-black);
    box-shadow: 0 12px 28px rgba(17, 19, 24, .15);
}

.cca-service-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    opacity: .74;
    transition: transform .24s ease, opacity .24s ease;
}

.cca-service-card:hover img {
    transform: scale(1.04);
    opacity: .86;
}

.cca-service-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 24px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(2, 3, 5, .92));
}

.cca-service-card h3,
.cca-fleet-card h3,
.cca-steps-grid h3 {
    margin: 0;
    color: inherit;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.2;
}

.cca-service-card p {
    margin: 10px 0 14px;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    line-height: 1.5;
}

.cca-service-card a,
.cca-difference__content a,
.cca-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cca-gold);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.cca-service-card a:hover,
.cca-difference__content a:hover,
.cca-text-link:hover {
    color: #e3c66f;
    text-decoration: none;
}

.cca-fleet {
    background: linear-gradient(180deg, #f8f8f8 0%, #f2f0eb 100%);
}

.cca-fleet-card,
.cca-testimonial-grid article {
    border: 1px solid rgba(17, 19, 24, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(15, 17, 22, .08);
}

.cca-fleet-card {
    padding: 26px 24px 24px;
}

.cca-fleet-card img {
    display: block;
    width: 100%;
    height: 170px;
    margin: 0 auto 18px;
    object-fit: contain;
}

.cca-fleet-card h3 {
    color: var(--cca-ink);
}

.cca-fleet-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
    color: var(--cca-muted);
    font-size: 13px;
    font-weight: 500;
}

.cca-fleet-meta i {
    color: var(--cca-gold-dark);
}

.cca-fleet-card p {
    min-height: 62px;
    margin: 14px 0 20px;
    color: var(--cca-muted);
    font-size: 14px;
    line-height: 1.55;
}

.cca-fleet-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--cca-gold-dark);
    border-radius: 6px;
    color: var(--cca-ink);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.cca-fleet-card a:hover {
    background: var(--cca-gold);
    color: #050608;
    text-decoration: none;
}

.cca-difference {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    min-height: 500px;
}

.cca-difference__image {
    min-height: 500px;
    overflow: hidden;
}

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

.cca-difference__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px min(8vw, 110px);
    background: #fff;
}

.cca-difference__content p:not(.cca-eyebrow) {
    margin: 18px 0 0;
    color: var(--cca-muted);
    font-size: 16px;
    line-height: 1.65;
}

.cca-difference__content ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 24px;
    padding: 0;
    list-style: none;
}

.cca-difference__content li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cca-ink);
    font-size: 14px;
    font-weight: 500;
}

.cca-steps {
    background: #fff;
}

.cca-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.cca-steps-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
}

.cca-steps-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--cca-gold-dark);
    border-radius: 50%;
    color: var(--cca-gold-dark);
    font-size: 14px;
    font-weight: 900;
}

.cca-steps-grid p {
    margin: 8px 0 0;
    color: var(--cca-muted);
    font-size: 14px;
    line-height: 1.55;
}

.cca-corporate-band,
.cca-ready-band {
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cca-corporate-band {
    padding: 88px 0;
    background:
        linear-gradient(90deg, rgba(3, 4, 7, .96), rgba(3, 4, 7, .78) 44%, rgba(3, 4, 7, .3)),
        url("../img/client-bg.jpg") center / cover no-repeat;
}

.cca-corporate-band__content {
    max-width: 540px;
}

.cca-corporate-band__content h2,
.cca-ready-band h2 {
    color: #fff;
}

.cca-corporate-band__content p:not(.cca-eyebrow),
.cca-ready-band p {
    margin: 18px 0 28px;
    color: rgba(255, 255, 255, .84);
    font-size: 16px;
    line-height: 1.65;
}

.cca-corporate-band__content div,
.cca-ready-band div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.cca-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 220px;
    padding: 12px 22px;
    border: 1px solid var(--cca-gold);
    border-radius: 6px;
    background: linear-gradient(180deg, #d8bd62, var(--cca-gold));
    color: #050608;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.cca-button:hover {
    color: #050608;
    text-decoration: none;
    filter: brightness(1.04);
}

.cca-button--outline {
    background: transparent;
    color: #fff;
}

.cca-button--outline:hover {
    color: #fff;
}

.cca-testimonial-grid article {
    padding: 26px;
}

.cca-stars {
    color: var(--cca-gold-dark);
    font-size: 16px;
    letter-spacing: 2px;
}

.cca-testimonial-grid p {
    margin: 16px 0 18px;
    color: var(--cca-ink);
    font-size: 14px;
    line-height: 1.55;
}

.cca-testimonial-grid strong,
.cca-testimonial-grid span {
    display: block;
}

.cca-testimonial-grid strong {
    color: var(--cca-ink);
    font-size: 14px;
    font-weight: 900;
}

.cca-testimonial-grid span {
    margin-top: 4px;
    color: var(--cca-muted);
    font-size: 12px;
}

.cca-ready-band {
    padding: 64px 0;
    text-align: center;
    background:
        linear-gradient(90deg, rgba(3, 4, 7, .9), rgba(3, 4, 7, .78), rgba(3, 4, 7, .9)),
        url("../img/client-bg2.jpg") center / cover no-repeat;
}

.cca-ready-band .cca-container {
    max-width: 760px;
}

.cca-ready-band div {
    justify-content: center;
}

.cca-site-footer {
    position: relative !important;
    padding: 58px 0 0 !important;
    background: #090a0d !important;
    color: #fff;
}

.cca-site-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, minmax(130px, .72fr)) 1.05fr;
    gap: 34px;
}

.cca-footer-brand img {
    width: 56px;
    height: 64px;
    background: #fff;
}

.cca-site-footer__brand p {
    max-width: 280px;
    margin: 18px 0;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.6;
}

.cca-social-links {
    display: flex;
    gap: 10px;
}

.cca-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
}

.cca-site-footer h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.cca-site-footer__col,
.cca-site-footer__contact {
    display: grid;
    align-content: start;
    gap: 10px;
}

.cca-site-footer a,
.cca-site-footer__contact p {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.45;
    text-decoration: none;
}

.cca-site-footer a:hover {
    color: var(--cca-gold);
    text-decoration: none;
}

.cca-site-footer__contact p {
    display: flex;
    gap: 12px;
    margin: 0;
}

.cca-site-footer__contact i {
    margin-top: 3px;
    color: var(--cca-gold);
}

.cca-site-footer__bottom {
    margin-top: 46px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    text-align: center;
}

@media (max-width: 1120px) {
    .cca-site-header__inner {
        grid-template-columns: auto auto auto;
    }

    .cca-primary-nav {
        gap: 18px;
    }

    .cca-service-grid,
    .cca-fleet-grid,
    .cca-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cca-service-card,
    .cca-service-card img {
        min-height: 330px;
    }

    .cca-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .cca-site-header__inner {
        grid-template-columns: auto 1fr auto;
        min-height: 82px;
    }

    .cca-nav-toggle-label {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        justify-self: end;
        gap: 5px;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: 6px;
        cursor: pointer;
    }

    .cca-nav-toggle-label span {
        display: block;
        width: 18px;
        height: 2px;
        margin: 0 auto;
        background: #fff;
    }

    .cca-primary-nav {
        position: absolute;
        left: 24px;
        right: 24px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(204, 173, 78, .25);
        border-radius: 8px;
        background: rgba(5, 6, 8, .96);
    }

    .cca-primary-nav a {
        padding: 13px 12px;
    }

    .cca-nav-toggle:checked ~ .cca-primary-nav {
        display: flex;
    }

    .cca-auth-nav__link span {
        display: none;
    }

    .cca-hero {
        height: 650px;
        min-height: 650px;
        padding-top: 128px;
        padding-bottom: 190px;
    }

    .cca-home-quote__heading {
        display: block;
    }

    .cca-home-quote__heading p {
        margin-top: 8px;
    }

    .cca-difference {
        grid-template-columns: 1fr;
    }

    .cca-difference__image {
        min-height: 340px;
    }

    .cca-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cca-container {
        width: min(100% - 32px, 100%);
    }

    .cca-site-header__inner {
        width: min(100% - 28px, 100%);
        gap: 12px;
    }

    .cca-brand__crest {
        width: 48px;
        height: 56px;
    }

    .cca-brand__text span {
        font-size: 15px;
    }

    .cca-brand__text small {
        font-size: 10px;
    }

    .cca-brand__text small:before,
    .cca-brand__text small:after {
        width: 28px;
    }

    .cca-hero {
        height: auto;
        min-height: 620px;
        padding: 120px 0 180px;
        background-position: center;
    }

    .cca-hero__checks {
        display: grid;
        gap: 12px;
    }

    .cca-quote-section {
        margin-top: -145px;
        padding-bottom: 28px;
        background: linear-gradient(to bottom, transparent 0 145px, #fff 145px 100%);
    }

    .cca-quote-section .cca-container {
        width: min(100% - 32px, 100%);
    }

    .cca-home-quote {
        padding: 22px 18px;
    }

    .cca-home-quote__heading h2 {
        font-size: 25px;
    }

    .cca-landing .cca-home-quote #vue-body.cca-booking-redesign .nav-tabs {
        width: 100% !important;
    }

    .cca-section {
        padding: 48px 0;
    }

    .cca-service-card,
    .cca-service-card img {
        min-height: 300px;
    }

    .cca-difference__content {
        padding: 44px 24px;
    }

    .cca-corporate-band,
    .cca-ready-band {
        padding: 58px 0;
    }

    .cca-corporate-band__content div,
    .cca-ready-band div,
    .cca-button {
        width: 100%;
    }

    .cca-site-footer__grid {
        grid-template-columns: 1fr;
    }
}
