/* ============================================
   LuxeGlow Salon – Footer
   Premium Luxury Footer UI (Responsive)
   ============================================ */

.site-footer {
    background: var(--clr-black);
    border-top: 1px solid rgba(255,255,255,.06);
}

/* ── Newsletter ───────────────────────────── */
.footer-newsletter {
    background: radial-gradient(circle at top left, rgba(201,169,110,.08), transparent 35%),
                linear-gradient(135deg,#120b05 0%, #1b1209 100%);
    border-bottom: 1px solid rgba(201,169,110,.12);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}
.newsletter-text h3 {
    font-family: var(--font-serif);
    font-size: clamp(2rem,4vw,3rem);
    line-height: 1.1;
    color: var(--clr-gold-light);
    margin-bottom: .6rem;
    letter-spacing: -0.02em;
}
.newsletter-text p {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
}
.newsletter-form {
    flex: 1;
    min-width: 304px;
    max-width: 540px;
}
.newsletter-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,169,110,.18);
    border-radius: 999px;
    padding: .45rem;
    padding-left: 1.4rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
    transition: all .35s ease;
}
.newsletter-input-wrap:focus-within {
    border-color: rgba(201,169,110,.5);
    box-shadow: 0 0 0 4px rgba(201,169,110,.08), 0 12px 40px rgba(0,0,0,.45);
    transform: translateY(-2px);
}
.newsletter-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: .96rem;
    font-family: var(--font-sans);
    padding: .9rem 0;
    min-width: 0;
}
.newsletter-input-wrap input::placeholder {
    color: rgba(255,255,255,.35);
}
.newsletter-input-wrap .btn-gold {
    border: none;
    border-radius: 999px;
    padding: .95rem 1.7rem;
    font-weight: 700;
    letter-spacing: .04em;
    background: linear-gradient(135deg,#f3d89c,#c9a96e);
    color: #111;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    transition: all .3s ease;
    box-shadow: 0 8px 24px rgba(201,169,110,.28);
}
.newsletter-input-wrap .btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 30px rgba(201,169,110,.35);
}
.newsletter-msg {
    font-size: .82rem;
    color: var(--clr-gold);
    margin-top: .8rem;
    min-height: 1em;
    padding-left: .6rem;
}

/* ── Main Footer ──────────────────────────── */
.footer-main {
    padding: 4rem 0 2.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* Brand */
.footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: .4rem;
    text-decoration: none;
    margin-bottom: 1rem;
}
.footer-logo .logo-icon {
    font-size: 1.3rem;
    color: var(--clr-gold);
}
.footer-logo .logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: .04em;
}
.footer-desc {
    font-size: var(--fs-sm);
    color: var(--clr-gray-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.footer-social {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gray-400);
    font-size: .9rem;
    transition: all var(--t-base) var(--ease-spring);
}
.footer-social a:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-black);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-heading {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 1.2rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    list-style: none;
}
.footer-links a {
    font-size: var(--fs-sm);
    color: var(--clr-gray-400);
    transition: all var(--t-base);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-4px);
    transition: all var(--t-base);
    color: var(--clr-gold);
}
.footer-links a:hover {
    color: var(--clr-gold);
    padding-left: .35rem;
}
.footer-links a:hover::before {
    opacity: 1;
    transform: none;
}

/* Contact */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: var(--fs-sm);
    color: var(--clr-gray-400);
    line-height: 1.7;
}
.footer-contact-list i {
    color: var(--clr-gold);
    margin-top: .2rem;
    flex-shrink: 0;
    width: 14px;
}
.footer-contact-list a {
    color: var(--clr-gray-400);
    transition: color var(--t-base);
}
.footer-contact-list a:hover {
    color: var(--clr-gold);
}

/* ── Bottom Footer ────────────────────────── */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1.3rem 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: var(--fs-xs);
    color: var(--clr-gray-400);
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}
.footer-legal a {
    font-size: var(--fs-xs);
    color: var(--clr-gray-400);
    transition: color var(--t-base);
}
.footer-legal a:hover {
    color: var(--clr-gold);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-newsletter { padding: 3rem 0; }
    .newsletter-text h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
}

@media (max-width: 768px) {
    .newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }
    .newsletter-input-wrap {
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
        /* padding: 1rem; */
        gap: .9rem;
    }
    .newsletter-input-wrap input {
        padding: .4rem 0;
    }
    .newsletter-input-wrap .btn-gold {
        width: 100%;
    }
    .footer-main { padding: 3rem 0 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-newsletter { padding: 2rem 0; }
    .newsletter-text h3 { font-size: 1.5rem; }
    .newsletter-text p { font-size: 0.85rem; }
    .footer-logo .logo-text { font-size: 1.3rem; }
    .footer-social a { width: 32px; height: 32px; font-size: 0.8rem; }
    .footer-heading { font-size: 0.7rem; margin-bottom: 1rem; }
    .footer-links a, .footer-contact-list li { font-size: 0.75rem; }
    .footer-bottom p, .footer-legal a { font-size: 0.65rem; }
    .footer-legal { gap: 1rem; }
}


/* ============================================
   Newsletter Form Responsive Fix
   ============================================ */
@media (max-width: 768px) {
    .newsletter-input-wrap {
        flex-direction: column !important;
        align-items: stretch !important;
        border-radius: 24px !important;
        padding: 1rem !important;
        gap: 0.9rem !important;
    }
    .newsletter-input-wrap input {
        width: 100% !important;
        text-align: center !important;
    }
    .newsletter-input-wrap .btn-gold {
        width: 100% !important;
        justify-content: center !important;
    }
}



/* ============================================
   Footer Credit & Modal Trigger Styles
   ============================================ */

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-credit {
    font-size: var(--fs-xs);
    color: var(--clr-gray-400);
    margin-top: 0.2rem;
}

.credit-highlight {
    color: var(--clr-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ensure bottom section stacks nicely on mobile */
@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    .footer-copyright {
        align-items: center;
    }
    .footer-legal {
        justify-content: center;
    }
}