.luxury-footer {
    background-color: #000;
    /* Deep black background */
    position: relative;
    padding: 100px 0 60px 0;
    overflow: hidden;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Base style for all 4 lines */
.line {
    position: absolute;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    z-index: 1;
}

/* Horizontal Lines */
.line-top {
    top: 120px;
    left: 5%;
    right: 5%;
    height: 1px;
}

.line-bottom {
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    bottom: 50px;
}

/* Vertical Lines - making them cross the top/bottom */
.line-left,
.line-right {
    width: 1px;
    top: 60px;
    /* Starts above the top line */
    bottom: 40px;
    /* Ends below the bottom line */
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.line-left {
    left: 15%;
}

.line-right {
    right: 15%;
}

/* Logo positioning on the top line */
.logo-wrapper {
    position: absolute;
    top: 120px;
    /* Must match .line-top top value */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    /* Masks the line behind the logo */
    padding: 0 20px;
}

.glow-logo {
    width: 80px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
}

/* Content Layout */
.footer-inner {
    max-width: 65%;
    margin: 80px auto;
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

.social-row {
    margin-bottom: 60px;
    display: flex;
    gap: 25px;
}

.social-row a {
    color: #fff;
    font-size: 23px;
    opacity: 0.7;
    transition: 0.3s;
}

.social-row a:hover {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 220, 150, 0.4)) drop-shadow(0 0 10px rgba(231, 183, 110, 0.35)) drop-shadow(0 0 10px rgba(219, 172, 102, 0.2)) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.footer-links a:hover {
    background: linear-gradient(to bottom,
            #FFF0DA 0%,
            #FFF2DB 20%,
            #EAC885 40%,
            #EAC885 45%,
            #94651e 70%,
            #94651e 85%,
            #94651e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: .5px #BD9457;
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    .line-left,
    .line-right {
        display: none;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    .social-row {
        justify-content: center;
        padding: 0;
    }
}