/* Footer — Best Star Inn */

.site-footer-v2 {
    background: var(--background-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 1.5rem;
    font-size: 0.9rem;
    border-top: 3px solid var(--accent-color);
}

.footer-container {
    width: min(92%, var(--container-max));
    margin-inline: auto;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-col-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col-1 .footer-logo img {
    height: 72px;
    width: auto;
    margin-bottom: 1.25rem;
    transition: opacity var(--transition-fast);
}

.footer-col-1 .footer-logo a:hover img {
    opacity: 0.85;
}

.footer-social-icons a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.15rem;
    margin: 0 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.footer-social-icons a:hover {
    color: var(--primary-color);
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 260px;
    margin-bottom: 0.5rem;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    font-size: 0.85rem;
}

.footer-contact li i {
    color: var(--accent-color);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact li a:hover {
    color: var(--accent-color);
}

.footer-bottom-designer a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-designer a:hover {
    color: var(--accent-color);
}

.footer-links,
.footer-book-now-section,
.footer-contact {
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--accent-color);
}

.btn-footer-book-now {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-footer-book-now:hover {
    background: var(--accent-hover-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-color-rgb), 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-left,
.footer-bottom-right {
    text-align: center;
}

.footer-bottom-address a {
    color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-col-1,
    .footer-links,
    .footer-contact {
        text-align: left;
    }

    .footer-col-1 {
        align-items: flex-start;
    }

    .footer-book-now-section,
    .footer-contact .btn-footer-book-now {
        display: inline-flex;
    }

    .footer-bottom-designer {
        text-align: right;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom-left { text-align: left; }
    .footer-bottom-right { text-align: right; }
}
