/* ============================================
   Orvia Hotels - Footer
   ============================================ */

.fe-footer {
    background: var(--fe-bg-darker);
    color: rgba(250, 248, 245, 0.7);
    padding-top: var(--fe-space-16);
}

.fe-footer a {
    color: rgba(250, 248, 245, 0.7);
    transition: color var(--fe-transition-fast);
}

.fe-footer a:hover {
    color: var(--fe-accent-light);
}

.fe-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--fe-space-10);
    padding-bottom: var(--fe-space-12);
}

/* ── Brand Column ── */
.fe-footer-brand .fe-logo {
    margin-bottom: var(--fe-space-5);
}

.fe-footer-brand .fe-logo-text {
    color: var(--fe-white);
}

.fe-footer-brand p {
    color: rgba(250, 248, 245, 0.6);
    font-size: var(--fe-text-sm);
    line-height: var(--fe-leading-relaxed);
    max-width: 280px;
}

.fe-footer-social {
    display: flex;
    gap: var(--fe-space-3);
    margin-top: var(--fe-space-5);
}

.fe-footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--fe-radius-full);
    background: rgba(255, 255, 255, 0.08);
    font-size: 15px;
    transition: background var(--fe-transition-fast), color var(--fe-transition-fast);
}

.fe-footer-social a:hover {
    background: var(--fe-accent);
    color: var(--fe-white);
}

/* ── Link Columns ── */
.fe-footer-column h5 {
    font-family: var(--fe-font-body);
    font-size: var(--fe-text-xs);
    font-weight: var(--fe-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--fe-tracking-wider);
    color: var(--fe-accent-light);
    margin-bottom: var(--fe-space-5);
}

.fe-footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--fe-space-3);
}

.fe-footer-column li a {
    font-size: var(--fe-text-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fe-footer-column li a i {
    width: 16px;
    font-size: 12px;
    opacity: 0.5;
}

/* ── Newsletter ── */
.fe-footer-newsletter {
    margin-top: var(--fe-space-6);
}

.fe-footer-newsletter .input-group {
    display: flex;
    gap: 0;
}

.fe-footer-newsletter input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: var(--fe-radius) 0 0 var(--fe-radius);
    color: var(--fe-white);
    font-size: var(--fe-text-sm);
}

.fe-footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.fe-footer-newsletter button {
    padding: 10px 18px;
    background: var(--fe-accent);
    color: var(--fe-white);
    border: 1px solid var(--fe-accent);
    border-radius: 0 var(--fe-radius) var(--fe-radius) 0;
    font-size: var(--fe-text-sm);
    font-weight: var(--fe-weight-medium);
    cursor: pointer;
    transition: background var(--fe-transition-fast);
    white-space: nowrap;
}

.fe-footer-newsletter button:hover {
    background: var(--fe-accent-dark);
}

/* ── Bottom Bar ── */
.fe-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--fe-space-5) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fe-text-xs);
    color: rgba(250, 248, 245, 0.4);
}

.fe-footer-bottom-links {
    display: flex;
    gap: var(--fe-space-5);
}

.fe-footer-bottom-links a {
    color: rgba(250, 248, 245, 0.4);
    font-size: var(--fe-text-xs);
}

.fe-footer-bottom-links a:hover {
    color: rgba(250, 248, 245, 0.8);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .fe-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--fe-space-8);
    }
}

@media (max-width: 576px) {
    .fe-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--fe-space-6);
    }

    .fe-footer-bottom {
        flex-direction: column;
        gap: var(--fe-space-3);
        text-align: center;
    }
}
