/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold:        #2E86C1;
    --gold-light:  #5DADE2;
    --navy:        #1A2B4A;
    --white:       #ffffff;
    --grey-light:  #F5F5F5;
    --grey-text:   #666666;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
    --shadow-card:  0 8px 32px rgba(0,0,0,0.18);
    --radius:       10px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--navy);
    overflow-x: hidden;
    background: #fff;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Aggressively remove all Astra spacing above hero */
.site-content,
.ast-container,
#content,
#page,
.entry-content,
.ast-article-single,
.single-page,
.page,
.post-inner,
.content-area,
.site-main,
#primary,
#main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Neutralise any Astra class-based body offset — inner hero handles it */
body.ast-hfb-header,
body.ast-header-break-point,
body.ast-primary-sticky-header-enabled {
    padding-top: 0 !important;
}


/* ============================================
   SHARED UTILITIES
============================================ */
.ccr-section-header { text-align: center; margin-bottom: 3.5rem; }

.ccr-section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
    line-height: 1.1;
}

.ccr-section-header h2.light { color: #ffffff; }
.ccr-section-header h2.dark  { color: var(--navy); }

.gold-rule {
    display: block; width: 48px; height: 3px;
    background: var(--gold); border-radius: 2px;
    margin: 0.6rem 0 1.25rem;
}

.ccr-section-header .gold-rule {
    margin: 0.75rem auto 0.9rem;
}

.ccr-section-header p { font-size: 16px; line-height: 1.6; }
.ccr-section-header p.light { color: rgba(255,255,255,0.72); }
.ccr-section-header p.dark  { color: var(--grey-text); }

/* ============================================
   NAVBAR
============================================ */
.ccr-navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: 72px;
    display: flex;
    align-items: center;
}

.ccr-navbar .nav-container {
    width: 100%; max-width: 1280px;
    margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}

.ccr-navbar .logo img { height: 52px; width: auto; }

.ccr-navbar .nav-links {
    display: flex; align-items: center; gap: 2.5rem; list-style: none;
}

.ccr-navbar .nav-links a {
    text-decoration: none; color: var(--navy);
    font-size: 15px; font-weight: 500; letter-spacing: 0.02em;
    transition: color 0.2s; position: relative;
}

.ccr-navbar .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold); transition: width 0.2s;
}

.ccr-navbar .nav-links a:hover,
.ccr-navbar .nav-links a.active { color: var(--gold); }
.ccr-navbar .nav-links a:hover::after,
.ccr-navbar .nav-links a.active::after { width: 100%; }

.ccr-navbar .nav-right { display: flex; align-items: center; gap: 1.5rem; }

.ccr-navbar .nav-phone {
    display: flex; align-items: center; gap: 0.4rem;
    text-decoration: none; color: var(--navy);
    font-size: 15px; font-weight: 500; transition: color 0.2s;
}

.ccr-navbar .nav-phone svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2; }
.ccr-navbar .nav-phone:hover { color: var(--gold); }

.ccr-navbar .btn-book-now {
    background: var(--gold); color: #ffffff; text-decoration: none;
    padding: 0.55rem 1.4rem; border-radius: 4px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
}

.ccr-navbar .btn-book-now:hover { background: #1a5f8a; transform: translateY(-1px); }

/* ============================================
   HERO
============================================ */
.ccr-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0 !important;
}

.ccr-hero .hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://christchurchcarrent.co.nz/wp-content/uploads/2026/05/ccr-hero-bg.jpg');
    background-size: cover; background-position: center top; z-index: 0;
}

.ccr-hero .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,18,35,0.92) 0%, rgba(10,18,35,0.75) 50%, rgba(10,18,35,0.25) 100%);
    z-index: 1;
}

.ccr-hero .hero-container {
    position: relative; z-index: 2;
    width: 100%; max-width: 1280px;
    margin: 0 auto;
    padding: 7rem 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.ccr-hero .hero-text {
    flex: 1;
    max-width: 480px;
}

.hero-badge {
    display: inline-block;
    background: rgba(93,173,226,0.18);
    border: 1px solid rgba(93,173,226,0.45);
    color: var(--gold-light);
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 20px;
    margin-bottom: 1rem;
}

.hero-trust {
    display: flex; align-items: center; gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-trust-item {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85);
}

.hero-trust-item svg { color: var(--gold-light); flex-shrink: 0; }

.hero-trust-sep {
    width: 1px; height: 14px;
    background: rgba(255,255,255,0.25);
}

.ccr-hero .hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.ccr-hero .hero-text h1 span { color: #5DADE2; display: block; }

.ccr-hero .hero-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    max-width: 380px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.ccr-hero .hero-form-wrap {
    flex: 0 0 400px;
    width: 400px;
}

/* ============================================
   COMPACT FORM CARD
============================================ */
.ccr-form-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 12px 50px rgba(0,0,0,0.25);
}

.ccr-form-card h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--gold);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.form-grid .form-group { margin-bottom: 0; }

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.6rem;
}

.form-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.form-group label .required-star { color: #c0392b; margin-left: 2px; }
.form-group label .form-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: #aaa; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 36px;
    padding: 0 0.65rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12.5px;
    font-family: var(--font-body);
    color: var(--navy);
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
}

.form-group textarea {
    height: 60px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; font-size: 12px; }

