:root {
    --primary-blue: #1C8EF0;
    --dark-navy: #0A1F35;
    --pure-white: #ffffff;
    --gray-text: #666666;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--pure-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 50px;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
}

.site-header.is-sticky {
    position: fixed;
    background-color: var(--pure-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 50px;
    animation: slideDown 0.4s forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.thsn-sticky-logo {
    display: none;
}

.site-header.is-sticky .thsn-main-logo {
    display: none;
}

.site-header.is-sticky .thsn-sticky-logo {
    display: block;
    width: 100px;
}

.thsn-main-logo {
    width: 125px;
}


.main-navigation .menu {
    display: flex;
    gap: 30px;
    margin-bottom: 0px !important;
}

.menu-item {
    position: relative;
}

.menu-item a {
    /*font-size: 16px;*/
    font-weight: 700;
    color: var(--pure-white);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    transition: var(--transition-smooth);
}

.site-header.is-sticky .menu-item a {
    color: var(--dark-navy);
}

.menu-item a:hover,
.menu-item a.active {
    color: var(--primary-blue);
}

.site-header.is-sticky .menu-item a:hover {
    color: var(--primary-blue);
}


.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--pure-white, #ffffff);
    min-width: 280px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth, all 0.4s cubic-bezier(0.25, 1, 0.5, 1));
    padding: 15px 0;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    list-style: none;
    width: 100%;
}

.sub-menu li a {
    color: var(--dark-navy, #0A1F35) !important;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sub-menu li a:hover {
    background-color: rgba(28, 142, 240, 0.06);
    color: var(--primary-blue, #1C8EF0) !important;
    padding-left: 28px;
}

.sub-menu::-webkit-scrollbar {
    width: 6px;
}

.sub-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 0 12px 0;
}

.sub-menu::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.sub-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue, #1C8EF0);
}

.sub-menu li a:hover {
    background-color: rgba(28, 142, 240, 0.1);
    color: var(--primary-blue) !important;
    padding-left: 30px;
}

.thsn-right-box {
    display: flex;
    align-items: center;
    gap: 35px;
}

.search-cart-group {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--pure-white);
}

.site-header.is-sticky .search-cart-group {
    color: var(--dark-navy);
}

.search-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
}

.divider {
    width: 1px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.3);
}

.site-header.is-sticky .divider {
    background-color: rgba(0, 0, 0, 0.1);
}

