/* Tesla Store — Home page: Why Choose Us + CTA */
.trust-section {
    background: var(--amazon-bg, #eaeded);
    padding: 3rem 0;
}

.trust-section .section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amazon-text, #0f1111);
    text-align: center;
    margin-bottom: 2rem;
}

.trust-section .section-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary-color, #ff9900);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

.trust-card {
    background: #fff;
    border: 1px solid #e3e6e6;
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 2px 8px rgba(15, 17, 17, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 153, 0, 0.35);
    box-shadow: 0 8px 24px rgba(15, 17, 17, 0.08);
}

.trust-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff8eb 0%, #fff3d6 100%);
    border: 1px solid rgba(255, 153, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card-icon i {
    font-size: 1.5rem;
    color: var(--primary-color, #ff9900);
}

.trust-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--amazon-nav, #232f3e);
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.875rem;
    color: var(--amazon-text-muted, #565959);
    margin: 0;
    line-height: 1.5;
}

/* CTA section */
.cta-section {
    background: var(--amazon-nav, #232f3e);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 153, 0, 0.08) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111 !important;
    background: var(--primary-color, #ff9900);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(255, 153, 0, 0.35);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    background: #e88b00;
    color: #111 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.cta-button i {
    font-size: 1.125rem;
}

/* Section header + View All link */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-header .section-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--amazon-text, #0f1111);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header .section-title i {
    color: var(--primary-color, #ff9900);
    font-size: 1.125rem;
}

.section-header .section-title::after {
    display: none;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    min-height: 38px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--amazon-nav, #232f3e) !important;
    background: #fff;
    border: 1.5px solid #d5d9d9;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(15, 17, 17, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.view-all-btn i {
    font-size: 0.8125rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.view-all-btn:hover {
    background: #fff8eb;
    border-color: var(--primary-color, #ff9900);
    color: var(--amazon-nav, #232f3e) !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 153, 0, 0.18);
}

.view-all-btn:hover i {
    transform: translateX(3px);
    color: var(--primary-color, #ff9900);
}

@media (max-width: 767.98px) {
    .trust-section {
        padding: 2rem 0;
    }

    .trust-section .section-heading {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .trust-card {
        padding: 1.25rem 1rem;
    }

    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-title {
        font-size: 1.375rem;
    }

    .cta-text {
        font-size: 0.9375rem;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
    }

    .section-header {
        margin-bottom: 1.25rem;
    }

    .section-header .section-title {
        font-size: 1.125rem;
    }

    .view-all-btn {
        min-height: 40px;
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
}