/* intl-tel-input */
.iti { width: 100%; }
.iti__selected-flag { background: #f5f5f5 !important; border-right: 1px solid #e0e0e0; border-radius: 4px 0 0 4px; padding: 0 8px !important; }
.iti--separate-dial-code .iti__selected-flag { background: #f5f5f5 !important; }
.iti--separate-dial-code input[type=tel] { padding-left: 85px !important; border-radius: 0 4px 4px 0; }
.iti input { height: 36px !important; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.form-check input[type="checkbox"] {
    width: 14px; height: 14px;
    margin-top: 2px; flex-shrink: 0;
    accent-color: var(--gold); cursor: pointer;
}

.form-check label { font-size: 11px; color: var(--grey-text); line-height: 1.4; cursor: pointer; }
.form-check label a { color: var(--gold); text-decoration: none; }
.form-check label a:hover { text-decoration: underline; }

.btn-submit {
    width: 100%; height: 42px;
    background: var(--gold); color: #ffffff; border: none; border-radius: 4px;
    font-size: 13px; font-weight: 700; font-family: var(--font-body);
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s, transform 0.1s;
}

.btn-submit:hover { background: #1a5f8a; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.field-error {
    font-size: 10px;
    color: #c0392b;
    margin-top: 2px;
    display: block;
    line-height: 1.3;
}

.form-success { display: none; padding: 0; overflow: hidden; border-radius: 8px; }

.form-success-header { background: var(--gold); padding: 2rem; text-align: center; }

.form-success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}

.form-success-header h3 {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
    color: #fff; margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.04em;
}

.form-success-header p { font-size: 13px; color: rgba(255,255,255,0.8); margin: 0; }

.form-success-body { padding: 1.75rem; }

.form-success-msg {
    font-size: 15px; color: var(--navy); line-height: 1.7;
    text-align: center; margin-bottom: 1.5rem;
}

.form-success-urgent { border-top: 1px solid #f0f0f0; padding-top: 1.25rem; margin-bottom: 1.5rem; }

.form-success-urgent-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: #999; display: block; margin-bottom: 0.75rem;
}

.form-success-contact-item {
    display: flex; align-items: flex-start; gap: 8px;
    margin-bottom: 0.6rem; font-size: 13.5px; color: var(--navy);
}

.form-success-contact-item svg { stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.form-success-contact-item a { color: var(--gold); text-decoration: none; font-weight: 600; }
.form-success-contact-item a:hover { text-decoration: underline; }

.form-success-btn {
    display: block; text-align: center;
    background: var(--navy); color: #fff !important;
    text-decoration: none !important; padding: 0.9rem; border-radius: 6px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    transition: background 0.2s;
}

.form-success-btn:hover { background: var(--gold); }

/* ============================================
   SERVICES CAROUSEL
============================================ */
.ccr-services { background: #ffffff; padding: 5rem 0; }

.ccr-services .section-header { text-align: center; margin-bottom: 3rem; padding: 0 2rem; }

.ccr-services .section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700; color: var(--navy);
    text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem;
}

.ccr-services .section-header p { font-size: 16px; color: var(--grey-text); }

.carousel-wrapper {
    position: relative; overflow: hidden;
    padding: 0 2rem; max-width: 1280px; margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.5rem;
}

.carousel-slide {
    flex: 0 0 calc(75% - 0.75rem);
    min-height: 520px; border-radius: var(--radius);
    overflow: hidden; position: relative;
    background-size: cover; background-position: center;
}

.carousel-slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,18,35,0.92) 0%, rgba(10,18,35,0.5) 50%, rgba(10,18,35,0.1) 100%);
}

.carousel-slide .slide-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2.5rem 3rem; margin: 0 0 1.5rem;
    border-left: 6px solid var(--gold);
}

.slide-label {
    display: inline-block; background: var(--gold); color: #ffffff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 3px; margin-bottom: 0.85rem;
}

.carousel-slide h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: #ffffff;
    text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.85rem; line-height: 1.05;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.carousel-slide p {
    font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.65; max-width: 520px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px !important; height: 44px !important;
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 50% !important;
    display: flex !important; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; transition: background 0.2s;
    padding: 0 !important; line-height: 1 !important;
}

.carousel-btn:hover { background: rgba(255,255,255,0.3) !important; }

.carousel-btn svg {
    width: 18px !important; height: 18px !important;
    stroke: #ffffff !important; fill: none !important;
    stroke-width: 2.5 !important; display: block !important;
}

.carousel-btn.prev { left: 2.5rem; }
.carousel-btn.next { right: 2.5rem; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 1.5rem; }

.carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #cccccc; border: none; cursor: pointer; padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================
   FLEET PREVIEW - v4.0 (showroom cards)
============================================ */
.ccr-fleet { background: var(--navy); padding: 5.5rem 0; }

.fleet-container { max-width: 1220px; margin: 0 auto; padding: 0 2rem; }

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* CARD — base (archive page stays white) */
.fleet-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.32);
}

/* Homepage: deep shadow so cards float off the navy bg */
.ccr-fleet .fleet-card { box-shadow: 0 8px 44px rgba(0,0,0,0.45); }
.ccr-fleet .fleet-card:hover { transform: translateY(-8px); box-shadow: 0 26px 70px rgba(0,0,0,0.58); }

/* IMAGE */
.fleet-img-wrap {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
    background: #0d1a2e;
    flex-shrink: 0;
}

/* Homepage: taller images */
.ccr-fleet .fleet-img-wrap { height: 250px; }

.fleet-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.fleet-card:hover .fleet-img-wrap img { transform: scale(1.06); }

.fleet-badge {
    position: absolute; top: 0.75rem; left: 0.75rem;
    background: var(--navy); color: #fff;
    font-family: var(--font-heading);
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 4px;
}

.fleet-discount {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: #1a2535; color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 4px 9px; border-radius: 4px;
}

/* Dim the image so badges and overlaid text always read clearly */
.ccr-fleet .fleet-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,20,40,0.28);
    pointer-events: none;
    z-index: 1;
}

.ccr-fleet .fleet-badge,
.ccr-fleet .fleet-discount { z-index: 2; }

/* INFO AREA */
.fleet-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem 1.5rem 1.5rem;
}

.fleet-info-top { flex: none; }

.fleet-category {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #999; display: block; margin-bottom: 0.3rem;
}

.ccr-fleet .fleet-category { color: var(--gold); font-size: 11px; }

.fleet-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 700;
    color: var(--navy); margin: 0 0 0.85rem;
    text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.15;
}

/* Title link styling */
.ccr-fleet .fleet-info h3 a,
.fleet-grid--archive .fleet-info h3 a { color: inherit; text-decoration: none; }
.ccr-fleet .fleet-info h3 a:hover,
.fleet-grid--archive .fleet-info h3 a:hover { color: var(--gold); }

/* Gold rule under title — homepage only */
.ccr-fleet .fleet-info h3 {
    font-size: 1.45rem;
    margin-bottom: 0;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid var(--gold);
}

