/* ==========================================================================
   Services Section - 70% Keyword Grid (call) + 30% Brands Sidebar (page links)
   ========================================================================== */

.services-section {
    background: #ffffff;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    padding: 40px 20px;
}

.services-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

/* ---------------- 70% - Services keyword grid ---------------- */
.services-section__main {
    flex: 0 0 70%;
    max-width: 70%;
}

.services-section__title {
    display: table;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    background: #f3f3f3;
    padding: 8px 20px;
    border-radius: 6px;
    text-align: center;
    margin: 0 auto 18px;
}

.services-section__text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #444444;
    margin: 0 0 22px;
}

.services-section__text strong {
    color: #39A1E0;
}

.services-section__Tollfree {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    background: #f3f3f3;
    color: #39A1E0;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 999px;
}

.services-section__Tollfree a,
.services-section__phone-inline {
    color: #39A1E0;
    font-weight: 800;
    text-decoration: none;
}

.services-section__Tollfree a:hover,
.services-section__Tollfree a:focus-visible,
.services-section__phone-inline:hover,
.services-section__phone-inline:focus-visible {
    text-decoration: underline;
}

.services-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.service-tag {
    display: block;
    background: #f7f7f7;
    color: #333333;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
    padding: 12px 14px;
    border-radius: 6px;
    border-left: 3px solid #39A1E0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-tag:hover,
.service-tag:focus-visible {
    background: #39A1E0;
    color: #ffffff;
    transform: translateY(-2px);
    outline: none;
}

/* ---------------- 30% - Brands sidebar ---------------- */
.services-section__sidebar {
    box-sizing: border-box;
    flex: 0 0 28%;
    max-width: 28%;
    background: #f3f3f3;
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    padding: 5px 5px;
    position: sticky;
    top: 90px;
}

.services-section__sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: #39A1E0;
    margin: 0 0 14px;
}

.services-section__brands {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-link {
    display: block;
    background: #ffffff;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.brand-link:hover,
.brand-link:focus-visible {
    background: #39A1E0;
    color: #ffffff;
    outline: none;
}

.brand-link.is-current {
    background: #39A1E0;
    color: #ffffff;
}

/* ---------------- Mobile responsive ---------------- */
/* Stacked order: 70% main content first, 30% brands sidebar next */
@media (max-width: 900px) {
    .services-section__inner {
        flex-direction: column;
    }

    .services-section__main,
    .services-section__sidebar {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }

    .services-section__sidebar {
        position: static;
    }

    .services-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 28px 14px;
    }

    .services-section__title {
        font-size: 17px;
        padding: 6px 14px;
    }

    .services-section__text {
        font-size: 14px;
        line-height: 1.65;
        margin: 0 0 18px;
    }

    .services-section__Tollfree {
        font-size: 14px;
        padding: 2px 8px;
    }

    .services-section__grid {
        grid-template-columns: 1fr;
    }

    .service-tag {
        font-size: 13px;
    }

    .services-section__sidebar {
        padding: 16px 14px;
    }

    .services-section__sidebar-title {
        font-size: 16px;
    }

    .brand-link {
        font-size: 13px;
        padding: 9px 10px;
    }
}
