/* ==========================================================================
   FAST RENT A BIKE — Premium Dark Mode Theme Styling
   ========================================================================== */

:root {
    --bike-bg: #030712;
    --bike-surface: #0b0f19;
    --bike-cyan: #00E5FF;
    --bike-cyan-glow: rgba(0, 229, 255, 0.25);
    --bike-gold: #FFB700;
    --bike-gold-glow: rgba(255, 183, 0, 0.25);
    --bike-white: #ffffff;
    --bike-muted: #94a3b8;
    --bike-border: rgba(0, 229, 255, 0.12);
    --bike-border-hover: rgba(0, 229, 255, 0.35);
}

/* Page Base */
.bike-page-wrapper {
    background-color: var(--bike-bg);
    color: var(--bike-white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 5rem;    /* Cancel the global pt-20 (5rem) added by the <main> layout wrapper */
    margin-top: -5rem;
}

/* Ambient Radial Glows */
.bike-ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}
.bike-ambient-glow--cyan {
    background: radial-gradient(circle, var(--bike-cyan) 0%, transparent 70%);
    top: 5%;
    left: -200px;
}
.bike-ambient-glow--gold {
    background: radial-gradient(circle, var(--bike-gold) 0%, transparent 70%);
    top: 45%;
    right: -200px;
}
.bike-ambient-glow--cyan2 {
    background: radial-gradient(circle, var(--bike-cyan) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
}

/* Hero Section */
.bike-hero {
    position: relative;
    padding: 0 1.5rem 5rem;
    overflow: hidden;
    z-index: 1;
}

.bike-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Hero Split Grid */
.bike-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

.bike-hero__col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
}

/* Breadcrumbs */
.bike-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-wrap: wrap;
}

.bike-hero__breadcrumbs a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.bike-hero__breadcrumbs a:hover {
    color: var(--bike-cyan);
}

.bike-breadcrumb-icon {
    width: 12px;
    height: 12px;
    opacity: 0.4;
    color: #fff;
}

.bike-breadcrumb-active {
    color: var(--bike-cyan);
    font-weight: 800;
}

/* Meta Row: Kicker Badge & Mini Logo */
.bike-hero__meta-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.bike-logo-mini {
    height: 32px;
    display: flex;
    align-items: center;
}

.bike-logo-mini-img {
    height: 100%;
    width: auto;
    border-radius: 8px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.08);
}

.bike-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.bike-hero__title span.cyan-text {
    color: var(--bike-cyan);
    text-shadow: 0 0 20px var(--bike-cyan-glow);
}

.bike-hero__title span.gold-text {
    color: var(--bike-gold);
    text-shadow: 0 0 20px var(--bike-gold-glow);
}

.bike-hero__subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--bike-muted);
    max-width: 620px;
    line-height: 1.6;
    margin: 0;
}

.bike-hero__cta-wrap {
    margin-top: 0.5rem;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bike-cyan) 0%, #00a2d1 100%);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 30px var(--bike-cyan-glow);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.4);
    border-color: rgba(0, 229, 255, 0.4);
    background: linear-gradient(135deg, #00f0ff 0%, #00b0e0 100%);
}

.book-btn:active {
    transform: translateY(-1px);
}

/* Interactive Canvas Column */
.bike-hero__col-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.bike-interactive-canvas-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    background: rgba(11, 15, 25, 0.45);
    border: 1px solid var(--bike-border);
    border-radius: 32px;
    padding: 1.5rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bike-interactive-canvas-container:hover {
    border-color: var(--bike-border-hover);
    box-shadow: 0 35px 80px -15px rgba(0, 229, 255, 0.08), 0 0 40px rgba(0, 229, 255, 0.03);
}

/* Glow under the scooty */
.canvas-ambient-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--bike-cyan) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(40px);
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.bike-frame-canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.bike-frame-canvas.loaded {
    opacity: 1;
}

/* Scroll Instruction Overlay */
.canvas-scroll-guide {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.canvas-scroll-guide.fade-out {
    opacity: 0;
}

.guide-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--bike-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

/* Elegant Mouse Scroll Animation */
.mouse-scroll-icon {
    width: 20px;
    height: 32px;
    border: 2px solid var(--bike-cyan);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
}

.mouse-scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--bike-cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScrollAnim 1.6s ease-in-out infinite;
}

@keyframes mouseScrollAnim {
    0% {
        top: 6px;
        opacity: 1;
    }
    50% {
        top: 16px;
        opacity: 0;
    }
    100% {
        top: 6px;
        opacity: 1;
    }
}

