
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.strip-with-results {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
}

.country-strip {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* =======================
LAYOUT
======================= */
.strip-with-results {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    overflow-y: visible;
}

.country-strip {
    flex: 1;
    min-width: 0;
}

/* =======================
   UPCOMING STRIP
   ======================= */
.venue-slider {
    display: flex;
    gap: 12px;

    /* horizontal scroll */
    overflow-x: auto;
    overflow-y: hidden;

    padding-bottom: 6px;
    scroll-snap-type: x mandatory;

    /* MOBILE TOUCH FIX */
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;

    max-width: 100%;
}

.venue-slider::-webkit-scrollbar {
    height: 6px;
}

.venue-slider::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 4px;
}

.venue-thumb {
    scroll-snap-align: start;
    flex: 0 0 auto;
}

/* =======================
   VENUE CARD
   ======================= */
.venue-card {
    width: 220px;
    min-height: 130px;
    background: var(--rc-navy-bg);
    border: 1px solid var(--rc-navy-border);
    border-radius: var(--rc-r);
    color: var(--rc-text);
    display: flex;
    flex-direction: column;
    justify-content: center; /* centre content vertically */
    align-items: stretch; /* full width inside */
}

.venue-meta {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.venue-time {
    font-size: 14px;
    font-weight: 600;
    color: var(--rc-blue);
    text-transform: uppercase;
}

.venue-sub {
    font-size: 11px;
    opacity: .8;
}

.venue-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--rc-text-light);
}

.venue-footer {
    text-align: center;
    font-size: 12px;
    border-top: 1px solid var(--rc-navy-border);
    padding-top: 6px;
}

/* =======================
   UPCOMING BUTTONS
   ======================= */
.race-toggle-btn {
    width: 100%;
    padding: 6px 10px;
    background: var(--rc-green);
    color: #fff;
    border: none;
    border-radius: var(--rc-r);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.race-dropdown {
    margin-top: 8px;
    padding: 8px 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--rc-navy-border);
    border-radius: var(--rc-r);
}

.race-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.race-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--rc-text-light);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding-bottom: 4px;
    text-align: left;
}

.race-item:last-child {
    border-bottom: none;
}

/* =======================
   RESULTS CARD
   ======================= */
.results-panel {
    width: 320px;
    flex-shrink: 0;
}

.results-card {
    background: var(--rc-navy-bg);
    border: 1px solid var(--rc-navy-border);
    border-radius: var(--rc-r);
    padding: 12px;
    color: var(--rc-text);
}

.results-header {
    font-weight: 800;
    font-size: 14px;
    background: #dc3545; /* red header */
    color: #ffffff; /* white text */
    padding: 8px 10px;
    border-radius: var(--rc-r);
    margin-bottom: 10px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.results-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.results-nav button {
    background: rgba(255, 255, 255, .08);
    border: none;
    border-radius: var(--rc-r);
    color: var(--rc-text);
    padding: 4px 8px;
    cursor: pointer;
}

.results-meta {
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
}

.results-meta strong {
    color: var(--rc-text-light);
}

.results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-list li {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.results-list li:last-child {
    border-bottom: none;
}

/* =======================
   MOBILE STACKING
   ======================= */
@media (max-width: 768px) {
    .strip-with-results {
        flex-direction: column;
    }

    .results-panel {
        width: 100%;
    }

    .results-card {
        margin-top: 16px;
    }
}

.accordion-collapse {
    overflow: visible !important;
}

.outer-card {
    overflow: visible !important;
}

.rcards .accordion-button {
    position: relative;
}

/* Base chevron: vertically centered */
.rcards .accordion-button::after {
    position: absolute;
    right: 1rem; /* adjust if you want it closer/further from the edge */
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
}

/* When accordion is OPEN (Bootstrap adds :not(.collapsed)) */
.rcards .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-180deg);
}


.consultant-card {
    background: var(--rc-navy-bg);
    border: 1px solid var(--rc-navy-border);
    border-radius: var(--rc-r);
    padding: 12px;
    text-align: center;
    color: var(--rc-text);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.consultant-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rc-navy-border);
}

