/* ==========================================================================
   BB Footer Row - C&C Fluid Power
   ========================================================================== */

.bb-footer-row {
    border-top: 1px solid;
    padding: 50px 0;
}

.bb-footer-row__inner {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Columns */
.bb-footer-row__col {
    flex: 1;
    min-width: 0;
}

.bb-footer-row__col--company {
    flex: 1.2;
}

/* Company name */
.bb-footer-row__company-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

/* Company description */
.bb-footer-row__description {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* Column headings */
.bb-footer-row__col-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

/* Quick links list */
.bb-footer-row__link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bb-footer-row__link-list li {
    margin-bottom: 10px;
}

.bb-footer-row__link-list a {
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bb-footer-row__link-list a:hover {
    text-decoration: none;
}

/* Contact list */
.bb-footer-row__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bb-footer-row__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.bb-footer-row__contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.bb-footer-row__contact-icon svg {
    width: 16px;
    height: 16px;
}

.bb-footer-row__contact-text {
    font-size: 14px;
    line-height: 1.6;
}

.bb-footer-row__contact-link {
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bb-footer-row__contact-link:hover {
    text-decoration: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
    .bb-footer-row__inner {
        gap: 30px;
    }

    .bb-footer-row__col--company {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .bb-footer-row__inner {
        flex-direction: column;
        gap: 36px;
    }

    .bb-footer-row {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .bb-footer-row__inner {
        padding: 0 20px;
    }

    .bb-footer-row {
        padding: 30px 0;
    }
}
