/* =================================
   FINAL TRUST CLOSER SECTION
================================= */

.trust-closer-section {
    position: relative;

    background-image: url("https://static.vecteezy.com/system/resources/thumbnails/078/798/736/small/two-hands-touching-tree-bark-connection-with-nature-free-photo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Added for parallax scrolling effect */

    color: #fff;
    text-align: left;
    padding: 80px 0;

    overflow: hidden;
}

.trust-closer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 44, 163, 0.6) 0%, rgba(10, 18, 70, 0.85) 100%);
    z-index: 1;
}

/* BOX */
.trust-box {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    margin: 0;
    background: rgba(0, 0, 0, 0.25);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.trust-closer-section {
    padding: 80px 0;
}

/* TITLE */
.trust-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.trust-box p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.trust-box h3 {
    margin-bottom: 20px;
    color: #FFB300;
}

/* POINTS */
.trust-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.trust-points span {
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-points span::before {
    content: "✓";
    color: #FFB300;
    font-weight: bold;
    font-size: 15px;
}

.trust-points span:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFB300;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 179, 0, 0.15);
}

.trust-box .trust-buttons {
    display: flex;
    justify-content: left;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.trust-closer-section .section-tag {
    position: relative;
    z-index: 2;
}

/* =================================
   RESPONSIVE BREAKPOINTS
================================= */

/* Large Tablets (992px and below) */
@media (max-width: 992px) {
    .trust-closer-section {
        padding: 60px 0;
    }

    .trust-box {
        max-width: 90%;
        padding: 35px 30px;
        margin: 0 auto;
    }

    .trust-box h2 {
        margin-bottom: 18px;
    }

    .trust-box p {
        margin-bottom: 20px;
    }

    .trust-points {
        gap: 10px;
    }

    .trust-points span {
        padding: 8px 12px;
        font-size: 15px;
    }
}

/* Small Tablets & Large Phones (768px and below) */
@media (max-width: 768px) {
    .trust-closer-section {
        padding: 50px 0;
    }

    .trust-box {
        padding: 30px 25px;
        margin: 0;
        border-radius: 18px;
    }

    .trust-box h2 {
        margin-bottom: 15px;
    }

    .trust-box p {
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .trust-box h3 {
        margin-bottom: 15px;
    }

    .trust-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 15px;
    }

    .trust-points span {
        padding: 8px 10px;
        font-size: 15px;
        border-radius: 8px;
    }

    .trust-actions {
        gap: 12px;
        margin-top: 5px;
    }

    .trust-call {
        padding: 12px 18px;
        font-size: 14px;
    }

    .estimate-form {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .estimate-form input {
        width: 100%;
        max-width: 280px;
        padding: 10px 12px;
        font-size: 15px;
    }

    .estimate-form button {
        width: auto;
        min-width: 150px;
        padding: 10px 16px;
        font-size: 15px;
    }
}

/* Mobile Devices (576px and below) */
@media (max-width: 576px) {
    .trust-closer-section {
        padding: 40px 0;
    }

    .trust-box {
        padding: 25px 20px;
        margin: 0;
        border-radius: 16px;
    }

    .trust-box h2 {
        margin-bottom: 12px;
    }

    .trust-box p {
        line-height: 1.5;
        margin-bottom: 15px;
        text-align: left;
    }

    .trust-box h3 {
        margin-bottom: 12px;
    }

    .trust-points {
        gap: 8px;
        margin-top: 12px;
    }

    .trust-points span {
        padding: 6px 8px;
        font-size: 15px;
        border-radius: 6px;
    }

    .trust-actions {
        gap: 10px;
        flex-direction: column;
        width: 100%;
    }

    .trust-call {
        padding: 10px 16px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        display: inline-block;
    }

    .estimate-form {
        width: 100%;
    }

    .estimate-form input {
        max-width: 260px;
        padding: 10px;
        font-size: 15px;
        border-radius: 5px;
    }

    .estimate-form button {
        padding: 10px 14px;
        font-size: 14px;
        min-width: 130px;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .trust-points {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .trust-points span {
        text-align: left;
        padding: 8px 10px;
        font-size: 18px;
    }

    .trust-box h2 {
    }
}

/* Very Small Mobile Devices (400px and below) */
@media (max-width: 400px) {
    .trust-closer-section {
        padding: 30px 0;
    }

    .trust-box {
        padding: 20px 22px;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 14px;
    }

    .trust-box h2 {
        margin-bottom: 10px;
    }

    .trust-box p {
        margin-bottom: 12px;
    }

    .trust-box h3 {
        margin-bottom: 10px;
    }

    .trust-points span {
        padding: 6px 8px;
        font-size: 18px;
    }

    .trust-call {
        padding: 8px 14px;
        font-size: 16px;
    }

    .estimate-form input {
        padding: 8px 10px;
        font-size: 16px;
        max-width: 240px;
    }

    .estimate-form button {
        padding: 8px 12px;
        font-size: 16px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .trust-closer-section {
        padding: 40px 0;
    }

    .trust-box {
        padding: 20px 25px;
    }

    .trust-box h2 {
        margin-bottom: 10px;
    }

    .trust-points {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .trust-actions {
        flex-direction: row;
        justify-content: center;
    }

    .trust-call {
        width: auto;
    }

    .estimate-form {
        flex-direction: row;
        width: auto;
    }

    .estimate-form input {
        width: 160px;
    }
}

/* Print Styles (Optional) */
@media print {
    .trust-closer-section {
        background: #f0f0f0;
        padding: 20px 0;
        position: relative;
    }

    .trust-closer-section::before {
        display: none;
    }

    .trust-box {
        background: #fff;
        border: 1px solid #ddd;
        backdrop-filter: none;
        color: #000;
        box-shadow: none;
    }

    .trust-box h2,
    .trust-box p,
    .trust-box h3 {
        color: #000;
    }

    .trust-points span {
        background: #f5f5f5;
        color: #000;
        border: 1px solid #ddd;
        backdrop-filter: none;
    }

    .trust-call {
        background: #f0f0f0;
        color: #000;
        border: 1px solid #ddd;
    }

    .estimate-form button {
        background: #f0f0f0;
        color: #000;
        border: 1px solid #ddd;
    }
}

/* =========================================
   TYPOGRAPHY STANDARDIZATION (USER REQUESTED)
   ========================================= */
/* Desktop */
.trust-closer-section h2, .trust-box h2 { font-size: 40px !important; }
.trust-closer-section h3, .trust-box h3 { font-size: 22px !important; }
.trust-closer-section p, .trust-box p { font-size: 18px !important; line-height: 1.6 !important; }
.trust-closer-section li { font-size: 18px !important; line-height: 1.6 !important; }

/* Tablet and Mobile (<= 1024px) */
@media (max-width: 1024px) {
    .trust-closer-section h2, .trust-box h2 { font-size: 35px !important; }
    .trust-closer-section h3, .trust-box h3 { font-size: 22px !important; }
    .trust-closer-section p, .trust-box p { font-size: 18px !important; line-height: 1.6 !important; }
    .trust-closer-section li { font-size: 18px !important; line-height: 1.6 !important; }
}