/* SPECS — base (2-col grid, archive page) */
.fleet-specs {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.5rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 0.9rem;
    margin-bottom: 0.75rem;
}

.fleet-specs li {
    display: flex; align-items: center; gap: 6px;
    font-size: 12.5px; color: #555;
}

.fleet-specs li svg { color: #999; flex-shrink: 0; }

/* SPECS — homepage: hidden to keep cards clean */
.ccr-fleet .fleet-specs { display: none; }

/* PRICING */
.fleet-info-bottom {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
    margin-top: auto;
}

/* Homepage: price + button side by side */
.ccr-fleet .fleet-info-bottom {
    border-top: none;
    padding-top: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.fleet-pricing { margin-bottom: 1rem; }
.ccr-fleet .fleet-pricing { margin-bottom: 0; }

.price-was {
    font-size: 12px; color: #bbb;
    text-decoration: line-through;
    display: block; margin-bottom: 2px;
}

.ccr-fleet .price-was { color: #888; font-size: 12px; }

.price-now {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 700;
    color: var(--navy); line-height: 1;
}

/* Homepage: large gold price */
.ccr-fleet .price-now { font-size: 2.6rem; color: var(--gold); }

.price-now small {
    font-size: 1rem; font-weight: 400;
    color: #888; font-family: var(--font-body);
}

.ccr-fleet .price-now small { font-size: 0.85rem; color: #aaa; }

.price-note {
    font-size: 11px; color: #aaa;
    margin-top: 4px; display: block;
}

.ccr-fleet .price-note { display: none; }

/* BOOK BUTTON — base (archive page) */
.fleet-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 0.85rem 1.5rem;
    background: var(--navy); color: #ffffff !important;
    font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    text-decoration: none !important; border-radius: 8px;
    transition: background 0.2s ease;
}

.fleet-btn:hover { background: var(--gold); color: #ffffff !important; }

/* BOOK BUTTON — homepage: compact gold pill */
.ccr-fleet .fleet-btn {
    background: var(--gold);
    width: auto; flex-shrink: 0;
    padding: 0.8rem 1.4rem;
    white-space: nowrap;
    border-radius: 8px;
}

.ccr-fleet .fleet-btn:hover { background: #236a9e; }

/* VIEW ALL */
.fleet-cta { text-align: center; margin-top: 3.5rem; }

.fleet-view-all {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.95rem 2.8rem;
    border: 2px solid rgba(255,255,255,0.35);
    color: #ffffff !important; text-decoration: none !important;
    font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 8px; transition: border-color 0.25s, background 0.25s;
}

.fleet-view-all:hover { border-color: #ffffff; background: rgba(255,255,255,0.08); }

/* ============================================
   INSURANCE SECTION
============================================ */
.ccr-insurance {
    position: relative;
    padding: 5.5rem 0;
    background-image: url('https://christchurchcarrent.co.nz/wp-content/uploads/2026/05/ccr-insurance-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.ccr-insurance::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,18,35,0.78) 0%, rgba(10,18,35,0.68) 100%);
    z-index: 0;
}
.ccr-insurance .insurance-container { position: relative; z-index: 1; }

.insurance-container { max-width: 1020px; margin: 0 auto; padding: 0 2rem; }

.insurance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.insurance-card {
    background: rgba(10, 20, 42, 0.93);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--gold-light);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 48px rgba(0,0,0,0.45);
    transition: transform 0.22s, box-shadow 0.22s;
}

.insurance-card:hover { transform: translateY(-6px); box-shadow: 0 22px 64px rgba(0,0,0,0.55); }

.insurance-card-featured {
    background: rgba(46, 134, 193, 0.93);
    border-color: rgba(255,255,255,0.2);
    border-top-color: #ffffff;
}

.insurance-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--navy);
    color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 20px; border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.insurance-card-header {
    padding: 2rem 2rem 1.5rem;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.insurance-card-featured .insurance-card-header { border-bottom-color: rgba(255,255,255,0.18); }

.insurance-shield-bg {
    position: absolute;
    right: -20px; top: 50%; transform: translateY(-50%);
    width: 130px; height: 130px;
    opacity: 0.13;
    pointer-events: none;
}

.insurance-shield-bg svg { width: 100%; height: 100%; stroke: #ffffff; fill: none; stroke-width: 1; }

.insurance-card-header h3 {
    font-family: var(--font-heading);
    font-size: 0.82rem; font-weight: 700;
    color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.16em;
    margin-bottom: 0.85rem;
}

.insurance-card-featured .insurance-card-header h3 { color: rgba(255,255,255,0.88); }

.insurance-price {
    font-family: var(--font-heading);
    font-size: 4rem; font-weight: 800;
    color: #ffffff; line-height: 1;
    display: flex; align-items: flex-end; gap: 0.2rem;
}

.insurance-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.7); font-family: var(--font-body); margin-bottom: 0.3rem; }

.insurance-features {
    list-style: none; padding: 0 2rem; margin: 0;
    display: flex; flex-direction: column;
    flex: 1;
}

.insurance-features li {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 14px; font-weight: 500; color: #ffffff; line-height: 1.5;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.insurance-features li:last-child { border-bottom: none; }

.insurance-features li svg {
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    padding: 3px;
    box-sizing: content-box;
    stroke: #ffffff;
    flex-shrink: 0;
}

.insurance-features li.insurance-note::before {
    content: 'ⓘ';
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    flex-shrink: 0;
    line-height: 1;
}

.insurance-btn-wrap { padding: 1.5rem 2rem 2rem; }

.insurance-btn {
    display: block; text-align: center;
    padding: 0.9rem 1.5rem; border-radius: 7px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
    text-decoration: none !important;
    border: 1.5px solid rgba(255,255,255,0.45);
    background: transparent; color: #ffffff !important;
    transition: background 0.2s, border-color 0.2s;
}

.insurance-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); }

.insurance-btn-featured { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.55); }
.insurance-btn-featured:hover { background: rgba(255,255,255,0.28); border-color: #ffffff; }

@media (max-width: 700px) {
    .insurance-grid { grid-template-columns: 1fr; }
}

/* ============================================
============================================ */
.ccr-trust { background: #f7f9fc; padding: 4rem 0; border-top: 1px solid #e8edf5; border-bottom: 1px solid #e8edf5; }

.trust-container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.trust-container .ccr-section-header { margin-bottom: 2rem; }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.trust-item {
    text-align: center; padding: 2rem 1.25rem;
    border-radius: 14px; background: #ffffff;
    border: 1px solid rgba(46,134,193,0.1);
    transition: box-shadow 0.25s, transform 0.25s;
}
.trust-item:hover { box-shadow: 0 10px 32px rgba(46,134,193,0.13); transform: translateY(-4px); }

.trust-icon {
    width: 62px; height: 62px;
    background: rgba(46,134,193,0.08); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}

.trust-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.trust-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 700; color: var(--navy);
    text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem; line-height: 1.25;
}

.trust-item p { font-size: 13.5px; color: var(--grey-text); line-height: 1.55; }

/* ============================================
   CTA BANNER
============================================ */
.ccr-cta {
    padding: 7rem 2rem; text-align: center;
    position: relative; overflow: hidden;
    background-image: url('https://christchurchcarrent.co.nz/wp-content/uploads/2026/05/ccr-home-cta-bg.jpg');
    background-size: cover; background-position: center 40%; background-attachment: fixed;
}

.ccr-cta::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,18,35,0.55) 0%, rgba(10,18,35,0.70) 100%);
    pointer-events: none;
}

.ccr-cta .cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.ccr-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700;
    color: #ffffff; text-transform: uppercase; letter-spacing: 0.04em;
    line-height: 1.1; margin-bottom: 1rem;
}

