/* Footer Luxury Styles */
.footer-luxury {
    background-color: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/assets/home01.webp') center/cover no-repeat;
    opacity: 0.05;
    z-index: -1;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-about {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 90px;
    margin-right: 0;
}

.footer-logo h2 {
    display: none;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: white;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin-top: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    background-color: var(--gold);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    flex-shrink: 0;
    fill: var(--gold);
}

.footer-contact-item div {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 4px 0 0 4px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-newsletter {
    background-color: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 0 20px;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background-color: var(--gold-light);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-terms {
    display: flex;
    gap: 20px;
}

.footer-terms a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-terms a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 30px;
    }
    
    .footer-logo img {
        height: 70px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input {
        border-radius: 4px;
    }
    
    .btn-newsletter {
        border-radius: 4px;
        padding: 12px;
    }
}
