/* Luxury Footer Styles */
.luxury-footer {
    background-color: var(--luxury-light);
    margin-top: 120px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Main Footer Content */
.footer-main {
    padding: 80px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 100px;
    align-items: start;
}

/* Brand Section */
.footer-brand {
    max-width: 500px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--luxury-dark);
    margin-bottom: 25px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--luxury-dark) 0%, var(--luxury-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-contact {
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--luxury-gold);
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--luxury-gold);
}

/* Quick Links */
.footer-links {
    display: flex;
    justify-content: flex-end;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--luxury-dark);
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--luxury-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 15px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--luxury-gold);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--luxury-gold);
}

.footer-column a:hover::after {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--luxury-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
}

.social-links a:hover {
    background-color: var(--luxury-gold);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--luxury-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--luxury-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 25px 0;
}

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

.footer-copyright {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stripe-logo {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.stripe-logo:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 30px;
    }
}

/* Elegant animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.footer-brand {
    animation-delay: 0.1s;
}

.footer-links {
    animation-delay: 0.2s;
}