.form-input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    color: #fff;
    transition: border-color 0.2s;
}
.form-input:focus {
    outline: none;
    border-color: #d4a020;
    box-shadow: 0 0 0 1px rgba(232, 200, 90, 0.15);
}
.form-input::placeholder {
    color: #6b7280;
}

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Read-more on car detail */
.car-readmore.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

/* --- Toast slide-in (existing) --- */
@keyframes slide-in {
    from { opacity: 0; transform: translateX(100%); }
    to   { opacity: 1; transform: translateX(0); }
}
.animate-slide-in { animation: slide-in 0.3s ease-out; }

/* --- Scroll-reveal base --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal="left"] {
    opacity: 0;
    transform: translateX(-40px);
}
[data-reveal="left"].revealed {
    transform: translateX(0);
}
[data-reveal="right"] {
    opacity: 0;
    transform: translateX(40px);
}
[data-reveal="right"].revealed {
    transform: translateX(0);
}
[data-reveal="scale"] {
    opacity: 0;
    transform: scale(0.92);
}
[data-reveal="scale"].revealed {
    transform: scale(1);
}

/* --- Stagger children --- */
[data-stagger] > * { transition-delay: calc(var(--stagger, 0) * 80ms); }

/* --- Hero shimmer on wordmark --- */
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.hero-shimmer {
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

/* --- Hero floating glow orbs --- */
@keyframes float-up {
    0%   { transform: translateY(0) scale(1);   opacity: 0.3; }
    50%  { opacity: 0.15; }
    100% { transform: translateY(-120vh) scale(0.4); opacity: 0; }
}
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,32,0.35) 0%, transparent 70%);
    pointer-events: none;
    animation: float-up var(--dur) linear var(--delay) infinite;
    will-change: transform, opacity;
}

/* --- Breathing glow pulse (used on icons, CTAs) --- */
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,32,0.0); }
    50%      { box-shadow: 0 0 20px 4px rgba(212,160,32,0.12); }
}
.glow-breathe {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* --- Gradient border sweep on hover --- */
@keyframes border-sweep {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* --- Navbar glass morph on scroll --- */
.nav-scrolled {
    background: rgba(10,10,10,0.97) !important;
    border-bottom-color: rgba(212,160,32,0.15) !important;
    box-shadow: 0 1px 30px rgba(0,0,0,0.5);
}

/* --- Desktop nav links — sliding gold underline --- */
.nav-link {
    position: relative;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #9ca3af;
    transition: color 0.25s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4a020, #f0c850);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover {
    color: #fff;
}
.nav-link:hover::after {
    width: 60%;
    left: 20%;
}
.nav-link.active {
    color: #f0c850;
}
.nav-link.active::after {
    width: 60%;
    left: 20%;
}

/* --- Animated hamburger icon --- */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
}
.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.25s ease,
                width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}
.hamburger-icon span:nth-child(2) { width: 14px; }
.hamburger-icon span:nth-child(3) { width: 18px; }

.menu-open .hamburger-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-open .hamburger-icon span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.menu-open .hamburger-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 20px;
}

/* --- Mobile nav links — stagger slide-in --- */
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.3s ease calc(var(--i, 0) * 0.04s),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 0.04s),
                background 0.2s ease,
                color 0.2s ease,
                border-color 0.2s ease;
}
.mobile-nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
    border-color: rgba(212,160,32,0.15);
}
.mobile-nav-link.active {
    color: #f0c850;
    background: rgba(212,160,32,0.08);
    border-color: rgba(212,160,32,0.15);
}

/* --- Buy / Rent funnel cards --- */
.funnel-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(170deg, rgba(255,255,255,0.04) 0%, rgba(10,10,10,0.6) 100%);
    transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.funnel-card:hover {
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 24px 48px -16px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.05);
    transform: translateY(-4px);
}
.funnel-card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.funnel-card:hover .funnel-card-glow {
    opacity: 1;
}
.funnel-card-line {
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, var(--tw-gradient-stops));
    border-radius: 1px;
}
.funnel-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    font-size: 0.75rem;
    font-weight: 500;
    color: #d1d5db;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.funnel-card:hover .funnel-pill {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}

