/* =============================================
   novacrysentia.com - Kamakura Cycling
   Color Palette: Racing Red, Asphalt Gray, Fresh Green
   Typography: Bebas Neue (display), Inter (body)
   ============================================= */

:root {
    --primary: #D42B2B;
    --primary-dark: #B01E1E;
    --primary-light: #FDE8E8;
    --secondary: #2D3436;
    --secondary-light: #636E72;
    --accent: #F39C12;
    --green: #27AE60;
    --green-light: #E8F8F0;
    --text: #2D3436;
    --text-light: #636E72;
    --text-lighter: #95A5A6;
    --bg: #FFFFFF;
    --bg-alt: #F7F8F9;
    --bg-dark: #1A1D1E;
    --border: #E0E4E7;
    --border-light: #EFF1F3;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Base ---- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.rounded-custom {
    border-radius: var(--radius-lg);
}

.bg-alt {
    background: var(--bg-alt);
}

.text-green {
    color: var(--green);
}

/* ---- Section Padding ---- */
.section-padding {
    padding: 5rem 0;
}
@media (max-width: 767px) {
    .section-padding {
        padding: 3rem 0;
    }
}

/* ---- Section Header ---- */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 2rem;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 2px;
    background: var(--primary);
}
.section-tag-light {
    color: var(--primary-light);
}
.section-tag-light::before {
    background: var(--primary-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Navbar ---- */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0.5rem 0;
}
.navbar.scrolled .nav-link,
.navbar.scrolled .brand-text {
    color: var(--secondary);
}
.navbar.scrolled .brand-wheel {
    color: var(--primary);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff;
    transition: var(--transition);
}
.brand-wheel {
    color: #fff;
    transition: var(--transition);
}
.brand-wheel:hover {
    animation: wheelSpin 1s ease-in-out;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    transition: var(--transition);
}
.nav-link:hover, .nav-link:focus {
    color: var(--primary);
}
.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    filter: invert(1);
}
.navbar.scrolled .navbar-toggler-icon {
    filter: none;
}

/* ---- Buttons ---- */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 0.65rem 1.5rem;
    transition: var(--transition);
    min-height: 44px;
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,43,43,0.35);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    transition: var(--transition);
    min-height: 44px;
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    transition: var(--transition);
    min-height: 44px;
}
.btn-outline-light:hover {
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border-radius: var(--radius);
    font-weight: 600;
    min-height: 44px;
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
@media (max-width: 767px) {
    .hero-section {
        min-height: 85vh;
    }
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,29,30,0.85) 0%, rgba(45,52,54,0.6) 50%, rgba(212,43,43,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hero-btn {
    min-height: 50px;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-wheel {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}
.scroll-wheel::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #3d4548 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 40px solid rgba(212,43,43,0.06);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 30px solid rgba(39,174,96,0.05);
}
.page-hero-compact {
    padding: 7rem 0 3rem;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}
.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 640px;
}

/* ---- Bike Cards ---- */
.bike-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.bike-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.bike-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.bike-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.bike-card:hover .bike-card-image img {
    transform: scale(1.05);
}
.bike-category-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bg-accent { background: var(--accent); }
.bg-secondary-custom { background: var(--secondary-light); }
.bg-green { background: var(--green); }

.bike-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.bike-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.bike-card-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    flex: 1;
}
.bike-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}
.bike-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}
.bike-weight {
    font-size: 0.85rem;
    color: var(--text-light);
}

.bike-hover-image {
    transition: transform 0.4s ease;
}
.bike-hover-image:hover {
    transform: scale(1.02);
}

/* ---- Ride Schedule ---- */
.ride-schedule .ride-item {
    display: flex;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}
