.lux-footer-wrapper {
    box-sizing: border-box;
    font-family: 'Playfair Display', 'Didot', serif;
    border-top: 3px solid #6EC1E4;
}

.lux-footer-wrapper * {
    box-sizing: border-box;
}

.lux-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.lux-footer-column {
    display: flex;
    flex-direction: column;
}

.lux-footer-brand-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.lux-footer-col-title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    position: relative;
    padding-bottom: 8px;
}

.lux-footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: currentColor;
    opacity: 0.5;
}

.lux-footer-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

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

.lux-footer-links-list li {
    margin-bottom: 12px;
}

.lux-footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lux-newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    margin-top: 10px;
}

.lux-newsletter-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    flex-grow: 1;
    padding: 8px 0;
}

.lux-newsletter-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 0 10px;
    transition: transform 0.3s ease;
}

.lux-newsletter-btn:hover {
    transform: translateX(5px);
}

.lux-footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.lux-footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.lux-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .lux-footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .lux-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lux-footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