/* --- Card tilt / lift on hover (subtle 3D) --- */
.card-lift {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
    isolation: isolate;
}
.card-lift::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, transparent 30%, rgba(232,200,90,0.12) 50%, transparent 70%);
    background-size: 220% 220%;
    background-position: 120% 120%;
    opacity: 0;
    transition: opacity 0.5s ease, background-position 0.9s ease;
    z-index: 1;
    mix-blend-mode: screen;
}
.card-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.55),
                0 0 0 1px rgba(212,160,32,0.16),
                0 0 40px -10px rgba(212,160,32,0.35);
}
.card-lift:hover::before {
    opacity: 1;
    background-position: -10% -10%;
}

/* --- Primary CTA shine sweep --- */
.btn-shine {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn-shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
    transform: skewX(-18deg);
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.btn-shine:hover::after {
    left: 130%;
}

/* --- Ambient gold dust particles (reusable — drop any empty .gold-dust div) --- */
.gold-dust {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.gold-dust::before,
.gold-dust::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.35;
    animation: gold-orb-drift 14s ease-in-out infinite;
}
.gold-dust::before {
    width: 320px;
    height: 320px;
    left: -80px;
    top: -120px;
    background: radial-gradient(circle, rgba(212,160,32,0.55), transparent 70%);
}
.gold-dust::after {
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(232,200,90,0.35), transparent 70%);
    animation-delay: -7s;
    animation-duration: 18s;
}
@keyframes gold-orb-drift {
    0%, 100% { transform: translate(0, 0)   scale(1); }
    50%      { transform: translate(40px, -30px) scale(1.15); }
}

/* --- Section divider with gold accent dot --- */
.section-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,160,32,0.28), transparent);
    margin: 0 auto;
}
.section-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4a020;
    box-shadow: 0 0 12px 2px rgba(212,160,32,0.55);
    transform: translate(-50%, -50%);
}

/* --- Gradient text shimmer (reusable on any element) --- */
.gold-shimmer-text {
    background: linear-gradient(
        90deg,
        #d4a020 0%,
        #f5d884 25%,
        #ffffff 50%,
        #f5d884 75%,
        #d4a020 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gold-shimmer-slide 6s linear infinite;
}
@keyframes gold-shimmer-slide {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* --- Smooth counter (used on stat numbers) --- */
.counter-value {
    display: inline-block;
    min-width: 2ch;
}

/* --- Floating WhatsApp/Call pulse ring --- */
@keyframes ring-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.fab-pulse {
    animation: ring-pulse 2.5s ease-out infinite;
}

/* --- Section divider glow line --- */
.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212,160,32,0.3) 50%, transparent 100%);
}

