/* Footer Styles */

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.testimonials-header h2 {
    font-size: 56px;
    font-weight: 800;
    color: #1D1E20;
    margin: 0;
    max-width: 396px;
    line-height: 64px;
}

.leave-review-button {
    padding: 12px 24px;
    background: #FABA46;
    color: #000000;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.leave-review-button:hover {
    opacity: 0.9;
    text-decoration: none;
    color: #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: #F7FAFC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #4A5568;
    margin-right: 12px;
}

.testimonial-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1A202C;
    margin: 0 0 4px 0;
}

.testimonial-info p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.testimonial-info p.location-info {
    font-size: 14px;
    color: #718096;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.location-info svg {
    color: #718096;
    flex-shrink: 0;
}

.testimonial-rating {
    margin-bottom: 16px;
}

.star {
    color: #FABA46;
    font-size: 16px;
    width: 20px;
    height: 20px;

    & + .star {
        margin-left: 4px;
    }
}

.star-gold {
    background-position: 0 -23px;
}

.star-gray {
    background-position: 0 -1px;
}

.testimonial-content {
    font-size: 14px;
    line-height: 1.5;
    color: #4A5568;
    margin-bottom: 16px;
}

.read-more-link {
    font-size: 14px;
    color: #2D3748;
    text-decoration: none;
    font-weight: 600;
}

.read-more-link:hover {
    color: #1A202C;
    text-decoration: none;
}

.read-more-reviews {
    text-align: center;
}

.read-more-reviews a {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 2px solid #1D1E20;
    border-radius: 8px;
    color: #1D1E20;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.read-more-reviews a:hover {
    background: #F7FAFC;
    text-decoration: none;
}

.links ul li {
    font-size: 14px;
    padding: 4px 0;
}

.links ul li:first-child {
    color: #1D1E20;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.copyright p.copy-text {
    font-size: 14px;
    color: #1D1E20;
}

.footer .links {
    margin-bottom: 32px;
}

.f-bottom {
    margin-bottom: 32px;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-bottom .payments-section {
    display: flex;
    align-items: center;
    gap: 24px;
}

.f-bottom .title {
    color: #1D1E20;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.f-bottom .payments-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.f-bottom .payment {
    display: flex;
    align-items: center;
}

.f-bottom .payment img {
    width: auto;
}

.f-bottom .bbb-logo {
    height: 40px;
    width: auto;
    margin-left: auto;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .footer {
        padding: 0;
    }

    .footer .menu-item {
        border-bottom: 1px solid #E6E6E6;
    }

    .footer .menu-item:first-child {
        border-top: 1px solid #E6E6E6;
    }

    .footer .menu-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        font-size: 18px;
        font-weight: 600;
        color: #1A1A1A;
        text-decoration: none;
        cursor: pointer;
    }

    .footer .menu-link:not([data-toggle="collapse"]) {
        font-size: 16px;
        font-weight: normal;
    }

    .footer .submenu {
        padding: 0;
    }

    .footer .submenu a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        color: #1A1A1A;
        text-decoration: none;
        border-top: 1px solid #E6E6E6;
    }

    .footer .dropdown-chevron {
        transition: transform 0.2s ease;
    }

    .footer .menu-link[aria-expanded="true"] .dropdown-chevron {
        transform: rotate(180deg);
    }

    .f-bottom {
        margin-top: 32px;
        border-top: none;
    }

    .testimonials-header h2 {
        font-size: 32px !important;
        max-width: 70%;
        line-height: 39px;
    }

    .links {
        margin-bottom: 40px;
    }

    .links ul li {
        margin-bottom: 16px;
    }

    .links ul li a {
        font-size: 16px;
    }

    .f-bottom {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 32px 0;
    }

    .f-bottom .payments-section {
        width: 100%;
        text-align: center;
    }

    .f-bottom .title {
        display: block;
        margin-bottom: 24px;
    }

    .f-bottom .payments-block {
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .f-bottom .payment img {
        height: 24px;
        width: auto;
    }

    .f-bottom .bbb-logo {
        margin: 0;
        height: 48px;
    }
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-header {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .testimonials-header h2 {
        font-size: 32px !important;
        max-width: 70%;
        line-height: 39px;
    }
    
    .f-bottom .payments-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .f-bottom .bbb-logo {
        margin-left: 0;
    }

    .f-bottom .payments-block {
        flex-wrap: wrap;
    }
}
