  /* MAIN BUTTON + CARD CONTEXT (demo card for context) */
        .chalo-demo-container {
            max-width: 500px;
            width: 100%;
            background: white;
            border-radius: 2rem;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            transition: transform 0.2s ease;
        }

        .chalo-demo-card {
            padding: 2rem 1.8rem;
            text-align: center;
        }

        .chalo-scooty-icon {
            font-size: 4rem;
            color: #8CC739;
            background: rgba(140, 199, 57, 0.1);
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 1.2rem;
        }

        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e2a32;
            margin-bottom: 0.5rem;
        }

        .chalo-sub {
            color: #5e6f8d;
            margin-bottom: 1.8rem;
            font-weight: 500;
        }

        /* CHECK PRICE BUTTON (main CTA) */
        .chalo-btn-check-price {
                 background: #3d3d3d;
    border: none;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 8px 18px rgba(140, 199, 57, 0.35);
    letter-spacing: -0.2px;
        }

        .chalo-btn-check-price i {
            font-size: 1.2rem;
            transition: transform 0.2s;
        }

        .chalo-btn-check-price:hover {
            background: #76b12e;
            transform: scale(1.02);
            box-shadow: 0 12px 24px rgba(140, 199, 57, 0.45);
        }

        .chalo-btn-check-price:hover i {
            transform: translateX(4px);
        }

        .chalo-btn-check-price:active {
            transform: scale(0.98);
        }

        /* ---------- MODAL OVERLAY (wow experience) ---------- */
        .chalo-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.25s, opacity 0.25s ease;
            padding: 1rem;
        }

        .chalo-modal-overlay.chalo-active {
            visibility: visible;
            opacity: 1;
        }

        /* Modal Container - premium glassmorphic + wow animation */
        .chalo-wow-modal {
            background: white;
            max-width: 560px;
            width: 100%;
            border-radius: 2.5rem;
            overflow: hidden;
            position: relative;
            transform: scale(0.92) translateY(20px);
            transition: transform 0.35s cubic-bezier(0.21, 1.11, 0.35, 1.05);
            box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
        }

        .chalo-active .chalo-wow-modal {
            transform: scale(1) translateY(0);
        }

        /* Modal Header with close */
        .chalo-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 1.8rem;
            background: #ffffff;
            border-bottom: 1px solid #f0f0f0;
        }

        .chalo-modal-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1e2a32 0%, #2c3e40 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
        }

        .chalo-close-modal {
            background: #ff1000;
    color: #ffffff;
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 40px;
            font-size: 1.2rem;
            cursor: pointer;
            
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chalo-close-modal:hover {
            background: #e6e9f0;
            color: #1f2a3a;
            transform: rotate(90deg);
        }

        /* Modal body: image + model + battery pricing */
        .chalo-modal-body {
            padding: 1.2rem 1.8rem 2rem;
            overflow: hidden;
        }
        .hkwds{
                display: flex;
    /* flex-direction: column-reverse; */
        }

        .chalo-scooty-image-area {
           text-align: center;
    /* margin: 0.5rem 0; */
    position: relative;
        }

        .chalo-scooty-img {
            max-width: 85%;
            height: auto;
            filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.15));
            transition: transform 0.4s ease;
        }

        .chalo-wow-modal:hover .chalo-scooty-img {
            transform: scale(1.02);
        }

        .chalo-model-name {
            text-align: center;
            font-size: 1.9rem;
            font-weight: 800;
            margin: 0.5rem 0 0.2rem;
            color: #1f2c38;
            letter-spacing: -0.5px;
        }

        .chalo-model-tag {
            text-align: center;
            color: #8CC739;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(140, 199, 57, 0.12);
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            margin-bottom: 1.2rem;
        }

        /* battery price grid — responsive, clean */
        .chalo-price-grid {
              display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 1.2rem 0 0.8rem;
    height: 200px;
    padding: 10px 15px;
    overflow-y: scroll;
        }



