/* --- TRUST FEATURES ROW  Start--- */

.trust-features-section {
    padding: 40px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px;
    background: #fcfcfc;
    border-radius: 8px;
    border: 1px solid #edf2f7;
    transition: var(--transition-normal);
}

.trust-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    background: #000000;
    border-radius: 12px;
    padding: 10px;
}

.trust-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
}

.trust-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

@media(max-width: 1024px) {
    .trust-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media(max-width: 767px) {
    .trust-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 10px;
    }

    .trust-features-section {
        padding: 20px 0;
    }
}

/* --- TRUST FEATURES ROW  End --- */


/* --- MISSION SECTION --- */
.mission-section {
    margin: 40px 0 0;
    background-color: #f4f6f8;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-banner-img {
    width: 100%;
    height: 100%;
    /* border-radius: 16px; */
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.mission-img-col {
    height: 100%;
}

.mission-quote-box {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-yellow);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.quote-icon {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    background: #000000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-text-col {
    padding: 20px 20px 20px 0;
}

@media(max-width: 1024px) {
    .mission-grid {
        gap: 20px;
    }
}

@media(max-width: 991px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-text-col {
        padding: 0px 20px 20px 20px;
    }

    .mission-quote-box {
        flex-direction: column;
    }
}

@media(max-width: 767px) {
    .mission-section {
        margin: 20px 0 0;
    }
}

/* --- TESTIMONIAL SECTION --- */

.testimonial-section {
    background-color: #111111;
    color: #ffffff;
    padding: 40px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-section .testimonial-container {
    max-width: 950px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-size: 4rem;
    color: var(--primary-yellow);
    margin-bottom: -10px;
}


.testimonial-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    color: #e2e8f0;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.avatar-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.customer-avatar.active,
.customer-avatar:hover {
    border-color: var(--primary-yellow);
    opacity: 1;
    transform: scale(1.15);
}


.testimonial-section .splide__pagination {
    margin-top: 30px;
}

.testimonial-section .splide__pagination__page {
    width: 10px;
    height: 10px;
    background: #666;
    opacity: 1;
}

.testimonial-section .splide__pagination__page.is-active {
    background: var(--primary-yellow);
    transform: scale(1.3);
}

.testimonial-section .avatar-slider {
    width: 260px;
    margin: 30px auto 0;
}

.testimonial-section .avatar-slider .splide__track {
    padding: 10px;
}

.avatar-slider .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none !important;
}

.testimonial-section .customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: all .3s ease;
    transform: scale(.8);
    opacity: .5;
}

.testimonial-section .splide__slide.is-active .customer-avatar {
    transform: scale(1.15);
    opacity: 1;
    border: 3px solid #ffd400;
}

@media(max-width: 767px) {
    .testimonial-section {
        padding: 40px 0px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-section .avatar-slider {
        margin: 15px auto 0;
    }
}

/* ............... Lifestyle Banners Section START.......... */
.lifestyle-banners-section {
    padding: 40px 0;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    /* gap: 24px; */
}

.lifestyle-card {
    position: relative;
    /* border-radius: 12px; */
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 400px;
}

.lifestyle-img-holder {
    width: 100%;
    height: 100%;
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lifestyle-card:hover .lifestyle-img {
    transform: scale(1.1);
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 20%, rgb(0 0 0 / 35%) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #ffffff;
}

.lifestyle-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.lifestyle-overlay p {
    font-size: 0.85rem;
    color: #dddddd;
    margin-bottom: 14px;
}

@media(max-width: 1199px) {
    .lifestyle-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width: 1024px) {
    .lifestyle-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .lifestyle-card:first-child {
        grid-column: 1 / -1;
    }
}

@media(max-width: 767px) {
    .lifestyle-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lifestyle-card {
        height: 280px;
    }

    .lifestyle-banners-section {
        padding: 20px 0;
    }
}

/* ............... Lifestyle Banners Section END........... */




/* .............. Brand Tabs START........... */


.brand-showcase {
    margin: 0 0 40px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.brand-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    overflow: hidden;
    cursor: pointer;
    background: var(--card-bg);
    border-right: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.brand-card:last-child {
    border-right: none;
}

.brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-yellow);
    transform: translateY(100%);
    transition: .4s ease;
    z-index: 1;
}

.brand-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #000;
    transform: translateX(-50%);
    transition: .35s;
}

.brand-card span {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
    transition: var(--transition-normal);
}

.brand-card:hover::before {
    transform: translateY(0);
}

.brand-card:hover::after {
    width: 100%;
}

.brand-card:hover span {
    color: #000;
    transform: scale(1.08);
}

.brand-card:hover {
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media(max-width:767px) {
    .brand-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-card {
        height: 90px;
        border-bottom: 1px solid var(--border-color);
    }

    .brand-card:nth-child(2) {
        border-right: none;
    }
}

@media(max-width:575px) {
    .brand-showcase {
        grid-template-columns: 1fr;
    }

    .brand-card {
        height: 75px;
        border-right: none;
    }
}

/* ............. Brand Tabs END........... */


/*==========================================
 HERO SLIDER
==========================================*/

.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: var(--header-bg);
    margin-bottom: 40px;
}