.cart-wrapper {
    position: relative;
    font-size: 20px;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--dark-navy);
    color: var(--pure-white);
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.site-header.is-sticky .cart-count {
    background-color: var(--primary-blue);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-quote {
    background-color: var(--dark-navy);
    color: var(--pure-white) !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-quote:hover {
    background-color: var(--pure-white);
    color: var(--dark-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--pure-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.site-header.is-sticky .nav-menu-toggle span {
    background-color: var(--dark-navy);
}

.right-sticky-widgets {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.widget-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-navy);
    color: var(--pure-white, #ffffff);
    border-radius: 4px 0 0 4px;
    font-size: 18px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.widget-btn.promo-btn {
    background-color: #4a90e2;
}

.widget-share-wrapper {
    position: relative;
    display: inline-block;
}

.social-hover-stack {
    position: absolute;
    bottom: 45px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.widget-share-wrapper:hover .social-hover-stack {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


.social-mini-btn {
    width: 45px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    border-radius: 4px 0 0 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.social-mini-btn:hover {
    transform: translateX(-4px);
    filter: brightness(1.1);
}

.social-mini-btn.facebook {
    background-color: #1877F2;
}

.social-mini-btn.twitter {
    background-color: #000000;
}

.social-mini-btn.instagram {
    background-color: #E1306C;
}

.social-mini-btn.linkedin {
    background-color: #0077B5;
}

.social-mini-btn.youtube {
    background-color: #FF0000;
}

.thsn-slider-area {
    background:
        radial-gradient(circle at 85% 20%, rgba(28, 142, 240, 0.35) 0%, rgba(28, 142, 240, 0) 55%),
        linear-gradient(135deg, #123C5F 0%, #0A1F35 55%, #071522 100%),
        url('../images/backgrounds/navy-shade.jpg');
    background-blend-mode: normal, normal, overlay;
    background-size: cover, cover, cover;
    background-position: center, center, center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-wrapper-engine {
    display: flex;
    width: 100%;
    min-height: 100vh;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide {
    min-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-slider-container {
    width: 100%;
    padding: 0 10%;
}

.flex-hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

/* Content Engines */
.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1.15;
    margin-bottom: 40px;
}

.highlight-dark {
    color: var(--primary-blue);
}

.specs-container {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-icon {
    font-size: 38px;
    color: var(--primary-blue);
}

.spec-details {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1.2;
}

.spec-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.btn-book-now {
    background-color: var(--primary-blue);
    color: var(--pure-white);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    padding: 18px 45px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-book-now:hover {
    background-color: var(--pure-white);
    color: var(--dark-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.image-wrapper-relative {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-bg-circle {
    display: none;
}

.ev-scooter-img {
    position: relative;
    width: 110%;
    max-width: 750px;
    z-index: 3;
    object-fit: contain;
}

.slider-controls-dots {
    position: absolute;
    bottom: 40px;
    left: 10%;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot-trigger {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot-trigger.is-active {
    background-color: var(--dark-navy);
    transform: scale(1.2);
}

.thsn-mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    height: 100%;
    background-color: var(--pure-white);
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
    display: flex;
    flex-direction: column;
}

.thsn-mobile-menu-drawer.is-open {
    right: 0;
}

.drawer-header {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-wrapper.dark {
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.currency-text {
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
}

.search-btn-mobile {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--dark-navy);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

/* Mobile Dropdowns */
.mobile-nav-list {
    display: flex;
    flex-direction: column;
}

.mobile-menu-item {
    border-bottom: 1px solid #f9f9f9;
}

.item-link-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 25px;
}

.item-link-row a {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: 0.5px;
}

.trigger-sub {
    font-size: 14px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.mobile-menu-item.active .trigger-sub {
    transform: rotate(180deg);
}

.mobile-sub-menu {
    background-color: #fcfcfc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    padding-left: 15px;
}

.mobile-menu-item.active .mobile-sub-menu {
    max-height: 300px;
    overflow-y: scroll;
}

.mobile-sub-menu li a {
    display: block;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-text);
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1400px) {
    .main-navigation {
        display: none;
    }

    .nav-menu-toggle {
        display: flex;
    }

    .hero-slider-container {
        padding: 0 5%;
    }
}

@media (max-width: 991px) {
    .flex-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content-col {
        order: 2;
    }

    .hero-image-col {
        order: 1;
        margin-top: 20px;
    }

    .hero-title {
        font-size: 44px;
        margin-bottom: 25px;
    }

    .specs-container {
        justify-content: center;
        gap: 20px;
    }

    .ev-scooter-img {
        width: 85%;
    }

    .site-header {
        padding: 20px 25px;
    }

    .site-header.is-sticky {
        padding: 12px 25px;
    }

    .slider-controls-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .specs-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 35px;
    }

    .btn-quote {
        display: none;
    }

    .thsn-mobile-menu-drawer {
        width: 100%;
    }

    .hero-slide {
        padding-top: 100px;
        padding-bottom: 40px;
    }
}

.elesco-text-mobile {
    font-size: 18px;
    font-weight: 700;
    color: #0A1F35;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Quicksand', sans-serif;
    transition: color 0.3s ease;
}

.elesco-text-mobile:hover {
    color: #1C8EF0;
}

.scroll-to-top-btn {
    position: fixed;
    right: 25px;
    bottom: 90px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7EC1FF, #1C8EF0);
    color: #0A1F35;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 9998;
}

.scroll-to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .scroll-to-top-btn {
        right: 15px;
        bottom: 70px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

.strip-mail-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.modal-header>p {
    font-size: 18px;
    margin-top: 0;
    font-weight: 700;
}

.modal-header {
    padding: 0 15px;
    color: #fff;
    background-color: #0B5FAE;
    height: 46px;
}

button.close {

    width: 51px;
    height: 51px;
    line-height: 41px;
    border: none;
    background: none;

}

.send_p {
    line-height: 22px;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.send_p a {
    font-size: 19px;
}


.strip-mail-link:hover {
    transform: translateY(-1px);
}

.strip-mail-link:hover .strip-text strong {
    color: var(--primary-blue, #1C8EF0);
}

.master-corporate-footer {
    background: linear-gradient(160deg, #0A1F35 0%, #081217 100%);
    padding: 80px 0 0 0;
    font-family: 'Quicksand', sans-serif;
    position: relative;
    overflow: hidden;
    /* margin-top: 100px; */
}

.master-corporate-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1C8EF0 25%, #7EC1FF 50%, #1C8EF0 75%, transparent);
    border-radius: 0 0 3px 3px;
}

.footer-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: grid;
    grid-template-columns: 0.9fr 2.1fr;
    gap: 50px;
}

.footer-brand-plain {
    padding: 0;
    position: relative;
    z-index: 5;
}

.footer-logo-wrap {
    margin-bottom: 20px;
}

.footer-main-logo {
    max-width: 110px;
    height: auto;
}

.brand-footer-intro-text {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.65;
    margin: 0;
    font-weight: 500;
}


.footer-links-columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px 0;
    position: relative;
}


.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #b5b5b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    transition: padding-left 0.25s ease, color 0.25s ease;
}

.footer-links-list li a i {
    font-size: 8px;
    color: #7EC1FF;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links-list li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-links-list li a:hover i {
    transform: translateX(2px) scale(1.3);
    color: #1C8EF0;
}

.contact-address-para {
    font-size: 14px;
    color: #b5b5b8;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.contact-support-prompt {
    font-size: 13px;
    color: #77777a;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.footer-highlight-phone {
    font-size: 22px;
    font-weight: 700;
    color: #1C8EF0;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.footer-highlight-phone:hover {
    color: #ffffff;
}

.footer-info-strip {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 4;
}

.strip-container {
    background-color: #ffffff;
    width: calc(70% - 15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 40px;
    box-shadow: 0 -18px 45px rgba(10, 31, 53, 0.08);
    border-radius: 20px 20px 0 0;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.strip-icon-box {
    font-size: 18px;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.strip-text span {
    display: block;
    font-size: 12px;
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.strip-text strong {
    font-size: 15px;
    color: #0A1F35;
    font-weight: 700;
}

.strip-divider {
    width: 1px;
    height: 35px;
    background-color: #eaeaea;
}

.footer-bottom-bar-wrapper {
    border-top: 1px solid rgba(126, 193, 255, 0.08);
    padding: 30px 0;
    margin-top: 20px;
    background-color: #071013;
}

.bottom-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-legal-links a {
    color: #77777a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-legal-links a:hover {
    color: #ffffff;
}

.inline-bullet {
    color: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
    font-size: 12px;
}

.copyright-text-line {
    font-size: 13px;
    color: #555558;
    margin: 10px 0 0 0;
    font-weight: 500;
}

.footer-social-profiles-box {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(126, 193, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-icon-btn:hover {
    background: linear-gradient(135deg, #1C8EF0, #7EC1FF);
    border-color: transparent;
    color: #0A1F35;
    transform: translateY(-3px) scale(1.06);
}


/* ==========================================================================
   Responsive Contact Matrix Setup (Desktop Side & Mobile Bottom Bar)
   ========================================================================== */

.fixed-left-contact-panel {
    position: fixed;
    right: 25px;
    bottom: 5%;
    /*transform: translateY(-50%);*/
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

.d-desktop-flex {
    display: flex !important;
}

.modal-dialog {
    max-width: 300px;
}

.mobile-bottom-action-bar {
    display: none;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.call-action {
    background: linear-gradient(135deg, #7EC1FF, #1C8EF0);
}

.whatsapp-action {
    background-color: #25d366;
}

.mail-action {
    background-color: #0A1F35;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    left: 0;
    top: 0;
    z-index: -1;
    animation: floatingPulse 2s infinite ease-out;
    opacity: 0.4;
}

@keyframes floatingPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.floating-btn:hover {
    transform: scale(1.12) translateX(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

/* ==========================================================================
   Mobile Responsive Media Query (Transforming into image_b2c620.png)
   ========================================================================== */
@media (max-width: 768px) {
    .fixed-left-contact-panel {
        position: static;
        transform: none;
    }

    .d-desktop-flex {
        display: none !important;
    }

    .mobile-bottom-action-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 55px;
        background-color: #ffffff;
        z-index: 99999;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    }

    .mobile-action-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #ffffff;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        font-family: 'Quicksand', sans-serif;
        transition: background 0.2s ease;
        border: none;
    }

    .mobile-action-btn i {
        font-size: 16px;
    }


    .mobile-call {
        background-color: #2e2e2e;
    }

    .mobile-whatsapp {
        background-color: #5cb85c;

        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-enquiry {
        background-color: #7cb342;
    }

    .mobile-action-btn:active {
        opacity: 0.9;
    }

    body {
        padding-bottom: 55px;
    }
}

@media (max-width: 1024px) {
    .footer-main-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand-plain {
        margin-top: 0;
    }

    .footer-info-strip {
        display: none;
    }

    .master-corporate-footer {
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .footer-links-columns-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .bottom-bar-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .fixed-left-contact-panel {
        right: 15px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .send_p {
        line-height: 21px;

        font-size: 18px;

    }

    .send_p a {
        font-size: 18px;
    }

    .modal-body form input,
    textarea {
        border: 1px solid #000000;
        padding: 7px 16px;
        color: black;
        border-radius: 4px;
        font-size: 17px;
    }

    .modal-header>p {
        font-size: 18px;

    }

    .modal-header {

        height: 48px;
    }


}

.modern-contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(28, 142, 240, 0.25);
    border-radius: 20px;
    padding: 50px 45px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 1px rgba(28, 142, 240, 0.05), 0 25px 60px rgba(0, 0, 0, 0.3);
    font-family: 'Quicksand', sans-serif;
    position: relative;
    z-index: 3;
    margin-left: auto;
}

.contact-form-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7EC1FF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background-color: #1C8EF0;
    border-radius: 50%;
    display: inline-block;
}

.contact-form-heading {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    margin: 12px 0 10px 0;
}

.contact-form-subtext {
    color: #b8c2c4;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 480px;
}

.modern-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.modern-field {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0 16px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.modern-field:focus-within {
    border-color: #1C8EF0;
    background: rgba(255, 255, 255, 0.09);
}

.modern-field i {
    color: #7EC1FF;
    font-size: 16px;
    margin-right: 10px;
}

.modern-field input,
.modern-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    padding: 14px 0;
}

.modern-field input::placeholder,
.modern-field textarea::placeholder {
    color: #9aa5a7;
}

.modern-field-full {
    grid-column: 1 / -1;
    align-items: flex-start;
    padding: 14px 16px;
}

.modern-field-full i {
    margin-top: 4px;
}

.modern-field textarea {
    resize: none;
    height: 90px;
    padding: 0;
}

.modern-submit-btn {
    grid-column: 1 / -1;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    margin-top: 8px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #0A1F35;
    background: linear-gradient(135deg, #7EC1FF, #1C8EF0);
    padding: 14px 34px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(28, 142, 240, 0.35);
}

.modern-social-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.modern-social-row span {
    color: #b8c2c4;
    font-size: 14px;
    font-weight: 600;
}

.modern-social-row .list-inline {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.modern-social-row .list-inline-item a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-social-row .list-inline-item a:hover {
    background: linear-gradient(135deg, #1C8EF0, #7EC1FF);
    border-color: transparent;
    color: #0A1F35;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .modern-contact-card {
        padding: 35px 24px;
    }

    .modern-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-heading {
        font-size: 26px;
    }
}

:root {
    --primary-blue: #1C8EF0;
    --dark-navy: #0A1F35;
    --gray-text: #555555;
    --font-quicksand: 'Quicksand', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mission-section {
    padding: 90px 0;
    background-color: #fcfcfc;
    font-family: var(--font-quicksand);
    overflow: hidden;
}

.mission-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: start;
}

.mission-image-col {
    position: relative;
    width: 100%;
    align-self: start;
}

.image-overlap-wrapper {
    position: relative;
    width: 100%;
    display: block;
    min-height: 480px;
}

/* Single Image Box Design */
.img-back-box {
    position: relative;
    width: 100%;
    z-index: 1;
}

.border-radius-custom {
    border-radius: 80px 0 80px 0 !important;
    width: 100%;
    height: 480px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.clients-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background-color: var(--primary-blue);
    width: 115px;
    height: 115px;
    border-radius: 50%;
    padding: 6px;
    z-index: 4;
    box-shadow: 0 10px 25px rgba(28, 142, 240, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #ffffff;
}

.badge-inner {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.badge-percentage {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    margin-top: 1px;
    text-transform: capitalize;
}

.mission-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.dot-green {
    width: 7px;
    height: 7px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: inline-block;
}

.mission-title {
    font-size: 40px;
    color: var(--dark-navy);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
}

.mission-rich-description {
    font-size: 15.5px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.mission-rich-description p {
    margin-bottom: 16px;
}

.mission-rich-description strong {
    color: var(--dark-navy);
    font-weight: 700;
}

.btn-read-more {
    background-color: var(--dark-navy);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 38px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-read-more:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 142, 240, 0.3);
}

@media (max-width: 1200px) {
    .mission-title {
        font-size: 34px;
    }

    .image-overlap-wrapper {
        min-height: 420px;
    }

    .border-radius-custom {
        height: 420px;
    }
}

@media (max-width: 991px) {
    .mission-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-image-col {
        max-width: 650px;
        margin: 0 auto;
    }

    .image-overlap-wrapper {
        min-height: 420px;
    }

    .border-radius-custom {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-title {
        font-size: 26px;
    }

    .image-overlap-wrapper {
        min-height: 300px;
    }

    .border-radius-custom {
        height: 300px;
        border-radius: 40px 0 40px 0 !important;
    }

    .clients-badge {
        width: 95px;
        height: 95px;
        bottom: -20px;
        right: 15px;
        top: 22%;
    }

    .badge-percentage {
        font-size: 22px;
    }

    .badge-text {
        font-size: 11px;
    }
}

.stats-counter-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Quicksand', sans-serif;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(28, 142, 240, 0.12);
    border-color: rgba(28, 142, 240, 0.2);
}

.counter-number-wrapper {
    font-size: 56px;
    font-weight: 800;
    color: #0A1F35;
    line-height: 1.1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

.stat-card:hover .counter-number-wrapper {
    color: #1C8EF0;
}

.counter-suffix {
    color: #1C8EF0;
    margin-left: 2px;
}

.stat-description {
    font-size: 16px;
    color: #555555;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 991px) {
    .counter-number-wrapper {
        font-size: 46px;
    }

    .stats-container {
        gap: 20px;
    }

    .stat-card {
        padding: 30px 15px;
    }
}

@media (max-width: 767px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-counter-section {
        padding: 50px 0;
    }
}

.video-presentation-section {
    padding: 60px 0;
    padding-top: 0px;
    background-color: #ffffff;
}


.video-player-wrapper {
    position: relative;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    background-color: #000000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 6.8;
}

.video-poster-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 5;
    transition: opacity 0.4s ease;
}

.poster-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.watch-video-btn {
    position: absolute;
    bottom: 40px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 24px 10px 12px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.play-icon-box {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue, #1C8EF0);
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.watch-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: sans-serif;
}

.video-poster-layer:hover .play-icon-box {
    transform: scale(1.1);
}

.video-poster-layer:hover .watch-video-btn {
    background: rgba(255, 255, 255, 0.25);
}

.iframe-target-container {
    width: 100%;
    height: 100%;
}

.iframe-target-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 991px) {
    .video-player-wrapper {
        aspect-ratio: 16 / 9;
        border-radius: 24px;
    }

    .watch-video-btn {
        bottom: 25px;
        left: 30px;
    }
}

@media (max-width: 575px) {
    .watch-video-btn {
        bottom: 15px;
        left: 20px;
        padding: 8px 16px 8px 10px;
    }

    .play-icon-box {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .watch-text {
        font-size: 11px;
    }
}

.corporate-product-range {
    background-image: linear-gradient(rgb(10 15 25 / 55%), rgb(10 15 25 / 55%)), url('../images/backgrounds/road-scooty-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0 !important;
}

.section-main-heading {
    font-size: 28px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #1C8EF0;
    border-radius: 2px;
}

.inner-custom-design {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.inner-custom-design::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 31, 53, 0) 45%, rgba(10, 31, 53, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 18px;
}

.inner-custom-design:hover::after {
    opacity: 1;
}

.product-grid-img {
    border: none !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.inner-custom-design:hover {
    transform: translateY(-8px) scale(1.02);
}

.inner-custom-design:hover .product-grid-img {
    box-shadow: 0 18px 38px rgba(28, 142, 240, 0.25);
}

.instagram-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-premium-badge i {
    color: #1C8EF0;
    font-size: 16px;
}

.instagram-premium-badge:hover {
    background: #1C8EF0;
    border-color: #1C8EF0;
    color: #ffffff !important;
    box-shadow: 0 5px 20px rgba(28, 142, 240, 0.3);
}

.instagram-premium-badge:hover i {
    color: #ffffff;
}

.advantages-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    overflow: hidden;
}


.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .sub-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0A1F35;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.section-header .green-dot {
    width: 8px;
    height: 8px;
    background-color: #1C8EF0;
    border-radius: 50%;
    display: inline-block;
}

.section-header .main-title {
    font-size: 38px;
    font-weight: 700;
    color: #0A1F35;
    line-height: 1.25;
}

.advantages-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    align-items: center;
    gap: 20px;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.feature-items {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.left-feature-col .feature-items {
    text-align: right;
    justify-content: flex-end;
}

.feature-icon-box {
    width: 54px;
    height: 54px;
    background-color: #1C8EF0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    border-radius: 4px 16px 4px 16px;
    box-shadow: 0 4px 15px rgba(28, 142, 240, 0.2);
}

.feature-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0A1F35;
    margin: 0 0 8px 0;
}

.feature-text p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.product-center-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-scooter-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .advantages-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-center-col {
        order: -1;
        margin-bottom: 20px;
    }

    .left-feature-col .feature-item {
        text-align: left;
        justify-content: flex-start;
        flex-direction: row-reverse;
    }

    .section-header .main-title {
        font-size: 30px;
    }
}

.blog-news-section {

    padding: 70px 0;
    padding-bottom: 80px;
    background-color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    overflow: hidden;
}


.blog-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.blog-news-header .sub-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0A1F35;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-news-header .green-dot {
    width: 8px;
    height: 8px;
    background-color: #1C8EF0;
    border-radius: 50%;
    display: inline-block;
}

.blog-news-header .main-title {
    font-size: 38px;
    font-weight: 700;
    color: #0A1F35;
    line-height: 1.25;
    margin: 0;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 28px;
    border: 1px solid #1C8EF0;
    background-color: transparent;
    color: #0A1F35;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.view-more-btn .btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover {
    background-color: #0A1F35;
    border-color: #0A1F35;
    color: #ffffff;
    transform: translateY(-2px);
}

.view-more-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card-item {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 24px rgba(10, 31, 53, 0.08);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.card-img-box {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background-color: #eef2f6;
}

.card-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 31, 53, 0) 55%, rgba(10, 31, 53, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

.blog-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #ffffff;
    color: #1C8EF0;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.card-body-content {
    padding: 28px 26px 30px 26px;
    background-color: #ffffff;
    position: relative;
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.news-card-item:hover .card-body-content {
    border-top-color: #1C8EF0;
}

.blog-meta-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}

.meta-item {
    font-size: 13px;
    color: #777777;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.meta-item .green-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(28, 142, 240, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.green-icon {
    color: #1C8EF0;
    font-size: 14px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    min-height: 56px;
}

.blog-card-title a {
    color: #0A1F35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 31, 53, 0.16), 0 0 0 1px rgba(28, 142, 240, 0.25);
}

.news-card-item:hover .blog-cover-img {
    transform: scale(1.08);
}

.blog-card-title a:hover {
    color: #1C8EF0;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1C8EF0;
    text-decoration: none;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
    color: #0A1F35;
}

@media (max-width: 991px) {
    .blog-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .blog-news-header .main-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .card-img-box {
        height: 220px;
    }

    .blog-news-header .main-title {
        font-size: 26px;
    }
}

.roads-cta-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    overflow: hidden;
}

.roads-cta-container {
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 30px;
    align-items: center;
}

.cta-green-card {
    background-color: #1C8EF0;
    padding: 55px 60px;
    border-radius: 50px 0px 50px 0px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(28, 142, 240, 0.15);
}


.watermark-vector-icon {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 160px;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.cta-heading {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-paragraph {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}


.cta-action-btn-box {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.cta-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    background-color: #0A1F35;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-arrow-line {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Hover Interactive Configurations */
.cta-book-btn:hover {
    background-color: #ffffff;
    color: #0A1F35;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-book-btn:hover .btn-arrow-line {
    transform: translateX(5px);
}


.cta-image-frame-box {
    width: 100%;
    height: 100%;
    min-height: 215px;
    display: flex;
}

.cta-ride-img {
    object-fit: cover;
    border-radius: 0px 50px 0px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease;
}

.cta-image-frame-box:hover .cta-ride-img {
    transform: scale(1.03);
}


@media (max-width: 1199px) {
    .cta-green-card {
        padding: 45px 40px;
        gap: 30px;
    }

    .cta-heading {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .roads-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-green-card {
        padding: 50px;
    }

    .cta-image-frame-box {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .cta-green-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
        border-radius: 35px 0 35px 0;
    }

    .cta-image-frame-box {
        border-radius: 0 35px 0 35px;
        min-height: 240px;
    }

    .cta-heading {
        font-size: 28px;
    }

    .cta-book-btn {
        width: 100%;
        justify-content: space-between;
    }
}

.testimonials-section {
    padding: 60px 0 60px 0;
    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(255 255 255 / 0%));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* ============================================= */

    font-family: 'Quicksand', sans-serif;
    position: relative;
    overflow: hidden;
}


/* Header Centering Formatting rules */
.testimonial-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-header .sub-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666666;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.testimonial-header .green-dot {
    width: 8px;
    height: 8px;
    background-color: #1C8EF0;
    border-radius: 50%;
    display: inline-block;
}

.testimonial-header .main-title {
    font-size: 36px;
    font-weight: 700;
    color: #0A1F35;
}

/* Slider Inner Framework Window */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 40px 80px;
}

.slides-inner-container {
    position: relative;
    min-height: 240px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-slide.active-slide {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

/* Absolute Floating Background Quote Marks Styling */
.quote-icon-bg {
    font-size: 140px;
    font-family: serif;
    line-height: 1;
    color: rgba(28, 142, 240, 0.09);
    /* Soft dynamic matching green quote look */
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
    z-index: 1;
}

.testimonial-desc {
    font-size: 17px;
    color: #555555;
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto 25px auto;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Star Matrix Controls */
.rating-stars {
    color: #ffb703;
    /* Perfect golden star render colors */
    font-size: 16px;
    display: flex;
    gap: 4px;
    margin-bottom: 30px;
}

/* User Identity Card Meta Boxes */
.client-meta-box {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    /* Square block card rounding rule */
    object-fit: cover;
    background-color: #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.client-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0A1F35;
    margin: 0 0 3px 0;
}

.client-details span {
    font-size: 13px;
    color: #1C8EF0;
    font-weight: 600;
}

/* Nav Arrows Custom Structural Design Rules from image_bd2040.jpg */
.nav-arrow {
    position: absolute;
    top: 38%;
    width: 44px;
    height: 44px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Asymmetric leaf corners styling precisely matching the uploaded image mockup */
.prev-arrow {
    left: 0;
    background-color: #0A1F35;
    border-radius: 50%;
}

.next-arrow {
    right: 0;
    background-color: #1C8EF0;
    border-radius: 50%;
}

.nav-arrow:hover {
    background-color: #0A1F35;
    color: #1C8EF0;
    transform: translateY(-3px);
}

.prev-arrow:hover {
    background-color: #1C8EF0;
    color: #ffffff;
}

/* Decorative Divider Section Layout rule */
.section-divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.06) 80%, transparent);
    margin: 40px 0 50px 0;
}

/* Brand Grid Layout Wrapper strip */
.brands-logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.75;
}

.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-width: 120px;
    transition: all 0.3s ease;
}

.brand-item img {
    max-width: 110px;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(100%) opacity(70%);
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.06);
}

/* Responsive Adaptive Fluid Queries Rules */
@media (max-width: 991px) {
    .testimonial-slider-wrapper {
        padding: 40px 40px;
    }

    .testimonial-header .main-title {
        font-size: 30px;
    }

    .brands-logo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .brand-item {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .nav-arrow {
        top: auto;
        bottom: -20px;
    }

    .prev-arrow {
        left: calc(50% - 55px);
    }

    .next-arrow {
        right: calc(50% - 55px);
    }

    .testimonial-slider-wrapper {
        padding: 30px 10px 60px 10px;
    }

    .testimonial-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .brands-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonial-header .main-title {
        font-size: 24px;
    }

    .modal-dialog {
        position: relative;
        width: auto;
        margin: .5rem;
        pointer-events: none;
        margin: 0 auto;
    }
}

:root {
    --primary-blue: #1C8EF0;
    --dark-void: #0A1F35;
    --pure-white: #ffffff;
    --font-quicksand: 'Quicksand', sans-serif;
    --transition-core: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-slider-section {
    padding: 60px 20px;
    background-color: var(--dark-void);
    font-family: var(--font-quicksand);
    overflow: hidden;
}

.project-bg-panel {
    background-color: transparent;
    border-radius: 16px;
    padding: 0;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
}

/* Header Matrix */
.slider-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.gallery-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--pure-white);
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.tag-dot {
    width: 7px;
    height: 7px;
    background-color: var(--primary-blue);
    border-radius: 50%;
}

.section-main-title {
    font-size: 42px;
    color: var(--pure-white);
    font-weight: 700;
    margin: 10px 0 0 0;
}

.custom-nav-triggers {
    display: flex;
    gap: 1px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.nav-trigger-btn {
    width: 55px;
    height: 55px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-core);
    outline: none;
}

.nav-trigger-btn.prev-btn {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--pure-white);
}

.nav-trigger-btn.next-btn {
    background-color: var(--primary-blue);
    color: var(--pure-white);
    border-radius: 0 11px 11px 0;
}

.nav-trigger-btn:hover {
    background-color: var(--primary-blue);
    color: var(--pure-white);
}

.project-card {
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.card-media-box {
    position: relative;
    width: 100%;
    height: 320px;
    /* Exact scale height */
    border-radius: 24px;
    overflow: hidden;
    background-color: #eee;
}

.card-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 20, 25, 0.78);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    transition: var(--transition-core);
    z-index: 2;
}

.project-card:hover .card-hover-overlay {
    opacity: 1;
}

.project-card:hover .card-media-box img {
    transform: scale(1.08);
}

.zoom-plus-trigger {
    width: 45px;
    height: 45px;
    background-color: var(--pure-white);
    color: var(--dark-void);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transform: translateY(-20px);
    transition: var(--transition-core);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: auto;
    margin-top: 30px;
}

.project-card:hover .zoom-plus-trigger {
    transform: translateY(0);
}

.zoom-plus-trigger:hover {
    background-color: var(--primary-blue);
    color: var(--pure-white);
}

.hover-meta-content {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: var(--transition-core);
}

.project-card:hover .hover-meta-content {
    transform: translateY(0);
}

.category-subtext {
    font-size: 13px;
    color: #cccccc;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    margin-bottom: 6px;
}

.product-hyperlink-title {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
}

.product-hyperlink-title a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-hyperlink-title a:hover {
    color: var(--primary-blue);
}

.project-bg-panel .swiper {
    overflow: hidden;
    padding: 10px 4px 24px;
}

.elesco-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 20, 25, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.elesco-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-box {
    max-width: 85%;
    max-height: 80%;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.elesco-lightbox-overlay.active .lightbox-content-box {
    transform: scale(1);
}

.lightbox-content-box img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-close-btn:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .project-bg-panel {
        padding: 0;
    }

    .section-main-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .slider-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .lightbox-close-btn {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
}

.ab-page { font-family: 'Quicksand', sans-serif; overflow: hidden; }

.ab-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.ab-eyebrow-dark { color: #0B5FAE; }
.ab-eyebrow-dot {
    width: 7px;
    height: 7px;
    background-color: #1C8EF0;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(28,142,240,0.18);
}

.ab-section-title {
    font-size: 38px;
    font-weight: 700;
    color: #0A1F35;
    margin: 12px 0 18px 0;
    line-height: 1.25;
}
.ab-section-title span { color: #1C8EF0; }
.ab-section-title.ab-center { margin-left: auto; margin-right: auto; }

/* -------- Buttons -------- */
.ab-btn-primary {
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(28,142,240,0.3);
    transition: all 0.35s cubic-bezier(0.25,1,0.5,1);
}
.ab-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(28,142,240,0.42);
    color: #ffffff;
}
.ab-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 50px;
    border: 2px solid rgba(10,31,53,0.12);
    color: #0A1F35;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}
.ab-btn-ghost:hover { border-color: #1C8EF0; color: #1C8EF0; }
.ab-btn-ghost-light { border-color: rgba(255,255,255,0.25); color: #ffffff; }
.ab-btn-ghost-light:hover { border-color: #7EC1FF; color: #7EC1FF; }
.ab-btn-light { box-shadow: 0 12px 30px rgba(0,0,0,0.35); }

/* ================= HERO BANNER ================= */
.ab-hero-banner {
    position: relative;
    background-image: url('../images/backgrounds/road-scooty-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 60px 0;
    overflow: hidden;
}
.ab-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,31,53,0.92) 10%, rgba(11,95,174,0.75) 60%, rgba(10,31,53,0.9) 100%);
}
.ab-hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(126,193,255,0.35);
    filter: blur(1px);
    animation: abFloat 6s ease-in-out infinite;
}
.ab-hero-particles span:nth-child(1){ width:10px; height:10px; top:20%; left:8%; animation-delay:0s; }
.ab-hero-particles span:nth-child(2){ width:14px; height:14px; top:65%; left:15%; animation-delay:1s; }
.ab-hero-particles span:nth-child(3){ width:8px; height:8px; top:35%; left:85%; animation-delay:2s; }
.ab-hero-particles span:nth-child(4){ width:16px; height:16px; top:75%; left:80%; animation-delay:1.5s; }
.ab-hero-particles span:nth-child(5){ width:11px; height:11px; top:15%; left:50%; animation-delay:2.5s; }
@keyframes abFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-25px); opacity: 1; }
}
.ab-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
}
.ab-hero-inner .ab-eyebrow { justify-content: center; width: 100%; }
.ab-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 12px 0 10px 0;
    letter-spacing: -0.5px;
}
.ab-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin-bottom: 18px;
}

/* ================= STORY SECTION ================= */
.ab-story-section { padding: 100px 0; background-color: #ffffff; }
.ab-story-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
}
.ab-story-para { color: #555555; line-height: 1.8; font-size: 15.5px; margin-bottom: 16px; }
.ab-check-list { list-style: none; padding: 0; margin: 26px 0 32px 0; display: flex; flex-direction: column; gap: 14px; }
.ab-check-list li { display: flex; align-items: center; gap: 12px; font-weight: 700; color: #0A1F35; font-size: 15px; }
.ab-check-list li i { color: #1C8EF0; font-size: 19px; }
.ab-story-cta { display: flex; flex-wrap: wrap; gap: 16px; }

.ab-story-media { position: relative; display: flex; align-items: center; justify-content: center; min-height: 460px; margin-top: 40px; }
.ab-media-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(28,142,240,0.28) 0%, rgba(28,142,240,0) 70%);
    border-radius: 50%;
    z-index: 0;
}
.ab-media-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(28,142,240,0.35);
    border-radius: 50%;
    animation: abSpin 30s linear infinite;
    z-index: 0;
}
@keyframes abSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ab-media-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 420px;
    filter: drop-shadow(0 30px 40px rgba(10,31,53,0.25));
    animation: abBob 4s ease-in-out infinite;
}
@keyframes abBob { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }

.ab-floating-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(10,31,53,0.15);
    border: 1px solid rgba(28,142,240,0.08);
}
.ab-badge-top { top: 10px; left: -10px; }
.ab-badge-bottom { bottom: 20px; right: -10px; }
.ab-badge-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}
.ab-floating-badge strong { display: block; font-size: 15px; color: #0A1F35; line-height: 1.2; }
.ab-floating-badge small { font-size: 11.5px; color: #888; font-weight: 600; }

/* ================= PILLARS ================= */
.ab-pillars-section { padding: 20px 0 100px 0; background-color: #ffffff; }
.ab-pillars-head { max-width: 640px; margin: 0 auto 55px auto; }
.ab-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}
.ab-pillar-card {
    background: #ffffff;
    border: 1px solid rgba(10,31,53,0.06);
    border-radius: 18px;
    padding: 42px 32px;
    box-shadow: 0 10px 30px rgba(10,31,53,0.05);
    transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
    position: relative;
    overflow: hidden;
}
.ab-pillar-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1C8EF0, #7EC1FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.ab-pillar-card:hover::before { transform: scaleX(1); }
.ab-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(28,142,240,0.16);
    border-color: rgba(28,142,240,0.25);
}
.ab-pillar-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 22px;
    box-shadow: 0 12px 22px rgba(28,142,240,0.3);
    transition: transform 0.4s ease;
}
.ab-pillar-card:hover .ab-pillar-icon { transform: rotate(-8deg) scale(1.05); }
.ab-pillar-card h3 { font-size: 20px; font-weight: 700; color: #0A1F35; margin-bottom: 14px; }
.ab-pillar-card p { font-size: 14.5px; color: #666; line-height: 1.75; margin: 0; }

/* ================= STATS ================= */
.ab-stats-section { padding: 70px 0; background-color: #EAF2FC; }
.ab-stats-section .container { max-width: 1240px; }
.ab-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; align-items: stretch; }
.ab-stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 168px;
    background: #ffffff;
    padding: 38px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(10,31,53,0.06);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.ab-stat-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(28,142,240,0.14); }
.ab-counter-wrap { font-size: 46px; font-weight: 800; color: #0A1F35; line-height: 1.1; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.ab-counter-suffix { color: #1C8EF0; }
.ab-stat-desc { font-size: 14.5px; color: #555; font-weight: 600; line-height: 1.5; margin: 0; }

/* ================= CTA BANNER ================= */
.ab-cta-section {
    position: relative;
    background: linear-gradient(150deg, #0A1F35 0%, #0F2A47 60%, #081217 100%);
    padding: 80px 0;
    overflow: hidden;
}
.ab-cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(28,142,240,0.35) 0%, rgba(28,142,240,0) 70%);
    top: -180px;
    right: -100px;
    border-radius: 50%;
}
.ab-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.ab-cta-text h2 { color: #ffffff; font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.ab-cta-text h2 span { color: #7EC1FF; }
.ab-cta-text p { color: rgba(255,255,255,0.75); font-size: 15px; margin: 0; }
.ab-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .ab-story-grid { grid-template-columns: 1fr; gap: 60px; }
    .ab-story-media { order: -1; min-height: 380px; }
    .ab-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ab-hero-banner { padding: 120px 0 50px 0; background-attachment: scroll; }
    .ab-hero-title { font-size: 30px; }
    .ab-section-title { font-size: 28px; }
    .ab-story-section, .ab-pillars-section { padding: 60px 0; }
    .ab-pillars-grid { grid-template-columns: 1fr; }
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ab-counter-wrap { font-size: 34px; }
    .ab-cta-inner { flex-direction: column; text-align: center; }
    .ab-badge-top { left: 0; top: -10px; }
    .ab-badge-bottom { right: 0; }
    .ab-media-img { width: 280px; }
    .corporate-product-range, .ab-hero-banner { background-attachment: scroll; }
}

.fq-section { padding: 60px 0 20px 0; }
.fq-section .container { max-width: 1320px; padding-left: 10px; padding-right: 10px; }

/* Layout */
.fq-layout { max-width: 100%; margin: 0; }

/* Accordion */
.fq-accordion { display: flex; flex-direction: column; gap: 16px; }
.fq-item {
    background: #ffffff;
    border: 1px solid #eef1f4;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.fq-item.fq-open { border-color: #1C8EF0; box-shadow: 0 14px 30px rgba(10,31,53,0.08); }
.fq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: transparent;
    border: none;
    text-align: left;
    padding: 22px 26px;
    font-family: 'Quicksand', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #0A1F35;
    cursor: pointer;
}
.fq-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f2f7fd;
    color: #1C8EF0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}
.fq-item.fq-open .fq-icon { background: linear-gradient(135deg, #1C8EF0, #0B5FAE); color: #ffffff; transform: rotate(135deg); }
.fq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.fq-answer p { margin: 0; padding: 0 26px 24px 26px; font-size: 14.5px; line-height: 1.8; color: #667080; }
.fq-item.fq-hide { display: none; }

/* ================= FAQ RESPONSIVE ================= */
@media (max-width: 768px) {
    .fq-question { padding: 18px 20px; font-size: 14.5px; }
    .fq-answer p { padding: 0 20px 20px 20px; }
}

.bl-hero-banner {
    position: relative;
    background-image: url('../images/backgrounds/road-scooty-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 60px 0;
    overflow: hidden;
}
.bl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,31,53,0.92) 10%, rgba(11,95,174,0.75) 60%, rgba(10,31,53,0.9) 100%);
}
.bl-hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(126,193,255,0.35);
    filter: blur(1px);
    animation: blFloat 6s ease-in-out infinite;
}
.bl-hero-particles span:nth-child(1){ width:10px; height:10px; top:20%; left:8%; animation-delay:0s; }
.bl-hero-particles span:nth-child(2){ width:14px; height:14px; top:65%; left:15%; animation-delay:1s; }
.bl-hero-particles span:nth-child(3){ width:8px; height:8px; top:35%; left:85%; animation-delay:2s; }
.bl-hero-particles span:nth-child(4){ width:16px; height:16px; top:75%; left:80%; animation-delay:1.5s; }
.bl-hero-particles span:nth-child(5){ width:11px; height:11px; top:15%; left:50%; animation-delay:2.5s; }
@keyframes blFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-25px); opacity: 1; }
}
.bl-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
}
.bl-hero-inner .bl-eyebrow { justify-content: center; width: 100%; }
.bl-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 12px 0 10px 0;
    letter-spacing: -0.5px;
}
.bl-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin: 0 auto;
    max-width: 600px;
}

.bl-page { font-family: 'Quicksand', sans-serif; overflow: hidden; }

.bl-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.bl-eyebrow-dot {
    width: 7px;
    height: 7px;
    background-color: #1C8EF0;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(28,142,240,0.18);
}

.ct-page { font-family: 'Quicksand', sans-serif; overflow: hidden; }

.ct-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.ct-eyebrow-dark { color: #0B5FAE; }
.ct-eyebrow-dot {
    width: 7px;
    height: 7px;
    background-color: #1C8EF0;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(28,142,240,0.18);
}

.ct-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #0A1F35;
    margin: 12px 0 14px 0;
    line-height: 1.25;
}
.ct-section-title span { color: #1C8EF0; }

/* -------- Buttons -------- */
.ct-btn-primary {
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #ffffff;
    padding: 15px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Quicksand', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(28,142,240,0.3);
    transition: all 0.35s cubic-bezier(0.25,1,0.5,1);
}
.ct-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(28,142,240,0.42); color: #ffffff; }

.ct-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 20px;
    border-radius: 50px;
    background: #25D366;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}
.ct-btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(37,211,102,0.35); color: #ffffff; }

/* ================= HERO BANNER ================= */
.ct-hero-banner {
    position: relative;
    background-image: url('../images/backgrounds/road-scooty-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 60px 0;
    overflow: hidden;
}
.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,31,53,0.92) 10%, rgba(11,95,174,0.75) 60%, rgba(10,31,53,0.9) 100%);
}
.ct-hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(126,193,255,0.35);
    filter: blur(1px);
    animation: ctFloat 6s ease-in-out infinite;
}
.ct-hero-particles span:nth-child(1){ width:10px; height:10px; top:20%; left:8%; animation-delay:0s; }
.ct-hero-particles span:nth-child(2){ width:14px; height:14px; top:65%; left:15%; animation-delay:1s; }
.ct-hero-particles span:nth-child(3){ width:8px; height:8px; top:35%; left:85%; animation-delay:2s; }
.ct-hero-particles span:nth-child(4){ width:16px; height:16px; top:75%; left:80%; animation-delay:1.5s; }
.ct-hero-particles span:nth-child(5){ width:11px; height:11px; top:15%; left:50%; animation-delay:2.5s; }
@keyframes ctFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-25px); opacity: 1; }
}
.ct-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
}
.ct-hero-inner .ct-eyebrow { justify-content: center; width: 100%; }
.ct-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 12px 0 10px 0;
    letter-spacing: -0.5px;
}
.ct-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin: 0 auto;
    max-width: 640px;
}

/* ================= QUICK INFO CARDS ================= */
.ct-info-section { padding: 60px 0 20px 0; background-color: #ffffff; }
.ct-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ct-info-card {
    background: #ffffff;
    border: 1px solid rgba(10,31,53,0.06);
    border-radius: 18px;
    padding: 36px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10,31,53,0.05);
    transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
}
.ct-info-card:hover { transform: translateY(-8px); box-shadow: 0 25px 45px rgba(28,142,240,0.16); border-color: rgba(28,142,240,0.25); }
.ct-info-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px auto;
    border-radius: 16px;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 12px 22px rgba(28,142,240,0.3);
}
.ct-info-card h3 { font-size: 19px; font-weight: 700; color: #0A1F35; margin-bottom: 10px; }
.ct-info-card p { font-size: 14.5px; color: #666; line-height: 1.7; margin: 0; }
.ct-info-card p a { color: #1C8EF0; font-weight: 700; }
.ct-info-card p a:hover { text-decoration: underline; }

/* ================= FORM SECTION ================= */
.ct-form-section { padding: 90px 0 100px 0; background-color: #F7FAFD; }
.ct-form-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}
.ct-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 44px;
    box-shadow: 0 20px 50px rgba(10,31,53,0.07);
    border: 1px solid rgba(10,31,53,0.05);
}
.ct-form-intro { color: #666; font-size: 15px; line-height: 1.7; margin-bottom: 28px; }

.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ct-form-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.ct-form-group label { font-size: 13.5px; font-weight: 700; color: #0A1F35; margin-bottom: 8px; }
.ct-form-group input,
.ct-form-group select,
.ct-form-group textarea {
    font-family: 'Quicksand', sans-serif;
    font-size: 14.5px;
    color: #0A1F35;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(10,31,53,0.12);
    background: #FBFCFE;
    transition: all 0.25s ease;
    resize: vertical;
}
.ct-form-group input:focus,
.ct-form-group select:focus,
.ct-form-group textarea:focus {
    outline: none;
    border-color: #1C8EF0;
    box-shadow: 0 0 0 4px rgba(28,142,240,0.12);
    background: #ffffff;
}
.ct-form-success {
    display: none;
    align-items: center;
    gap: 8px;
    margin: 18px 0 0 0;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(37,211,102,0.1);
    color: #1a9a4c;
    font-weight: 700;
    font-size: 14px;
}
.ct-form-success.show { display: flex; }

/* -------- Sidebar -------- */
.ct-side-col { display: flex; flex-direction: column; gap: 24px; }
.ct-side-card {
    background: linear-gradient(150deg, #0A1F35 0%, #0F2A47 60%, #081217 100%);
    border-radius: 20px;
    padding: 40px 34px;
    box-shadow: 0 20px 50px rgba(10,31,53,0.18);
}
.ct-side-title { color: #ffffff; font-size: 20px; font-weight: 700; margin-bottom: 22px; }
.ct-side-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.ct-side-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
}
.ct-side-list li i { color: #1C8EF0; font-size: 17px; margin-top: 2px; }
.ct-side-list li a { color: #ffffff; font-weight: 700; }
.ct-side-list li a:hover { color: #7EC1FF; }

.ct-map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10,31,53,0.1);
    border: 1px solid rgba(10,31,53,0.05);
    line-height: 0;
}
.ct-map-card iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .ct-info-grid { grid-template-columns: 1fr; }
    .ct-form-grid { grid-template-columns: 1fr; }
    .ct-side-col { order: -1; }
}
@media (max-width: 768px) {
    .ct-hero-banner { padding: 120px 0 50px 0; background-attachment: scroll; }
    .ct-hero-title { font-size: 30px; }
    .ct-form-card { padding: 30px 24px; }
    .ct-form-row { grid-template-columns: 1fr; }
    .ct-side-card { padding: 30px 24px; }
    .corporate-product-range, .ct-hero-banner { background-attachment: scroll; }
}

.bl-page { font-family: 'Quicksand', sans-serif; overflow: hidden; }

.bl-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.bl-eyebrow-dot {
    width: 7px;
    height: 7px;
    background-color: #1C8EF0;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(28,142,240,0.18);
}

/* ================= HERO BANNER ================= */
.bl-hero-banner {
    position: relative;
    background-image: url('../images/backgrounds/road-scooty-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 60px 0;
    overflow: hidden;
}
.bl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,31,53,0.92) 10%, rgba(11,95,174,0.75) 60%, rgba(10,31,53,0.9) 100%);
}
.bl-hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(126,193,255,0.35);
    filter: blur(1px);
    animation: blFloat 6s ease-in-out infinite;
}
.bl-hero-particles span:nth-child(1){ width:10px; height:10px; top:20%; left:8%; animation-delay:0s; }
.bl-hero-particles span:nth-child(2){ width:14px; height:14px; top:65%; left:15%; animation-delay:1s; }
.bl-hero-particles span:nth-child(3){ width:8px; height:8px; top:35%; left:85%; animation-delay:2s; }
.bl-hero-particles span:nth-child(4){ width:16px; height:16px; top:75%; left:80%; animation-delay:1.5s; }
.bl-hero-particles span:nth-child(5){ width:11px; height:11px; top:15%; left:50%; animation-delay:2.5s; }
@keyframes blFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-25px); opacity: 1; }
}
.bl-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
}
.bl-hero-inner .bl-eyebrow { justify-content: center; width: 100%; }
.bl-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 12px 0 10px 0;
    letter-spacing: -0.5px;
}
.bl-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin: 0 auto;
    max-width: 600px;
}

/* ================= BLOG GRID ================= */
.bl-grid-section { padding: 60px 0 90px 0; background-color: #ffffff; }
.bl-layout { display: grid; grid-template-columns: 1fr 340px; align-items: start; gap: 30px; }
.bl-main-col { min-width: 0; }
.bl-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bl-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 24px rgba(10,31,53,0.08);
    transition: transform 0.35s cubic-bezier(0.25,1,0.5,1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}
.bl-card.bl-hide { display: none; }
.bl-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(10,31,53,0.16), 0 0 0 1px rgba(28,142,240,0.25); }

.bl-card-img-box { position: relative; width: 100%; height: 220px; overflow: hidden; background-color: #eef2f6; }
.bl-card-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,31,53,0) 55%, rgba(10,31,53,0.55) 100%);
    pointer-events: none;
}
.bl-cover-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bl-card:hover .bl-cover-img { transform: scale(1.08); }
.bl-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #ffffff;
    color: #1C8EF0;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.bl-card-body {
    padding: 26px 24px 28px 24px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.bl-card:hover .bl-card-body { border-top-color: #1C8EF0; }
.bl-meta-strip { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 12px; }
.bl-meta-item { font-size: 12.5px; color: #777; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.bl-meta-item i { color: #1C8EF0; font-size: 13px; }
.bl-card-title { font-size: 19px; font-weight: 700; line-height: 1.4; margin: 0 0 10px 0; min-height: 54px; }
.bl-card-title a { color: #0A1F35; text-decoration: none; transition: color 0.3s ease; }
.bl-card-title a:hover { color: #1C8EF0; }
.bl-card-excerpt { font-size: 14px; color: #666; line-height: 1.7; margin: 0 0 6px 0; flex: 1; }
.bl-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1C8EF0;
    text-decoration: none;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}
.bl-read-more:hover { gap: 12px; color: #0A1F35; }

/* ================= PAGINATION ================= */
.bl-pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 50px; }
.bl-page-numbers { display: flex; align-items: center; gap: 10px; }
.bl-page-arrow:disabled { opacity: 0.4; cursor: not-allowed; }
.bl-page-arrow:disabled:hover { border-color: rgba(10,31,53,0.12); color: #0A1F35; }
.bl-page-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(10,31,53,0.12);
    background: #ffffff;
    color: #0A1F35;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bl-page-btn:hover { border-color: #1C8EF0; color: #1C8EF0; }
.bl-page-btn.active {
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(28,142,240,0.28);
}

/* ================= SIDEBAR ================= */
.bl-sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 100px; }
.bl-widget {
    background: #ffffff;
    border: 1px solid #eef1f4;
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 8px 24px rgba(10,31,53,0.06);
}
.bl-widget-title {
    font-size: 17px;
    font-weight: 700;
    color: #0A1F35;
    margin: 0 0 18px 0;
    padding-bottom: 14px;
    border-bottom: 2px solid #eef1f4;
    position: relative;
}
.bl-widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, #1C8EF0, #0B5FAE);
}

/* Category list */
.bl-category-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.bl-cat-link {
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: transparent;
    border: none;
    text-align: left;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: #445468;
    cursor: pointer;
    transition: all 0.25s ease;
}
.bl-cat-link span {
    font-size: 12px;
    font-weight: 700;
    background: #eef2f6;
    color: #445468;
    padding: 2px 9px;
    border-radius: 20px;
    transition: all 0.25s ease;
}
.bl-cat-link:hover { background: #f2f7fd; color: #1C8EF0; }
.bl-cat-link.active { background: linear-gradient(135deg, #1C8EF0, #0B5FAE); color: #ffffff; box-shadow: 0 10px 22px rgba(28,142,240,0.24); }
.bl-cat-link.active span { background: rgba(255,255,255,0.25); color: #ffffff; }

/* Recent posts */
.bl-recent-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.bl-recent-item { display: flex; gap: 14px; align-items: flex-start; }
.bl-recent-thumb { flex-shrink: 0; width: 68px; height: 68px; border-radius: 12px; overflow: hidden; display: block; }
.bl-recent-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.bl-recent-item:hover .bl-recent-thumb img { transform: scale(1.1); }
.bl-recent-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bl-recent-title {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.4;
    color: #0A1F35;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.bl-recent-item:hover .bl-recent-title { color: #1C8EF0; }
.bl-recent-date { font-size: 11.5px; color: #8a97a6; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.bl-recent-date i { color: #1C8EF0; font-size: 11px; }

/* Sidebar CTA widget */
.bl-widget-cta { background: linear-gradient(150deg, #0A1F35 0%, #0F2A47 60%, #081217 100%); border: none; }
.bl-widget-cta .bl-widget-title { color: #ffffff; border-bottom-color: rgba(255,255,255,0.15); }
.bl-widget-cta p { color: rgba(255,255,255,0.75); font-size: 13.5px; line-height: 1.7; margin: 0 0 18px 0; }
.bl-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #ffffff;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.bl-sidebar-cta:hover { gap: 12px; transform: translateY(-2px); color: #ffffff; }

/* ================= NEWSLETTER CTA ================= */
.bl-newsletter-section {
    position: relative;
    background: linear-gradient(150deg, #0A1F35 0%, #0F2A47 60%, #081217 100%);
    padding: 70px 0;
    overflow: hidden;
}
.bl-newsletter-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(28,142,240,0.35) 0%, rgba(28,142,240,0) 70%);
    top: -180px;
    right: -100px;
    border-radius: 50%;
}
.bl-newsletter-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.bl-newsletter-text h2 { color: #ffffff; font-size: 30px; font-weight: 700; margin-bottom: 8px; }
.bl-newsletter-text h2 span { color: #7EC1FF; }
.bl-newsletter-text p { color: rgba(255,255,255,0.75); font-size: 15px; margin: 0; }
.bl-newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.bl-newsletter-form input {
    font-family: 'Quicksand', sans-serif;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    min-width: 280px;
    font-size: 14.5px;
    color: #0A1F35;
}
.bl-newsletter-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(28,142,240,0.35); }
.bl-newsletter-form button {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #ffffff;
    border: none;
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(28,142,240,0.3);
    transition: all 0.3s ease;
}
.bl-newsletter-form button:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(28,142,240,0.42); }

/* ================= WRAPPER (matches product page container) ================= */
.bl-grid-section .container { max-width: 1320px; padding-left: 10px; padding-right: 10px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1300px) {
    .bl-layout { grid-template-columns: 1fr 320px; gap: 24px; }
}
@media (max-width: 1200px) {
    .bl-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .bl-layout { grid-template-columns: 1fr; }
    .bl-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .bl-sidebar .bl-widget { flex: 1 1 280px; }
    .bl-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .bl-hero-banner { padding: 120px 0 50px 0; background-attachment: scroll; }
    .bl-hero-title { font-size: 30px; }
    .bl-cards-grid { grid-template-columns: 1fr; }
    .bl-sidebar { flex-direction: column; }
    .bl-newsletter-inner { flex-direction: column; text-align: center; }
    .bl-newsletter-form { width: 100%; }
    .bl-newsletter-form input { flex: 1; min-width: 0; }
    .corporate-product-range, .bl-hero-banner { background-attachment: scroll; }
}

/* Breadcrumb */
.bd-hero-banner { padding: 150px 0 60px 0; }
.bd-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; font-size: 13px; font-weight: 600; }
.bd-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.25s ease; }
.bd-breadcrumb a:hover { color: #ffffff; }
.bd-breadcrumb-sep { color: rgba(255,255,255,0.4); font-size: 10px; display: inline-flex; }
.bd-breadcrumb-current { color: #7EC1FF; max-width: 320px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bd-hero-title { max-width: 900px; }
.bd-hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 22px; }
.bd-hero-meta-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.85); }
.bd-hero-meta-item i { color: #7EC1FF; }

/* Featured image */
.bd-featured-img { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 34px; box-shadow: 0 20px 45px rgba(10,31,53,0.14); }
.bd-featured-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.bd-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Article body */
.bd-article-body { font-size: 15.5px; line-height: 1.85; color: #4a5464; }
.bd-article-body p { margin: 0 0 22px 0; }
.bd-article-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0A1F35;
    margin: 40px 0 18px 0;
    padding-left: 16px;
    border-left: 4px solid #1C8EF0;
}
.bd-article-body ul { margin: 0 0 24px 0; padding-left: 0; list-style: none; }
.bd-article-body ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}
.bd-article-body ul li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 1px;
    color: #1C8EF0;
    font-size: 14px;
}
.bd-article-body blockquote {
    margin: 30px 0;
    padding: 26px 30px;
    background: linear-gradient(135deg, #f2f8ff, #eaf3fc);
    border-left: 4px solid #1C8EF0;
    border-radius: 0 16px 16px 0;
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
    color: #0A1F35;
    line-height: 1.7;
}
.bd-inline-img { margin: 12px 0 30px 0; }
.bd-inline-img img { width: 100%; height: 300px; object-fit: cover; border-radius: 16px; display: block; }
.bd-inline-caption { display: block; margin-top: 10px; font-size: 12.5px; color: #8a97a6; font-style: italic; text-align: center; }

/* Tags + share */
.bd-tags-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid #eef1f4;
}
.bd-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.bd-tags-label, .bd-share-label { font-size: 13.5px; font-weight: 700; color: #0A1F35; margin-right: 2px; }
.bd-tag {
    display: inline-block;
    background: #f2f7fd;
    color: #445468;
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.bd-tag:hover { background: linear-gradient(135deg, #1C8EF0, #0B5FAE); color: #ffffff; }
.bd-share { display: flex; align-items: center; gap: 10px; }
.bd-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f7fd;
    color: #445468;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.bd-share-btn:hover { transform: translateY(-3px); color: #ffffff; }
.bd-share-fb:hover { background: #1877f2; }
.bd-share-x:hover { background: #0A1F35; }
.bd-share-wa:hover { background: #25d366; }
.bd-share-li:hover { background: #0077b5; }

/* Author box */
.bd-author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 34px;
    padding: 28px;
    background: #f8fafc;
    border-radius: 18px;
    border: 1px solid #eef1f4;
}
.bd-author-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: contain; background: #ffffff; padding: 8px; border: 1px solid #eef1f4; flex-shrink: 0; }
.bd-author-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #1C8EF0; }
.bd-author-name { font-size: 18px; font-weight: 700; color: #0A1F35; margin: 4px 0 8px 0; }
.bd-author-bio { font-size: 13.5px; color: #667080; line-height: 1.7; margin: 0; }

/* Post nav */
.bd-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.bd-post-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: #ffffff;
    border: 1px solid #eef1f4;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.bd-post-nav-link:hover { border-color: #1C8EF0; box-shadow: 0 12px 28px rgba(10,31,53,0.08); transform: translateY(-2px); }
.bd-post-nav-next { justify-content: flex-end; text-align: right; }
.bd-post-nav-arrow {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #f2f7fd;
    color: #1C8EF0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}
.bd-post-nav-link:hover .bd-post-nav-arrow { background: linear-gradient(135deg, #1C8EF0, #0B5FAE); color: #ffffff; }
.bd-post-nav-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.bd-post-nav-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #8a97a6; }
.bd-post-nav-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0A1F35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Comments */
.bd-comments-section { margin-top: 44px; padding-top: 34px; border-top: 1px solid #eef1f4; }
.bd-comments-title { font-size: 22px; font-weight: 700; color: #0A1F35; margin: 0 0 8px 0; }
.bd-comments-sub { font-size: 13.5px; color: #8a97a6; margin: 0 0 24px 0; }
.bd-comment-form { display: flex; flex-direction: column; gap: 16px; }
.bd-comment-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bd-comment-form input, .bd-comment-form textarea {
    font-family: 'Quicksand', sans-serif;
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid #e5e9ee;
    font-size: 14px;
    color: #0A1F35;
    resize: vertical;
    transition: border-color 0.25s ease;
}
.bd-comment-form input:focus, .bd-comment-form textarea:focus { outline: none; border-color: #1C8EF0; }
.bd-comment-submit {
    align-self: flex-start;
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(28,142,240,0.28);
    transition: all 0.3s ease;
}
.bd-comment-submit:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(28,142,240,0.4); }

/* Sidebar search widget */
.bd-search-form { display: flex; gap: 0; border: 1.5px solid #e5e9ee; border-radius: 12px; overflow: hidden; }
.bd-search-form input { flex: 1; border: none; padding: 12px 16px; font-family: 'Quicksand', sans-serif; font-size: 13.5px; color: #0A1F35; }
.bd-search-form input:focus { outline: none; }
.bd-search-form button { border: none; background: linear-gradient(135deg, #1C8EF0, #0B5FAE); color: #ffffff; padding: 0 18px; cursor: pointer; font-size: 14px; }

/* Sidebar tag cloud */
.bd-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.bd-tag-cloud .bd-tag { font-size: 12px; }

/* Related posts */
.bd-related-section { padding: 20px 0 90px 0; background-color: #f8fafc; }
.bd-related-heading { text-align: center; margin-bottom: 40px; }
.bl-eyebrow-dark { color: #1C8EF0; }
.bl-eyebrow-dark .bl-eyebrow-dot { background-color: #1C8EF0; }
.bd-related-title { font-size: 30px; font-weight: 700; color: #0A1F35; margin: 12px 0 0 0; }
.bd-related-title span { color: #1C8EF0; }
.bd-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ================= DETAIL RESPONSIVE ================= */
@media (max-width: 1024px) {
    .bd-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .bd-hero-banner { padding: 120px 0 40px 0; }
    .bd-breadcrumb-current { max-width: 160px; }
    .bd-featured-img img { height: 260px; }
    .bd-article-body h2 { font-size: 20px; }
    .bd-tags-share { flex-direction: column; align-items: flex-start; }
    .bd-post-nav { grid-template-columns: 1fr; }
    .bd-post-nav-next { justify-content: flex-start; text-align: left; }
    .bd-comment-form-row { grid-template-columns: 1fr; }
    .bd-related-grid { grid-template-columns: 1fr; }
    .bd-author-box { flex-direction: column; align-items: flex-start; }
}

.pr-page { font-family: 'Quicksand', sans-serif; overflow: hidden; }

.pr-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.pr-eyebrow-dark { color: #0B5FAE; }
.pr-eyebrow-dot {
    width: 7px;
    height: 7px;
    background-color: #1C8EF0;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(28,142,240,0.18);
}

.pr-section-title {
    font-size: 38px;
    font-weight: 700;
    color: #0A1F35;
    margin: 12px 0 18px 0;
    line-height: 1.25;
}
.pr-section-title span { color: #1C8EF0; }
.pr-section-title.pr-center { margin-left: auto; margin-right: auto; }

/* -------- Buttons -------- */
.pr-btn-primary {
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(28,142,240,0.3);
    transition: all 0.35s cubic-bezier(0.25,1,0.5,1);
    border: none;
}
.pr-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(28,142,240,0.42);
    color: #ffffff;
}
.pr-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 50px;
    border: 2px solid rgba(10,31,53,0.12);
    color: #0A1F35;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}
.pr-btn-ghost:hover { border-color: #1C8EF0; color: #1C8EF0; }
.pr-btn-ghost-light { border-color: rgba(255,255,255,0.25); color: #ffffff; }
.pr-btn-ghost-light:hover { border-color: #7EC1FF; color: #7EC1FF; }
.pr-btn-light { box-shadow: 0 12px 30px rgba(0,0,0,0.35); }

/* ================= HERO BANNER (NO BREADCRUMB) ================= */
.pr-hero-banner {
    position: relative;
    background-image: url('../images/backgrounds/road-scooty-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 60px 0;
    min-height: 348px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.pr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,31,53,0.92) 10%, rgba(11,95,174,0.75) 60%, rgba(10,31,53,0.9) 100%);
}
.pr-hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(126,193,255,0.35);
    filter: blur(1px);
    animation: prFloat 6s ease-in-out infinite;
}
.pr-hero-particles span:nth-child(1){ width:10px; height:10px; top:20%; left:8%; animation-delay:0s; }
.pr-hero-particles span:nth-child(2){ width:14px; height:14px; top:65%; left:15%; animation-delay:1s; }
.pr-hero-particles span:nth-child(3){ width:8px; height:8px; top:35%; left:85%; animation-delay:2s; }
.pr-hero-particles span:nth-child(4){ width:16px; height:16px; top:75%; left:80%; animation-delay:1.5s; }
.pr-hero-particles span:nth-child(5){ width:11px; height:11px; top:15%; left:50%; animation-delay:2.5s; }
@keyframes prFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-25px); opacity: 1; }
}
.pr-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
}
.pr-hero-inner .pr-eyebrow { justify-content: center; width: 100%; }
.pr-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 12px 0 10px 0;
    letter-spacing: -0.5px;
}
.pr-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin-bottom: 30px;
}
/* ================= INTRO ================= */
.pr-intro-section { padding: 80px 0 20px 0; background-color: #ffffff; }
.pr-intro-para { max-width: 700px; margin: 0 auto; color: #555; font-size: 15.5px; line-height: 1.8; }

/* ================= SHOP LAYOUT (SIDEBAR + GRID) ================= */
.pr-products-section { padding: 50px 0 100px 0; background-color: #ffffff; }
.pr-products-section .container { max-width: 1320px; padding-left: 10px; padding-right: 10px; }
.pr-shop-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}
.pr-shop-main { min-width: 0; }
.pr-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Pagination */
.pr-no-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 50px 20px;
    background: #F3F7FC;
    border: 1px dashed rgba(10,31,53,0.15);
    border-radius: 16px;
    color: #5A6B7B;
}
.pr-no-products i { font-size: 28px; color: #1C8EF0; }
.pr-no-products p { margin: 0; font-size: 15px; max-width: 420px; }
.pr-pagination-wrap { display: flex; justify-content: center; margin-top: 40px; }
.pr-pagination { display: flex; align-items: center; gap: 10px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.pr-page-item { display: flex; }
.pr-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 6px;
    border-radius: 10px;
    background: #F3F7FC;
    color: #0A1F35;
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    border: 1px solid rgba(10,31,53,0.08);
    transition: all 0.3s ease;
}
.pr-page-link:hover { background: rgba(28,142,240,0.12); color: #0B5FAE; border-color: rgba(28,142,240,0.3); }
.pr-page-item.active .pr-page-link,
.pr-page-item.active .pr-page-link:hover {
    background: #1C8EF0;
    color: #ffffff;
    border-color: #1C8EF0;
    box-shadow: 0 6px 16px rgba(28,142,240,0.35);
}
.pr-page-item.disabled .pr-page-link { opacity: 0.4; pointer-events: none; }
.pr-product-card {
    background: #ffffff;
    border: 1px solid rgba(10,31,53,0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
    box-shadow: 0 8px 24px rgba(10,31,53,0.05);
    display: flex;
    flex-direction: column;
}
.pr-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 46px rgba(28,142,240,0.18);
    border-color: rgba(28,142,240,0.25);
}
.pr-card-media { position: relative; overflow: hidden; height: 190px; background: #EAF2FC; }
.pr-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.25,1,0.5,1); }
.pr-product-card:hover .pr-card-media img { transform: scale(1.1); }
.pr-badge-ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.pr-badge-new { background: linear-gradient(135deg, #1C8EF0, #0B5FAE); }
.pr-badge-bestseller { background: linear-gradient(135deg, #ff9a3c, #ff6a3c); }
.pr-card-body { padding: 24px 22px 26px 22px; display: flex; flex-direction: column; flex: 1; }
.pr-card-cat { font-size: 11.5px; font-weight: 700; color: #1C8EF0; text-transform: uppercase; letter-spacing: 0.5px; }
.pr-card-title { font-size: 22px; font-weight: 800; color: #0A1F35; margin: 6px 0 8px 0; }
.pr-card-desc { font-size: 13.5px; color: #666; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.pr-spec-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pr-spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F3F8FE;
    border: 1px solid rgba(28,142,240,0.14);
    color: #0A1F35;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 11px;
    border-radius: 8px;
}
.pr-spec-chip i { color: #1C8EF0; font-size: 12px; }
.pr-card-actions { display: flex; align-items: center; gap: 10px; }
.pr-btn-view {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0A1F35;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.pr-btn-view:hover { background: linear-gradient(135deg, #1C8EF0, #0B5FAE); color: #ffffff; }
.pr-btn-whatsapp {
    flex: none;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #25d366;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}
.pr-btn-whatsapp:hover { transform: translateY(-2px) scale(1.05); color: #ffffff; }

/* ================= SHOP SIDEBAR ================= */
.pr-shop-sidebar { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 110px; }
.pr-sidebar-card {
    background: #ffffff;
    border: 1px solid rgba(10,31,53,0.07);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 28px rgba(10,31,53,0.06);
}
.pr-sidebar-card-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.pr-sidebar-card-head-plain { margin-bottom: 16px; }
.pr-sidebar-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px;
    box-shadow: 0 10px 20px rgba(28,142,240,0.3);
}
.pr-sidebar-card-head h3 { font-size: 18px; font-weight: 800; color: #0A1F35; margin: 0 0 3px 0; }
.pr-sidebar-card-head p { font-size: 12.5px; color: #888; margin: 0; }

/* Enquiry form */
.pr-enquiry-form { display: flex; flex-direction: column; gap: 12px; }
.pr-form-group { width: 100%; }
.pr-enquiry-form input,
.pr-enquiry-form select,
.pr-enquiry-form textarea {
    width: 100%;
    border: 1px solid rgba(10,31,53,0.14);
    background: #F7FAFD;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13.5px;
    font-family: 'Quicksand', sans-serif;
    color: #0A1F35;
    transition: all 0.25s ease;
}
.pr-enquiry-form input:focus,
.pr-enquiry-form select:focus,
.pr-enquiry-form textarea:focus {
    outline: none;
    border-color: #1C8EF0;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(28,142,240,0.12);
}
.pr-enquiry-form textarea { resize: vertical; min-height: 90px; }
.pr-form-submit {
    width: 100%;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #ffffff;
    border: none;
    padding: 13px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(28,142,240,0.32);
    transition: all 0.3s ease;
    margin-top: 4px;
}
.pr-form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(28,142,240,0.42); }

/* Sidebar category list */
.pr-sidebar-cat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.pr-sidebar-cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 12px;
    border-radius: 10px;
    color: #333;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.pr-sidebar-cat-list a span { display: inline-flex; align-items: center; gap: 10px; }
.pr-sidebar-cat-list a i:first-child { color: #1C8EF0; font-size: 15px; }
.pr-sidebar-cat-list a i.bi-chevron-right { font-size: 10px; color: #bbb; transition: all 0.25s ease; }
.pr-sidebar-cat-list a:hover { background: #EAF2FC; color: #0B5FAE; padding-left: 16px; }
.pr-sidebar-cat-list a:hover i.bi-chevron-right { color: #1C8EF0; transform: translateX(3px); }

/* Sidebar promo banner */
.pr-sidebar-promo { position: relative; display: block; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 28px rgba(10,31,53,0.1); }
.pr-sidebar-promo img { width: 100%; display: block; transition: transform 0.5s ease; }
.pr-sidebar-promo:hover img { transform: scale(1.06); }
.pr-sidebar-promo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,31,53,0) 40%, rgba(10,31,53,0.88) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 18px;
}
.pr-sidebar-promo-overlay span { color: #7EC1FF; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.pr-sidebar-promo-overlay strong { color: #ffffff; font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 6px; margin-top: 4px; }

/* Sidebar quick contact */
.pr-sidebar-contact { display: flex; flex-direction: column; gap: 6px; }
.pr-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 6px;
    border-radius: 12px;
    transition: all 0.25s ease;
}
.pr-contact-row:hover { background: #F3F8FE; }
.pr-contact-icon {
    width: 40px; height: 40px; min-width: 40px;
    border-radius: 50%;
    background: #EAF2FC;
    color: #1C8EF0;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
}
.pr-contact-icon-whatsapp { background: rgba(37,211,102,0.12); color: #25d366; }
.pr-contact-row small { display: block; font-size: 11px; color: #888; font-weight: 600; }
.pr-contact-row strong { display: block; font-size: 13.5px; color: #0A1F35; font-weight: 700; }

/* ================= WHY BUY / PILLARS ================= */
.pr-pillars-section { padding: 20px 0 100px 0; background-color: #ffffff; }
.pr-pillars-head { max-width: 640px; margin: 0 auto 55px auto; }
.pr-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}
.pr-pillar-card {
    background: #ffffff;
    border: 1px solid rgba(10,31,53,0.06);
    border-radius: 18px;
    padding: 42px 32px;
    box-shadow: 0 10px 30px rgba(10,31,53,0.05);
    transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
    position: relative;
    overflow: hidden;
}
.pr-pillar-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1C8EF0, #7EC1FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.pr-pillar-card:hover::before { transform: scaleX(1); }
.pr-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(28,142,240,0.16);
    border-color: rgba(28,142,240,0.25);
}
.pr-pillar-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 22px;
    box-shadow: 0 12px 22px rgba(28,142,240,0.3);
    transition: transform 0.4s ease;
}
.pr-pillar-card:hover .pr-pillar-icon { transform: rotate(-8deg) scale(1.05); }
.pr-pillar-card h3 { font-size: 20px; font-weight: 700; color: #0A1F35; margin-bottom: 14px; }
.pr-pillar-card p { font-size: 14.5px; color: #666; line-height: 1.75; margin: 0; }

/* ================= STATS ================= */
.pr-stats-section { padding: 70px 0; background-color: #EAF2FC; }
.pr-stats-section .container { max-width: 1240px; }
.pr-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; align-items: stretch; }
.pr-stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 168px;
    background: #ffffff;
    padding: 38px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(10,31,53,0.06);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.pr-stat-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(28,142,240,0.14); }
.pr-counter-wrap { font-size: 46px; font-weight: 800; color: #0A1F35; line-height: 1.1; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.pr-counter-suffix { color: #1C8EF0; }
.pr-stat-desc { font-size: 14.5px; color: #555; font-weight: 600; line-height: 1.5; margin: 0; }

/* ================= CTA BANNER ================= */
.pr-cta-section {
    position: relative;
    background: linear-gradient(150deg, #0A1F35 0%, #0F2A47 60%, #081217 100%);
    padding: 80px 0;
    overflow: hidden;
}
.pr-cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(28,142,240,0.35) 0%, rgba(28,142,240,0) 70%);
    top: -180px;
    right: -100px;
    border-radius: 50%;
}
.pr-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.pr-cta-text h2 { color: #ffffff; font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.pr-cta-text h2 span { color: #7EC1FF; }
.pr-cta-text p { color: rgba(255,255,255,0.75); font-size: 15px; margin: 0; }
.pr-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1300px) {
    .pr-shop-layout { grid-template-columns: 1fr 320px; gap: 24px; }
}
@media (max-width: 1200px) {
    .pr-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .pr-shop-layout { grid-template-columns: 1fr; }
    .pr-shop-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .pr-shop-sidebar > * { flex: 1 1 300px; }
    .pr-products-grid { grid-template-columns: repeat(2, 1fr); }
    .pr-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .pr-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pr-hero-banner { padding: 110px 0 40px 0; min-height: 318px; background-attachment: scroll; }
    .pr-hero-title { font-size: 30px; }
    .pr-section-title { font-size: 28px; }
    .pr-intro-section, .pr-pillars-section { padding: 50px 0; }
    .pr-products-section { padding: 40px 0 70px 0; }
    .pr-products-grid { grid-template-columns: 1fr; }
    .pr-shop-sidebar { flex-direction: column; }
    .pr-shop-sidebar > * { flex: 1 1 auto; }
    .pr-pillars-grid { grid-template-columns: 1fr; }
    .pr-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .pr-counter-wrap { font-size: 34px; }
    .pr-cta-inner { flex-direction: column; text-align: center; }
    .corporate-product-range, .pr-hero-banner { background-attachment: scroll; }
}

.pr-hero-banner-sm { min-height: 260px; }
.pr-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14.5px;
    color: rgba(255,255,255,0.75);
}
.pr-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; transition: color 0.25s ease; }
.pr-breadcrumb a:hover { color: #1C8EF0; }
.pr-breadcrumb i { font-size: 11px; color: rgba(255,255,255,0.45); }
.pr-breadcrumb span { color: #ffffff; font-weight: 700; }

.pr-detail-section .pr-shop-main { display: flex; flex-direction: column; gap: 26px; }
.pr-detail-card {
    background: #ffffff;
    border: 1px solid rgba(10,31,53,0.07);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(10,31,53,0.05);
    padding: 32px;
}
.pr-detail-gallery { display: grid; grid-template-columns: 1fr; gap: 14px; margin: -32px -32px 24px -32px; padding: 0; }
.pr-detail-gallery-main {
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    background: #0A1F35;
    aspect-ratio: 16 / 8;
}
.pr-detail-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.pr-detail-gallery-thumbs-row { display: flex; align-items: center; gap: 10px; padding: 0 32px; }
.pr-gallery-arrow {
    position: relative;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #F1F5F9;
    color: #0A1F35;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.25s ease;
}
.pr-gallery-arrow:hover { background: #1C8EF0; color: #fff; transform: scale(1.08); }
.pr-detail-gallery-thumbs {
    display: flex;
    gap: 12px;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.pr-detail-gallery-thumbs::-webkit-scrollbar { display: none; }
.pr-thumb-btn {
    flex: 0 0 calc((100% - 48px) / 5);
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    aspect-ratio: 4 / 3;
    transition: all 0.25s ease;
    opacity: 0.6;
}
.pr-thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pr-thumb-btn:hover { opacity: 0.9; }
.pr-thumb-btn.active { border-color: #1C8EF0; opacity: 1; box-shadow: 0 6px 14px rgba(28,142,240,0.3); }

.pr-detail-title { font-size: 28px; font-weight: 800; color: #0A1F35; margin: 10px 0 16px; line-height: 1.3; }
.pr-detail-spec-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.pr-detail-desc { color: #556274; font-size: 15.5px; line-height: 1.85; margin-bottom: 16px; }
.pr-detail-actions { margin-top: 22px; }
.pr-detail-subhead { font-size: 21px; font-weight: 800; color: #0A1F35; margin-bottom: 14px; }
.pr-detail-subhead-merged { margin-top: 18px; padding-top: 20px; border-top: 1px solid rgba(10,31,53,0.08); }

.pr-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pr-feature-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border-radius: 14px; background: #F3F7FC; transition: all 0.3s ease; }
.pr-feature-item:hover { background: rgba(28,142,240,0.08); transform: translateY(-3px); }
.pr-feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: 0 6px 14px rgba(28,142,240,0.3);
}
.pr-feature-item strong { display: block; color: #0A1F35; font-size: 15px; margin-bottom: 4px; }
.pr-feature-item p { margin: 0; color: #6b7a89; font-size: 13.5px; line-height: 1.6; }

.pr-spec-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.pr-spec-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 4px;
    border-bottom: 1px dashed rgba(10,31,53,0.1);
    font-size: 14px;
}
.pr-spec-list li:last-child { border-bottom: none; }
.pr-spec-list li span { display: flex; align-items: center; gap: 8px; color: #6b7a89; }
.pr-spec-list li span i { color: #1C8EF0; font-size: 15px; }
.pr-spec-list li strong { color: #0A1F35; font-weight: 700; }

.pr-related-section { padding: 30px 0 100px 0; background-color: #F7FAFD; }
.pr-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
.pr-related-cta { margin-top: 44px; }

.pr-product-card {
    background: #ffffff;
    border: 1px solid rgba(10,31,53,0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
    box-shadow: 0 8px 24px rgba(10,31,53,0.05);
    display: flex;
    flex-direction: column;
}
.pr-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 46px rgba(28,142,240,0.18);
    border-color: rgba(28,142,240,0.25);
}
.pr-card-media { position: relative; overflow: hidden; height: 190px; background: #EAF2FC; }
.pr-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.25,1,0.5,1); }
.pr-product-card:hover .pr-card-media img { transform: scale(1.1); }
.pr-badge-ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.pr-badge-new { background: linear-gradient(135deg, #1C8EF0, #0B5FAE); }
.pr-badge-bestseller { background: linear-gradient(135deg, #ff9a3c, #ff6a3c); }
.pr-card-body { padding: 24px 22px 26px 22px; display: flex; flex-direction: column; flex: 1; }
.pr-card-cat { font-size: 11.5px; font-weight: 700; color: #1C8EF0; text-transform: uppercase; letter-spacing: 0.5px; }
.pr-card-title { font-size: 22px; font-weight: 800; color: #0A1F35; margin: 6px 0 8px 0; }
.pr-card-desc { font-size: 13.5px; color: #666; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.pr-spec-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pr-spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F3F8FE;
    border: 1px solid rgba(28,142,240,0.14);
    color: #0A1F35;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 11px;
    border-radius: 8px;
}
.pr-spec-chip i { color: #1C8EF0; font-size: 12px; }
.pr-card-actions { display: flex; align-items: center; gap: 10px; }
.pr-btn-view {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0A1F35;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.pr-btn-view:hover { background: linear-gradient(135deg, #1C8EF0, #0B5FAE); color: #ffffff; }
.pr-btn-whatsapp {
    flex: none;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #25d366;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}
.pr-btn-whatsapp:hover { transform: translateY(-2px) scale(1.05); color: #ffffff; }

/* ================= SHOP SIDEBAR ================= */
.pr-shop-sidebar { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 110px; }
.pr-sidebar-card {
    background: #ffffff;
    border: 1px solid rgba(10,31,53,0.07);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 28px rgba(10,31,53,0.06);
}
.pr-sidebar-card-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.pr-sidebar-card-head-plain { margin-bottom: 16px; }
.pr-sidebar-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px;
    box-shadow: 0 10px 20px rgba(28,142,240,0.3);
}
.pr-sidebar-card-head h3 { font-size: 18px; font-weight: 800; color: #0A1F35; margin: 0 0 3px 0; }
.pr-sidebar-card-head p { font-size: 12.5px; color: #888; margin: 0; }

/* Enquiry form */
.pr-enquiry-form { display: flex; flex-direction: column; gap: 12px; }
.pr-form-group { width: 100%; }
.pr-enquiry-form input,
.pr-enquiry-form select,
.pr-enquiry-form textarea {
    width: 100%;
    border: 1px solid rgba(10,31,53,0.14);
    background: #F7FAFD;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13.5px;
    font-family: 'Quicksand', sans-serif;
    color: #0A1F35;
    transition: all 0.25s ease;
}
.pr-enquiry-form input:focus,
.pr-enquiry-form select:focus,
.pr-enquiry-form textarea:focus {
    outline: none;
    border-color: #1C8EF0;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(28,142,240,0.12);
}
.pr-enquiry-form textarea { resize: vertical; min-height: 90px; }
.pr-form-submit {
    width: 100%;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #ffffff;
    border: none;
    padding: 13px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(28,142,240,0.32);
    transition: all 0.3s ease;
    margin-top: 4px;
}
.pr-form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(28,142,240,0.42); }

/* Sidebar category list */
.pr-sidebar-cat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.pr-sidebar-cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 12px;
    border-radius: 10px;
    color: #333;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.pr-sidebar-cat-list a span { display: inline-flex; align-items: center; gap: 10px; }
.pr-sidebar-cat-list a i:first-child { color: #1C8EF0; font-size: 15px; }
.pr-sidebar-cat-list a i.bi-chevron-right { font-size: 10px; color: #bbb; transition: all 0.25s ease; }
.pr-sidebar-cat-list a:hover { background: #EAF2FC; color: #0B5FAE; padding-left: 16px; }
.pr-sidebar-cat-list a:hover i.bi-chevron-right { color: #1C8EF0; transform: translateX(3px); }

/* Sidebar promo banner */
.pr-sidebar-promo { position: relative; display: block; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 28px rgba(10,31,53,0.1); }
.pr-sidebar-promo img { width: 100%; display: block; transition: transform 0.5s ease; }
.pr-sidebar-promo:hover img { transform: scale(1.06); }
.pr-sidebar-promo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,31,53,0) 40%, rgba(10,31,53,0.88) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 18px;
}
.pr-sidebar-promo-overlay span { color: #7EC1FF; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.pr-sidebar-promo-overlay strong { color: #ffffff; font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 6px; margin-top: 4px; }

/* Sidebar quick contact */
.pr-sidebar-contact { display: flex; flex-direction: column; gap: 6px; }
.pr-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 6px;
    border-radius: 12px;
    transition: all 0.25s ease;
}
.pr-contact-row:hover { background: #F3F8FE; }
.pr-contact-icon {
    width: 40px; height: 40px; min-width: 40px;
    border-radius: 50%;
    background: #EAF2FC;
    color: #1C8EF0;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
}
.pr-contact-icon-whatsapp { background: rgba(37,211,102,0.12); color: #25d366; }
.pr-contact-row small { display: block; font-size: 11px; color: #888; font-weight: 600; }
.pr-contact-row strong { display: block; font-size: 13.5px; color: #0A1F35; font-weight: 700; }

/* ================= WHY BUY / PILLARS ================= */
.pr-pillars-section { padding: 20px 0 100px 0; background-color: #ffffff; }
.pr-pillars-head { max-width: 640px; margin: 0 auto 55px auto; }
.pr-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}
.pr-pillar-card {
    background: #ffffff;
    border: 1px solid rgba(10,31,53,0.06);
    border-radius: 18px;
    padding: 42px 32px;
    box-shadow: 0 10px 30px rgba(10,31,53,0.05);
    transition: all 0.4s cubic-bezier(0.25,1,0.5,1);
    position: relative;
    overflow: hidden;
}
.pr-pillar-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1C8EF0, #7EC1FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.pr-pillar-card:hover::before { transform: scaleX(1); }
.pr-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(28,142,240,0.16);
    border-color: rgba(28,142,240,0.25);
}
.pr-pillar-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1C8EF0, #0B5FAE);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 22px;
    box-shadow: 0 12px 22px rgba(28,142,240,0.3);
    transition: transform 0.4s ease;
}
.pr-pillar-card:hover .pr-pillar-icon { transform: rotate(-8deg) scale(1.05); }
.pr-pillar-card h3 { font-size: 20px; font-weight: 700; color: #0A1F35; margin-bottom: 14px; }
.pr-pillar-card p { font-size: 14.5px; color: #666; line-height: 1.75; margin: 0; }

/* ================= STATS ================= */
.pr-stats-section { padding: 70px 0; background-color: #EAF2FC; }
.pr-stats-section .container { max-width: 1240px; }
.pr-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; align-items: stretch; }
.pr-stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 168px;
    background: #ffffff;
    padding: 38px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(10,31,53,0.06);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.pr-stat-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(28,142,240,0.14); }
.pr-counter-wrap { font-size: 46px; font-weight: 800; color: #0A1F35; line-height: 1.1; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.pr-counter-suffix { color: #1C8EF0; }
.pr-stat-desc { font-size: 14.5px; color: #555; font-weight: 600; line-height: 1.5; margin: 0; }

/* ================= CTA BANNER ================= */
.pr-cta-section {
    position: relative;
    background: linear-gradient(150deg, #0A1F35 0%, #0F2A47 60%, #081217 100%);
    padding: 80px 0;
    overflow: hidden;
}
.pr-cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(28,142,240,0.35) 0%, rgba(28,142,240,0) 70%);
    top: -180px;
    right: -100px;
    border-radius: 50%;
}
.pr-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.pr-cta-text h2 { color: #ffffff; font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.pr-cta-text h2 span { color: #7EC1FF; }
.pr-cta-text p { color: rgba(255,255,255,0.75); font-size: 15px; margin: 0; }
.pr-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1300px) {
    .pr-shop-layout { grid-template-columns: 1fr 320px; gap: 24px; }
}
@media (max-width: 1200px) {
    .pr-products-grid { grid-template-columns: repeat(2, 1fr); }
    .pr-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .pr-shop-layout { grid-template-columns: 1fr; }
    .pr-shop-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .pr-shop-sidebar > * { flex: 1 1 300px; }
    .pr-products-grid { grid-template-columns: repeat(2, 1fr); }
    .pr-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .pr-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pr-feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .pr-hero-banner { padding: 110px 0 40px 0; min-height: 318px; background-attachment: scroll; }
    .pr-hero-banner-sm { min-height: 220px; }
    .pr-hero-title { font-size: 30px; }
    .pr-section-title { font-size: 28px; }
    .pr-intro-section, .pr-pillars-section { padding: 50px 0; }
    .pr-products-section { padding: 40px 0 70px 0; }
    .pr-products-grid { grid-template-columns: 1fr; }
    .pr-related-grid { grid-template-columns: 1fr; }
    .pr-related-section { padding: 20px 0 60px 0; }
    .pr-detail-card { padding: 22px; }
    .pr-detail-gallery { margin: -22px -22px 20px -22px; }
    .pr-detail-gallery-thumbs-row { padding: 0 22px; }
    .pr-thumb-btn { flex: 0 0 calc((100% - 24px) / 3); }
    .pr-detail-title { font-size: 23px; }
    .pr-shop-sidebar { flex-direction: column; }
    .pr-shop-sidebar > * { flex: 1 1 auto; }
    .pr-pillars-grid { grid-template-columns: 1fr; }
    .pr-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .pr-counter-wrap { font-size: 34px; }
    .pr-cta-inner { flex-direction: column; text-align: center; }
    .corporate-product-range, .pr-hero-banner { background-attachment: scroll; }
}