/* =====================================================
   Banner Section - Layout & Background
   START
===================================================== */

.banner-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
    padding: 90px 0;
    text-align: center;
}

/* Badge */

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217,41,41,0.08);
    border: 1px solid rgba(217,41,41,0.3);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 13px;
    color: #d92929;
    font-weight: 500;
    margin: 0 auto 22px;
}

/* Title */

.banner-content__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    color: #111;
    margin: 4px 0 12px;
}

/* Subtitle */

.banner-content__desc {
    font-size: 18px;
    color: #333;
    max-width: 820px;
    margin: 0 auto 20px;
}

/* =====================================================
   Banner Section - Pills
   START
===================================================== */

.banner-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 16px auto 28px;
    padding: 0 10px;
}

.banner-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #94a3b8;
}

.banner-pill svg {
    color: #d92929;
    flex-shrink: 0;
}

/* =====================================================
   Banner Section - Pills
   END
===================================================== */


/* =====================================================
   Banner Section - Search Box (Final Fixed Version)
   START
===================================================== */
.search-box {
    max-width: 640px;   /* control width */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}




/* Mobile */

@media (max-width: 576px) {
    .search-box-field__input {
        height: 52px;
        font-size: 15px;
        padding: 0 44px 0 14px;
    }
}

/* =====================================================
   Banner Section - Clean Search Field
   END
   ===================================================== */


/* =====================================================
   Banner Section - Search Box
   END
===================================================== */


/* =====================================================
   Banner Section - Animation Removal (Defensive)
   START
===================================================== */

.banner-image,
.banner-content *[style*="animation"],
.banner-content *[data-aos],
.banner-content [data-aos] {
    animation: none !important;
    transition: none !important;
}

/* =====================================================
   Banner Section - Animation Removal
   END
===================================================== */


/* =====================================================
   Trust Section
   START
===================================================== */

.trust-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

/* Stats Grid */

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.trust-stat-item h3 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.trust-stat-item p {
    font-size: 15px;
    color: #666;
}

/* Rating */

.trust-rating {
    margin-bottom: 50px;
}

.stars {
    font-size: 22px;
    letter-spacing: 3px;
    color: #111;
    margin-bottom: 6px;
}

.trust-rating p {
    font-size: 14px;
    color: #777;
}

/* Logos */

.trust-logos {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scrollLogos 30s linear infinite;
}

.logo-item img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.2s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Logo Scroll Animation */

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
   Trust Section
   END
===================================================== */


/* =====================================================
   Responsive Adjustments
   START
===================================================== */

@media (max-width: 992px) {

    .banner-content__title {
        font-size: 40px;
    }

    .banner-content__desc {
        font-size: 16px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .logo-track {
        gap: 40px;
    }

}

@media (max-width: 576px) {

    .banner-section {
        padding: 60px 20px;
    }

    .banner-content__title {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .banner-content__desc {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .banner-pill {
        font-size: 14px;
        padding: 7px 12px;
    }

    .search-box-field__input {
        height: 52px;
        font-size: 15px;
        padding: 0 44px 0 14px;
    }

    .search-box-field__icon {
        right: 14px;
    }

}

/* =====================================================
   Responsive Adjustments
   END
===================================================== */