.chalo-price-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8CC739, #70a12b);
 
}


        .chalo-price-card {
                background: #e1e6da;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    transition: all 0.2s;
    /* border: 1px solid #8bc34a8f; */
    box-shadow: 3px 3px 3px #141b0b70;
        }

        .chalo-price-card:hover {
             background: #e8f2dc;
            background: white;
            border-color: #8CC73960;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.17);
            transform: translateX(5px);
        }

        .chalo-battery-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chalo-battery-icon {
            font-size: 1.6rem;
            color: #8CC739;
            width: 36px;
            text-align: center;
        }

        .chalo-battery-type {
            font-weight: 700;
            font-size: 0.9rem;
            color: #2d3e50;
        }

        .chalo-battery-range {
            font-size: 0.75rem;
            color: #6f7c91;
            display: block;
            font-weight: 400;
        }

        .chalo-price-value {
            font-weight: 800;
            font-size: 1rem;
            color: #1e2a32;
            letter-spacing: -0.3px;
        }

        .chalo-price-value small {
            font-size: 0.75rem;
            font-weight: 500;
            color: #6b7c93;
        }

        


        .enquiry-btn:hover {
            background: #8CC739;
            color: #1a2a1a;
        }

        /* responsive adjustments */
        @media (max-width: 550px) {
            .chalo-modal-body {
                padding: 1rem 1.2rem 1.6rem;
            }
            .chalo-model-name {
                font-size: 1.5rem;
            }
            .chalo-price-value {
                font-size: 1.2rem;
            }
            .chalo-battery-type {
                font-size: 0.95rem;
            }
            .chalo-btn-check-price {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            .chalo-wow-modal {
                border-radius: 1.8rem;
            }
        }

        /* extra wow micro-interaction */
        @keyframes chalo-gentlePop {
            0% { transform: scale(0.96); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .chalo-price-card {
            animation: chalo-gentlePop 0.3s ease backwards;
        }
        .chalo-price-card:nth-child(1) { animation-delay: 0.05s; }
        .chalo-price-card:nth-child(2) { animation-delay: 0.1s; }
        .chalo-price-card:nth-child(3) { animation-delay: 0.15s; }
        
          /* MAIN BUTTON + CARD CONTEXT (demo card for context) */
        .chalo-smart-pro-demo-container {
            max-width: 500px;
            width: 100%;
            background: white;
            border-radius: 2rem;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            transition: transform 0.2s ease;
        }

        .chalo-smart-pro-demo-card {
            padding: 2rem 1.8rem;
            text-align: center;
        }

        .chalo-smart-pro-scooty-icon {
            font-size: 4rem;
            color: #8CC739;
            background: rgba(140, 199, 57, 0.1);
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 1.2rem;
        }

        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e2a32;
            margin-bottom: 0.5rem;
        }

        .chalo-smart-pro-sub {
            color: #5e6f8d;
            margin-bottom: 1.8rem;
            font-weight: 500;
        }

        /* CHECK PRICE BUTTON (main CTA) */
        .chalo-smart-pro-btn-check-price {
           background: #3d3d3d;
    border: none;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 8px 18px rgba(140, 199, 57, 0.35);
    letter-spacing: -0.2px;
        }

        .chalo-smart-pro-btn-check-price i {
            font-size: 1.2rem;
            transition: transform 0.2s;
        }

        .chalo-smart-pro-btn-check-price:hover {
            background: #76b12e;
            transform: scale(1.02);
            box-shadow: 0 12px 24px rgba(140, 199, 57, 0.45);
        }

        .chalo-smart-pro-btn-check-price:hover i {
            transform: translateX(4px);
        }

        .chalo-smart-pro-btn-check-price:active {
            transform: scale(0.98);
        }

        /* ---------- MODAL OVERLAY (wow experience) ---------- */
        .chalo-smart-pro-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.25s, opacity 0.25s ease;
            padding: 1rem;
        }

        .chalo-smart-pro-modal-overlay.chalo-smart-pro-active {
            visibility: visible;
            opacity: 1;
        }

        /* Modal Container - premium glassmorphic + wow animation */
        .chalo-smart-pro-wow-modal {
            background: white;
            max-width: 560px;
            width: 100%;
            border-radius: 2.5rem;
            overflow: hidden;
            position: relative;
            transform: scale(0.92) translateY(20px);
            transition: transform 0.35s cubic-bezier(0.21, 1.11, 0.35, 1.05);
            box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
        }

        .chalo-smart-pro-active .chalo-smart-pro-wow-modal {
            transform: scale(1) translateY(0);
        }

        /* Modal Header with close */
        .chalo-smart-pro-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 1.8rem;
            background: #ffffff;
            border-bottom: 1px solid #f0f0f0;
        }

        .chalo-smart-pro-modal-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1e2a32 0%, #2c3e40 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
        }

        .chalo-smart-pro-close-modal {
           background: #ff1000;
    color: #ffffff;
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 40px;
            font-size: 1.2rem;
            cursor: pointer;
         
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chalo-smart-pro-close-modal:hover {
            background: #e6e9f0;
            color: #1f2a3a;
            transform: rotate(90deg);
        }

        /* Modal body: image + model + battery pricing */
        .chalo-smart-pro-modal-body {
            padding: 1.2rem 1.8rem 2rem;
            overflow: hidden;
        }
        .hkwds{
                display: flex;
    /* flex-direction: column-reverse; */
        }

        .chalo-smart-pro-scooty-image-area {
           text-align: center;
    /* margin: 0.5rem 0; */
    position: relative;
        }

        .chalo-smart-pro-scooty-img {
            max-width: 85%;
            height: auto;
            filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.15));
            transition: transform 0.4s ease;
        }

        .chalo-smart-pro-wow-modal:hover .chalo-smart-pro-scooty-img {
            transform: scale(1.02);
        }

        .chalo-smart-pro-model-name {
            text-align: center;
            font-size: 1.9rem;
            font-weight: 800;
            margin: 0.5rem 0 0.2rem;
            color: #1f2c38;
            letter-spacing: -0.5px;
        }

        .chalo-smart-pro-model-tag {
            text-align: center;
            color: #8CC739;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(140, 199, 57, 0.12);
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            margin-bottom: 1.2rem;
        }

        /* battery price grid — responsive, clean */
        .chalo-smart-pro-price-grid {
              display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 1.2rem 0 0.8rem;
    height: 200px;
    padding: 10px 15px;
    overflow-y: scroll;
        }