.ride-schedule .ride-item:last-child {
    border-bottom: none;
}
.ride-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
    padding: 0.5rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    text-align: center;
}
.ride-day-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 2px;
}
.ride-day-num {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
}
.ride-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.ride-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}
.ride-overlay-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(212,43,43,0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ride-calendar-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Badge Levels */
.badge-level {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-level.beginner {
    background: var(--green-light);
    color: var(--green);
}
.badge-level.intermediate {
    background: #FFF3E0;
    color: #E67E22;
}
.badge-level.advanced {
    background: var(--primary-light);
    color: var(--primary);
}
.badge-level.large {
    font-size: 0.85rem;
    padding: 0.3rem 1rem;
}

/* ---- Service Bay Status ---- */
.bg-dark-section {
    background: var(--bg-dark);
}
.text-light-muted {
    color: rgba(255,255,255,0.6);
}

.service-status-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.service-status-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.service-status-card .status-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.service-status-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
}
.status-indicator.available {
    color: var(--green);
}
.status-indicator.busy {
    color: var(--accent);
}
.status-indicator.limited {
    color: #E67E22;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}
.available .status-dot {
    background: var(--green);
}
.busy .status-dot {
    background: var(--accent);
}
.limited .status-dot {
    background: #E67E22;
}

/* ---- Bike Fit Banner ---- */
.bike-fit-banner {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
}
@media (max-width: 767px) {
    .bike-fit-banner {
        padding: 1.5rem;
    }
}
.fit-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.fit-features li {
    padding: 0.35rem 0;
    font-size: 0.95rem;
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #3d4548 80%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(212,43,43,0.08);
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    letter-spacing: 2px;
}
.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Spec Grid ---- */
.spec-grid .spec-item {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 0.75rem;
}
.spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}
.spec-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}
.price-highlight {
    color: var(--primary);
}

/* Sizing Table */
.sizing-table {
    font-size: 0.85rem;
}
.sizing-table th {
    background: var(--bg-alt);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Pricing Cards ---- */
.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pricing-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover {
    box-shadow: var(--shadow);
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}
.pricing-badge {
    position: absolute;
    top: -0.6rem;
    right: 1rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.pricing-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}
.pricing-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 1px;
}
.pricing-turnaround {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-features li {
    font-size: 0.88rem;
    padding: 0.25rem 0;
    color: var(--text);
}

/* ---- Repair Cards ---- */
.repair-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.repair-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.repair-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}
.repair-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.repair-price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}
.repair-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}
.repair-time {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

/* ---- Custom Build Process ---- */
.process-step {
    display: flex;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}
.process-step:last-child {
    border-bottom: none;
}
.process-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    min-width: 40px;
    line-height: 1;
    padding-top: 0.2rem;
}
.process-step h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.process-step p {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ---- Team Cards ---- */
.team-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}
.team-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.team-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-card:hover .team-image img {
    transform: scale(1.05);
}
.team-info {
    padding: 1.5rem;
}
.team-info h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}
.team-role {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.75rem;
}
.team-info p {
    font-size: 0.88rem;
    color: var(--text-light);
}
.team-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.cert-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg-alt);
    color: var(--text-light);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

/* ---- Value Cards ---- */
.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}
.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ---- Stat Cards ---- */
.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
}
.stat-card-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat-card-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ---- Ride Schedule Full ---- */
.schedule-day {
    margin-bottom: 2rem;
}
.schedule-day-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--secondary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.schedule-ride-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    transition: var(--transition);
}
.schedule-ride-card:hover {
    box-shadow: var(--shadow);
}
.ride-time-block {
    min-width: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.ride-time {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--secondary);
    letter-spacing: 1px;
}
.ride-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.ride-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.ride-details p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.ride-route-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-light);
}
.route-arrow {
    color: var(--border);
    font-size: 0.7rem;
}

@media (max-width: 575px) {
    .schedule-ride-card {
        flex-direction: column;
        gap: 0.75rem;
    }
    .ride-time-block {
        flex-direction: row;
        gap: 0.75rem;
    }
}

/* ---- Level Cards ---- */
.level-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
}
.level-header {
    text-align: center;
    margin-bottom: 1.25rem;
}
.level-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.level-features li {
    padding: 0.3rem 0;
    font-size: 0.88rem;
}
.level-note {
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

/* Route highlights */
.route-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}
.route-highlights li {
    padding: 0.5rem 0;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border-light);
}
.route-highlights li:last-child {
    border-bottom: none;
}

/* ---- Contact Page ---- */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-card h5 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}
.contact-info-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}
.hours-row.closed {
    color: var(--primary);
    font-weight: 600;
}

.social-follow .social-links.large a {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
}

/* ---- Bike Fit Wizard ---- */
.wizard-progress {
    position: relative;
}
.progress-track {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 1rem;
}
.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.5s ease;
    width: 0%;
}
.progress-steps {
    display: flex;
    justify-content: space-between;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}
.progress-step.active .step-circle {
    background: var(--primary);
    color: #fff;
}
.progress-step.completed .step-circle {
    background: var(--green);
    color: #fff;
}
.step-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}
.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.wizard-step {
    display: none;
}
.wizard-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