.hero-slide {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 10s linear infinite alternate;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(90deg,
            rgba(13, 13, 13, .92) 0%,
            rgba(13, 13, 13, .78) 35%,
            rgba(13, 13, 13, .35) 65%,
            rgba(13, 13, 13, .15) 100%);
}

.hero-slide::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(255, 219, 0, .35),
            transparent 70%);

    filter: blur(30px);
    z-index: 2;
}

.hero-slide .section-container {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-left {
    max-width: 650px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 219, 0, .15);
    color: var(--primary-yellow);
    border: 1px solid rgba(255, 219, 0, .4);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .5px;
    backdrop-filter: blur(8px);
    margin-bottom: 22px;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: 78px;
    line-height: 1;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 25px;
}

.hero-left h1 span {
    color: var(--primary-yellow);
}

.hero-left p {
    max-width: 550px;
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.splide__arrows {
    display: none;
}

.splide__pagination {
    bottom: 35px;
    gap: 10px;
}

.splide__pagination__page {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, .5);
    opacity: 1;
    transition: .35s;
}

.splide__pagination__page.is-active {
    width: 20px;
    border-radius: 20px;
    background: var(--primary-yellow);
    transform: none;
}

.hero-left>* {
    animation: fadeUp .8s ease both;
}

.hero-left h1 {
    animation-delay: .15s;
}

.hero-left p {
    animation-delay: .3s;
}


@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes heroZoom {

    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }

}

/*==========================================
 Tablet
==========================================*/

@media (max-width:991px) {
    .hero-slide {
        min-height: 600px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 56px;
    }

    .hero-left p {
        font-size: 17px;
    }
}

/*==========================================
 Mobile
==========================================*/
@media (max-width:767px) {
    .hero-slider-section {
        margin-bottom: 20px;
    }

    .hero-slide {
        min-height: 520px;
    }

    .hero-slide::before {
        background: rgba(13, 13, 13, .72);
    }

    .hero-slide::after {
        display: none;
    }

    .hero-left {
        text-align: center;
        margin: auto;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
}



/* ............... Bank Offers Section START.......... */

.bank-offers-section {
    padding: 40px 0;
}

.bank-offers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column;
}

.bank-title-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--primary-yellow);
    letter-spacing: 1px;
}

.bank-logos-row {
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
}

.bank-card {
    background: #1a1a1a;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.bank-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

.bank-logo-img {
    height: 18px;
    object-fit: contain;
}

.emi-badge {
    background: var(--primary-yellow);
    color: #000000;
    border: none;
}

.bank-offers-section .section-title {
    text-align: center;
    margin: 0;
}

@media(max-width: 767px) {
    .bank-offers-section {
        padding: 20px 0;
    }
}


/* FAQ Section Start */
.faq-section {
    padding: 80px 0;
}

.faq-section .faq-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 70px;
}

.faq-section .faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 120px;
    height: max-content;
}

.faq-section .faq-tab {
    border: none;
    background: none;
    text-align: left;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 800;
    padding: 12px 18px;
    cursor: pointer;
    transition: .3s;
    line-height: 1.2;
}

.faq-section .faq-tab.active {
    background: #ffd500;
}

.faq-section .faq-content {
    display: flex;
    flex-direction: column;
}

.faq-section .faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-section .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    padding: 28px 0;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
}

.faq-section .faq-question span:first-child {
    flex: 1;
}

.faq-section .icon {
    width: 35px;
    height: 35px;
    border: 2px solid #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    transition: .3s;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease;
}

.faq-section .faq-answer p {
    padding-bottom: 30px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-section .faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-section .faq-panel {
    display: none;
}

.faq-section .faq-panel.active {
    display: block;
}

/* Tablet */

@media(max-width:991px) {
    .faq-section .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-section .faq-sidebar {
        position: relative;
        top: 0;
        flex-direction: row;
        overflow: auto;
        white-space: nowrap;
    }

    .faq-section .faq-tab {
        font-size: 18px;
        flex: 0 0 auto;
    }

    .faq-section .faq-question {
        font-size: 20px;
    }
}

/* Mobile */

@media(max-width:767px) {
    .faq-section {
        padding: 50px 15px;
    }

    .faq-section .faq-sidebar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .faq-section .faq-tab {
        font-size: 18px;
        padding: 14px;
    }

    .faq-section .faq-question {
        font-size: 18px;
        padding: 20px 0;
    }

    .faq-section .icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .faq-section .faq-answer p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* FAQ Section End */



/* ................... Promo Banners Section START ............. */

.promo-banners-section {
    padding: 40px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 320px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    /* padding: 45px; */
    transition: .4s ease;
    isolation: isolate;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.promo-info {
    max-width: 55%;
    color: #fff;
    z-index: 9;
    position: absolute;
    padding: 20px;
}

.promo-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}
.promo-bike-img {
    transition: .45s ease;
    z-index: 2;
    object-fit: cover;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Responsive */

@media(max-width:767px) {
    .promo-banners-section {
        padding: 20px 0;
    }
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .promo-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        min-height: auto;
    }

    .promo-info {
        max-width: 100%;
        order: 2;
    }
}
/* ................... Promo Banners Section END ............. */