.chalo-smart-pro-price-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8CC739, #70a12b);
 
}


        .chalo-smart-pro-price-card {
                background: #e1e6da;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    transition: all 0.2s;
    /* border: 1px solid #8bc34a8f; */
    box-shadow: 3px 3px 3px #141b0b70;
        }

        .chalo-smart-pro-price-card:hover {
             background: #e8f2dc;
            background: white;
            border-color: #8CC73960;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.17);
            transform: translateX(5px);
        }

        .chalo-smart-pro-battery-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chalo-smart-pro-battery-icon {
            font-size: 1.6rem;
            color: #8CC739;
            width: 36px;
            text-align: center;
        }

        .chalo-smart-pro-battery-type {
            font-weight: 700;
            font-size: 0.9rem;
            color: #2d3e50;
        }

        .chalo-smart-pro-battery-range {
            font-size: 0.75rem;
            color: #6f7c91;
            display: block;
            font-weight: 400;
        }

        .chalo-smart-pro-price-value {
            font-weight: 800;
            font-size: 1rem;
            color: #1e2a32;
            letter-spacing: -0.3px;
        }

        .chalo-smart-pro-price-value small {
            font-size: 0.75rem;
            font-weight: 500;
            color: #6b7c93;
        }

        


        .enquiry-btn:hover {
            background: #8CC739;
            color: #1a2a1a;
        }

        /* responsive adjustments */
        @media (max-width: 550px) {
            .chalo-smart-pro-modal-body {
                padding: 1rem 1.2rem 1.6rem;
            }
            .chalo-smart-pro-model-name {
                font-size: 1.5rem;
            }
            .chalo-smart-pro-price-value {
                font-size: 1.2rem;
            }
            .chalo-smart-pro-battery-type {
                font-size: 0.95rem;
            }
            .chalo-smart-pro-btn-check-price {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            .chalo-smart-pro-wow-modal {
                border-radius: 1.8rem;
            }
        }

        /* extra wow micro-interaction */
        @keyframes chalo-smart-pro-gentlePop {
            0% { transform: scale(0.96); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .chalo-smart-pro-price-card {
            animation: chalo-smart-pro-gentlePop 0.3s ease backwards;
        }
        .chalo-smart-pro-price-card:nth-child(1) { animation-delay: 0.05s; }
        .chalo-smart-pro-price-card:nth-child(2) { animation-delay: 0.1s; }
        .chalo-smart-pro-price-card:nth-child(3) { animation-delay: 0.15s; }
        
          /* MAIN BUTTON + CARD CONTEXT (demo card for context) */
        .chalo-smart-eco-demo-container {
            max-width: 500px;
            width: 100%;
            background: white;
            border-radius: 2rem;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            transition: transform 0.2s ease;
        }

        .chalo-smart-eco-demo-card {
            padding: 2rem 1.8rem;
            text-align: center;
        }

        .chalo-smart-eco-scooty-icon {
            font-size: 4rem;
            color: #8CC739;
            background: rgba(140, 199, 57, 0.1);
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 1.2rem;
        }

        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e2a32;
            margin-bottom: 0.5rem;
        }

        .chalo-smart-eco-sub {
            color: #5e6f8d;
            margin-bottom: 1.8rem;
            font-weight: 500;
        }

        /* CHECK PRICE BUTTON (main CTA) */
        .chalo-smart-eco-btn-check-price {
             background: #3d3d3d;
    border: none;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 8px 18px rgba(140, 199, 57, 0.35);
    letter-spacing: -0.2px;
        }

        .chalo-smart-eco-btn-check-price i {
            font-size: 1.2rem;
            transition: transform 0.2s;
        }

        .chalo-smart-eco-btn-check-price:hover {
            background: #76b12e;
            transform: scale(1.02);
            box-shadow: 0 12px 24px rgba(140, 199, 57, 0.45);
        }

        .chalo-smart-eco-btn-check-price:hover i {
            transform: translateX(4px);
        }

        .chalo-smart-eco-btn-check-price:active {
            transform: scale(0.98);
        }

        /* ---------- MODAL OVERLAY (wow experience) ---------- */
        .chalo-smart-eco-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.25s, opacity 0.25s ease;
            padding: 1rem;
        }

        .chalo-smart-eco-modal-overlay.chalo-smart-eco-active {
            visibility: visible;
            opacity: 1;
        }

        /* Modal Container - premium glassmorphic + wow animation */
        .chalo-smart-eco-wow-modal {
            background: white;
            max-width: 560px;
            width: 100%;
            border-radius: 2.5rem;
            overflow: hidden;
            position: relative;
            transform: scale(0.92) translateY(20px);
            transition: transform 0.35s cubic-bezier(0.21, 1.11, 0.35, 1.05);
            box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
        }

        .chalo-smart-eco-active .chalo-smart-eco-wow-modal {
            transform: scale(1) translateY(0);
        }

        /* Modal Header with close */
        .chalo-smart-eco-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 1.8rem;
            background: #ffffff;
            border-bottom: 1px solid #f0f0f0;
        }

        .chalo-smart-eco-modal-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1e2a32 0%, #2c3e40 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
        }

        .chalo-smart-eco-close-modal {
           background: #ff1000;
    color: #ffffff;
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 40px;
            font-size: 1.2rem;
            cursor: pointer;
         
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chalo-smart-eco-close-modal:hover {
            background: #e6e9f0;
            color: #1f2a3a;
            transform: rotate(90deg);
        }

        /* Modal body: image + model + battery pricing */
        .chalo-smart-eco-modal-body {
            padding: 1.2rem 1.8rem 2rem;
            overflow: hidden;
        }
        .hkwds{
                display: flex;
    /* flex-direction: column-reverse; */
        }

        .chalo-smart-eco-scooty-image-area {
           text-align: center;
    /* margin: 0.5rem 0; */
    position: relative;
        }

        .chalo-smart-eco-scooty-img {
            max-width: 85%;
            height: auto;
            filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.15));
            transition: transform 0.4s ease;
        }

        .chalo-smart-eco-wow-modal:hover .chalo-smart-eco-scooty-img {
            transform: scale(1.02);
        }

        .chalo-smart-eco-model-name {
            text-align: center;
            font-size: 1.9rem;
            font-weight: 800;
            margin: 0.5rem 0 0.2rem;
            color: #1f2c38;
            letter-spacing: -0.5px;
        }

        .chalo-smart-eco-model-tag {
            text-align: center;
            color: #8CC739;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(140, 199, 57, 0.12);
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            margin-bottom: 1.2rem;
        }

        /* battery price grid — responsive, clean */
        .chalo-smart-eco-price-grid {
              display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 1.2rem 0 0.8rem;
    height: 200px;
    padding: 10px 15px;
    overflow-y: scroll;
        }