.consultant-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--rc-text-light);
}

.consultant-roi {
    font-size: 12px;
    opacity: 0.85;
}


/* Pricing cards – match Colosseum vibe */
.pricing-card {
    background: var(--rc-navy-bg);
    border: 1px solid var(--rc-navy-border);
    border-radius: var(--rc-r);
    color: var(--rc-text);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.price-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--rc-text-light);
}

.price-text .price {
    font-size: 1.4rem;
    font-weight: 700;
}

.pricing-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 0.45rem;
}

.pricing-list li .check-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--rc-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--rc-green);
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    background: var(--rc-green);
    color: #0F212E;
    border-radius: var(--rc-r);
    border: none;
    padding: 8px 14px;
    font-weight: 600;
    text-transform: none;
}

.pricing-btn:hover,
.pricing-btn:focus {
    filter: brightness(1.05);
    color: #0F212E;
}

/* Optional: tighten section spacing on this page */
#pricing.about.section {
    padding-top: 0;
    padding-bottom: 0;
}


/* Pricing button – white text, no underline */
.pricing-btn {
    background: var(--rc-green);
    color: #ffffff !important; /* white text */
    text-decoration: none !important; /* no underline */
    border: none;
}

.pricing-btn:hover,
.pricing-btn:focus {
    color: #ffffff !important; /* keep white on hover/focus */
    text-decoration: none !important;
}

/* Check-circle styling – blue filled circle */
.pricing-list .check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0D6EFD; /* blue circle */
    color: #ffffff;
    margin-right: 6px;
    font-size: 0.75rem;
}

.pricing-list .check-circle i {
    color: #ffffff !important; /* force white icon */
}

#faq .accordion-body {
        color: #ffffff;
    }

/* Keep country strip simple */
.country-strip {
    flex: 1;
    min-width: 0;
}

/* Make the horses dropdown itself scrollable */
.race-dropdown {
    margin-top: 8px;
    padding: 8px 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--rc-navy-border);
    border-radius: var(--rc-r);

    max-height: 200px;              /* or whatever height works */
    overflow-y: auto;               /* vertical scroll */
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

/* Optional: tiny scrollbar styling inside the dropdown */
.race-dropdown::-webkit-scrollbar {
    width: 4px;
}

.race-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 4px;
}


/* Primary CTA buttons – green with white text */
/* Default CTA buttons (not in pricing cards) */
.btn-get-started:not(.pricing-btn) {
    display: inline-flex;      /* shrink to content */
    align-items: center;
    justify-content: center;
    width: auto !important;    /* override any 100% width */
    padding: 8px 18px;
    background: var(--rc-green);
    color: #ffffff !important;
    border-radius: var(--rc-r);
    border: none;
    font-weight: 600;
    text-decoration: none !important;
}

.btn-get-started:not(.pricing-btn):hover,
.btn-get-started:not(.pricing-btn):focus {
    filter: brightness(1.05);
    color: #ffffff !important;
}


.pricing-btn {
    width: 100%;
    background: var(--rc-green);
    color: #ffffff !important;
    border-radius: var(--rc-r);
    border: none;
    padding: 8px 14px;
    font-weight: 600;
}

/* Fixed-height scroll ONLY for sections you explicitly mark */
.rcards-scroll .outer-card .card-body {
    height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
}


.venue-footer {
    text-align: center;
    margin-top: 8px;
}

/* Compact centred pill button */
.race-toggle-btn {
    background: #0C8A1C;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.85rem;
    display: inline-flex;         /* keeps it from going full-width */
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
    width: auto;
    min-width: 0;
    transition: background 0.15s ease, transform 0.15s ease;
}

.race-toggle-btn:hover {
    background: #0fa927;
}

.race-toggle-icon {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

/* Down when closed */
.race-toggle-btn[aria-expanded="false"] .race-toggle-icon {
    transform: rotate(0deg);
}

/* Up when open */
.race-toggle-btn[aria-expanded="true"] .race-toggle-icon {
    transform: rotate(180deg);
}

.tip-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: default;
}

.tip-icon.has-tips {
    color: #28a745;
}