/* Canvas Loader */
.canvas-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    background: var(--bike-surface);
    transition: opacity 0.5s ease;
}

.canvas-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 229, 255, 0.1);
    border-top: 3px solid var(--bike-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-size: 0.8rem;
    color: var(--bike-muted);
    font-weight: 500;
}

@media (max-width: 991px) {
    .bike-hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .bike-hero__col-left {
        align-items: center;
        text-align: center;
    }
    
    .bike-hero__breadcrumbs {
        justify-content: center;
    }
    
    .bike-hero__meta-row {
        justify-content: center;
    }
    
    .bike-interactive-canvas-container {
        max-width: 400px;
    }
}

/* Badge System */
.bike-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    color: var(--bike-cyan);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Value Props Grid */
.bike-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
}

.bike-prop-card {
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bike-border);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.bike-prop-card:hover {
    transform: translateY(-5px);
    border-color: var(--bike-border-hover);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.08);
}

.bike-prop-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--bike-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.bike-prop-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bike-white);
}

.bike-prop-card p {
    font-size: 0.85rem;
    color: var(--bike-muted);
    line-height: 1.5;
}

/* Sections Shared */
.bike-section {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.bike-section-title-wrap {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bike-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-top: 0.5rem;
}

/* Fleet Cards Grid */
.bike-fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bike-card {
    background: var(--bike-surface);
    border: 1px solid var(--bike-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bike-card:hover {
    transform: translateY(-8px);
    border-color: var(--bike-border-hover);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
}

.bike-card__img-wrap {
    position: relative;
    height: 200px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bike-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s ease;
}

.bike-card:hover .bike-card__img-wrap img {
    transform: scale(1.06);
    opacity: 1;
}

.bike-card__tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(3, 7, 18, 0.8);
    border: 1px solid var(--bike-border-hover);
    color: var(--bike-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    backdrop-filter: blur(4px);
}

.bike-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
}

.bike-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bike-white);
}

.bike-card__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bike-spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--bike-muted);
}

.bike-spec-item i {
    width: 14px;
    height: 14px;
    color: var(--bike-cyan);
}

.bike-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.bike-card__price {
    display: flex;
    flex-direction: column;
}

.bike-card__price-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--bike-muted);
    letter-spacing: 0.05em;
}

.bike-card__price-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bike-gold);
}

.bike-card__price-val span {
    font-size: 0.78rem;
    color: var(--bike-muted);
    font-weight: 500;
}

.bike-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--bike-cyan) 0%, #00a2d1 100%);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.bike-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--bike-cyan-glow);
}

/* Steps System */
.bike-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.bike-step-card {
    text-align: center;
    position: relative;
}

.bike-step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    border: 2px solid var(--bike-cyan);
    color: var(--bike-cyan);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px var(--bike-cyan-glow);
}

.bike-step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--bike-white);
}

.bike-step-card p {
    font-size: 0.88rem;
    color: var(--bike-muted);
    line-height: 1.6;
}

/* Requirements Card */
.bike-reqs-card {
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(3, 7, 18, 0.9) 100%);
    border: 1px solid var(--bike-border);
    border-radius: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .bike-reqs-card {
        grid-template-columns: 1.2fr 1fr;
    }
}

.bike-reqs-card__left h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.bike-reqs-card__left p {
    color: var(--bike-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bike-reqs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bike-reqs-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--bike-white);
}

.bike-reqs-list li i {
    color: var(--bike-cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.bike-req-badge-box {
    background: rgba(255, 183, 0, 0.05);
    border: 1px dashed rgba(255, 183, 0, 0.3);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.bike-req-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bike-gold);
}

.bike-req-badge-item i {
    width: 20px;
    height: 20px;
}

/* Booking Forms */
.bike-booking-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .bike-booking-wrap {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.bike-form-container {
    background: var(--bike-surface);
    border: 1px solid var(--bike-border);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.bike-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.bike-form-desc {
    color: var(--bike-muted);
    font-size: 0.82rem;
    margin-bottom: 2rem;
}

.bike-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bike-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 480px) {
    .bike-form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bike-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bike-input-group label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--bike-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 2px;
}

.bike-input-group input,
.bike-input-group select {
    background: rgba(3, 7, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--bike-white);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.25s ease;
    width: 100%;
    box-sizing: border-box;
}

.bike-input-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300E5FF' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 2.5rem;
}

.bike-input-group input:focus,
.bike-input-group select:focus {
    border-color: var(--bike-cyan);
    box-shadow: 0 0 0 3px var(--bike-cyan-glow);
    background: rgba(3, 7, 18, 0.9);
}

.bike-submit-btn {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.95rem;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.2);
    margin-top: 0.5rem;
}