.chalo-smart-eco-price-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8CC739, #70a12b);
 
}


        .chalo-smart-eco-price-card {
                background: #e1e6da;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    transition: all 0.2s;
    /* border: 1px solid #8bc34a8f; */
    box-shadow: 3px 3px 3px #141b0b70;
        }

        .chalo-smart-eco-price-card:hover {
             background: #e8f2dc;
            background: white;
            border-color: #8CC73960;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.17);
            transform: translateX(5px);
        }

        .chalo-smart-eco-battery-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chalo-smart-eco-battery-icon {
            font-size: 1.6rem;
            color: #8CC739;
            width: 36px;
            text-align: center;
        }

        .chalo-smart-eco-battery-type {
            font-weight: 700;
            font-size: 0.9rem;
            color: #2d3e50;
        }

        .chalo-smart-eco-battery-range {
            font-size: 0.75rem;
            color: #6f7c91;
            display: block;
            font-weight: 400;
        }

        .chalo-smart-eco-price-value {
            font-weight: 800;
            font-size: 1rem;
            color: #1e2a32;
            letter-spacing: -0.3px;
        }

        .chalo-smart-eco-price-value small {
            font-size: 0.75rem;
            font-weight: 500;
            color: #6b7c93;
        }

        


        .enquiry-btn:hover {
            background: #8CC739;
            color: #1a2a1a;
        }

        /* responsive adjustments */
        @media (max-width: 550px) {
            .chalo-smart-eco-modal-body {
                padding: 1rem 1.2rem 1.6rem;
            }
            .chalo-smart-eco-model-name {
                font-size: 1.5rem;
            }
            .chalo-smart-eco-price-value {
                font-size: 1.2rem;
            }
            .chalo-smart-eco-battery-type {
                font-size: 0.95rem;
            }
            .chalo-smart-eco-btn-check-price {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            .chalo-smart-eco-wow-modal {
                border-radius: 1.8rem;
            }
        }

        /* extra wow micro-interaction */
        @keyframes chalo-smart-eco-gentlePop {
            0% { transform: scale(0.96); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .chalo-smart-eco-price-card {
            animation: chalo-smart-eco-gentlePop 0.3s ease backwards;
        }
        .chalo-smart-eco-price-card:nth-child(1) { animation-delay: 0.05s; }
        .chalo-smart-eco-price-card:nth-child(2) { animation-delay: 0.1s; }
        .chalo-smart-eco-price-card:nth-child(3) { animation-delay: 0.15s; }
        
            /* MAIN BUTTON + CARD CONTEXT (demo card for context) */
        .chalo-smart-plus-demo-container {
            max-width: 500px;
            width: 100%;
            background: white;
            border-radius: 2rem;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            transition: transform 0.2s ease;
        }

        .chalo-smart-plus-demo-card {
            padding: 2rem 1.8rem;
            text-align: center;
        }

        .chalo-smart-plus-scooty-icon {
            font-size: 4rem;
            color: #8CC739;
            background: rgba(140, 199, 57, 0.1);
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 1.2rem;
        }

        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e2a32;
            margin-bottom: 0.5rem;
        }

        .chalo-smart-plus-sub {
            color: #5e6f8d;
            margin-bottom: 1.8rem;
            font-weight: 500;
        }

        /* CHECK PRICE BUTTON (main CTA) */
        .chalo-smart-plus-btn-check-price {
             background: #3d3d3d;
    border: none;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 8px 18px rgba(140, 199, 57, 0.35);
    letter-spacing: -0.2px;
        }

        .chalo-smart-plus-btn-check-price i {
            font-size: 1.2rem;
            transition: transform 0.2s;
        }

        .chalo-smart-plus-btn-check-price:hover {
            background: #76b12e;
            transform: scale(1.02);
            box-shadow: 0 12px 24px rgba(140, 199, 57, 0.45);
        }

        .chalo-smart-plus-btn-check-price:hover i {
            transform: translateX(4px);
        }

        .chalo-smart-plus-btn-check-price:active {
            transform: scale(0.98);
        }

        /* ---------- MODAL OVERLAY (wow experience) ---------- */
        .chalo-smart-plus-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.25s, opacity 0.25s ease;
            padding: 1rem;
        }

        .chalo-smart-plus-modal-overlay.chalo-smart-plus-active {
            visibility: visible;
            opacity: 1;
        }

        /* Modal Container - premium glassmorphic + wow animation */
        .chalo-smart-plus-wow-modal {
            background: white;
            max-width: 560px;
            width: 100%;
            border-radius: 2.5rem;
            overflow: hidden;
            position: relative;
            transform: scale(0.92) translateY(20px);
            transition: transform 0.35s cubic-bezier(0.21, 1.11, 0.35, 1.05);
            box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
        }

        .chalo-smart-plus-active .chalo-smart-plus-wow-modal {
            transform: scale(1) translateY(0);
        }

        /* Modal Header with close */
        .chalo-smart-plus-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 1.8rem;
            background: #ffffff;
            border-bottom: 1px solid #f0f0f0;
        }

        .chalo-smart-plus-modal-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1e2a32 0%, #2c3e40 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
        }

        .chalo-smart-plus-close-modal {
           background: #ff1000;
    color: #ffffff;
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 40px;
            font-size: 1.2rem;
            cursor: pointer;
          
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chalo-smart-plus-close-modal:hover {
            background: #e6e9f0;
            color: #1f2a3a;
            transform: rotate(90deg);
        }

        /* Modal body: image + model + battery pricing */
        .chalo-smart-plus-modal-body {
            padding: 1.2rem 1.8rem 2rem;
            overflow: hidden;
        }
        .hkwds{
                display: flex;
    /* flex-direction: column-reverse; */
        }

        .chalo-smart-plus-scooty-image-area {
           text-align: center;
    /* margin: 0.5rem 0; */
    position: relative;
        }

        .chalo-smart-plus-scooty-img {
            max-width: 85%;
            height: auto;
            filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.15));
            transition: transform 0.4s ease;
        }

        .chalo-smart-plus-wow-modal:hover .chalo-smart-plus-scooty-img {
            transform: scale(1.02);
        }

        .chalo-smart-plus-model-name {
            text-align: center;
            font-size: 1.9rem;
            font-weight: 800;
            margin: 0.5rem 0 0.2rem;
            color: #1f2c38;
            letter-spacing: -0.5px;
        }

        .chalo-smart-plus-model-tag {
            text-align: center;
            color: #8CC739;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(140, 199, 57, 0.12);
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            margin-bottom: 1.2rem;
        }

        /* battery price grid — responsive, clean */
        .chalo-smart-plus-price-grid {
              display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 1.2rem 0 0.8rem;
    height: 200px;
    padding: 10px 15px;
    overflow-y: scroll;
        }



