/* ============================================================
   SM FREIGHT — QUOTE PAGE
   ============================================================ */

.quote-main { padding-top: 76px; }

.quote-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 46px;
    align-items: start;
}

/* -------------------- SIDE COLUMN -------------------- */
.quote-side .section-title {
    font-size: clamp(23px, 2.6vw, 30px);
    margin-bottom: 30px;
}

.quote-steps { margin-bottom: 32px; }

.quote-steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 26px;
    position: relative;
}

.quote-steps li:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 42px;
    bottom: 6px;
    width: 2px;
    background: repeating-linear-gradient(180deg, var(--border) 0 5px, transparent 5px 10px);
}

.qs-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.quote-steps h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.quote-steps p { font-size: 14px; }

.quote-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 24px;
    background: var(--light-bg);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
}

.quote-badge {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.quote-badge .tick {
    width: 19px;
    height: 19px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.quote-contact-direct {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.quote-contact-direct p {
    font-size: 14px;
    margin-bottom: 6px;
}

.quote-phone {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.quote-phone:hover { color: var(--orange); }

/* -------------------- FORM PANEL -------------------- */
.quote-form-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 46px 44px;
    box-shadow: var(--shadow-md);
}

.quote-form-panel h2 {
    font-size: clamp(22px, 2.6vw, 28px);
    margin-bottom: 8px;
}

.quote-form-panel .form-intro {
    font-size: 14px;
    margin-bottom: 28px;
}

.quote-form-panel .btn-accent { margin-top: 6px; }

/* -------------------- TRUST BAR -------------------- */
.quote-trust { padding: 62px 0; }

.quote-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.qt-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 26px;
    border-top: 3px solid var(--orange);
    transition: transform .3s ease, box-shadow .3s ease;
}

.qt-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.qt-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.qt-item span {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
}

/* -------------------- RESPONSIVE -------------------- */
@media screen and (max-width: 1100px) {
    .quote-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 980px) {
    .quote-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .quote-main { padding-top: 58px; }
}

@media screen and (max-width: 700px) {
    .quote-form-panel { padding: 32px 24px; }
    .quote-trust-grid { grid-template-columns: 1fr; }
}
