/**
 * Footer Styles - Matches fiorentini.com/en/
 */

.pf-footer {
    background: var(--pf-secondary);
    color: var(--pf-white);
}

.pf-footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .pf-footer__container {
        padding: 0 20px;
    }
}

/* Main Footer */
.pf-footer__main {
    padding: 48px 0;
}

.pf-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Brand Column */
.pf-footer__brand {
    display: flex;
    flex-direction: column;
}

.pf-footer__logo {
    display: inline-block;
    margin-bottom: 16px;
}

.pf-footer__logo img,
.pf-footer__logo .custom-logo {
    max-width: 180px;
    height: auto;
}

.pf-footer__logo-img {
    max-width: 180px;
    height: 44px;
}

.pf-footer__logo-text {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--pf-white);
}

.pf-footer__address {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);  /* Increased for better contrast */
    margin: 0 0 8px;
}

.pf-footer__phone {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);  /* Increased for better contrast */
    margin: 0 0 20px;
}

.pf-footer__phone a {
    color: rgba(255, 255, 255, 0.9);  /* Increased for better contrast */
    text-decoration: none;
}

.pf-footer__phone a:hover {
    color: var(--pf-white);
}

.pf-footer__social-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);  /* Increased from 0.5 for better contrast */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px;
}

.pf-footer__social {
    display: flex;
    gap: 16px;
}

.pf-footer__social a {
    color: rgba(255, 255, 255, 0.9);  /* Increased for better contrast */
    transition: color 0.2s;
}

.pf-footer__social a:hover {
    color: var(--pf-white);
}

/* CTA Column */
.pf-footer__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.pf-footer__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 48px;
    width: 100%;
    background: var(--pf-primary);
    color: var(--pf-white);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
}

.pf-footer__cta-btn:hover {
    background: var(--pf-primary-dark);
    color: var(--pf-white);
}

/* Links Column */
.pf-footer__links {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.pf-footer__links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.pf-footer__links-col a {
    font-size: 14px;
    font-weight: 500;
    color: var(--pf-white);
    text-decoration: none;
    transition: color 0.2s;
}

.pf-footer__links-col a:hover {
    color: var(--pf-primary);
}

/* Bottom Bar */
.pf-footer__bottom {
    background: var(--pf-secondary-dark);
    padding: 16px 0;
}

.pf-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pf-footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);  /* Increased for better contrast */
    margin: 0;
}

.pf-footer__top {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    background: var(--pf-primary);
    color: var(--pf-white);
    border: none;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
}

.pf-footer__top:hover {
    background: var(--pf-primary-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .pf-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .pf-footer__links {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .pf-footer__main {
        padding: 32px 0;
    }

    .pf-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pf-footer__links {
        grid-column: auto;
        flex-direction: column;
        gap: 24px;
    }

    .pf-footer__bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
