.footer {
    background-color: #efebeb;
    padding: 60px 0 0;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer__logo {
    margin-bottom: 35px;
    text-align: center;
}

.footer__logo img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

.footer__cta, .footer__logo-booksy {
    margin-top: 20px;
    text-align: center;
}
.footer__logo-booksy {
    width: 100%;
}
.footer__logo-booksy img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

.footer__cta-button {
    display: inline-block;
    background-color: #FFA500;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #FFA500;
}

.footer__cta-button:hover {
    background-color: #efebeb;
    color: #FFA500;
}
.footer__hours {
    margin: 0 10px 10px 10px;
}
.footer__heading {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
}

.footer__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: #FFA500;
}
.footer__hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.footer__hours-table tr {
    padding: 5px;
    color: #666;
}
.footer__hours-table td {
    padding: 10px 0;
    color: #666;
}

.footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__link {
    color: #666;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #FFA500;
}

.footer__contact-item {
    color: #666;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.footer__contact-icon {
    margin-right: 10px;
    min-width: 16px;
}
.footer__contact-phone {
    text-decoration: none;
    color: #FFA500;
    transition: color 0.3s ease;
    font-weight: 500;
}
.footer__contact-phone:hover {
    color: #c27e00;
}
.footer__social {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    justify-content: flex-start;
}

.footer__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f2f2f2;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer__social-icon:hover {
    background-color: #FFA500;
}

.footer__social-icon:hover .footer__social-svg {
    fill: white;
}

.footer__social-svg {
    fill: #666;
    transition: fill 0.3s ease;
}

.footer__bottom {
    margin-top: 40px;
    padding: 10px 0;
    text-align: center;
    height: 60px;
    width:100%;
}

.footer__copyright {
    color: #999;
    font-size: 14px;
}

.footer__copyright a {
    color: #FFA500;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer__heading {
        text-align: center;
    }

    .footer__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer__links {
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__contact-item {

        justify-content: center;
    }
    .footer__column--contact {
        align-items: center;
    }
}