.bike-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #20ba5a 0%, #1da850 100%);
}

.bike-booking-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.bike-info-card {
    background: linear-gradient(135deg, rgba(255, 183, 0, 0.05) 0%, rgba(255, 183, 0, 0.02) 100%);
    border: 1px solid rgba(255, 183, 0, 0.15);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.bike-info-card h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--bike-gold);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.bike-info-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bike-info-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bike-info-contact-item i {
    color: var(--bike-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.bike-info-contact-item__title {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.bike-info-contact-item__val {
    font-size: 0.82rem;
    color: var(--bike-muted);
}

.bike-info-contact-item__val a {
    color: var(--bike-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.bike-info-contact-item__val a:hover {
    color: var(--bike-gold);
}

/* Animations */
@keyframes bikeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 580px) {
    .bike-logo-container {
        border-radius: 16px;
    }
    .bike-logo-img {
        border-radius: 16px;
    }
}

/* ==========================================================================
   Scooter 360° Rotation Section Styling - Centered 3D Showcase (No Cards)
   ========================================================================== */
.bike-scrollytelling-section {
    position: relative;
    background-color: var(--bike-bg);
    width: 100%;
    z-index: 2;
    padding-bottom: 2rem;
    margin-top: -2rem; /* Pull up to reduce gap with title */
}

.scrolly-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 80vh; /* Set height to 80vh to allow enough room for 460px sticky item */
}

/* Center visual sticky container */
.scrolly-visual {
    position: sticky;
    top: 100px; /* Centered nicely below header */
    height: 520px; /* Increased height to accommodate larger circle and visual */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.scooter-viewer-container {
    position: relative;
    width: 480px; /* Increased from 360px for a larger, more prominent framing circle */
    height: 480px; /* Increased from 360px */
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, rgba(11, 15, 25, 0.3) 70%);
    border: 1px solid rgba(0, 229, 255, 0.18); /* Slightly enhanced border opacity */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.08), inset 0 0 35px rgba(0, 229, 255, 0.04);
}

.scooter-rotate-canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(2.05); /* Adjusted from 2.65 to fit beautifully within the larger 480px circle */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.85));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
}

.scooter-rotate-canvas.loaded {
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .scrolly-container {
        height: 50vh;
    }
    
    .scrolly-visual {
        top: 80px;
        height: 320px;
    }

    .scooter-viewer-container {
        width: 280px; /* Increased from 220px for mobile */
        height: 280px; /* Increased from 220px for mobile */
    }

    .scooter-rotate-canvas {
        transform: scale(1.9); /* Adjusted from 2.4 to balance with the 280px circle on mobile */
    }
}

/* ==========================================================================
   Mobile-only Sticky Booking CTA Bar
   ========================================================================== */

/* Hidden by default on all sizes */
.bike-mobile-sticky-cta {
    display: none;
}

/* Show only on mobile screens */
@media (max-width: 767px) {
    .bike-mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px)) 1rem;
        background: linear-gradient(to top, rgba(3, 7, 18, 0.98) 80%, rgba(3, 7, 18, 0));
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        justify-content: center;
        align-items: center;
        pointer-events: none;
        transform: translateY(0);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        opacity: 1;
    }

    /* Hide the bar once the booking form is in view */
    .bike-mobile-sticky-cta.bike-cta-hidden {
        transform: translateY(110%);
        opacity: 0;
        pointer-events: none;
    }

    .bike-mobile-sticky-btn {
        pointer-events: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        max-width: 360px;
        background: linear-gradient(135deg, #FFB700 0%, #e8a000 100%);
        color: #000;
        font-weight: 800;
        font-size: 0.95rem;
        padding: 0.95rem 1.5rem;
        border-radius: 16px;
        text-decoration: none;
        box-shadow: 0 8px 28px rgba(255, 183, 0, 0.45), 0 2px 8px rgba(0,0,0,0.35);
        border: 1px solid rgba(255, 183, 0, 0.3);
        letter-spacing: 0.01em;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bike-mobile-sticky-btn:active {
        transform: scale(0.97);
        box-shadow: 0 4px 14px rgba(255, 183, 0, 0.35);
    }
}