.ccr-cta p {
    font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.6;
    margin-bottom: 2.25rem; max-width: 540px; margin-left: auto; margin-right: auto;
}

.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.cta-btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--gold); color: #ffffff !important; text-decoration: none !important;
    padding: 0.9rem 2.5rem; border-radius: 4px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
}

.cta-btn-primary svg { width: 17px; height: 17px; stroke: #ffffff; fill: none; stroke-width: 2; flex-shrink: 0; }
.cta-btn-primary:hover { background: #5DADE2; transform: translateY(-2px); }

.cta-btn-secondary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    border: 2px solid rgba(255,255,255,0.85);
    color: #ffffff !important; text-decoration: none !important;
    padding: 0.9rem 2.5rem; border-radius: 4px;
    font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    transition: all 0.2s;
}

.cta-btn-secondary svg { width: 17px; height: 17px; stroke: #ffffff; fill: none; stroke-width: 2; flex-shrink: 0; }
.cta-btn-secondary:hover { background: #ffffff; border-color: #ffffff; color: var(--navy) !important; transform: translateY(-2px); }
.cta-btn-secondary:hover svg { stroke: var(--navy); }

/* ============================================
   LOCATION
============================================ */
.ccr-location { background: #ffffff; padding: 5.5rem 0; }

.location-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); height: 420px; }
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.location-details h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy);
    text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; line-height: 1.1;
}

.location-details .gold-rule { display: block; width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 2rem; }

.location-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }

.location-item { display: flex; align-items: flex-start; gap: 1rem; }

.location-item-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(46,134,193,0.1); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}

.location-item-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }

.location-item-text { display: flex; flex-direction: column; gap: 0.2rem; }
.location-item-text span { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.location-item-text p { font-size: 15px; color: var(--navy); line-height: 1.5; }
.location-item-text a { font-size: 15px; color: var(--navy); text-decoration: none; transition: color 0.2s; display: block; }
.location-item-text a:hover { color: var(--gold); }

.btn-directions {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--navy); color: #ffffff !important; text-decoration: none !important;
    padding: 0.85rem 2rem; border-radius: 4px;
    font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
}

.btn-directions svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-directions:hover { background: var(--gold); transform: translateY(-1px); }

/* ============================================
   FOOTER
============================================ */
.ccr-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 4.5rem 0 0; }

.footer-container {
    max-width: 1280px; margin: 0 auto; padding: 0 2rem 3.5rem;
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 2.5rem; align-items: start;
}

.footer-logo { height: 52px; width: auto; margin-bottom: 1.1rem; filter: brightness(0) invert(1); display: block; }

.footer-brand p { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; max-width: 260px; }

.footer-social { display: flex; gap: 0.6rem; }

.footer-social a {
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55); transition: all 0.2s; text-decoration: none;
}

.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.14em; color: #5DADE2;
    margin-bottom: 1.2rem; padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 13.5px; transition: color 0.2s; }