/* --- Enquiry modal (car detail page) --- */
@keyframes enquiry-modal-in {
    from { opacity: 0; transform: translateY(12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes enquiry-modal-shake {
    0%, 100% { transform: translateX(0); }
    20%      { transform: translateX(-6px); }
    40%      { transform: translateX(6px); }
    60%      { transform: translateX(-4px); }
    80%      { transform: translateX(4px); }
}
.enquiry-modal--open .enquiry-modal__card {
    animation: enquiry-modal-in 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.enquiry-modal__shake {
    animation: enquiry-modal-shake 0.35s ease-in-out;
}
.enquiry-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    animation: enquiry-spin 0.7s linear infinite;
    vertical-align: -2px;
    margin-right: 0.25rem;
}
@keyframes enquiry-spin {
    to { transform: rotate(360deg); }
}

/* --- Dealership gold-coin offer ticker (L → R) --- */
.dealership-gold-ticker {
    position: relative;
    z-index: 30;
    background:
        radial-gradient(circle at 15% 50%, rgba(212,160,32,0.14), transparent 45%),
        radial-gradient(circle at 85% 50%, rgba(212,160,32,0.10), transparent 45%),
        linear-gradient(90deg, rgba(20, 20, 20, 0.98), rgba(40, 32, 12, 0.95), rgba(20, 20, 20, 0.98));
    border-top: 1px solid rgba(212, 160, 32, 0.18);
    border-bottom: 1px solid rgba(212, 160, 32, 0.2);
    overflow: hidden;
}
.dealership-gold-ticker::before,
.dealership-gold-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    pointer-events: none;
    z-index: 2;
}
.dealership-gold-ticker::before {
    left: 0;
    background: linear-gradient(90deg, rgba(10,10,10,1), rgba(10,10,10,0));
}
.dealership-gold-ticker::after {
    right: 0;
    background: linear-gradient(270deg, rgba(10,10,10,1), rgba(10,10,10,0));
}
.dealership-gold-ticker__inner { overflow: hidden; }
.dealership-gold-ticker__track {
    display: flex;
    width: max-content;
    gap: 3rem;
    padding: 0.55rem 0;
    animation: ticker-scroll 32s linear infinite;
}
.dealership-gold-ticker:hover .dealership-gold-ticker__track {
    animation-play-state: paused;
}
.dealership-gold-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    font-size: 0.78rem;
    color: #d1d5db;
    letter-spacing: 0.02em;
}
.dealership-gold-ticker__coin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f5d884 0%, #d4a020 55%, #8a6310 100%);
    color: #3a2a08;
    font-size: 0.85rem;
    box-shadow:
        0 0 0 1px rgba(232,200,90,0.35),
        0 0 12px rgba(212,160,32,0.35),
        inset 0 0 6px rgba(255,220,140,0.45);
    animation: coin-spin 6s ease-in-out infinite;
    flex-shrink: 0;
}
.dealership-gold-ticker__coin i { line-height: 1; }
.dealership-gold-ticker__dot {
    color: rgba(212,160,32,0.55);
    margin-left: 0.35rem;
}
@keyframes coin-spin {
    0%, 100% { transform: rotateY(0deg);   box-shadow: 0 0 0 1px rgba(232,200,90,0.35), 0 0 12px rgba(212,160,32,0.35), inset 0 0 6px rgba(255,220,140,0.45); }
    50%      { transform: rotateY(180deg); box-shadow: 0 0 0 1px rgba(232,200,90,0.5),  0 0 22px rgba(212,160,32,0.55), inset 0 0 8px rgba(255,220,140,0.7); }
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    [data-reveal], [data-reveal].revealed {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hero-shimmer { animation: none; }
    .hero-particle { animation: none; display: none; }
    .glow-breathe { animation: none; }
    .fab-pulse { animation: none; }
    .card-lift:hover { transform: none; }
    .card-lift::before, .btn-shine::after { display: none; }
    .gold-dust::before, .gold-dust::after { animation: none; }
    .gold-shimmer-text { animation: none; }
    .dealership-gold-ticker__track { animation: none; justify-content: center; width: 100%; white-space: normal; flex-wrap: wrap; }
    .dealership-gold-ticker__coin { animation: none; }
    .enquiry-modal--open .enquiry-modal__card { animation: none; }
    .enquiry-modal__shake { animation: none; }
}

/* ======================================================================
   Collapsible panel (generic dropdown trigger + panel pair)
   Used by the "Enquire about this car" and "Check availability" blocks
   on the car detail page.
   Trigger: <button data-collapse-trigger="<panel-id>" aria-expanded="false">
   Panel:   <div id="<panel-id>" class="collapse-panel" hidden>
   JS toggles aria-expanded + the [hidden] attribute.
   ====================================================================== */
.collapse-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,160,32,0.16), rgba(212,160,32,0.04));
    border: 1px solid rgba(212,160,32,0.28);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.collapse-trigger:hover {
    background: linear-gradient(135deg, rgba(212,160,32,0.22), rgba(212,160,32,0.06));
    border-color: rgba(212,160,32,0.45);
}
.collapse-trigger:active { transform: translateY(1px); }
.collapse-trigger .ct-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(212,160,32,0.18);
    color: #f8d884;
    font-size: 18px;
    flex-shrink: 0;
}
.collapse-trigger .ct-body { flex: 1; min-width: 0; }
.collapse-trigger .ct-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}
.collapse-trigger .ct-sub {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: 0.01em;
}
.collapse-trigger .ct-chevron {
    transition: transform .2s ease;
    color: #f8d884;
    font-size: 20px;
    flex-shrink: 0;
}
.collapse-trigger[aria-expanded="true"] .ct-chevron { transform: rotate(180deg); }