.chalo-smart-plus-price-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8CC739, #70a12b);
 
}


        .chalo-smart-plus-price-card {
                background: #e1e6da;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    transition: all 0.2s;
    /* border: 1px solid #8bc34a8f; */
    box-shadow: 3px 3px 3px #141b0b70;
        }

        .chalo-smart-plus-price-card:hover {
             background: #e8f2dc;
            background: white;
            border-color: #8CC73960;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.17);
            transform: translateX(5px);
        }

        .chalo-smart-plus-battery-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chalo-smart-plus-battery-icon {
            font-size: 1.6rem;
            color: #8CC739;
            width: 36px;
            text-align: center;
        }

        .chalo-smart-plus-battery-type {
            font-weight: 700;
            font-size: 0.9rem;
            color: #2d3e50;
        }

        .chalo-smart-plus-battery-range {
            font-size: 0.75rem;
            color: #6f7c91;
            display: block;
            font-weight: 400;
        }

        .chalo-smart-plus-price-value {
            font-weight: 800;
            font-size: 1rem;
            color: #1e2a32;
            letter-spacing: -0.3px;
        }

        .chalo-smart-plus-price-value small {
            font-size: 0.75rem;
            font-weight: 500;
            color: #6b7c93;
        }

        


        .enquiry-btn:hover {
            background: #8CC739;
            color: #1a2a1a;
        }

        /* responsive adjustments */
        @media (max-width: 550px) {
            .chalo-smart-plus-modal-body {
                padding: 1rem 1.2rem 1.6rem;
            }
            .chalo-smart-plus-model-name {
                font-size: 1.5rem;
            }
            .chalo-smart-plus-price-value {
                font-size: 1.2rem;
            }
            .chalo-smart-plus-battery-type {
                font-size: 0.95rem;
            }
            .chalo-smart-plus-btn-check-price {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            .chalo-smart-plus-wow-modal {
                border-radius: 1.8rem;
            }
        }

        /* extra wow micro-interaction */
        @keyframes chalo-smart-plus-gentlePop {
            0% { transform: scale(0.96); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .chalo-smart-plus-price-card {
            animation: chalo-smart-plus-gentlePop 0.3s ease backwards;
        }
        .chalo-smart-plus-price-card:nth-child(1) { animation-delay: 0.05s; }
        .chalo-smart-plus-price-card:nth-child(2) { animation-delay: 0.1s; }
        .chalo-smart-plus-price-card:nth-child(3) { animation-delay: 0.15s; }
        
        @media (max-width: 600px) {
    .chalo-price-card,.chalo-smart-plus-price-card,.chalo-smart-eco-price-card,.chalo-smart-pro-price-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap:5px;
    }
    .chalo-price-value,.chalo-smart-plus-price-value,.chalo-smart-eco-price-value,.chalo-smart-pro-price-value {
        width: 100%;
        text-align: end;
    }
    
    

        }