.footer-col ul a:hover { color: #5DADE2; }
.footer-col ul:not(.footer-contact) li { display: flex; align-items: center; gap: 0.45rem; }
.footer-col ul:not(.footer-contact) li::before { content: '›'; color: #5DADE2; font-size: 1.1rem; line-height: 1; flex-shrink: 0; }
.footer-col ul:not(.footer-contact) li:hover a { color: #5DADE2; }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; }

.footer-contact-icon {
    width: 30px; height: 30px; flex-shrink: 0;
    background: rgba(93,173,226,0.12); border-radius: 6px;
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
}

.footer-contact-icon svg { width: 13px; height: 13px; stroke: #5DADE2; fill: none; stroke-width: 2; }

.footer-contact span,
.footer-contact p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-contact a { font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; line-height: 1.5; display: block; }
.footer-contact a:hover { color: #5DADE2; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.25rem 2rem; text-align: center; font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: #5DADE2; text-decoration: none; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .ccr-hero .hero-container { flex-direction: column; padding: 5rem 1.5rem 3rem !important; }
    .ccr-hero .hero-form-wrap { flex: none; width: 100%; }
    .ccr-navbar .nav-links { display: none; }
    .carousel-slide { flex: 0 0 90%; }
    .carousel-btn.prev { left: 1rem; }
    .carousel-btn.next { right: 1rem; }
    .location-grid { grid-template-columns: 1fr; }
    .location-map { height: 320px; }
    .ccr-page-hero-inner { padding-top: 3.5rem !important; }
    #page, .site, #content, #primary { padding-top: 0 !important; margin-top: 0 !important; }
    .ccr-insurance { background-attachment: scroll; }
    .ccr-cta { background-attachment: scroll; }
}

@media (max-width: 600px) {
    .fleet-grid { grid-template-columns: 1fr; }
    .fleet-img-wrap { height: 200px; }
    .form-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn-primary, .cta-btn-secondary { width: 100%; max-width: 300px; text-align: center; }
}

/* ============================================
   PAGE HERO (shared across all inner pages)
============================================ */
.ccr-page-hero {
    background: var(--navy); padding: 0 2rem 3.5rem; text-align: center;
}

.ccr-page-hero-inner { max-width: 700px; margin: 0 auto; padding-top: calc(72px + 3.5rem); }

.ccr-page-hero h1 {
    font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: #fff; text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 0.5rem; line-height: 1.1;
}

.ccr-page-hero h1 span { color: var(--gold-light); }

.ccr-page-divider {
    width: 48px; height: 3px; background: var(--gold);
    margin: 0.75rem auto 1rem; border-radius: 2px; display: block;
}

.ccr-page-divider--left { margin-left: 0; margin-right: auto; }

.ccr-page-hero p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.7; margin: 0; }

/* ============================================
   LEGAL PAGES (terms, privacy)
============================================ */
.ccr-legal-content { max-width: 860px; margin: 0 auto; padding: 2rem 2rem 5rem; }

.ccr-legal-content h2 {
    font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em;
    margin: 2.5rem 0 1rem; padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.ccr-legal-content p { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 1rem; }
.ccr-legal-content ol, .ccr-legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.ccr-legal-content ol[type="a"] { list-style-type: lower-alpha; }
.ccr-legal-content ol[type="i"] { list-style-type: lower-roman; }
.ccr-legal-content li { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 0.5rem; }
.ccr-legal-content strong { color: var(--navy); }
.ccr-legal-content a { color: var(--gold); text-decoration: none; }
.ccr-legal-content a:hover { text-decoration: underline; }

.ccr-legal-note {
    background: #f5f5f5; border-left: 4px solid var(--gold);
    padding: 1.25rem 1.5rem; border-radius: 4px; margin: 2rem 0;
    font-size: 14px; color: #555; line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
============================================ */
.ccr-about-intro { background: #fff; padding: 2rem 2rem 5rem; }

.ccr-about-intro-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.ccr-about-intro-text h2 {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--navy); text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 0.5rem;
}

.ccr-about-intro-text p { font-size: 15px; color: var(--grey-text); line-height: 1.8; margin-bottom: 1rem; }
.ccr-about-intro-text a { color: var(--gold); text-decoration: none; }
.ccr-about-intro-text a:hover { text-decoration: underline; }

.ccr-about-intro-image { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 64px rgba(26,43,74,0.22), 0 6px 20px rgba(26,43,74,0.12); }
.ccr-about-intro-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Stats Strip */
.ccr-about-stats { background: var(--navy); padding: 3.5rem 2rem; }
.ccr-about-stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.ccr-stat-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    padding: 1rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.08);
}
.ccr-stat-item:last-child { border-right: none; }
.ccr-stat-icon {
    width: 52px; height: 52px; background: rgba(93,173,226,0.12); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 0.6rem;
}
.ccr-stat-icon svg { width: 22px; height: 22px; stroke: #5DADE2; fill: none; stroke-width: 1.8; }
.ccr-stat-number { font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: #fff; line-height: 1; }
.ccr-stat-label { font-size: 11.5px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.12em; }

/* Testimonials */
.ccr-about-testimonials { background: #f5f5f5; padding: 5rem 2rem; }
.ccr-testimonials-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.ccr-about-testimonials h2 {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--navy); text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 0.75rem;
}
.ccr-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.ccr-testimonial-card {
    background: #fff; border-radius: var(--radius); padding: 2rem 1.75rem;
    text-align: left; border: 1px solid #ececec;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ccr-testimonial-quote { font-size: 3.5rem; color: var(--gold); line-height: 0.8; font-family: Georgia, serif; display: block; margin-bottom: 0.75rem; }
.ccr-testimonial-stars { color: #f0a500; font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.ccr-testimonial-card p { font-size: 14px; color: var(--grey-text); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.ccr-testimonial-name { font-size: 14px; font-weight: 600; color: var(--navy); display: block; }
.ccr-testimonial-origin { font-size: 12px; color: rgba(26,43,74,0.45); }

.ccr-about-mission {
    background: #0f1e35; padding: 5rem 2rem; text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ccr-about-mission-inner { max-width: 800px; margin: 0 auto; position: relative; }
.ccr-about-mission-inner::before {
    content: '\201C';
    font-family: Georgia, serif; font-size: 10rem; color: rgba(93,173,226,0.12);
    line-height: 0.8; position: absolute; top: -1.5rem; left: -1rem;
    pointer-events: none; user-select: none;
}
.ccr-about-mission h2 {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: #fff; text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 0.75rem;
}
.ccr-about-mission p { color: rgba(255,255,255,0.75); font-size: 18px; line-height: 1.9; font-style: italic; }

.ccr-about-values { background: #fff; padding: 5rem 2rem; }

.ccr-about-values-container { max-width: 1100px; margin: 0 auto; }

.ccr-about-values h2, .ccr-about-services h2 {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--navy); text-transform: uppercase;
    letter-spacing: 0.04em; text-align: center; margin-bottom: 0.75rem;
}

.ccr-values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}

.ccr-value-item {
    text-align: center; padding: 2.25rem 1.5rem;
    border-radius: var(--radius); background: #fff;
    border: 1px solid #eef0f3;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ccr-value-item:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }

.ccr-value-icon {
    width: 64px; height: 64px; background: var(--gold); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.ccr-value-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 1.8; }

.ccr-value-item h3 {
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem;
}
.ccr-value-item p { font-size: 13.5px; color: var(--grey-text); line-height: 1.65; }

.ccr-about-services { background: #f5f5f5; padding: 5rem 2rem; }

.ccr-about-services-container { max-width: 1100px; margin: 0 auto; }

.ccr-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.ccr-service-item {
    background: #fff; border-radius: var(--radius); padding: 1.75rem 1.75rem 1.75rem 1.5rem;
    display: flex; gap: 1.25rem; align-items: flex-start;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}
.ccr-service-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateX(3px); }

.ccr-service-num {
    font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800;
    color: rgba(46,134,193,0.18); line-height: 1; flex-shrink: 0; min-width: 2.5rem;
}
.ccr-service-item h3 {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem;
}
.ccr-service-item p { font-size: 13.5px; color: var(--grey-text); line-height: 1.65; }

.ccr-about-cta {
    position: relative; padding: 7rem 2rem; text-align: center; overflow: hidden;
    background-image: url('https://christchurchcarrent.co.nz/wp-content/uploads/2026/05/ccr-about-cta-bg.jpg');
    background-size: cover; background-position: center 40%; background-attachment: fixed;
}
.ccr-about-cta::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,18,35,0.55) 0%, rgba(10,18,35,0.70) 100%);
    z-index: 0;
}
.ccr-about-cta > * { position: relative; z-index: 1; }

.ccr-about-cta h2 {
    font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: #fff; text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 1rem;
}

.ccr-about-cta p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 2rem; }

.ccr-about-cta .btn-cta {
    display: inline-block; background: var(--gold); color: #fff !important;
    text-decoration: none !important; padding: 0.9rem 2.5rem; border-radius: 4px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    transition: background 0.2s;
}

.ccr-about-cta .btn-cta:hover { background: var(--gold-light); }

/* ============================================
   CONTACT PAGE
============================================ */
.ccr-contact-section { background: #f5f5f5; padding: 2rem 2rem 5rem; }

.ccr-contact-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start;
}

.ccr-contact-info h2 {
    font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem;
}

.ccr-contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }

.ccr-contact-item { display: flex; align-items: flex-start; gap: 1rem; }

.ccr-contact-item-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(46,134,193,0.1); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}

.ccr-contact-item-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }

.ccr-contact-item-text span {
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.2rem;
}

.ccr-contact-item-text p { font-size: 15px; color: var(--navy); line-height: 1.5; }
.ccr-contact-item-text a { font-size: 15px; color: var(--navy); text-decoration: none; display: block; }
.ccr-contact-item-text a:hover { color: var(--gold); }

.ccr-contact-form-wrap {
    background: #fff; border-radius: var(--radius);
    padding: 2.5rem; box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.ccr-contact-form-wrap h2 {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold);
}

.cform-group { display: flex; flex-direction: column; margin-bottom: 1rem; }

.cform-group label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--navy); margin-bottom: 0.3rem;
}