.collapse-panel {
    margin-top: 10px;
    border-radius: 16px;
    background: rgba(24,24,28,0.7);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 28px -12px rgba(0,0,0,0.6);
    padding: 18px;
    animation: collapsePanelIn .22s ease-out;
}
@keyframes collapsePanelIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.collapse-panel[hidden] { display: none !important; }

/* ======================================================================
   Rental availability calendar
   All styles defined here (not Tailwind utilities) so dynamically-added
   JS classes are guaranteed to render without rebuilding Tailwind.
   ====================================================================== */
.rc-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}
.rc-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #d1d5db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
    font-size: 18px;
}
.rc-nav-btn:hover:not(:disabled) {
    background: rgba(212,160,32,0.14);
    border-color: rgba(212,160,32,0.35);
    color: #fff;
}
.rc-nav-btn:disabled { opacity: .3; cursor: not-allowed; }
.rc-range-label { font-size: 14px; font-weight: 600; color: #fff; }

.rc-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 11px;
    color: #9ca3af;
}
.rc-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.rc-legend .sw {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.1);
}
.rc-legend .sw-free    { background: rgba(34,197,94,0.22); border-color: rgba(34,197,94,0.4); }
.rc-legend .sw-blocked { background: rgba(239,68,68,0.22); border-color: rgba(239,68,68,0.4); }
.rc-legend .sw-past    { background: rgba(255,255,255,0.04); }

.rc-months {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .rc-months { grid-template-columns: 1fr 1fr; gap: 28px; }
}

.rental-month { min-width: 0; }
.rc-month-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: 0.01em;
}
.rc-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
}
.rc-dow {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    text-align: center;
    padding: 4px 0;
}
.rc-day {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid transparent;
    user-select: none;
    transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.rc-free {
    background: rgba(34,197,94,0.14);
    border-color: rgba(34,197,94,0.3);
    color: #86efac;
    cursor: pointer;
}
.rc-free:hover {
    background: rgba(34,197,94,0.26);
    border-color: rgba(34,197,94,0.5);
    transform: translateY(-1px);
}
.rc-blocked {
    background: rgba(239,68,68,0.14);
    border-color: rgba(239,68,68,0.32);
    color: #fca5a5;
    text-decoration: line-through;
    text-decoration-color: rgba(252,165,165,0.65);
    cursor: not-allowed;
}
.rc-past {
    background: rgba(255,255,255,0.02);
    color: #4b5563;
    cursor: default;
}
.rc-today {
    box-shadow: inset 0 0 0 2px rgba(212,160,32,0.75);
}
.rc-blank { background: transparent; border: 0; }

.rc-booked-list {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.rc-booked-list-title {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 700;
    margin: 0 0 8px;
}
.rc-booked-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.25);
    color: #fca5a5;
    font-size: 12px;
    margin: 0 6px 6px 0;
}
.rc-foot-note {
    margin-top: 14px;
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ======================================================================
   Car CTA (enquiry form) — polished twin-button row
   ====================================================================== */
.cta-btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 4px;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    border: 0;
    cursor: pointer;
    transition: background .15s ease, transform .12s ease, box-shadow .2s ease, opacity .2s ease;
    white-space: nowrap;
    line-height: 1;
}
.cta-btn i { font-size: 18px; line-height: 1; }
.cta-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.cta-btn--enquire {
    background: linear-gradient(135deg, #c88a1c, #d4a832);
    box-shadow: 0 6px 18px -6px rgba(212,160,32,0.55);
}
.cta-btn--enquire:hover:not(:disabled) {
    background: linear-gradient(135deg, #d99a30, #e5b947);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -6px rgba(212,160,32,0.7);
}
.cta-btn--whatsapp {
    background: #16a34a;
    box-shadow: 0 6px 18px -6px rgba(22,163,74,0.55);
}
.cta-btn--whatsapp:hover:not(:disabled) {
    background: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -6px rgba(22,163,74,0.7);
}
