.search-page-sec {
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg,
            #143d73 0%,
            #1a4d8a 50%,
            #143d73 100%);
}


.hero-badge {
    display: inline-block;
    background: #ff6740;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 70px;
    margin: 5px 0px 22px;
}

.hero-title span {
    color: #ffae45;
}

.hero-desc {
    color: #dbeafe;
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 22px;
}

.hero-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.hero-check i {
    color: #f97316;
    margin-top: 3px;
    font-size: 14px;
}

.hero-check span {
    color: #dbeafe;
    font-size: 16px;
}

.hero-check strong {
    color: #fff;
}

.hero-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 30px 0px;
}

.hero-stars i {
    color: #f97316;
    font-size: 14px;
}

.hero-stars span {
    color: #dbeafe;
    font-size: 16px;
    font-weight: 500;
}

/* Form Card */
.form-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.form-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #143d73;
    margin-bottom: 4px;
}

.form-card p {
    font-size: 14px;
    color: #6a7282;
    margin-bottom: 10px;
}

.form-card label {
    font-size: 14px;
    font-weight: 600;
    color: #364153;
    margin-bottom: 4px;
}

.form-card .form-control,
.form-card .form-select {
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 12px;
    color: #333;
    font-weight: 400;
    background: #f3f3f5;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.upload-box {
    border: 1.5px dashed #d0d0d0;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    color: #6a7282;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f3f5;
    font-weight: 500;
}

.upload-box i {
    color: #1a1f5e;
}

.btn-orange {
    color: #fff;
    background: linear-gradient(to right, #ff6740, #ffae45);
    border: none;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    transition: background 0.2s;
    cursor: pointer;
}

.btn-orange:hover {
    background: linear-gradient(90deg, #143d73 0%, #1a4d8a 50%, #143d73 100%);
}

.form-disclaimer {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

.why-search-section {
    padding: 70px 0;
    background: #fff;
}

.section-eyebrow {
    font-size: 36px;
    font-weight: 700;
    color: #143d73;
    text-align: center;
    margin-bottom: 8px;
}

.section-sub {
    font-size: 20px;
    color: #4a5565;
    text-align: center;
    margin-bottom: 50px;
}

.why-search-section .feature-card {
    background: #f9f9fb;
    border-radius: 12px;
    padding: 24px 20px;
    height: 100%;
    border: 1px solid #efefef;
    transition: box-shadow 0.2s;
}

.why-search-section .feature-card:hover {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.1);
}

.why-search-section .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: linear-gradient(to bottom right,
            #ff6740,
            #ffae45);
}

.why-search-section .feature-icon i {
    color: #fff;
    font-size: 20px;
}

.why-search-section .feature-card h6 {
    font-size: 20px;
    font-weight: 600;
    color: #143d73;
    margin: 10px 0px;
}

.why-search-section .feature-card p {
    font-size: 17px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}


.amazon-section {
    padding: 70px 0;
    background: #f4f6fb;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #efefef;
    height: 100%;
    transition: box-shadow 0.2s;
}

.stat-card:hover {
    box-shadow: 0 8px 30px rgba(26, 31, 94, 0.1);
}

.stat-icon {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(to bottom right, #ff6740, #ffae45);
}

.stat-icon i {
    color: #fff;
    font-size: 22px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #143d73;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: #143d73;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 16px;
    color: #4a5565;
    line-height: 1.6;
    margin: 0;
}

.how-search-section {
    padding: 70px 0;
    background: linear-gradient(to right,
            #143d73,
            #1a4d8a);
}

.how-search-section .section-eyebrow {
    color: #fff;
}

.how-search-section .section-sub {
    color: #dbeafe;
}

.how-search-section .step-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 28px 22px;
    height: 100%;
    position: relative;
}

.how-search-section .step-card:hover {
    background-color: color-mix(in oklab,
            white 20%,
            transparent);
}

.how-search-section .step-number {
    font-size: 46px;
    font-weight: 700;
    color: #ffae458a;
    line-height: 1;
    margin-bottom: 14px;
}

.how-search-section .step-icon {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: linear-gradient(to bottom right, #ff6740, #ffae45);
}

.how-search-section .step-icon i {
    color: #fff;
    font-size: 20px;
}

.how-search-section .step-card h6 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.how-search-section .step-card p {
    font-size: 16px;
    color: #dbeafe;
    line-height: 1.65;
    margin: 0;
}

.testimonials-search-section {
    padding: 70px 0;
    background: #fff;
}

.testimonials-search-section .review-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
}

.reviewer-info img {
    width: 70px;
    border-radius: 50px;
}

.testimonials-search-section .reviewer-info p.reviewer-role-wrap {
    margin: 0px;
    color: #ff6740;
    font-size: 14px;
}

.testimonials-search-section .reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonials-search-section .reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #e0e3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonials-search-section .avatar-sm {
    font-size: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.testimonials-search-section .reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: #143d73;
    margin: 0 0 2px;
}

.testimonials-search-section .reviewer-role {
    font-size: 15px;
    color: #4a5565;
    margin: 0;
}

.testimonials-search-section .review-card svg {
    position: absolute;
    top: 33px;
    right: 34px;
    width: 44px;
    height: 44px;
    color: #ffae4533;
}

.testimonials-search-section .review-stars {
    display: flex;
    gap: 5px;
    margin: 13px 0px;
}

.testimonials-search-section .review-stars i {
    color: #ffae45;
    font-size: 18px;
}

.testimonials-search-section .review-text {
    font-size: 16px;
    color: #364153;
    line-height: 1.7;
    margin: 0;
}

.testimonials-search-section .verified-badge {
    font-size: 11px;
    color: #22c55e;
    font-weight: 600;
    margin-top: 10px;
}


.faq-search-section {
    padding: 70px 0;
    background: #f4f6fb;
}

.faq-search-section .accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: #143d73;
    background: #fff;
}

.faq-search-section .accordion-button:not(.collapsed) {
    color: #143d73;
    background: #fff;
    box-shadow: none;
}

.faq-search-section .accordion-button:not(.collapsed)::after {
    filter: none;
}

.faq-search-section .accordion-button:focus {
    box-shadow: none;
}

.faq-search-section .accordion-body {
    font-size: 16px;
    color: #364153;
    line-height: 1.7;
    background: #fff;
    padding: 0px 20px 20px;
}

.faq-search-section .accordion-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-search-section .faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-search-section .faq-cta p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
}

.faq-search-section .faq-cta p {
    font-size: 18px;
    color: #4a5565;
    margin-bottom: 16px;
}

.faq-search-section .faq-cta .btn-orange {
    width: auto;
    padding: 13px 36px;
    border-radius: 10px;
    font-size: 14px;
}

.hero-badge svg {
    width: 22px;
    height: 16px;
}

.hero-check svg {
    color: #ffae45;
}

section.search-page-sec .mt small {
    color: #dbeafe;
    font-size: 14px;
}

.stat-icon svg {
    width: 36px;
    height: 36px;
}