.cform-group label .req { color: #c0392b; margin-left: 2px; }

.cform-group input,
.cform-group select,
.cform-group textarea {
    width: 100%; padding: 0.7rem 0.85rem;
    border: 1.5px solid #e0e0e0; border-radius: 4px;
    font-size: 14px; font-family: var(--font-body); color: var(--navy);
    background: #fff; transition: border-color 0.2s; outline: none;
}

.cform-group textarea { height: 110px; resize: vertical; }
.cform-group input:focus, .cform-group select:focus, .cform-group textarea:focus { border-color: var(--gold); }
.cform-group input::placeholder, .cform-group textarea::placeholder { color: #bbb; }

.cform-check { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 1.25rem; }
.cform-check input[type="checkbox"] { width: 15px; height: 15px; margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); cursor: pointer; }
.cform-check label { font-size: 13px; color: var(--grey-text); line-height: 1.5; cursor: pointer; }
.cform-check label a { color: var(--gold); text-decoration: none; }
.cform-check label a:hover { text-decoration: underline; }

.cform-submit {
    width: 100%; padding: 0.9rem; background: var(--gold); color: #fff;
    border: none; border-radius: 4px; font-size: 14px; font-weight: 700;
    font-family: var(--font-body); letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s;
}

.cform-submit:hover { background: #1a5f8a; }
.cform-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.cfield-error { font-size: 11px; color: #c0392b; margin-top: 3px; display: block; }

.cform-success { display: none; text-align: center; padding: 3rem 1.5rem; animation: cSuccessFadeUp 0.4s ease; }
@keyframes cSuccessFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cform-success .success-icon { width: 72px; height: 72px; margin: 0 auto 1.5rem; }
.success-checkmark { width: 72px; height: 72px; display: block; }
.success-circle {
    stroke-dasharray: 151; stroke-dashoffset: 151;
    animation: cDrawCircle 0.6s ease 0.1s forwards;
}
.success-check {
    stroke-dasharray: 36; stroke-dashoffset: 36;
    animation: cDrawCheck 0.35s ease 0.65s forwards;
}
@keyframes cDrawCircle { to { stroke-dashoffset: 0; } }
@keyframes cDrawCheck  { to { stroke-dashoffset: 0; } }
.cform-success h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--navy); margin-bottom: 0.6rem; }
.cform-success > p { font-size: 14.5px; color: var(--grey-text); max-width: 340px; margin: 0 auto 1.5rem; line-height: 1.6; }
.success-response-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(93,173,226,0.1); border-radius: 20px;
    padding: 0.4rem 1rem; font-size: 12.5px; color: var(--gold);
    margin-bottom: 1.25rem;
}
.success-response-badge svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; }
.success-fallback { font-size: 13px !important; color: rgba(26,43,74,0.45) !important; margin-bottom: 1.5rem !important; }
.success-fallback a { color: var(--gold); text-decoration: none; font-weight: 600; }
.success-fallback a:hover { text-decoration: underline; }
.cform-reset-btn {
    background: rgba(46,134,193,0.1); border: 1.5px solid var(--gold);
    color: var(--gold); font-size: 13px; padding: 0.5rem 1.25rem;
    border-radius: 6px; cursor: pointer; transition: all 0.2s;
}
.ccr-contact-form-wrap .cform-reset-btn:hover {
    background: var(--gold); border-color: var(--gold); color: #fff;
}

.ccr-contact-map { padding: 0 2rem 5rem; max-width: 1100px; margin: 0 auto; }
.ccr-contact-map iframe {
    width: 100%; height: 400px; border: 0;
    border-radius: var(--radius); box-shadow: 0 4px 24px rgba(0,0,0,0.1); display: block;
}