/* Measurement sliders */
.measurement-display {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
    min-width: 75px;
    text-align: center;
    letter-spacing: 1px;
}
.form-range::-webkit-slider-thumb {
    background: var(--primary);
}
.form-range::-moz-range-thumb {
    background: var(--primary);
}
.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(212,43,43,0.2);
}

/* Body SVG */
.body-visual {
    display: flex;
    justify-content: center;
}
.body-svg {
    max-width: 250px;
    width: 100%;
}

/* Activity Cards */
.activity-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.activity-card i {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}
.activity-card h5 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.activity-card p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0;
}
.activity-card:hover {
    border-color: var(--primary);
}
.activity-card.active {
    border-color: var(--primary);
    background: var(--primary-light);
}
.activity-card.active i {
    color: var(--primary);
}

/* Budget Cards */
.budget-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    min-width: 160px;
}
.budget-card:hover {
    border-color: var(--primary);
}
.budget-card.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}
.budget-range {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}
.budget-label {
    font-size: 0.8rem;
    color: var(--text-light);
}
.budget-card.active .budget-label {
    color: rgba(255,255,255,0.8);
}

/* Feature Toggles */
.feature-toggle {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 50px;
}
.feature-toggle:hover {
    border-color: var(--primary);
}
.feature-toggle.active {
    border-color: var(--green);
    background: var(--green-light);
    color: var(--green);
}
.feature-toggle i {
    font-size: 1.1rem;
}
.feature-toggle span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Result Cards */
.result-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.result-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.result-card.top-pick {
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green);
}
.top-pick-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    z-index: 2;
}
.result-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.result-category {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.result-body {
    padding: 1.25rem;
}
.result-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.confidence-score {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.confidence-bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}
.confidence-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}
.confidence-label {
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: right;
}
.result-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.result-spec {
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
}
.result-spec span {
    color: var(--text-light);
}
.result-spec strong {
    color: var(--text);
}
.geo-svg {
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 0 auto;
}
.stock-indicator {
    font-size: 0.82rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.in-stock {
    color: var(--green);
}
.low-stock {
    color: var(--accent);
}
.out-stock {
    color: var(--text-light);
}

/* ---- Legal Content ---- */
.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}
.legal-content h3 {
    font-size: 1.05rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}
.legal-content p {
    font-size: 0.92rem;
    color: var(--text-light);
}
.legal-content ul {
    padding-left: 1.5rem;
}
.legal-content li {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 3rem;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 2px;
}
.footer-wheel {
    color: var(--primary);
}
.footer-description {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}
.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
}
.footer-contact a {
    color: rgba(255,255,255,0.5);
}
.footer-contact a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 0.5rem;
}
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 0;
}
.footer-copyright {
    color: rgba(255,255,255,0.4);
}
.footer-legal-link {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}
.footer-legal-link:hover {
    color: var(--primary);
}
.footer-attribution {
    color: rgba(255,255,255,0.3);
}
.footer-attribution:hover {
    color: rgba(255,255,255,0.5);
}

/* ---- Cookie Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    z-index: 9999;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}
.cookie-link {
    color: var(--primary);
    text-decoration: underline;
}
.cookie-link:hover {
    color: #fff;
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ---- Form Styles ---- */
.form-control, .form-select {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 0.6rem 0.9rem;
    font-size: 0.92rem;
    transition: var(--transition);
    min-height: 44px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212,43,43,0.12);
}

/* ---- Animations ---- */
@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Wheel rotation on hover for bike card images */
.bike-card-image::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    border-top-color: transparent;
    opacity: 0;
    transition: var(--transition);
}
.bike-card:hover .bike-card-image::after {
    opacity: 1;
    animation: wheelSpin 1.5s linear infinite;
}

/* Gear shift transition on nav links */
.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* ---- Mobile Responsive ---- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: var(--radius-lg);
        margin-top: 0.5rem;
        box-shadow: var(--shadow-lg);
    }
    .navbar-collapse .nav-link {
        color: var(--text);
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .navbar-collapse .nav-cta {
        margin-top: 0.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-stats {
        gap: 1rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .bike-fit-banner {
        padding: 1.25rem;
    }
    .budget-card {
        min-width: 130px;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 575px) {
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Road pattern texture for bg-alt */
.bg-alt {
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(0,0,0,0.01) 80px,
        rgba(0,0,0,0.01) 82px
    );
}