/* intl-tel-input overrides */
.iti { width: 100%; }
.iti__selected-flag { background: #f5f5f5 !important; border-right: 1px solid #e0e0e0; }
.iti--separate-dial-code input[type=tel] { padding-left: 85px !important; }

/* ============================================
   RESPONSIVE - INNER PAGES
============================================ */
@media (max-width: 1024px) {
    .ccr-about-intro-container { grid-template-columns: 1fr; }
    .ccr-values-grid { grid-template-columns: repeat(2, 1fr); }
    .ccr-contact-container { grid-template-columns: 1fr; }
    .ccr-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .ccr-values-grid { grid-template-columns: 1fr; }
    .ccr-services-grid { grid-template-columns: 1fr; }
    .ccr-about-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .ccr-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .ccr-stat-item:nth-child(3), .ccr-stat-item:nth-child(4) { border-bottom: none; }
    .ccr-testimonials-grid { grid-template-columns: 1fr; }
    .ccr-about-intro-image { max-height: 280px; }
    .ccr-about-cta { background-attachment: scroll; }
}

/* ============================================
   FLEET ARCHIVE PAGE
============================================ */
.ccr-fleet-archive {
    background: #f5f5f5;
    padding: 2rem 0 5.5rem;
}

.fleet-grid--archive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* reset the staggered nth-child positioning from homepage */
.fleet-grid--archive .fleet-card:nth-child(n) {
    grid-column: auto;
}

/* Taller images on archive for better proportions */
.fleet-grid--archive .fleet-img-wrap {
    height: 220px;
}

/* Gold rule under title to match brand */
.fleet-grid--archive .fleet-info h3 {
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 0;
}

/* Remove top border from specs — title's bottom border acts as divider */
.fleet-grid--archive .fleet-specs {
    border-top: none;
    padding-top: 0.8rem;
    margin-bottom: 0.6rem;
    gap: 0.5rem;
}

/* Spec pills */
.fleet-grid--archive .fleet-specs li {
    background: #f0f2f5;
    border-radius: 20px;
    padding: 5px 12px 5px 8px;
    font-size: 12px;
    color: #444;
    gap: 5px;
}

/* Gold specs icons */
.fleet-grid--archive .fleet-specs li svg {
    color: var(--gold);
    width: 12px;
    height: 12px;
}

/* Gold discount badge stands out against image */
.fleet-grid--archive .fleet-discount {
    background: var(--gold);
    color: var(--navy);
}

/* Stronger divider before pricing block */
.fleet-grid--archive .fleet-info-bottom {
    border-top-color: #ddd;
}

/* Gold left accent anchors the price visually */
.fleet-grid--archive .fleet-pricing {
    padding-left: 14px;
    border-left: 3px solid var(--gold);
    margin-bottom: 1rem;
}

/* More readable WAS price */
.fleet-grid--archive .price-was {
    color: #999;
    font-size: 13px;
}

/* Gold price — more brand-consistent */
.fleet-grid--archive .price-now {
    color: var(--gold);
    font-size: 2.1rem;
}

/* Checkmark prefix on the note */
.fleet-grid--archive .price-note::before {
    content: '✓ ';
    color: var(--gold);
    font-weight: 700;
}

/* Gold inset top bar on card hover */
.fleet-grid--archive .fleet-card:hover {
    box-shadow: 0 14px 40px rgba(0,0,0,0.18), inset 0 3px 0 var(--gold);
}

/* Vehicle count above grid */
.fleet-count {
    font-size: 13px;
    color: #888;
    text-align: right;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.fleet-img-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.fleet-card-actions {
    display: flex;
    gap: 0.625rem;
}

.fleet-card-actions .fleet-btn {
    flex: 1;
    padding: 0.7rem 0.5rem;
    font-size: 12.5px;
}

.fleet-btn--outline {
    background: transparent !important;
    color: var(--navy) !important;
    border: 2px solid var(--navy);
}

.fleet-btn--outline:hover {
    background: var(--navy) !important;
    color: #fff !important;
}

.fleet-empty {
    text-align: center;
    padding: 3rem;
    font-size: 16px;
    color: var(--grey-text);
}

.fleet-empty a { color: var(--gold); text-decoration: none; }
.fleet-empty a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
    .fleet-grid--archive { grid-template-columns: repeat(2, 1fr); }
    .fleet-count { text-align: left; }
}

@media (max-width: 600px) {
    .fleet-grid--archive { grid-template-columns: 1fr; }
    .fleet-card-actions { flex-direction: column; }
}

/* ============================================
   SINGLE VEHICLE PAGE
============================================ */
.vehicle-hero-cat {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 0.5rem;
}

.vehicle-hero-price {
    color: rgba(255,255,255,0.9); font-size: 18px; margin-top: 0.5rem;
}

.vehicle-hero-price strong { color: var(--gold-light); font-size: 22px; }

.vehicle-hero-was {
    color: rgba(255,255,255,0.5); text-decoration: line-through;
    font-size: 14px; margin-left: 0.5rem;
}

.vehicle-specs-strip {
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    margin-top: 1.5rem;
}

.vehicle-specs-inner {
    max-width: 800px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 2.5rem; flex-wrap: wrap;
}

.vs-item {
    display: flex; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
}

.vs-item svg { stroke: var(--gold-light); flex-shrink: 0; }

/* Body layout */
.ccr-vehicle-body { background: #f5f5f5; padding: 4rem 2rem 5.5rem; }

.vbody-container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: start;
}

/* Gallery */
.vgallery { margin-bottom: 2rem; }

.vgallery-main {
    border-radius: 10px; overflow: hidden;
    background: #e8e8e8;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.vgallery-main img { width: 100%; height: auto; max-height: 420px; object-fit: cover; display: block; }

.vgallery-thumbs {
    display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem;
}

.vgallery-thumb {
    width: 80px; height: 60px; border: 2px solid transparent;
    border-radius: 6px; overflow: hidden; padding: 0; cursor: pointer;
    background: #e8e8e8; transition: border-color 0.15s; flex-shrink: 0;
}

.vgallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vgallery-thumb.active { border-color: var(--gold); }
.vgallery-thumb:hover { border-color: var(--gold-light); }

/* Features */
.vfeatures {
    background: #fff; border-radius: 10px;
    padding: 1.75rem 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.vfeatures h3 {
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold);
}

.vfeatures ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; }

.vfeatures li {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 14px; color: #444; line-height: 1.4;
}

.vfeatures li svg { stroke: var(--gold); flex-shrink: 0; }

/* Sticky booking sidebar */
.vbody-right { position: sticky; top: calc(var(--navbar-height) + 1.5rem); }

.vbooking-card h2 {
    font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold);
}

/* Related vehicles */
.ccr-related-vehicles { background: #fff; padding: 5rem 0; }

.ccr-related-vehicles h2 {
    font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; color: var(--navy); text-transform: uppercase;
    letter-spacing: 0.04em; text-align: center; margin-bottom: 0.5rem;
}

.ccr-related-vehicles .ccr-page-divider { margin-bottom: 2.5rem; }

/* Responsive */
@media (max-width: 1100px) {
    .vbody-container { grid-template-columns: 1fr; }
    .vbody-right { position: static; }
}

@media (max-width: 600px) {
    .vfeatures ul { grid-template-columns: 1fr; }
    .vehicle-specs-inner { gap: 1.25rem; }
}

/* ============================================
   SINGLE VEHICLE PAGE — SPLIT HERO (v4)
============================================ */
.ccr-vehicle-hero-split {
    display: flex;
    min-height: 700px;
}

.vhero-left {
    flex: 0 0 45%;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    border-right: 3px solid var(--gold);
}

.vhero-left-inner {
    padding: 2rem 3.5rem;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.vhero-back {
    display: flex; align-items: center; gap: 0.45rem;
    font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
    color: rgba(255,255,255,0.55) !important;
    text-decoration: none !important;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.vhero-back svg { stroke: currentColor; transition: transform 0.2s; }
.vhero-back:hover { color: var(--gold-light) !important; }
.vhero-back:hover svg { transform: translateX(-3px); }

/* Category badge — solid gold */
.vhero-cat {
    display: inline-flex;
    align-items: center;
    font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 0.3rem 0.9rem;
    border-radius: 4px;
    margin-bottom: 0.65rem;
}

.ccr-vehicle-hero-split h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 700; color: #fff; text-transform: uppercase;
    letter-spacing: 0.03em; line-height: 1.05; margin-bottom: 0.35rem;
}

/* Short underline accent below title */
.vhero-title-rule {
    width: 48px; height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0.5rem 0 0;
}

/* Specs — 2×2 card grid */
.vhero-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin: 1.1rem 0 0;
}

.vhero-spec {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.vhero-spec svg {
    stroke: var(--gold);
    flex-shrink: 0;
    width: 15px; height: 15px;
}

/* Price block — single horizontal row */
.vhero-price-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    margin: 1.1rem 0 0;
    padding: 1.1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.vhero-price-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.vhero-price-was {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-decoration: line-through;
    line-height: 1;
    white-space: nowrap;
}

/* Outline pill discount badge */
.vhero-discount-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1.5px solid var(--gold);
    padding: 3px 10px;
    border-radius: 100px;
    line-height: 1.5;
    white-space: nowrap;
}

.vhero-price-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1;
}

.vhero-price-from {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.vhero-price-main {
    font-family: var(--font-heading);
    font-size: 1.6rem; font-weight: 700;
    color: var(--gold); line-height: 1;
}

.vhero-price-main small {
    font-size: 13px; font-weight: 400;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
}

/* CTA buttons — equal width, full row */
.vhero-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.vhero-btn-book {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
    background: var(--gold); color: #fff !important;
    text-decoration: none !important;
    font-size: 13.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 1rem 1.5rem; border-radius: 8px;
    transition: background 0.2s;
}

.vhero-btn-book:hover { background: #2071a8; }

.vhero-btn-call {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    color: var(--navy) !important;
    text-decoration: none !important;
    font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.92);
    transition: background 0.2s;
}

.vhero-btn-call:hover {
    background: #ffffff;
    color: var(--navy) !important;
}

.vhero-btn-call svg { stroke: var(--navy); flex-shrink: 0; }

/* Trust strip */
.vhero-trust {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.vhero-trust-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.35rem 1.1rem;
}

.vhero-trust-item {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 11.5px; font-weight: 500;
    color: rgba(255,255,255,0.68);
    white-space: nowrap;
}

.vhero-trust-item svg { stroke: var(--gold); flex-shrink: 0; }

/* Right: vehicle photo */
.vhero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #0d1a2e;
}

.vhero-right img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* Soft fade from navy panel into the photo for seamless split */
.vhero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,43,74,0.55) 0%, rgba(26,43,74,0.15) 18%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.vhero-badge {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: var(--gold); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    z-index: 2;
}

/* Feature grid */
.vfeatures { background: #fff; border-radius: 10px; padding: 1.75rem 2rem; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }

.vfeatures h3 {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold);
}

.vfeatures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
}

.vfeature-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.vfeature-icon-wrap {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: rgba(46,134,193,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.vfeature-icon-wrap svg { stroke: var(--gold); }

.vfeature-body { flex: 1; }

.vfeature-body h4 {
    font-size: 13px; font-weight: 700;
    color: var(--navy); margin: 0 0 0.25rem; line-height: 1.3;
}

.vfeature-body p {
    font-size: 12px; color: #666; margin: 0; line-height: 1.5;
}

/* Responsive — split hero */
@media (max-width: 900px) {
    .ccr-vehicle-hero-split { flex-direction: column-reverse; min-height: auto; }
    .vhero-left { flex: none; width: 100%; padding-top: 0; justify-content: flex-start; }
    .vhero-left-inner { padding: 2.5rem 1.75rem 2rem; max-width: none; margin: 0; }
    .ccr-vehicle-hero-split h1 { font-size: 2rem; }
    .vhero-price-main { font-size: 2.6rem; }
    .vhero-right { flex: none; width: 100%; height: 280px; }
}

@media (max-width: 600px) {
    .vfeatures-grid { grid-template-columns: 1fr; }
    .vhero-right { height: 220px; }
    .vhero-trust-items { flex-direction: column; }
}
